2003-01-21 20:23:23 -04:00
|
|
|
"""Define the menu contents, hotkeys, and event bindings.
|
2000-08-14 22:13:23 -03:00
|
|
|
|
2003-01-21 20:23:23 -04:00
|
|
|
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 in the code here. This
|
|
|
|
makes it possible, for example, to define a Debug menu which is only present in
|
|
|
|
the PythonShell window, and a Format menu which is only present in the Editor
|
|
|
|
windows.
|
|
|
|
|
|
|
|
"""
|
2000-08-14 22:13:23 -03:00
|
|
|
import sys
|
2001-12-02 20:37:28 -04:00
|
|
|
from configHandler import idleConf
|
2009-03-04 17:35:05 -04:00
|
|
|
import macosxSupport
|
2000-08-14 22:13:23 -03:00
|
|
|
|
|
|
|
menudefs = [
|
|
|
|
# underscore prefixes character to underscore
|
|
|
|
('file', [
|
2002-12-23 20:51:05 -04:00
|
|
|
('_New Window', '<<open-new-window>>'),
|
2000-08-14 22:13:23 -03:00
|
|
|
('_Open...', '<<open-window-from-file>>'),
|
2002-12-23 20:51:05 -04:00
|
|
|
('Open _Module...', '<<open-module>>'),
|
|
|
|
('Class _Browser', '<<open-class-browser>>'),
|
|
|
|
('_Path Browser', '<<open-path-browser>>'),
|
2000-08-14 22:13:23 -03:00
|
|
|
None,
|
|
|
|
('_Save', '<<save-window>>'),
|
|
|
|
('Save _As...', '<<save-window-as-file>>'),
|
2006-08-16 18:45:59 -03:00
|
|
|
('Save Cop_y As...', '<<save-copy-of-window-as-file>>'),
|
2000-08-14 22:13:23 -03:00
|
|
|
None,
|
2006-08-16 18:45:59 -03:00
|
|
|
('Prin_t Window', '<<print-window>>'),
|
2002-06-11 01:45:34 -03:00
|
|
|
None,
|
2000-08-14 22:13:23 -03:00
|
|
|
('_Close', '<<close-window>>'),
|
|
|
|
('E_xit', '<<close-all-windows>>'),
|
|
|
|
]),
|
|
|
|
('edit', [
|
|
|
|
('_Undo', '<<undo>>'),
|
|
|
|
('_Redo', '<<redo>>'),
|
|
|
|
None,
|
2002-02-17 21:45:43 -04:00
|
|
|
('Cu_t', '<<cut>>'),
|
|
|
|
('_Copy', '<<copy>>'),
|
|
|
|
('_Paste', '<<paste>>'),
|
2000-08-14 22:13:23 -03:00
|
|
|
('Select _All', '<<select-all>>'),
|
2002-01-03 23:06:08 -04:00
|
|
|
None,
|
|
|
|
('_Find...', '<<find>>'),
|
2002-12-23 20:51:05 -04:00
|
|
|
('Find A_gain', '<<find-again>>'),
|
|
|
|
('Find _Selection', '<<find-selection>>'),
|
2002-01-03 23:06:08 -04:00
|
|
|
('Find in Files...', '<<find-in-files>>'),
|
|
|
|
('R_eplace...', '<<replace>>'),
|
2002-12-23 20:51:05 -04:00
|
|
|
('Go to _Line', '<<goto-line>>'),
|
2000-08-14 22:13:23 -03:00
|
|
|
]),
|
2002-09-13 21:50:44 -03:00
|
|
|
('format', [
|
2003-01-21 20:23:23 -04:00
|
|
|
('_Indent Region', '<<indent-region>>'),
|
|
|
|
('_Dedent Region', '<<dedent-region>>'),
|
|
|
|
('Comment _Out Region', '<<comment-region>>'),
|
|
|
|
('U_ncomment Region', '<<uncomment-region>>'),
|
|
|
|
('Tabify Region', '<<tabify-region>>'),
|
|
|
|
('Untabify Region', '<<untabify-region>>'),
|
|
|
|
('Toggle Tabs', '<<toggle-tabs>>'),
|
|
|
|
('New Indent Width', '<<change-indentwidth>>'),
|
|
|
|
]),
|
|
|
|
('run', [
|
2002-12-23 20:51:05 -04:00
|
|
|
('Python Shell', '<<open-python-shell>>'),
|
2003-01-21 20:23:23 -04:00
|
|
|
]),
|
2003-01-03 21:43:53 -04:00
|
|
|
('shell', [
|
|
|
|
('_View Last Restart', '<<view-restart>>'),
|
|
|
|
('_Restart Shell', '<<restart-shell>>'),
|
2003-01-21 20:23:23 -04:00
|
|
|
]),
|
|
|
|
('debug', [
|
2002-12-23 20:51:05 -04:00
|
|
|
('_Go to File/Line', '<<goto-file-line>>'),
|
2000-08-14 22:13:23 -03:00
|
|
|
('!_Debugger', '<<toggle-debugger>>'),
|
2003-01-03 21:43:53 -04:00
|
|
|
('_Stack Viewer', '<<open-stack-viewer>>'),
|
2003-01-21 20:23:23 -04:00
|
|
|
('!_Auto-open Stack Viewer', '<<toggle-jit-stack-viewer>>'),
|
|
|
|
]),
|
2003-01-03 21:43:53 -04:00
|
|
|
('options', [
|
2003-01-14 18:03:31 -04:00
|
|
|
('_Configure IDLE...', '<<open-config-dialog>>'),
|
2004-04-24 00:01:48 -03:00
|
|
|
None,
|
2003-01-21 20:23:23 -04:00
|
|
|
]),
|
2000-08-14 22:13:23 -03:00
|
|
|
('help', [
|
2003-01-14 18:03:31 -04:00
|
|
|
('_About IDLE', '<<about-idle>>'),
|
2000-08-14 22:13:23 -03:00
|
|
|
None,
|
2003-01-14 18:03:31 -04:00
|
|
|
('_IDLE Help', '<<help>>'),
|
|
|
|
('Python _Docs', '<<python-docs>>'),
|
2003-01-21 20:23:23 -04:00
|
|
|
]),
|
2000-08-14 22:13:23 -03:00
|
|
|
]
|
|
|
|
|
2009-03-04 17:35:05 -04:00
|
|
|
if macosxSupport.runningAsOSXApp():
|
2006-06-11 11:33:36 -03:00
|
|
|
# Running as a proper MacOS application bundle. This block restructures
|
|
|
|
# the menus a little to make them conform better to the HIG.
|
|
|
|
|
|
|
|
quitItem = menudefs[0][1][-1]
|
|
|
|
closeItem = menudefs[0][1][-2]
|
|
|
|
|
|
|
|
# Remove the last 3 items of the file menu: a separator, close window and
|
|
|
|
# quit. Close window will be reinserted just above the save item, where
|
|
|
|
# it should be according to the HIG. Quit is in the application menu.
|
|
|
|
del menudefs[0][1][-3:]
|
|
|
|
menudefs[0][1].insert(6, closeItem)
|
|
|
|
|
2006-06-11 16:42:51 -03:00
|
|
|
# Remove the 'About' entry from the help menu, it is in the application
|
2006-06-11 11:33:36 -03:00
|
|
|
# menu
|
|
|
|
del menudefs[-1][1][0:2]
|
|
|
|
|
|
|
|
menudefs.insert(0,
|
|
|
|
('application', [
|
|
|
|
('About IDLE', '<<about-idle>>'),
|
|
|
|
None,
|
|
|
|
('_Preferences....', '<<open-config-dialog>>'),
|
|
|
|
]))
|
|
|
|
|
|
|
|
|
2002-01-19 06:41:51 -04:00
|
|
|
default_keydefs = idleConf.GetCurrentKeySet()
|
2000-08-14 22:13:23 -03:00
|
|
|
|
|
|
|
del sys
|