]>
Commit | Line | Data |
---|---|---|
1fded56b RD |
1 | """PyAlaModeTest is a programmer's editor.""" |
2 | ||
3 | __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>" | |
4 | __cvsid__ = "$Id$" | |
5 | __revision__ = "$Revision$"[11:-2] | |
6 | ||
7 | import wx | |
d40bbd4d | 8 | from wx import py |
1fded56b RD |
9 | |
10 | import os | |
11 | import sys | |
12 | ||
1fded56b RD |
13 | class App(wx.App): |
14 | """PyAlaModeTest standalone application.""" | |
15 | ||
16 | def __init__(self, filename=None): | |
17 | self.filename = filename | |
18 | wx.App.__init__(self, redirect=False) | |
19 | ||
20 | def OnInit(self): | |
21 | wx.InitAllImageHandlers() | |
d40bbd4d | 22 | self.frame = py.editor.EditorShellNotebookFrame(filename=self.filename) |
1fded56b RD |
23 | self.frame.Show() |
24 | self.SetTopWindow(self.frame) | |
25 | return True | |
26 | ||
27 | def main(filename=None): | |
28 | app = App(filename) | |
29 | app.MainLoop() | |
30 | ||
31 | if __name__ == '__main__': | |
32 | filename = None | |
33 | if len(sys.argv) > 1: | |
34 | filename = os.path.realpath(sys.argv[1]) | |
35 | main(filename) |