wx.Printer¶
This class represents the Windows or PostScript printer, and is the vehicle through which printing may be launched by an application.
Printing can also be achieved through using of lower functions and classes, but this and associated classes provide a more convenient and general method of printing.
Class Hierarchy¶
Methods Summary¶
Constructor. |
|
Creates the default printing abort window, with a cancel button. |
|
Returns |
|
Return last error. |
|
Returns the print data associated with the printer object. |
|
Starts the printing process. |
|
Invokes the print dialog. |
|
Default error-reporting function. |
|
Invokes the print setup dialog. |
Properties Summary¶
See |
|
Class API¶
- class wx.Printer(Object)¶
Possible constructors:
Printer(data=None) -> None
This class represents the Windows or PostScript printer, and is the vehicle through which printing may be launched by an application.
Methods¶
- __init__(self, data=None)¶
Constructor.
Pass an optional pointer to a block of print dialog data, which will be copied to the printer object’s local data.
- Parameters:
data (wx.PrintDialogData)
- Return type:
None
See also
- CreateAbortWindow(self, parent, printout)¶
Creates the default printing abort window, with a cancel button.
- Parameters:
parent (wx.Window)
printout (wx.Printout)
- Return type:
- GetAbort(self)¶
Returns
True
if the user has aborted the print job.- Return type:
bool
- static GetLastError()¶
Return last error.
Valid after calling
Print
, wx.PrintDialog orwx.PrintPreview.Print
.These functions set last error to
PRINTER_NO_ERROR
if no error happened.Returned value is one of the following:
wx.PRINTER_NO_ERROR
No error happened.
wx.PRINTER_CANCELLED
The user cancelled printing.
wx.PRINTER_ERROR
There was an error during printing.
- Return type:
- GetPrintDialogData(self)¶
Returns the print data associated with the printer object.
- Return type:
- Print(self, parent, printout, prompt=True)¶
Starts the printing process.
Provide a parent window, a user-defined wx.Printout object which controls the printing of a document, and whether the print dialog should be invoked first.
Print
could returnFalse
if there was a problem initializing the printer device context (current printer not set, for example) or the user cancelled printing. CallGetLastError
to get detailed information about the kind of the error.- Parameters:
parent (wx.Window)
printout (wx.Printout)
prompt (bool)
- Return type:
bool
- PrintDialog(self, parent)¶
Invokes the print dialog.
If successful (the user did not press Cancel and no error occurred), a suitable device context will be returned; otherwise
None
is returned; callGetLastError
to get detailed information about the kind of the error.Note
The application must delete this device context to avoid a memory leak.
- ReportError(self, parent, printout, message)¶
Default error-reporting function.
- Parameters:
parent (wx.Window)
printout (wx.Printout)
message (string)
- Return type:
None
- Setup(self, parent)¶
Invokes the print setup dialog.
- Parameters:
parent (wx.Window)
- Return type:
bool
Deprecated
The setup dialog is obsolete, though retained for backward compatibility.
Properties¶
- PrintDialogData¶