.. include:: headings.inc .. _CollapsiblePane: ========================================================================================================================================== |phoenix_title| **CollapsiblePane** ========================================================================================================================================== A collapsible pane is a container with an embedded button-like control which can be used by the user to collapse or expand the pane's contents. Once constructed you should use the :meth:`~CollapsiblePane.GetPane` function to access the pane and add your controls inside it (i.e. use the returned pointer from :meth:`~CollapsiblePane.GetPane` as parent for the controls which must go in the pane, **not** the :ref:`CollapsiblePane` itself!). Note that because of its nature of control which can dynamically (and drastically) change its size at run-time under user-input, when putting :ref:`CollapsiblePane` inside a :ref:`Sizer` you should be careful to add it with a proportion value of zero; this is because otherwise all other windows with non-null proportion values will automatically resize each time the user expands or collapse the pane window usually resulting in a weird, flickering effect. Usage sample: :: collpane = wx.CollapsiblePane(self, wx.ID_ANY, "Details:") # add the pane with a zero proportion value to the 'sz' sizer which contains it sz.Add(collpane, 0, wx.GROW|.ALL, 5) # now add a test label in the collapsible pane using a sizer to layout it: win = collpane.GetPane() paneSz = wx.BoxSizer(wx.VERTICAL) paneSz.Add(wx.StaticText(win, wx.ID_ANY, "test!"), 1, wx.GROW|.ALL, 2) win.SetSizer(paneSz) paneSz.SetSizeHints(win) It is only available if ``USE_COLLPANE`` is set to 1 (the default). .. _CollapsiblePane-styles: |styles| Window Styles ================================ This class supports the following styles: - ``CP_DEFAULT_STYLE``: The default style. It includes ``TAB_TRAVERSAL`` and ``BORDER_NONE``. - ``CP_NO_TLW_RESIZE``: By default :ref:`CollapsiblePane` resizes the top level window containing it when its own size changes. This allows to easily implement dialogs containing an optionally shown part, for example, and so is the default behaviour but can be inconvenient in some specific cases -- use this flag to disable this automatic parent resizing then. .. _CollapsiblePane-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive one of the :ref:`CollapsiblePaneEvent`:ref:`NavigationKeyEvent` parameters. - EVT_COLLAPSIBLEPANE_CHANGED: The user expanded or collapsed the collapsible pane. - EVT_NAVIGATION_KEY: Process a navigation key event. .. seealso:: :ref:`Panel`, :ref:`CollapsiblePaneEvent` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **CollapsiblePane** .. raw:: html

Inheritance diagram of CollapsiblePane

| |appearance| Control Appearance =============================== | .. figure:: _static/images/widgets/fullsize/wxmsw/collapsiblepane.png :alt: wxMSW :figclass: floatleft **wxMSW** .. figure:: _static/images/widgets/fullsize/wxmac/collapsiblepane.png :alt: wxMAC :figclass: floatright **wxMAC** .. figure:: _static/images/widgets/fullsize/wxgtk/collapsiblepane.png :alt: wxGTK :figclass: floatcenter **wxGTK** | |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~CollapsiblePane.__init__` Default constructor. :meth:`~CollapsiblePane.Collapse` Collapses or expands the pane window. :meth:`~CollapsiblePane.Create` :meth:`~CollapsiblePane.Expand` Same as calling Collapse(false). :meth:`~CollapsiblePane.GetPane` Returns a pointer to the pane window. :meth:`~CollapsiblePane.IsCollapsed` Returns ``True`` if the pane window is currently hidden. :meth:`~CollapsiblePane.IsExpanded` Returns ``True`` if the pane window is currently shown. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~CollapsiblePane.Pane` See :meth:`~CollapsiblePane.GetPane` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: CollapsiblePane(Control) A collapsible pane is a container with an embedded button-like control which can be used by the user to collapse or expand the pane's contents. **Possible constructors**:: CollapsiblePane() CollapsiblePane(parent, id=ID_ANY, label='', pos=DefaultPosition, size=DefaultSize, style=CP_DEFAULT_STYLE, validator=DefaultValidator, name=CollapsiblePaneNameStr) .. method:: __init__(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **__init__** `(self)` Default constructor. **~~~** **__init__** `(self, parent, id=ID_ANY, label='', pos=DefaultPosition, size=DefaultSize, style=CP_DEFAULT_STYLE, validator=DefaultValidator, name=CollapsiblePaneNameStr)` Initializes the object and calls :meth:`Create` with all the parameters. :param `parent`: :type `parent`: Window :param `id`: :type `id`: int :param `label`: :type `label`: string :param `pos`: :type `pos`: Point :param `size`: :type `size`: Size :param `style`: :type `style`: long :param `validator`: :type `validator`: Validator :param `name`: :type `name`: string **~~~** .. method:: Collapse(self, collapse=True) Collapses or expands the pane window. :param `collapse`: :type `collapse`: bool .. method:: Create(self, parent, id=ID_ANY, label='', pos=DefaultPosition, size=DefaultSize, style=CP_DEFAULT_STYLE, validator=DefaultValidator, name=CollapsiblePaneNameStr) :param `parent`: Parent window, must not be not ``None``. :type `parent`: Window :param `id`: The identifier for the control. :type `id`: int :param `label`: The initial label shown in the button which allows the user to expand or collapse the pane window. :type `label`: string :param `pos`: Initial position. :type `pos`: Point :param `size`: Initial size. :type `size`: Size :param `style`: The window style, see ``CP_`` flags. :type `style`: long :param `validator`: Validator which can be used for additional date checks. :type `validator`: Validator :param `name`: Control name. :type `name`: string :rtype: `bool` :returns: ``True`` if the control was successfully created or ``False`` if creation failed. .. method:: Expand(self) Same as calling Collapse(false). .. method:: GetPane(self) Returns a pointer to the pane window. Add controls to the returned :ref:`Window` to make them collapsible. :rtype: :ref:`Window` .. method:: IsCollapsed(self) Returns ``True`` if the pane window is currently hidden. :rtype: `bool` .. method:: IsExpanded(self) Returns ``True`` if the pane window is currently shown. :rtype: `bool` .. attribute:: Pane See :meth:`~CollapsiblePane.GetPane`