#!/usr/bin/env python
#Boa:App:BoaApp
"""
Generated by Boa Constructor Python IDE.
Imports modules from wxPython.
"""

from wxPython.wx import *

import wxFrame3

modules ={'Fmgr10': [0, '', 'Fmgr10.py'],
 'wxFrame3': [1, 'Main frame of Application', 'wxFrame3.py'],
 'wxMiniFrame1': [0, 'Shows contents of file 1', 'wxMiniFrame1.py'],
 'wxMiniFrame2': [0, 'Shows contents of file 2', 'wxMiniFrame2.py'],
 'wxMiniFrame3': [0, 'Shows contents of file 3', 'wxMiniFrame3.py']}

class BoaApp(wxApp):

    """
    Generated by Boa Constructor Python IDE.
    """
    
    def OnInit(self):
        wxInitAllImageHandlers()
        self.main = wxFrame3.create(None)
        # needed when running from Boa under Windows 9X
        self.SetTopWindow(self.main)
        self.main.Show();self.main.Hide();self.main.Show()
        return True

def main():
    application = BoaApp(0)
    application.MainLoop()

if __name__ == '__main__':
    main()