]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/templateold.py
PrintFramework fixes
[wxWidgets.git] / wxPython / demo / templateold.py
CommitLineData
3628e088
RD
1
2from wxPython.wx import *
3
4#----------------------------------------------------------------------
5
6class TestPanel(wxPanel):
7 def __init__(self, parent, log):
8 self.log = log
9 wxPanel.__init__(self, parent, -1)
10
11#----------------------------------------------------------------------
12
13def runTest(frame, nb, log):
14 win = TestPanel(nb, log)
15 return win
16
17#----------------------------------------------------------------------
18
19
20
21overview = """<html><body>
22<h2><center>Say something nice here</center></h2>
23
24</body></html>
25"""
26
27
28
29if __name__ == '__main__':
30 import sys,os
31 import run
8eca4fef 32 run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
3628e088 33