]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/collpane.h
remove wxWINT_T_IS_TYPEDEF as it seems wint_t is always a typedef (although it can...
[wxWidgets.git] / include / wx / gtk / collpane.h
index 76dc4bd2f44b37a0a937e0bb771342e548ba1da3..563ad8f3df4739f3efa34b8305d91ba124a4478f 100644 (file)
@@ -51,25 +51,22 @@ public:
                 const wxValidator& val = wxDefaultValidator,
                 const wxString& name = wxCollapsiblePaneNameStr);
 
-public:     // public API
-
-    wxSize DoGetBestSize() const;
     void Collapse(bool collapse = true);
     bool IsCollapsed() const;
     void SetLabel(const wxString &str);
 
-    void OnSize(wxSizeEvent&);
+protected:
+    virtual wxSize DoGetBestSize() const;
 
 public:     // used by GTK callbacks
-
     bool m_bIgnoreNextChange;
     wxSize m_szCollapsed;
 
 private:
+    void OnSize(wxSizeEvent&);
+
     DECLARE_DYNAMIC_CLASS(wxCollapsiblePane)
     DECLARE_EVENT_TABLE()
 };
 
-
-#endif
-    // _WX_COLLAPSABLE_PANEL_H_GTK_
+#endif // _WX_COLLAPSABLE_PANEL_H_GTK_