本文整理汇总了Python中dialog.Dialog.render方法的典型用法代码示例。如果您正苦于以下问题:Python Dialog.render方法的具体用法?Python Dialog.render怎么用?Python Dialog.render使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dialog.Dialog
的用法示例。
在下文中一共展示了Dialog.render方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from dialog import Dialog [as 别名]
# 或者: from dialog.Dialog import render [as 别名]
def main(stdscr):
max_y,max_x = stdscr.getmaxyx()
editor = FileEditorComponent("TestFile",1,1,1,max_x-2,max_y-3,"Chat","./test.out",False)
d = Dialog(stdscr,"TestDialog",max_y,max_x,[ Frame("Test Dialog"),
editor,
Button("Ok",2,2,max_y-2,"OK",Component.CMP_KEY_OK),
Button("Cancel",3,9,max_y-2,"CANCEL",Component.CMP_KEY_CANCEL)])
d.render()
# curses.doupdate()
ed = editor.editor
ed.goto(ed.numLines(True)-1,0)
ed.endln()
ed.cr()
target = editor.editor.getLine()
ed.workfile.insertLine(target,"This is a test")
ed.workfile.setReadOnly()
d.main()
示例2: render
# 需要导入模块: from dialog import Dialog [as 别名]
# 或者: from dialog.Dialog import render [as 别名]
def render( self ):
""" process events whenever render is called """
if time.clock() - self.event_time > 0.5:
self.handle_chat_events()
self.event_time = time.clock()
Dialog.render(self)