]> git.saurik.com Git - wxWidgets.git/blame - wxPython/wx/py/PyAlaModeTest.py
Removed __future__ import that has been in the "past" for several
[wxWidgets.git] / wxPython / wx / py / PyAlaModeTest.py
CommitLineData
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
7import wx
d40bbd4d 8from wx import py
1fded56b
RD
9
10import os
11import sys
12
1fded56b
RD
13class 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
27def main(filename=None):
28 app = App(filename)
29 app.MainLoop()
30
31if __name__ == '__main__':
32 filename = None
33 if len(sys.argv) > 1:
34 filename = os.path.realpath(sys.argv[1])
35 main(filename)