The FoldPanelBar
is a class which can maintain a list of
collapsible panels. Once a panel is collapsed, only it’s caption
bar is visible to the user. This will provide more space for the
other panels, or allow the user to close panels which are not used
often to get the most out of the work area.
This control is easy to use. Simply create it as a child for a
panel or sash window, and populate panels with
FoldPanelBar.AddFoldPanel()
. Then use the
FoldPanelBar.AddFoldPanelWindow()
to add
wx.Window
derived controls to the current fold panel. Use
FoldPanelBar.AddFoldPanelSeparator()
to put separators between the groups of
controls that need a visual separator to group them
together. After all is constructed, the user can fold the panels
by double clicking on the bar or single click on the arrow, which
will indicate the collapsed or expanded state.
Default class constructor. |
|
Adds a fold panel to the list of panels. |
|
Adds a separator line to the current fold panel. |
|
Adds a |
|
Sets the style of the caption bar ( |
|
Sets the style of all the caption bars of the fold panel. |
|
Collapses the given fold panel reference, and updates the foldpanel bar. |
|
Expands the given fold panel reference, and updates the foldpanel bar. |
|
Returns the currently used caption style for the fold panel. |
|
Returns the number of panels in the |
|
Returns the panel associated with the index item. |
|
Returns the length of the panels that are expanded and |
|
Returns whether the |
|
Handles the |
|
Handles the |
|
Resizes the fold panels so they match the width. |
|
Refreshes all the panels from given one down to last one. |
|
Repositions all the collapsed panels to the bottom. |
FoldPanelBar
(wx.Panel)¶The FoldPanelBar
is a class which can maintain a list of
collapsible panels. Once a panel is collapsed, only it’s caption
bar is visible to the user. This will provide more space for the
other panels, or allow the user to close panels which are not used
often to get the most out of the work area.
This control is easy to use. Simply create it as a child for a
panel or sash window, and populate panels with
FoldPanelBar.AddFoldPanel()
. Then use the
FoldPanelBar.AddFoldPanelWindow()
to add
wx.Window
derived controls to the current fold panel. Use
FoldPanelBar.AddFoldPanelSeparator()
to put separators between the groups of
controls that need a visual separator to group them
together. After all is constructed, the user can fold the panels
by double clicking on the bar or single click on the arrow, which
will indicate the collapsed or expanded state.
__init__
(self, parent, id=-1, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.TAB_TRAVERSAL|wx.NO_BORDER, agwStyle=0)¶Default class constructor.
parent – the FoldPanelBar
parent window;
id – an identifier for the control: a value of -1 is taken to mean a default;
pos – the control position. A value of (-1, -1) indicates a default position, chosen by either the windowing system or wxPython, depending on platform;
size – the control size. A value of (-1, -1) indicates a default size, chosen by either the windowing system or wxPython, depending on platform;
style – the underlying Panel
window style;
agwStyle –
the AGW-specific FoldPanelBar
window style. It can be one of the
following bits:
Window Styles |
Hex Value |
Description |
---|---|---|
|
0x1 |
Single fold forces other panels to close when they are open, and only opens the current panel. This will allow the open panel to gain the full size left in the client area. |
|
0x2 |
All panels are stacked to the bottom. When they are expanded again they show up at the top. |
|
0x4 |
|
|
0x4 |
|
|
0x8 |
|
AddFoldPanel
(self, caption="", collapsed=False, foldIcons=None, cbstyle=None)¶Adds a fold panel to the list of panels.
caption – the caption to be displayed in the associated CaptionBar
;
collapsed – if set to True
, the panel is collapsed initially;
foldIcons – an instance of wx.ImageList
containing the icons to display
next to the caption text;
cbstyle – an instance of CaptionBarStyle
.
Note
The FoldPanel item which is returned, can be used as a reference to perform actions upon the fold panel like collapsing it, expanding it, or deleting it from the list. Use this foldpanel to add windows to it.
See also
AddFoldPanelWindow
and AddFoldPanelSeparator
to see how to add
items derived from wx.Window
to the panels.
AddFoldPanelSeparator
(self, panel, colour=wx.BLACK, spacing=FPB_DEFAULT_SPACING, leftSpacing=FPB_DEFAULT_LEFTLINESPACING, rightSpacing=FPB_DEFAULT_RIGHTLINESPACING)¶Adds a separator line to the current fold panel.
The separator is a simple line which is drawn and is no real component. It can be used to separate groups of controls which belong to each other.
colour – the separator colour, an instance of wx.Colour
;
spacing – the separator to be added can be slightly indented from
left and right so it is more visibly placed in the fold panel. Use spacing > 0
to give the control an y offset from the previous wx.Window
added;
leftSpacing – give the added separator a slight indent from the left;
rightSpacing – give the added separator a slight indent from the right.
AddFoldPanelWindow
(self, panel, window, flags=FPB_ALIGN_WIDTH, spacing=FPB_DEFAULT_SPACING, leftSpacing=FPB_DEFAULT_LEFTLINESPACING, rightSpacing=FPB_DEFAULT_RIGHTLINESPACING)¶Adds a wx.Window
derived instance to the referenced fold panel.
panel – an instance of FoldPanelItem
;
window – the window we wish to add to the fold panel, an instance
of wx.Window
;
flags – can be one of the following bits:
Align Flag |
Value |
Description |
---|---|---|
|
1 |
The |
|
0 |
Aligns left instead of fitting the width of the child window to be added. Use either this one or |
spacing – the wx.Window
to be added can be slightly indented from
left and right so it is more visibly placed in the fold panel. Use spacing > 0
to give the control an y offset from the previous wx.Window
added;
leftSpacing – give the wx.Window
added a slight indent from the left;
rightSpacing – give the wx.Window
added a slight indent from the right;
Note
Make the window be a child of the fold panel!
The following example adds a FoldPanel to the FoldPanelBar
and
adds two wx.Window
derived controls to the FoldPanel:
# Create the FoldPanelBar
m_pnl = FoldPanelBar(self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, agwStyle=0x2)
# Add a foldpanel to the control. "Test me" is the caption and it is
# initially not collapsed.
item = m_pnl.AddFoldPanel("Test me", False)
# Now add a button to the fold panel. Mind that the button should be
# made child of the FoldPanel and not of the main form.
m_pnl.AddFoldPanelWindow(item, wx.Button(item, ID_COLLAPSEME, "Collapse Me"))
# Add a separator between the two controls. This is purely a visual
# line that can have a certain colour and also the indents and width
# aligning like a control.
m_pnl.AddFoldPanelSeparator(item)
# Now add a text ctrl. Also very easy. Align this on width so that
# when the control gets wider the text control also sizes along.
m_pnl.AddFoldPanelWindow(item, wx.TextCtrl(item, wx.ID_ANY, "Comment"), FPB_ALIGN_WIDTH, FPB_DEFAULT_SPACING, 20)
ApplyCaptionStyle
(self, foldpanel, cbstyle)¶Sets the style of the caption bar (CaptionBar
) of the fold panel.
foldpanel – an instance of FoldPanelItem
;
cbstyle – an instance of CaptionBarStyle
.
Note
The changes are applied immediately. All styles not set in the
CaptionBarStyle
class are not applied. Use the CaptionBar
reference
to indicate what captionbar you want to apply the style to. To apply one
style to all CaptionBar
items, use ApplyCaptionStyleAll
.
ApplyCaptionStyleAll
(self, cbstyle)¶Sets the style of all the caption bars of the fold panel. The changes are applied immediately.
cbstyle – an instance of CaptionBarStyle
.
Collapse
(self, foldpanel)¶Collapses the given fold panel reference, and updates the foldpanel bar.
foldpanel – an instance of FoldPanelItem
.
Note
With the FPB_COLLAPSE_TO_BOTTOM
style set, all collapsed captions
are put at the bottom of the control. In the normal mode, they stay where
they are.
Expand
(self, foldpanel)¶Expands the given fold panel reference, and updates the foldpanel bar.
foldpanel – an instance of FoldPanelItem
.
Note
With the FPB_COLLAPSE_TO_BOTTOM
style set, they will be removed
from the bottom and the order where the panel originally was placed is
restored.
GetCaptionStyle
(self, foldpanel)¶Returns the currently used caption style for the fold panel.
It is returned as a CaptionBarStyle
class. After modifying it, it can
be set again.
foldpanel – an instance of FoldPanelItem
.
GetCount
(self)¶Returns the number of panels in the FoldPanelBar
.
GetFoldPanel
(self, item)¶Returns the panel associated with the index item.
item – an integer representing the FoldPanelItem
in the list of
panels in this FoldPanelBar
.
GetPanelsLength
(self, collapsed, expanded)¶Returns the length of the panels that are expanded and collapsed.
collapsed – the current value of the collapsed panels;
expanded – the current value of the expanded panels.
Note
This is useful to determine quickly what size is used to display, and what is left at the bottom (right) to align the collapsed panels.
IsVertical
(self)¶Returns whether the CaptionBar
has default orientation or not.
Default is vertical.
OnPressCaption
(self, event)¶Handles the wx.EVT_CAPTIONBAR
event for CaptionBar
.
event – a CaptionBarEvent
event to be processed.
OnSizePanel
(self, event)¶Handles the wx.EVT_SIZE
event for FoldPanelBar
.
event – a wx.SizeEvent
event to be processed.
RedisplayFoldPanelItems
(self)¶Resizes the fold panels so they match the width.
RefreshPanelsFrom
(self, item)¶Refreshes all the panels from given one down to last one.
item – the first FoldPanelItem
to be refreshed.
RepositionCollapsedToBottom
(self)¶Repositions all the collapsed panels to the bottom.
When it is not possible to align them to the bottom, stick them behind the visible panels.