- 论坛徽章:
- 0
|
本帖最后由 dreamlearn 于 2013-01-19 00:06 编辑
是這樣的:在寫一個郵件程序用curses做介面,大家都知道一個程序中或多或少都有詢問框架
我覺得如果每個詢問都做一個dialog比較麻煩
我需要的大約是這樣子(你是否確認剷除.) (你是否要儲存)(你是否確認要轉寄)
注意不是所有 dialog 也是 YES / NO,因此需要
根據不同的需求改變其標題字串,還有要改變其選項,改變選項行為
增加或減少選項,我剛剛做了一個版本不過不好
你們會怎麼做呢,我的方案不太好所以想參考一下大家的做法,
如果有代碼就更昜理解。
這是一個測試- import curses
- scr = curses.initscr( )
- curses.cbreak( )
- curses.noecho( )
- y, x = scr.getmaxyx( )
- data = {'desination': 'Jack'}
- def infoinput( ):
- global win
- scr.box( )
- win.addstr(4, 4, '_' * 30, curses.A_BOLD)
- curses.echo( )
- data['destination'] = win.getstr(4, 4)
- curses.noecho( )
-
- def dialog(self=None, Y_X_optionList=None, Y_X_messageList=None, execute=None):
- global position, win
- pos_y, pos_x = int(y/2)-6, int(x/2)-22
- box_h, box_w = 8, 44
- win = curses.newwin(box_h, box_w, pos_y, pos_x)
- win.keypad(True)
- if Y_X_optionList != None and execute != None:
- exec_func = execute
- elif Y_X_optionList == None and execute != None:
- pass
- else:
- Y_X_optionList = [[6,10,'<CANCEL>'], [6,30,'<YES>']]
- exec_func = {0: '0', 1: '1'}
- def __displayMessage( ):
- for msg_y, msg_x, message in Y_X_messageList:
- win.addstr(msg_y, msg_x, message)
- def __displayOption( ):
- index = 0
- for opt_y, opt_x, option in Y_X_optionList:
- win.addstr(opt_y, opt_x, option)
- if index == position:
- win.addstr(6, opt_x, option, curses.A_BOLD | curses.A_STANDOUT)
- index += 1
- def __displayFull( ):
- win.clear( )
- win.box ( )
- __displayMessage( )
- __displayOption ( )
- win.refresh( )
-
- position = 0
- optnum = len(Y_X_optionList) - 1
- def Getkeybord( ):
- global position
- __displayFull( )
- key = win.getch( )
- if key == curses.KEY_LEFT and position > 0 :
- position -= 1
- elif key == curses.KEY_RIGHT and position < optnum:
- position += 1
- elif key == ord('\n'):
- return eval(exec_func[position])
- return 1
- while Getkeybord( ):
- continue
- win.addstr(4, 4, str(data['destination']))
- win.refresh( )
- win.getch( )
- dialog(execute={0: 0, 1: 1, 2: 'infoinput( )'},Y_X_optionList = [[6,10,'<CANCEL>'], [6,20,'<YES>'], [6, 30, '<Save as>']], Y_X_messageList=[[2, 4, 'Hello this is a test'], [3, 4, 'python curses dialog']])
- curses.endwin( )
复制代码 |
|