1999-04-30 03:29:54 +00:00
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
import wx
|
1999-04-30 03:29:54 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
2003-12-09 01:23:28 +00:00
|
|
|
data = wx.PrintDialogData()
|
2003-07-02 23:13:10 +00:00
|
|
|
|
|
|
|
data.EnableSelection(True)
|
2003-03-25 06:35:27 +00:00
|
|
|
data.EnablePrintToFile(True)
|
|
|
|
data.EnablePageNumbers(True)
|
2003-07-02 23:13:10 +00:00
|
|
|
data.SetMinPage(1)
|
|
|
|
data.SetMaxPage(5)
|
|
|
|
data.SetAllPages(True)
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
dlg = wx.PrintDialog(frame, data)
|
|
|
|
|
|
|
|
if dlg.ShowModal() == wx.ID_OK:
|
2003-07-02 23:13:10 +00:00
|
|
|
data = dlg.GetPrintDialogData()
|
|
|
|
log.WriteText('GetAllPages: %d\n' % data.GetAllPages())
|
2003-12-09 01:23:28 +00:00
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
dlg.Destroy()
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
overview = """\
|
|
|
|
This class represents the print and print setup common dialogs. You may obtain
|
2004-01-13 03:17:17 +00:00
|
|
|
a wx.PrinterDC device context from a successfully dismissed print dialog.
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2004-01-13 03:17:17 +00:00
|
|
|
User information is stored in a wx.PrintDialogData object that is passed to the
|
2003-12-09 01:23:28 +00:00
|
|
|
dialog at creation time, and it is filled in by the user. As with other dialogs,
|
|
|
|
do not use this data once the dialog is dismissed, and do not destroy the dialog
|
|
|
|
until you have everything you need from it.
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2003-07-02 23:13:10 +00:00
|
|
|
"""
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
|
2003-07-02 23:13:10 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
2004-03-05 00:06:33 +00:00
|
|
|
run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
|