本文整理汇总了Python中curses.napms方法的典型用法代码示例。如果您正苦于以下问题:Python curses.napms方法的具体用法?Python curses.napms怎么用?Python curses.napms使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类curses
的用法示例。
在下文中一共展示了curses.napms方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: edit
# 需要导入模块: import curses [as 别名]
# 或者: from curses import napms [as 别名]
def edit(self):
self.editing = True
self.how_exited = None
# if self.value: self.cursor_line = self.value
self.display()
while self.editing:
self.get_and_use_key_press()
self.update(clear=None)
## self.clear()
## self.update(clear=False)
self.parent.refresh()
## curses.napms(10)
## curses.flushinp()
示例2: notify_wait
# 需要导入模块: import curses [as 别名]
# 或者: from curses import napms [as 别名]
def notify_wait(*args, **keywords):
notify(*args, **keywords)
curses.napms(3000)
curses.flushinp()
示例3: show_brief_message
# 需要导入模块: import curses [as 别名]
# 或者: from curses import napms [as 别名]
def show_brief_message(self, message):
curses.beep()
keep_for_a_moment = self.value
self.value = message
self.editing=False
self.display()
curses.napms(1200)
self.editing=True
self.value = keep_for_a_moment
示例4: edit
# 需要导入模块: import curses [as 别名]
# 或者: from curses import napms [as 别名]
def edit(self):
self.editing = True
self.how_exited = None
#if self.value: self.cursor_line = self.value
self.display()
while self.editing:
self.get_and_use_key_press()
self.update(clear=None)
## self.clear()
## self.update(clear=False)
self.parent.refresh()
## curses.napms(10)
## curses.flushinp()