Python curses.flushinp() Examples
The following are 17
code examples of curses.flushinp().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
curses
, or try the search function
.
Example #1
Source File: terminal_dungeon.py From terminal_dungeon with MIT License | 5 votes |
def main(screen): init_curses(screen) game_map = Map("map1") player = Player(game_map) textures = ["wall1", "wall2", "dragon", "tree"] Controller(Renderer(screen, player, textures)).start() curses.flushinp() curses.endwin()
Example #2
Source File: fmForm.py From TelegramTUI with MIT License | 5 votes |
def h_display_help(self, input): if self.help == None: return if self.name: help_name="%s Help" %(self.name) else: help_name=None curses.flushinp() util_viewhelp.view_help(self.help, title=help_name, autowrap=self.WRAP_HELP) #select.ViewText(self.help, name=help_name) self.display() return True
Example #3
Source File: utilNotify.py From TelegramTUI with MIT License | 5 votes |
def notify_wait(*args, **keywords): notify(*args, **keywords) curses.napms(3000) curses.flushinp()
Example #4
Source File: wgmultiline.py From TelegramTUI with MIT License | 5 votes |
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()
Example #5
Source File: fmForm.py From EDCOP with Apache License 2.0 | 5 votes |
def h_display_help(self, input): if self.help == None: return if self.name: help_name="%s Help" %(self.name) else: help_name=None curses.flushinp() util_viewhelp.view_help(self.help, title=help_name, autowrap=self.WRAP_HELP) #select.ViewText(self.help, name=help_name) self.display() return True
Example #6
Source File: utilNotify.py From EDCOP with Apache License 2.0 | 5 votes |
def notify_wait(*args, **keywords): notify(*args, **keywords) curses.napms(3000) curses.flushinp()
Example #7
Source File: wgmultiline.py From EDCOP with Apache License 2.0 | 5 votes |
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()
Example #8
Source File: fmForm.py From HomePWN with GNU General Public License v3.0 | 5 votes |
def h_display_help(self, input): if self.help == None: return if self.name: help_name="%s Help" %(self.name) else: help_name=None curses.flushinp() util_viewhelp.view_help(self.help, title=help_name, autowrap=self.WRAP_HELP) #select.ViewText(self.help, name=help_name) self.display() return True
Example #9
Source File: utilNotify.py From HomePWN with GNU General Public License v3.0 | 5 votes |
def notify_wait(*args, **keywords): notify(*args, **keywords) curses.napms(3000) curses.flushinp()
Example #10
Source File: wgmultiline.py From HomePWN with GNU General Public License v3.0 | 5 votes |
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()
Example #11
Source File: fmForm.py From apple_bleee with GNU General Public License v3.0 | 5 votes |
def h_display_help(self, input): if self.help == None: return if self.name: help_name="%s Help" %(self.name) else: help_name=None curses.flushinp() util_viewhelp.view_help(self.help, title=help_name, autowrap=self.WRAP_HELP) #select.ViewText(self.help, name=help_name) self.display() return True
Example #12
Source File: utilNotify.py From apple_bleee with GNU General Public License v3.0 | 5 votes |
def notify_wait(*args, **keywords): notify(*args, **keywords) curses.napms(3000) curses.flushinp()
Example #13
Source File: wgmultiline.py From apple_bleee with GNU General Public License v3.0 | 5 votes |
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()
Example #14
Source File: wgwidget.py From apple_bleee with GNU General Public License v3.0 | 4 votes |
def get_and_use_key_press(self): global TEST_SETTINGS if (TEST_SETTINGS['TEST_INPUT'] is None) and (TEST_SETTINGS['INPUT_GENERATOR'] is None): curses.raw() curses.cbreak() curses.meta(1) self.parent.curses_pad.keypad(1) if self.parent.keypress_timeout: curses.halfdelay(self.parent.keypress_timeout) ch = self._get_ch() if ch == -1: return self.try_while_waiting() else: self.parent.curses_pad.timeout(-1) ch = self._get_ch() # handle escape-prefixed rubbish. if ch == curses.ascii.ESC: #self.parent.curses_pad.timeout(1) self.parent.curses_pad.nodelay(1) ch2 = self.parent.curses_pad.getch() if ch2 != -1: ch = curses.ascii.alt(ch2) self.parent.curses_pad.timeout(-1) # back to blocking mode #curses.flushinp() elif (TEST_SETTINGS['INPUT_GENERATOR']): self._last_get_ch_was_unicode = True try: ch = next(TEST_SETTINGS['INPUT_GENERATOR']) except StopIteration: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['INPUT_GENERATOR'] = None return else: raise ExhaustedTestInput else: self._last_get_ch_was_unicode = True try: ch = TEST_SETTINGS['TEST_INPUT'].pop(0) TEST_SETTINGS['TEST_INPUT_LOG'].append(ch) except IndexError: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['TEST_INPUT'] = None return else: raise ExhaustedTestInput self.handle_input(ch) if self.check_value_change: self.when_check_value_changed() if self.check_cursor_move: self.when_check_cursor_moved() self.try_adjust_widgets()
Example #15
Source File: wgwidget.py From EDCOP with Apache License 2.0 | 4 votes |
def get_and_use_key_press(self): global TEST_SETTINGS if (TEST_SETTINGS['TEST_INPUT'] is None) and (TEST_SETTINGS['INPUT_GENERATOR'] is None): curses.raw() curses.cbreak() curses.meta(1) self.parent.curses_pad.keypad(1) if self.parent.keypress_timeout: curses.halfdelay(self.parent.keypress_timeout) ch = self._get_ch() if ch == -1: return self.try_while_waiting() else: self.parent.curses_pad.timeout(-1) ch = self._get_ch() # handle escape-prefixed rubbish. if ch == curses.ascii.ESC: #self.parent.curses_pad.timeout(1) self.parent.curses_pad.nodelay(1) ch2 = self.parent.curses_pad.getch() if ch2 != -1: ch = curses.ascii.alt(ch2) self.parent.curses_pad.timeout(-1) # back to blocking mode #curses.flushinp() elif (TEST_SETTINGS['INPUT_GENERATOR']): self._last_get_ch_was_unicode = True try: ch = next(TEST_SETTINGS['INPUT_GENERATOR']) except StopIteration: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['INPUT_GENERATOR'] = None return else: raise ExhaustedTestInput else: self._last_get_ch_was_unicode = True try: ch = TEST_SETTINGS['TEST_INPUT'].pop(0) TEST_SETTINGS['TEST_INPUT_LOG'].append(ch) except IndexError: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['TEST_INPUT'] = None return else: raise ExhaustedTestInput self.handle_input(ch) if self.check_value_change: self.when_check_value_changed() if self.check_cursor_move: self.when_check_cursor_moved() self.try_adjust_widgets()
Example #16
Source File: wgwidget.py From HomePWN with GNU General Public License v3.0 | 4 votes |
def get_and_use_key_press(self): global TEST_SETTINGS if (TEST_SETTINGS['TEST_INPUT'] is None) and (TEST_SETTINGS['INPUT_GENERATOR'] is None): curses.raw() curses.cbreak() curses.meta(1) self.parent.curses_pad.keypad(1) if self.parent.keypress_timeout: curses.halfdelay(self.parent.keypress_timeout) ch = self._get_ch() if ch == -1: return self.try_while_waiting() else: self.parent.curses_pad.timeout(-1) ch = self._get_ch() # handle escape-prefixed rubbish. if ch == curses.ascii.ESC: #self.parent.curses_pad.timeout(1) self.parent.curses_pad.nodelay(1) ch2 = self.parent.curses_pad.getch() if ch2 != -1: ch = curses.ascii.alt(ch2) self.parent.curses_pad.timeout(-1) # back to blocking mode #curses.flushinp() elif (TEST_SETTINGS['INPUT_GENERATOR']): self._last_get_ch_was_unicode = True try: ch = next(TEST_SETTINGS['INPUT_GENERATOR']) except StopIteration: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['INPUT_GENERATOR'] = None return else: raise ExhaustedTestInput else: self._last_get_ch_was_unicode = True try: ch = TEST_SETTINGS['TEST_INPUT'].pop(0) TEST_SETTINGS['TEST_INPUT_LOG'].append(ch) except IndexError: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['TEST_INPUT'] = None return else: raise ExhaustedTestInput self.handle_input(ch) if self.check_value_change: self.when_check_value_changed() if self.check_cursor_move: self.when_check_cursor_moved() self.try_adjust_widgets()
Example #17
Source File: wgwidget.py From TelegramTUI with MIT License | 4 votes |
def get_and_use_key_press(self): global TEST_SETTINGS if (TEST_SETTINGS['TEST_INPUT'] is None) and (TEST_SETTINGS['INPUT_GENERATOR'] is None): curses.raw() curses.cbreak() curses.meta(1) self.parent.curses_pad.keypad(1) if self.parent.keypress_timeout: curses.halfdelay(self.parent.keypress_timeout) ch = self._get_ch() if ch == -1: return self.try_while_waiting() else: self.parent.curses_pad.timeout(-1) ch = self._get_ch() # handle escape-prefixed rubbish. if ch == curses.ascii.ESC: #self.parent.curses_pad.timeout(1) self.parent.curses_pad.nodelay(1) ch2 = self.parent.curses_pad.getch() if ch2 != -1: ch = curses.ascii.alt(ch2) self.parent.curses_pad.timeout(-1) # back to blocking mode #curses.flushinp() elif (TEST_SETTINGS['INPUT_GENERATOR']): self._last_get_ch_was_unicode = True try: ch = next(TEST_SETTINGS['INPUT_GENERATOR']) except StopIteration: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['INPUT_GENERATOR'] = None return else: raise ExhaustedTestInput else: self._last_get_ch_was_unicode = True try: ch = TEST_SETTINGS['TEST_INPUT'].pop(0) TEST_SETTINGS['TEST_INPUT_LOG'].append(ch) except IndexError: if TEST_SETTINGS['CONTINUE_AFTER_TEST_INPUT']: TEST_SETTINGS['TEST_INPUT'] = None return else: raise ExhaustedTestInput self.handle_input(ch) if self.check_value_change: self.when_check_value_changed() if self.check_cursor_move: self.when_check_cursor_moved() self.try_adjust_widgets()