X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/74b31181b345aaaef0c967cc5707bef72ce0a405..a6e2b3a8316c430a68f91b3c894e856987dd972e:/include/wx/generic/wizard.h diff --git a/include/wx/generic/wizard.h b/include/wx/generic/wizard.h index 987113b877..7c26f62b85 100644 --- a/include/wx/generic/wizard.h +++ b/include/wx/generic/wizard.h @@ -13,7 +13,10 @@ // wxWizard // ---------------------------------------------------------------------------- -class wxWizard : public wxWizardBase +class WXDLLEXPORT wxButton; +class WXDLLEXPORT wxStaticBitmap; + +class WXDLLEXPORT wxWizard : public wxWizardBase { public: // ctor @@ -27,6 +30,7 @@ public: // implement base class pure virtuals virtual bool RunWizard(wxWizardPage *firstPage); virtual wxWizardPage *GetCurrentPage() const; + virtual wxSize GetPageSize() const; // implementation only from now on // ------------------------------- @@ -51,10 +55,12 @@ private: // wizard state wxWizardPage *m_page; // the current page or NULL + wxBitmap m_bitmap; // the default bitmap to show // wizard controls wxButton *m_btnPrev, // the "" or "Finish" button + wxStaticBitmap *m_statbmp; // the control for the bitmap DECLARE_DYNAMIC_CLASS(wxWizard) DECLARE_EVENT_TABLE()