X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/06cf7c08f29299236226a765ad3be013933b5da4..d3bfec747ddf7b27e6f41f0117cd5cd6755fe021:/wxPython/demo/template.py diff --git a/wxPython/demo/template.py b/wxPython/demo/template.py new file mode 100644 index 0000000000..4ccfcd4c4b --- /dev/null +++ b/wxPython/demo/template.py @@ -0,0 +1,25 @@ + +from wxPython.wx import * + +#---------------------------------------------------------------------- + +class TestPanel(wxPanel): + def __init__(self, parent, log): + self.log = log + wxPanel.__init__(self, parent, -1) + +#---------------------------------------------------------------------- + +def runTest(frame, nb, log): + win = TestPanel(nb, log) + return win + +#---------------------------------------------------------------------- + + + +overview = """ +

Say something nice here

+ + +"""