blob: 13e2a3346fe715f426559f3505e3bbda3757d88e [file] [log] [blame]
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +00001"""Define the menu contents, hotkeys, and event bindings.
David Scherer7aced172000-08-15 01:13:23 +00002
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +00003There is additional configuration information in the EditorWindow class (and
4subclasses): the menus are created there based on the menu_specs (class)
5variable, and menus not created are silently skipped in the code here. This
6makes it possible, for example, to define a Debug menu which is only present in
7the PythonShell window, and a Format menu which is only present in the Editor
8windows.
9
10"""
David Scherer7aced172000-08-15 01:13:23 +000011import sys
Kurt B. Kaiser2d7f6a02007-08-22 23:01:33 +000012from idlelib.configHandler import idleConf
David Scherer7aced172000-08-15 01:13:23 +000013
14menudefs = [
15 # underscore prefixes character to underscore
16 ('file', [
Kurt B. Kaiserd375abe2002-12-24 00:51:05 +000017 ('_New Window', '<<open-new-window>>'),
David Scherer7aced172000-08-15 01:13:23 +000018 ('_Open...', '<<open-window-from-file>>'),
Kurt B. Kaiserd375abe2002-12-24 00:51:05 +000019 ('Open _Module...', '<<open-module>>'),
20 ('Class _Browser', '<<open-class-browser>>'),
21 ('_Path Browser', '<<open-path-browser>>'),
David Scherer7aced172000-08-15 01:13:23 +000022 None,
23 ('_Save', '<<save-window>>'),
24 ('Save _As...', '<<save-window-as-file>>'),
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000025 ('Save Cop_y As...', '<<save-copy-of-window-as-file>>'),
David Scherer7aced172000-08-15 01:13:23 +000026 None,
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000027 ('Prin_t Window', '<<print-window>>'),
Steven M. Gava7981ce52002-06-11 04:45:34 +000028 None,
David Scherer7aced172000-08-15 01:13:23 +000029 ('_Close', '<<close-window>>'),
30 ('E_xit', '<<close-all-windows>>'),
31 ]),
32 ('edit', [
33 ('_Undo', '<<undo>>'),
34 ('_Redo', '<<redo>>'),
35 None,
Steven M. Gava82c66822002-02-18 01:45:43 +000036 ('Cu_t', '<<cut>>'),
37 ('_Copy', '<<copy>>'),
38 ('_Paste', '<<paste>>'),
David Scherer7aced172000-08-15 01:13:23 +000039 ('Select _All', '<<select-all>>'),
Steven M. Gavac5976402002-01-04 03:06:08 +000040 None,
41 ('_Find...', '<<find>>'),
Kurt B. Kaiserd375abe2002-12-24 00:51:05 +000042 ('Find A_gain', '<<find-again>>'),
43 ('Find _Selection', '<<find-selection>>'),
Steven M. Gavac5976402002-01-04 03:06:08 +000044 ('Find in Files...', '<<find-in-files>>'),
45 ('R_eplace...', '<<replace>>'),
Kurt B. Kaiserd375abe2002-12-24 00:51:05 +000046 ('Go to _Line', '<<goto-line>>'),
David Scherer7aced172000-08-15 01:13:23 +000047 ]),
Kurt B. Kaiser0c9b6172002-09-14 00:50:44 +000048('format', [
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +000049 ('_Indent Region', '<<indent-region>>'),
50 ('_Dedent Region', '<<dedent-region>>'),
51 ('Comment _Out Region', '<<comment-region>>'),
52 ('U_ncomment Region', '<<uncomment-region>>'),
53 ('Tabify Region', '<<tabify-region>>'),
54 ('Untabify Region', '<<untabify-region>>'),
55 ('Toggle Tabs', '<<toggle-tabs>>'),
56 ('New Indent Width', '<<change-indentwidth>>'),
57 ]),
58 ('run', [
Kurt B. Kaiserd375abe2002-12-24 00:51:05 +000059 ('Python Shell', '<<open-python-shell>>'),
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +000060 ]),
Kurt B. Kaiser1061e722003-01-04 01:43:53 +000061 ('shell', [
62 ('_View Last Restart', '<<view-restart>>'),
63 ('_Restart Shell', '<<restart-shell>>'),
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +000064 ]),
65 ('debug', [
Kurt B. Kaiserd375abe2002-12-24 00:51:05 +000066 ('_Go to File/Line', '<<goto-file-line>>'),
David Scherer7aced172000-08-15 01:13:23 +000067 ('!_Debugger', '<<toggle-debugger>>'),
Kurt B. Kaiser1061e722003-01-04 01:43:53 +000068 ('_Stack Viewer', '<<open-stack-viewer>>'),
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +000069 ('!_Auto-open Stack Viewer', '<<toggle-jit-stack-viewer>>'),
70 ]),
Kurt B. Kaiser1061e722003-01-04 01:43:53 +000071 ('options', [
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +000072 ('_Configure IDLE...', '<<open-config-dialog>>'),
Kurt B. Kaiser610c7e02004-04-24 03:01:48 +000073 None,
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +000074 ]),
David Scherer7aced172000-08-15 01:13:23 +000075 ('help', [
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +000076 ('_About IDLE', '<<about-idle>>'),
David Scherer7aced172000-08-15 01:13:23 +000077 None,
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +000078 ('_IDLE Help', '<<help>>'),
79 ('Python _Docs', '<<python-docs>>'),
Kurt B. Kaiser4cc5ef52003-01-22 00:23:23 +000080 ]),
David Scherer7aced172000-08-15 01:13:23 +000081]
82
Thomas Wouters0e3f5912006-08-11 14:57:12 +000083if sys.platform == 'darwin' and '.app' in sys.executable:
84 # Running as a proper MacOS application bundle. This block restructures
85 # the menus a little to make them conform better to the HIG.
86
87 quitItem = menudefs[0][1][-1]
88 closeItem = menudefs[0][1][-2]
89
90 # Remove the last 3 items of the file menu: a separator, close window and
91 # quit. Close window will be reinserted just above the save item, where
92 # it should be according to the HIG. Quit is in the application menu.
93 del menudefs[0][1][-3:]
94 menudefs[0][1].insert(6, closeItem)
95
96 # Remove the 'About' entry from the help menu, it is in the application
97 # menu
98 del menudefs[-1][1][0:2]
99
100 menudefs.insert(0,
101 ('application', [
102 ('About IDLE', '<<about-idle>>'),
103 None,
104 ('_Preferences....', '<<open-config-dialog>>'),
105 ]))
106
107
Steven M. Gava72c3bf02002-01-19 10:41:51 +0000108default_keydefs = idleConf.GetCurrentKeySet()
David Scherer7aced172000-08-15 01:13:23 +0000109
110del sys