1 """Base frame with menu."""
3 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
5 __revision__
= "$Revision$"[11:-2]
8 from version
import VERSION
13 ID_REVERT
= wx
.ID_REVERT
14 ID_CLOSE
= wx
.ID_CLOSE
16 ID_SAVEAS
= wx
.ID_SAVEAS
17 ID_PRINT
= wx
.ID_PRINT
23 ID_PASTE
= wx
.ID_PASTE
24 ID_CLEAR
= wx
.ID_CLEAR
25 ID_SELECTALL
= wx
.ID_SELECTALL
26 ID_ABOUT
= wx
.ID_ABOUT
27 ID_AUTOCOMP
= wx
.NewId()
28 ID_AUTOCOMP_SHOW
= wx
.NewId()
29 ID_AUTOCOMP_MAGIC
= wx
.NewId()
30 ID_AUTOCOMP_SINGLE
= wx
.NewId()
31 ID_AUTOCOMP_DOUBLE
= wx
.NewId()
32 ID_CALLTIPS
= wx
.NewId()
33 ID_CALLTIPS_SHOW
= wx
.NewId()
34 ID_COPY_PLUS
= wx
.NewId()
35 ID_NAMESPACE
= wx
.NewId()
36 ID_PASTE_PLUS
= wx
.NewId()
40 class Frame(wx
.Frame
):
41 """Frame with standard menu items."""
43 revision
= __revision__
45 def __init__(self
, parent
=None, id=-1, title
='Editor',
46 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
47 style
=wx
.DEFAULT_FRAME_STYLE
):
48 """Create a Frame instance."""
49 wx
.Frame
.__init
__(self
, parent
, id, title
, pos
, size
, style
)
50 self
.CreateStatusBar()
51 self
.SetStatusText('Frame')
53 self
.SetIcon(images
.getPyIcon())
55 wx
.EVT_CLOSE(self
, self
.OnClose
)
57 def OnClose(self
, event
):
58 """Event handler for closing."""
61 def __createMenus(self
):
62 m
= self
.fileMenu
= wx
.Menu()
63 m
.Append(ID_NEW
, '&New \tCtrl+N',
65 m
.Append(ID_OPEN
, '&Open... \tCtrl+O',
68 m
.Append(ID_REVERT
, '&Revert \tCtrl+R',
69 'Revert to last saved version')
70 m
.Append(ID_CLOSE
, '&Close \tCtrl+W',
73 m
.Append(ID_SAVE
, '&Save... \tCtrl+S',
75 m
.Append(ID_SAVEAS
, 'Save &As \tShift+Ctrl+S',
76 'Save file with new name')
78 m
.Append(ID_PRINT
, '&Print... \tCtrl+P',
81 m
.Append(ID_NAMESPACE
, '&Update Namespace \tShift+Ctrl+N',
82 'Update namespace for autocompletion and calltips')
84 m
.Append(ID_EXIT
, 'E&xit', 'Exit Program')
86 m
= self
.editMenu
= wx
.Menu()
87 m
.Append(ID_UNDO
, '&Undo \tCtrl+Z',
88 'Undo the last action')
89 m
.Append(ID_REDO
, '&Redo \tCtrl+Y',
90 'Redo the last undone action')
92 m
.Append(ID_CUT
, 'Cu&t \tCtrl+X',
94 m
.Append(ID_COPY
, '&Copy \tCtrl+C',
96 m
.Append(ID_COPY_PLUS
, 'Cop&y Plus \tShift+Ctrl+C',
97 'Copy the selection - retaining prompts')
98 m
.Append(ID_PASTE
, '&Paste \tCtrl+V', 'Paste from clipboard')
99 m
.Append(ID_PASTE_PLUS
, 'Past&e Plus \tShift+Ctrl+V',
100 'Paste and run commands')
102 m
.Append(ID_CLEAR
, 'Cle&ar',
103 'Delete the selection')
104 m
.Append(ID_SELECTALL
, 'Select A&ll \tCtrl+A',
107 m
= self
.autocompMenu
= wx
.Menu()
108 m
.Append(ID_AUTOCOMP_SHOW
, 'Show Auto Completion',
109 'Show auto completion list', 1)
110 m
.Append(ID_AUTOCOMP_MAGIC
, 'Include Magic Attributes',
111 'Include attributes visible to __getattr__ and __setattr__',
113 m
.Append(ID_AUTOCOMP_SINGLE
, 'Include Single Underscores',
114 'Include attibutes prefixed by a single underscore', 1)
115 m
.Append(ID_AUTOCOMP_DOUBLE
, 'Include Double Underscores',
116 'Include attibutes prefixed by a double underscore', 1)
118 m
= self
.calltipsMenu
= wx
.Menu()
119 m
.Append(ID_CALLTIPS_SHOW
, 'Show Call Tips',
120 'Show call tips with argument signature and docstring', 1)
122 m
= self
.optionsMenu
= wx
.Menu()
123 m
.AppendMenu(ID_AUTOCOMP
, '&Auto Completion', self
.autocompMenu
,
124 'Auto Completion Options')
125 m
.AppendMenu(ID_CALLTIPS
, '&Call Tips', self
.calltipsMenu
,
127 m
.Append(ID_WRAP
, '&Wrap Lines',
128 'Wrap lines at right edge', 1)
130 m
= self
.helpMenu
= wx
.Menu()
132 m
.Append(ID_ABOUT
, '&About...', 'About this program')
134 b
= self
.menuBar
= wx
.MenuBar()
135 b
.Append(self
.fileMenu
, '&File')
136 b
.Append(self
.editMenu
, '&Edit')
137 b
.Append(self
.optionsMenu
, '&Options')
138 b
.Append(self
.helpMenu
, '&Help')
141 wx
.EVT_MENU(self
, ID_NEW
, self
.OnFileNew
)
142 wx
.EVT_MENU(self
, ID_OPEN
, self
.OnFileOpen
)
143 wx
.EVT_MENU(self
, ID_REVERT
, self
.OnFileRevert
)
144 wx
.EVT_MENU(self
, ID_CLOSE
, self
.OnFileClose
)
145 wx
.EVT_MENU(self
, ID_SAVE
, self
.OnFileSave
)
146 wx
.EVT_MENU(self
, ID_SAVEAS
, self
.OnFileSaveAs
)
147 wx
.EVT_MENU(self
, ID_NAMESPACE
, self
.OnFileUpdateNamespace
)
148 wx
.EVT_MENU(self
, ID_PRINT
, self
.OnFilePrint
)
149 wx
.EVT_MENU(self
, ID_EXIT
, self
.OnExit
)
150 wx
.EVT_MENU(self
, ID_UNDO
, self
.OnUndo
)
151 wx
.EVT_MENU(self
, ID_REDO
, self
.OnRedo
)
152 wx
.EVT_MENU(self
, ID_CUT
, self
.OnCut
)
153 wx
.EVT_MENU(self
, ID_COPY
, self
.OnCopy
)
154 wx
.EVT_MENU(self
, ID_COPY_PLUS
, self
.OnCopyPlus
)
155 wx
.EVT_MENU(self
, ID_PASTE
, self
.OnPaste
)
156 wx
.EVT_MENU(self
, ID_PASTE_PLUS
, self
.OnPastePlus
)
157 wx
.EVT_MENU(self
, ID_CLEAR
, self
.OnClear
)
158 wx
.EVT_MENU(self
, ID_SELECTALL
, self
.OnSelectAll
)
159 wx
.EVT_MENU(self
, ID_ABOUT
, self
.OnAbout
)
160 wx
.EVT_MENU(self
, ID_AUTOCOMP_SHOW
, self
.OnAutoCompleteShow
)
161 wx
.EVT_MENU(self
, ID_AUTOCOMP_MAGIC
, self
.OnAutoCompleteMagic
)
162 wx
.EVT_MENU(self
, ID_AUTOCOMP_SINGLE
, self
.OnAutoCompleteSingle
)
163 wx
.EVT_MENU(self
, ID_AUTOCOMP_DOUBLE
, self
.OnAutoCompleteDouble
)
164 wx
.EVT_MENU(self
, ID_CALLTIPS_SHOW
, self
.OnCallTipsShow
)
165 wx
.EVT_MENU(self
, ID_WRAP
, self
.OnWrap
)
167 wx
.EVT_UPDATE_UI(self
, ID_NEW
, self
.OnUpdateMenu
)
168 wx
.EVT_UPDATE_UI(self
, ID_OPEN
, self
.OnUpdateMenu
)
169 wx
.EVT_UPDATE_UI(self
, ID_REVERT
, self
.OnUpdateMenu
)
170 wx
.EVT_UPDATE_UI(self
, ID_CLOSE
, self
.OnUpdateMenu
)
171 wx
.EVT_UPDATE_UI(self
, ID_SAVE
, self
.OnUpdateMenu
)
172 wx
.EVT_UPDATE_UI(self
, ID_SAVEAS
, self
.OnUpdateMenu
)
173 wx
.EVT_UPDATE_UI(self
, ID_NAMESPACE
, self
.OnUpdateMenu
)
174 wx
.EVT_UPDATE_UI(self
, ID_PRINT
, self
.OnUpdateMenu
)
175 wx
.EVT_UPDATE_UI(self
, ID_UNDO
, self
.OnUpdateMenu
)
176 wx
.EVT_UPDATE_UI(self
, ID_REDO
, self
.OnUpdateMenu
)
177 wx
.EVT_UPDATE_UI(self
, ID_CUT
, self
.OnUpdateMenu
)
178 wx
.EVT_UPDATE_UI(self
, ID_COPY
, self
.OnUpdateMenu
)
179 wx
.EVT_UPDATE_UI(self
, ID_COPY_PLUS
, self
.OnUpdateMenu
)
180 wx
.EVT_UPDATE_UI(self
, ID_PASTE
, self
.OnUpdateMenu
)
181 wx
.EVT_UPDATE_UI(self
, ID_PASTE_PLUS
, self
.OnUpdateMenu
)
182 wx
.EVT_UPDATE_UI(self
, ID_CLEAR
, self
.OnUpdateMenu
)
183 wx
.EVT_UPDATE_UI(self
, ID_SELECTALL
, self
.OnUpdateMenu
)
184 wx
.EVT_UPDATE_UI(self
, ID_AUTOCOMP_SHOW
, self
.OnUpdateMenu
)
185 wx
.EVT_UPDATE_UI(self
, ID_AUTOCOMP_MAGIC
, self
.OnUpdateMenu
)
186 wx
.EVT_UPDATE_UI(self
, ID_AUTOCOMP_SINGLE
, self
.OnUpdateMenu
)
187 wx
.EVT_UPDATE_UI(self
, ID_AUTOCOMP_DOUBLE
, self
.OnUpdateMenu
)
188 wx
.EVT_UPDATE_UI(self
, ID_CALLTIPS_SHOW
, self
.OnUpdateMenu
)
189 wx
.EVT_UPDATE_UI(self
, ID_WRAP
, self
.OnUpdateMenu
)
191 def OnFileNew(self
, event
):
194 def OnFileOpen(self
, event
):
197 def OnFileRevert(self
, event
):
200 def OnFileClose(self
, event
):
203 def OnFileSave(self
, event
):
206 def OnFileSaveAs(self
, event
):
209 def OnFileUpdateNamespace(self
, event
):
210 self
.updateNamespace()
212 def OnFilePrint(self
, event
):
215 def OnExit(self
, event
):
218 def OnUndo(self
, event
):
219 win
= wx
.Window_FindFocus()
222 def OnRedo(self
, event
):
223 win
= wx
.Window_FindFocus()
226 def OnCut(self
, event
):
227 win
= wx
.Window_FindFocus()
230 def OnCopy(self
, event
):
231 win
= wx
.Window_FindFocus()
234 def OnCopyPlus(self
, event
):
235 win
= wx
.Window_FindFocus()
236 win
.CopyWithPrompts()
238 def OnPaste(self
, event
):
239 win
= wx
.Window_FindFocus()
242 def OnPastePlus(self
, event
):
243 win
= wx
.Window_FindFocus()
246 def OnClear(self
, event
):
247 win
= wx
.Window_FindFocus()
250 def OnSelectAll(self
, event
):
251 win
= wx
.Window_FindFocus()
254 def OnAbout(self
, event
):
255 """Display an About window."""
257 text
= 'Your message here.'
258 dialog
= wx
.MessageDialog(self
, text
, title
,
259 wx
.OK | wx
.ICON_INFORMATION
)
263 def OnAutoCompleteShow(self
, event
):
264 win
= wx
.Window_FindFocus()
265 win
.autoComplete
= event
.IsChecked()
267 def OnAutoCompleteMagic(self
, event
):
268 win
= wx
.Window_FindFocus()
269 win
.autoCompleteIncludeMagic
= event
.IsChecked()
271 def OnAutoCompleteSingle(self
, event
):
272 win
= wx
.Window_FindFocus()
273 win
.autoCompleteIncludeSingle
= event
.IsChecked()
275 def OnAutoCompleteDouble(self
, event
):
276 win
= wx
.Window_FindFocus()
277 win
.autoCompleteIncludeDouble
= event
.IsChecked()
279 def OnCallTipsShow(self
, event
):
280 win
= wx
.Window_FindFocus()
281 win
.autoCallTip
= event
.IsChecked()
283 def OnWrap(self
, event
):
284 win
= wx
.Window_FindFocus()
285 win
.SetWrapMode(event
.IsChecked())
287 def OnUpdateMenu(self
, event
):
288 """Update menu items based on current status and context."""
289 win
= wx
.Window_FindFocus()
294 event
.Enable(hasattr(self
, 'bufferNew'))
296 event
.Enable(hasattr(self
, 'bufferOpen'))
297 elif id == ID_REVERT
:
298 event
.Enable(hasattr(self
, 'bufferRevert')
299 and self
.hasBuffer())
301 event
.Enable(hasattr(self
, 'bufferClose')
302 and self
.hasBuffer())
304 event
.Enable(hasattr(self
, 'bufferSave')
305 and self
.bufferHasChanged())
306 elif id == ID_SAVEAS
:
307 event
.Enable(hasattr(self
, 'bufferSaveAs')
308 and self
.hasBuffer())
309 elif id == ID_NAMESPACE
:
310 event
.Enable(hasattr(self
, 'updateNamespace')
311 and self
.hasBuffer())
313 event
.Enable(hasattr(self
, 'bufferPrint')
314 and self
.hasBuffer())
316 event
.Enable(win
.CanUndo())
318 event
.Enable(win
.CanRedo())
320 event
.Enable(win
.CanCut())
322 event
.Enable(win
.CanCopy())
323 elif id == ID_COPY_PLUS
:
324 event
.Enable(win
.CanCopy() and hasattr(win
, 'CopyWithPrompts'))
326 event
.Enable(win
.CanPaste())
327 elif id == ID_PASTE_PLUS
:
328 event
.Enable(win
.CanPaste() and hasattr(win
, 'PasteAndRun'))
330 event
.Enable(win
.CanCut())
331 elif id == ID_SELECTALL
:
332 event
.Enable(hasattr(win
, 'SelectAll'))
333 elif id == ID_AUTOCOMP_SHOW
:
334 event
.Check(win
.autoComplete
)
335 elif id == ID_AUTOCOMP_MAGIC
:
336 event
.Check(win
.autoCompleteIncludeMagic
)
337 elif id == ID_AUTOCOMP_SINGLE
:
338 event
.Check(win
.autoCompleteIncludeSingle
)
339 elif id == ID_AUTOCOMP_DOUBLE
:
340 event
.Check(win
.autoCompleteIncludeDouble
)
341 elif id == ID_CALLTIPS_SHOW
:
342 event
.Check(win
.autoCallTip
)
344 event
.Check(win
.GetWrapMode())
347 except AttributeError:
348 # This menu option is not supported in the current context.