]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/collpaneg.h
SetTextColour is gone
[wxWidgets.git] / include / wx / generic / collpaneg.h
index b58bf5a395228fa485737d1fe57e7ba3d76e172e..c8466c690d58d2481042cc336ac6effe0d9a2dce 100644 (file)
 #ifndef _WX_COLLAPSABLE_PANE_H_GENERIC_
 #define _WX_COLLAPSABLE_PANE_H_GENERIC_
 
+#if wxUSE_BUTTON && wxUSE_STATLINE
+
 // forward declared
 class WXDLLEXPORT wxButton;
 class WXDLLEXPORT wxStaticLine;
 
 // class name
-extern WXDLLEXPORT_DATA(const wxChar) wxGenericCollapsiblePaneNameStr[];
+extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxGenericCollapsiblePaneNameStr[];
 
 
 // ----------------------------------------------------------------------------
 // wxGenericCollapsiblePane
 // ----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxGenericCollapsiblePane : public wxCollapsiblePaneBase
+class WXDLLIMPEXP_ADV wxGenericCollapsiblePane : public wxCollapsiblePaneBase
 {
 public:
     wxGenericCollapsiblePane() { Init(); }
@@ -71,7 +73,11 @@ public:
     virtual wxString GetLabel() const
         { return m_strLabel; }
 
-protected: 
+
+    // implementation only, don't use
+    void OnStateChange(const wxSize& sizeNew);
+
+protected:
     // overridden methods
     virtual wxSize DoGetBestSize() const;
 
@@ -98,6 +104,7 @@ private:
     DECLARE_EVENT_TABLE()
 };
 
+#endif // wxUSE_BUTTON && wxUSE_STATLINE
 
-#endif // _WX_COLLAPSABLE_PANE_H_GENERIC_
 
+#endif // _WX_COLLAPSABLE_PANE_H_GENERIC_