X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c1f8cb1f5cbef0f7699110fd28027948e644c6f..8f93a29f8e50aa9dc6076a900ad6d316fafddcc3:/include/wx/collpane.h diff --git a/include/wx/collpane.h b/include/wx/collpane.h index 002e5a3e21..8ff545d3bc 100644 --- a/include/wx/collpane.h +++ b/include/wx/collpane.h @@ -12,6 +12,11 @@ #ifndef _WX_COLLAPSABLE_PANE_H_BASE_ #define _WX_COLLAPSABLE_PANE_H_BASE_ +#include "wx/defs.h" + + +#if wxUSE_COLLPANE + #include "wx/control.h" @@ -19,22 +24,24 @@ // wxCollapsiblePaneBase: interface for wxCollapsiblePane // ---------------------------------------------------------------------------- -#define wxCP_DEFAULT_STYLE (0) +#define wxCP_DEFAULT_STYLE (wxTAB_TRAVERSAL | wxNO_BORDER) +#define wxCP_NO_TLW_RESIZE (0x0002) -class WXDLLEXPORT wxCollapsiblePaneBase : public wxControl +class WXDLLIMPEXP_CORE wxCollapsiblePaneBase : public wxControl { public: wxCollapsiblePaneBase() {} - virtual void Expand() - { Collapse(false); } - virtual void Collapse(bool collapse = true) = 0; + void Expand() { Collapse(false); } + virtual bool IsCollapsed() const = 0; + bool IsExpanded() const { return !IsCollapsed(); } + virtual wxWindow *GetPane() const = 0; virtual wxString GetLabel() const = 0; - virtual void SetLabel(const wxString &label) = 0; + virtual void SetLabel(const wxString& label) = 0; }; @@ -80,15 +87,18 @@ typedef void (wxEvtHandler::*wxCollapsiblePaneEventFunction)(wxCollapsiblePaneEv (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxCollapsiblePaneEventFunction, &func) #define EVT_COLLAPSIBLEPANE_CHANGED(id, fn) \ - wx__DECLARE_EVT1(wxEVT_COMMAND_COLLPANE_CHANGED, id, wxCollapsiblePaneEventFunction(fn)) + wx__DECLARE_EVT1(wxEVT_COMMAND_COLLPANE_CHANGED, id, wxCollapsiblePaneEventHandler(fn)) -#if defined(__WXGTK24__) +#if defined(__WXGTK24__) && !defined(__WXUNIVERSAL__) #include "wx/gtk/collpane.h" #else #include "wx/generic/collpaneg.h" - #define wxCollapsiblePane wxGenericCollapsiblePane -#endif + // use #define and not a typedef to allow forward declaring the class + #define wxCollapsiblePane wxGenericCollapsiblePane #endif - // _WX_COLLAPSABLE_PANE_H_BASE_ + +#endif // wxUSE_COLLPANE + +#endif // _WX_COLLAPSABLE_PANE_H_BASE_