X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d427503c3696486ef84cd0e5081884ccd8d6b434..412e4edfb1174c68fab706abdf735b1ca6fe56f2:/include/wx/prntbase.h diff --git a/include/wx/prntbase.h b/include/wx/prntbase.h index 98e4ce8f0a..f323f25e85 100644 --- a/include/wx/prntbase.h +++ b/include/wx/prntbase.h @@ -189,7 +189,6 @@ public: virtual void Initialize(); virtual void CreateCanvas(); virtual void CreateControlBar(); - protected: wxWindow* m_previewCanvas; wxPreviewControlBar* m_controlBar; @@ -242,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); @@ -342,6 +344,7 @@ protected: int m_maxPage; bool m_isOk; + bool m_printingPrepared; // Called OnPreparePrinting? private: void Init(wxPrintout *printout, wxPrintout *printoutForPrinting);