# This file defines the menu contents and key bindings. Note that # there is additional configuration information in the EditorWindow # class (and subclasses): the menus are created there based on the # menu_specs (class) variable, and menus not created are silently # skipped by the code here. This makes it possible to define the # Debug menu here, which is only present in the PythonShell window. import sys from configHandler import idleConf menudefs = [ # underscore prefixes character to underscore ('file', [ ('_New Window', '<>'), ('_Open...', '<>'), ('Open _Module...', '<>'), ('Class _Browser', '<>'), ('_Path Browser', '<>'), None, ('_Save', '<>'), ('Save _As...', '<>'), ('Save Co_py As...', '<>'), None, ('_Print Window', '<>'), None, ('_Close', '<>'), ('E_xit', '<>'), ]), ('edit', [ ('_Undo', '<>'), ('_Redo', '<>'), None, ('Cu_t', '<>'), ('_Copy', '<>'), ('_Paste', '<>'), ('Select _All', '<>'), None, ('_Find...', '<>'), ('Find A_gain', '<>'), ('Find _Selection', '<>'), ('Find in Files...', '<>'), ('R_eplace...', '<>'), ('Go to _Line', '<>'), ]), ('format', [ ('_Indent Region', '<>'), ('_Dedent Region', '<>'), ('Comment _Out Region', '<>'), ('U_ncomment Region', '<>'), ('Tabify Region', '<>'), ('Untabify Region', '<>'), ('Toggle Tabs', '<>'), ('New Indent Width', '<>'), ]), ('run',[ ('Python Shell', '<>'), ]), ('shell', [ ('_View Last Restart', '<>'), ('_Restart Shell', '<>'), None, ('_Go to File/Line', '<>'), ('!_Debugger', '<>'), ('_Stack Viewer', '<>'), ('!_Auto-open Stack Viewer', '<>' ), ]), ('options', [ ('_Configure IDLE...', '<>'), None, ('Revert to _Default Settings', '<>'), ]), ('help', [ ('_About IDLE', '<>'), ('IDLE _Readme', '<>'), None, ('_IDLE Help', '<>'), ('Python _Docs', '<>'), ]), ] default_keydefs = idleConf.GetCurrentKeySet() del sys