/////////////////////////////////////////////////////////////////////////////
// Name: collpane.h
-// Purpose: documentation for wxCollapsiblePaneEvent class
+// Purpose: interface of wxCollapsiblePaneEvent
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxcore}
@category{FIXME}
- @seealso
- wxCollapsiblePane
+ @see wxCollapsiblePane
*/
class wxCollapsiblePaneEvent : public wxCommandEvent
{
/**
Returns @true if the pane has been collapsed.
*/
- bool GetCollapsed();
+ bool GetCollapsed() const;
/**
Sets this as a collapsed pane event (if @a collapsed is @true) or as an
};
+
/**
@class wxCollapsiblePane
@wxheader{collpane.h}
@category{ctrl}
@appearance{collapsiblepane.png}
- @seealso
- wxPanel, wxCollapsiblePaneEvent
+ @see wxPanel, wxCollapsiblePaneEvent
*/
class wxCollapsiblePane : public wxControl
{
Validator which can be used for additional date checks.
@param name
Control name.
-
+
@returns @true if the control was successfully created or @false if
creation failed.
*/
Returns a pointer to the pane window. Add controls to the returned wxWindow
to make them collapsible.
*/
- wxWindow* GetPane();
+ wxWindow* GetPane() const;
/**
Returns @true if the pane window is currently hidden.
*/
- bool IsCollapsed();
+ bool IsCollapsed() const;
/**
Returns @true if the pane window is currently shown.
*/
- bool IsExpanded();
+ bool IsExpanded() const;
};
+