X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/687b91d266990129fbbb8c21d92fa4298b458352..b9060f332453f80bc4c3c6aa6d25f322452d4f5e:/include/wx/generic/collpaneg.h?ds=sidebyside diff --git a/include/wx/generic/collpaneg.h b/include/wx/generic/collpaneg.h index c8466c690d..0e2b0f4915 100644 --- a/include/wx/generic/collpaneg.h +++ b/include/wx/generic/collpaneg.h @@ -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;