30 <body bgcolor="#eeeeee"> 31 <center><table bgcolor="#ffffff" width="100%%" cellspacing="0" 32 cellpadding="0" border="1"> 36 Running on wxPython %s<br> 41 <p><b>RTCLink</b> is a RTComponent based system design tool that 42 component connection, assembly, etc on GUI.</p> 44 <p><b>RTCLink</b> is brought to you by <br> 45 <b>Task-Intelligence Research Group,</b><br> 46 <b>Intelligent System Research Institute,</b><br> 47 <b>National Institute of Advanced Industrial Science and Techonology (AIST) Japan,</b><br> 48 Copyright (c) 2004.</p> 51 <!--font size="-1">Please see <i>license.txt</i> for licensing information.</font--> 54 <p><wxp module="wx" class="Button"> 55 <param name="label" value="Okay"> 56 <param name="id" value="ID_OK"> 63 wx.Dialog.__init__(self, parent, -1,
'About the wxPython demo',)
64 html = wx.html.HtmlWindow(self, -1, size=(420, -1))
65 py_version = sys.version.split()[0]
66 html.SetPage(self.
text % (
"0.1", wx.VERSION_STRING))
67 btn = html.FindWindowById(wx.ID_OK)
69 ir = html.GetInternalRepresentation()
70 html.SetSize( (ir.GetWidth()+25, ir.GetHeight()+25) )
71 self.SetClientSize(html.GetSize())
72 self.CentreOnParent(wx.BOTH)
78 if __name__ ==
'__main__':
79 app = wx.PySimpleApp()
def __init__(self, parent)