X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/687b91d266990129fbbb8c21d92fa4298b458352..3fd8c9885425ab527572a74d16badc913dfba53c:/include/wx/generic/collpaneg.h diff --git a/include/wx/generic/collpaneg.h b/include/wx/generic/collpaneg.h index c8466c690d..daaea636fe 100644 --- a/include/wx/generic/collpaneg.h +++ b/include/wx/generic/collpaneg.h @@ -19,14 +19,14 @@ class WXDLLEXPORT wxButton; class WXDLLEXPORT wxStaticLine; // class name -extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxGenericCollapsiblePaneNameStr[]; +extern WXDLLIMPEXP_DATA_CORE(const wxChar) wxGenericCollapsiblePaneNameStr[]; // ---------------------------------------------------------------------------- // wxGenericCollapsiblePane // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_ADV wxGenericCollapsiblePane : public wxCollapsiblePaneBase +class WXDLLIMPEXP_CORE wxGenericCollapsiblePane : public wxCollapsiblePaneBase { public: wxGenericCollapsiblePane() { Init(); } @@ -48,10 +48,13 @@ public: void Init() { m_pButton = NULL; - m_pStatLine = NULL; m_pPane = NULL; + m_pStaticLine = NULL; + m_sz = NULL; } + ~wxGenericCollapsiblePane(); + bool Create(wxWindow *parent, wxWindowID winid, const wxString& label, @@ -80,17 +83,16 @@ public: protected: // overridden methods virtual wxSize DoGetBestSize() const; - - // internal helpers - void LayoutChildren(); + bool Layout(); wxString GetBtnLabel() const; - + int GetBorder() const; // child controls wxButton *m_pButton; - wxStaticLine *m_pStatLine; + wxStaticLine *m_pStaticLine; wxWindow *m_pPane; + wxSizer *m_sz; // the button label without ">>" or "<<" wxString m_strLabel;