]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/wizard.h
Finally deprecated callbacks.
[wxWidgets.git] / include / wx / generic / wizard.h
index bf305f6b04b5086188143e2fa7f2ea9fb8b3d188..7c26f62b85a49e5e3ab71b97a055ca1a8c0adbab 100644 (file)
 // wxWizard
 // ----------------------------------------------------------------------------
 
-class wxWizard : public wxWizardBase
+class WXDLLEXPORT wxButton;
+class WXDLLEXPORT wxStaticBitmap;
+
+class WXDLLEXPORT wxWizard : public wxWizardBase
 {
 public:
     // ctor
@@ -52,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 "<Back" button
                 *m_btnNext;     // the "Next>" or "Finish" button
+    wxStaticBitmap *m_statbmp;  // the control for the bitmap
 
     DECLARE_DYNAMIC_CLASS(wxWizard)
     DECLARE_EVENT_TABLE()