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