
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2069 fd906abe-77d9-0310-91a1-e0d9ade77398
29 lines
743 B
Python
29 lines
743 B
Python
#!/usr/bin/env python
|
|
#Boa:App:BoaApp
|
|
|
|
# Author : Tim Couper - tim@tizmoi.net
|
|
# Date : 1 August 2004
|
|
# Copyright : Copyright TAC Software Ltd, under Python-like licence.
|
|
# Provided as-is, with no warranty.
|
|
# Notes : Requires watsup,wxPython
|
|
|
|
from wxPython.wx import *
|
|
|
|
import fmShowWindows
|
|
|
|
modules ={'fmShowWindows': [1, 'Main frame of Application', 'fmShowWindows.py']}
|
|
|
|
class BoaApp(wxApp):
|
|
def OnInit(self):
|
|
wxInitAllImageHandlers()
|
|
self.main = fmShowWindows.create(None)
|
|
self.main.Show()
|
|
self.SetTopWindow(self.main)
|
|
return True
|
|
|
|
def main():
|
|
application = BoaApp(0)
|
|
application.MainLoop()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|