]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/template.py
Some little additions to how wxBufferedDC is wrapped.
[wxWidgets.git] / wxPython / demo / template.py
diff --git a/wxPython/demo/template.py b/wxPython/demo/template.py
new file mode 100644 (file)
index 0000000..4ccfcd4
--- /dev/null
@@ -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 = """<html><body>
+<h2><center>Say something nice here</center></h2>
+
+</body></html>
+"""