2003-12-09 01:23:28 +00:00
|
|
|
#
|
|
|
|
# This file is used for the wx.HtmlWindow demo.
|
|
|
|
#
|
1999-09-17 05:55:00 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
import sys
|
1999-09-17 05:55:00 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
import wx
|
|
|
|
import wx.html as html
|
1999-09-17 05:55:00 +00:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
class TestPanel(wx.Panel):
|
|
|
|
def __init__(self, parent, id=-1, size=wx.DefaultSize, bgcolor=None):
|
|
|
|
wx.Panel.__init__(self, parent, id, size=size)
|
1999-09-17 05:55:00 +00:00
|
|
|
|
|
|
|
if bgcolor:
|
|
|
|
self.SetBackgroundColour(bgcolor)
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
wx.StaticText(self, -1, 'Name:', (10, 10))
|
|
|
|
wx.StaticText(self, -1, 'Email:', (10, 40))
|
1999-09-17 05:55:00 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
self.name = wx.TextCtrl(self, -1, '', (50, 10), (100, -1))
|
|
|
|
self.email = wx.TextCtrl(self, -1, '', (50, 40), (100, -1))
|
1999-09-17 05:55:00 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
wx.Button(self, -1, 'Okay', (50, 70))
|
|
|
|
self.Bind(wx.EVT_BUTTON, self.OnButton)
|
1999-09-17 05:55:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def OnButton(self, event):
|
|
|
|
name = self.name.GetValue()
|
|
|
|
email = self.email.GetValue()
|
2003-12-09 01:23:28 +00:00
|
|
|
dlg = wx.MessageDialog(
|
|
|
|
self, 'You entered:\n %s\n %s' % (name, email),
|
|
|
|
'Results', style = wx.OK | wx.ICON_INFORMATION
|
|
|
|
)
|
|
|
|
|
1999-09-17 05:55:00 +00:00
|
|
|
dlg.ShowModal()
|
|
|
|
dlg.Destroy()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
class TestHtmlPanel(wx.Panel):
|
|
|
|
def __init__(self, parent, id=-1, size=wx.DefaultSize):
|
|
|
|
|
1999-09-17 05:55:00 +00:00
|
|
|
import About
|
2003-12-09 01:23:28 +00:00
|
|
|
|
|
|
|
wx.Panel.__init__(self, parent, id, size=size)
|
|
|
|
self.html = html.HtmlWindow(self, -1, (5,5), (400, 350))
|
2003-03-25 06:35:27 +00:00
|
|
|
py_version = sys.version.split()[0]
|
2003-12-09 01:23:28 +00:00
|
|
|
self.html.SetPage(About.MyAboutBox.text % (wx.VERSION_STRING, py_version))
|
2000-10-30 21:08:42 +00:00
|
|
|
ir = self.html.GetInternalRepresentation()
|
|
|
|
self.html.SetSize( (ir.GetWidth()+5, ir.GetHeight()+5) )
|
1999-09-17 05:55:00 +00:00
|
|
|
self.Fit()
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestHtmlPanel(frame)
|
|
|
|
return win
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
2004-03-05 00:06:33 +00:00
|
|
|
run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
|
1999-09-17 05:55:00 +00:00
|
|
|
|