Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 from wxPython.wx import *
00020 import RtmFrame
00021 import rtimages
00022 import wx
00023
00024
00025 class MyApp(wx.App):
00026 def OnInit(self):
00027 wx.InitAllImageHandlers()
00028 frame = RtmFrame.RtdFrame(NULL, -1, "RTCLink")
00029 frame.Show(true)
00030 self.SetTopWindow(frame)
00031 return true
00032
00033
00034 app = MyApp(0)
00035 app.MainLoop()
00036
00037