X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d6b9496a96223cc5164e5785485d7d622fd9b5e6..5dd26b083956439f0147c134e9365c222fba3726:/include/wx/prntbase.h?ds=sidebyside diff --git a/include/wx/prntbase.h b/include/wx/prntbase.h index 04ad68da24..f323f25e85 100644 --- a/include/wx/prntbase.h +++ b/include/wx/prntbase.h @@ -17,6 +17,9 @@ #endif #include "wx/defs.h" + +#if wxUSE_PRINTING_ARCHITECTURE + #include "wx/event.h" #include "wx/cmndata.h" #include "wx/panel.h" @@ -64,7 +67,6 @@ public: protected: wxPrintDialogData m_printDialogData; wxPrintout* m_currentPrintout; - public: static wxWindow* sm_abortWindow; static bool sm_abortIt; @@ -187,7 +189,6 @@ public: virtual void Initialize(); virtual void CreateCanvas(); virtual void CreateControlBar(); - protected: wxWindow* m_previewCanvas; wxPreviewControlBar* m_controlBar; @@ -240,8 +241,11 @@ public: void OnPrint(wxCommandEvent& event); void OnWindowClose(wxCommandEvent& event); - void OnNext(wxCommandEvent& event); - void OnPrevious(wxCommandEvent& event); + void OnNext(); + void OnPrevious(); + void OnNextButton(wxCommandEvent & WXUNUSED(event)) { OnNext(); } + void OnPreviousButton(wxCommandEvent & WXUNUSED(event)) { OnPrevious(); } + void OnChar(wxKeyEvent &event); void OnZoom(wxCommandEvent& event); void OnPaint(wxPaintEvent& event); @@ -340,6 +344,7 @@ protected: int m_maxPage; bool m_isOk; + bool m_printingPrepared; // Called OnPreparePrinting? private: void Init(wxPrintout *printout, wxPrintout *printoutForPrinting); @@ -368,5 +373,7 @@ private: DECLARE_EVENT_TABLE() }; +#endif // wxUSE_PRINTING_ARCHITECTURE + #endif // _WX_PRNTBASEH__