當前位置: 首頁>>代碼示例>>Python>>正文


Python curses.reset_prog_mode方法代碼示例

本文整理匯總了Python中curses.reset_prog_mode方法的典型用法代碼示例。如果您正苦於以下問題:Python curses.reset_prog_mode方法的具體用法?Python curses.reset_prog_mode怎麽用?Python curses.reset_prog_mode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在curses的用法示例。


在下文中一共展示了curses.reset_prog_mode方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: wrapper_fork

# 需要導入模塊: import curses [as 別名]
# 或者: from curses import reset_prog_mode [as 別名]
def wrapper_fork(call_function, reset=True):
    pid = os.fork()
    if pid:
        # Parent
        os.waitpid(pid, 0)
        if reset:
            external_reset()
    else:
        locale.setlocale(locale.LC_ALL, '')
        _SCREEN = curses.initscr()
        try:
            curses.start_color()
        except:
            pass
        _SCREEN.keypad(1)
        curses.noecho()
        curses.cbreak()
        curses.def_prog_mode()
        curses.reset_prog_mode()
        return_code = call_function(_SCREEN)
        _SCREEN.keypad(0)
        curses.echo()
        curses.nocbreak()
        curses.endwin()
        sys.exit(0) 
開發者ID:hexway,項目名稱:apple_bleee,代碼行數:27,代碼來源:npyssafewrapper.py

示例2: CallSubShell

# 需要導入模塊: import curses [as 別名]
# 或者: from curses import reset_prog_mode [as 別名]
def CallSubShell(subshell):
    """Call this function if you need to execute an external command in a subshell (os.system).  All the usual warnings apply -- the command line will be
    expanded by the shell, so make sure it is safe before passing it to this function."""
    curses.def_prog_mode()
    #curses.endwin() # Probably causes a memory leak.
    
    rtn = os.system("%s" % (subshell))
    curses.reset_prog_mode()
    if rtn is not 0: return False
    else: return True

    curses.reset_prog_mode() 
開發者ID:hexway,項目名稱:apple_bleee,代碼行數:14,代碼來源:npyspmfuncs.py

示例3: clean_up

# 需要導入模塊: import curses [as 別名]
# 或者: from curses import reset_prog_mode [as 別名]
def clean_up(self):
        """
        This class overrides this method
        """
        self.menu.clear_screen()
        curses.reset_prog_mode()
        curses.curs_set(1)  # reset doesn't do this right
        curses.curs_set(0)
        self.menu.resume() 
開發者ID:pmbarrett314,項目名稱:curses-menu,代碼行數:11,代碼來源:external_item.py

示例4: clean_up

# 需要導入模塊: import curses [as 別名]
# 或者: from curses import reset_prog_mode [as 別名]
def clean_up(self):
        """
        This class overrides this method
        """
        self.submenu.join()
        self.menu.clear_screen()
        curses.reset_prog_mode()
        curses.curs_set(1)  # reset doesn't do this right
        curses.curs_set(0)
        self.menu.resume() 
開發者ID:pmbarrett314,項目名稱:curses-menu,代碼行數:12,代碼來源:submenu_item.py


注:本文中的curses.reset_prog_mode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。