class WXDLLEXPORT wxPreviewControlBar;
class WXDLLEXPORT wxPreviewFrame;
+
+enum wxPrinterError
+{
+ wxPRINTER_NO_ERROR = 0,
+ wxPRINTER_CANCELLED,
+ wxPRINTER_ERROR
+};
+
+
/*
* Represents the printer: manages printing a wxPrintout object
*/
wxPrintDialogData& GetPrintDialogData() const
{ return (wxPrintDialogData&) m_printDialogData; }
bool GetAbort() const { return sm_abortIt; }
+
+ static wxPrinterError GetLastError() { return sm_lastError; }
///////////////////////////////////////////////////////////////////////////
// OVERRIDES
protected:
wxPrintDialogData m_printDialogData;
wxPrintout* m_currentPrintout;
+
+ static wxPrinterError sm_lastError;
+
public:
static wxWindow* sm_abortWindow;
static bool sm_abortIt;