]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/wxPageSetupDialog.py
merged 2.2 branch
[wxWidgets.git] / utils / wxPython / demo / wxPageSetupDialog.py
diff --git a/utils/wxPython/demo/wxPageSetupDialog.py b/utils/wxPython/demo/wxPageSetupDialog.py
deleted file mode 100644 (file)
index 61ae292..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-
-from wxPython.wx import *
-
-#---------------------------------------------------------------------------
-
-def runTest(frame, nb, log):
-    data = wxPageSetupDialogData()
-    data.SetMarginTopLeft(wxPoint(50,50))
-    data.SetMarginBottomRight(wxPoint(50,50))
-    dlg = wxPageSetupDialog(frame, data)
-    if dlg.ShowModal() == wxID_OK:
-        data = dlg.GetPageSetupData()
-        tl = data.GetMarginTopLeft()
-        br = data.GetMarginBottomRight()
-        log.WriteText('Margins are: %s %s\n' % (str(tl), str(br)))
-    dlg.Destroy()
-
-#---------------------------------------------------------------------------
-
-
-
-
-
-
-
-
-
-
-
-
-
-overview = """\
-"""