X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e4a197e4c60e461b8068b0619692ea083e30b8b..258836fa259076b4bda6088fe653218645b2e26d:/wxPython/demo/wxPrintDialog.py diff --git a/wxPython/demo/wxPrintDialog.py b/wxPython/demo/wxPrintDialog.py index 183cbe801c..b70e484dd5 100644 --- a/wxPython/demo/wxPrintDialog.py +++ b/wxPython/demo/wxPrintDialog.py @@ -5,12 +5,18 @@ from wxPython.wx import * def runTest(frame, nb, log): data = wxPrintDialogData() + + data.EnableSelection(True) data.EnablePrintToFile(True) data.EnablePageNumbers(True) - data.EnableSelection(True) + data.SetMinPage(1) + data.SetMaxPage(5) + data.SetAllPages(True) + dlg = wxPrintDialog(frame, data) if dlg.ShowModal() == wxID_OK: - log.WriteText('\n') + data = dlg.GetPrintDialogData() + log.WriteText('GetAllPages: %d\n' % data.GetAllPages()) dlg.Destroy() #--------------------------------------------------------------------------- @@ -18,14 +24,12 @@ def runTest(frame, nb, log): +overview = """\ +""" - - - - - - -overview = """\ -""" +if __name__ == '__main__': + import sys,os + import run + run.main(['', os.path.basename(sys.argv[0])])