Top-level control in a ribbon user interface.
wx.lib.agw.ribbon.control.RibbonControl
Default constructor. |
|
Adds a page to the |
|
Common initialization procedures. |
|
Dismiss the expanded panel of the currently active page. |
|
Does the initial painting of stuff from the |
|
Gets the size which best suits the window: for a control, it would be the |
|
Common methods for all the mouse move/click events. |
|
Get the index of the active page. |
|
Returns the |
|
Returns the default border style for |
|
Get a page by index. |
|
This method should be overridden to return true if this window has multiple pages. |
|
Hit test method for |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Handles the |
|
Perform initial layout and size calculations of the bar and its children. |
|
Recalculates the |
|
Recalculates the |
|
Repaints the tab area in |
|
Scrolls the tab area left/right/up/down by the specified amount. |
|
See comments on |
|
Set the active page by index, without triggering any events. |
|
Set the active page, without triggering any events. |
|
Sets the window style for |
|
Set the art provider to be used be the ribbon bar. |
|
Set the margin widths (in pixels) on the left and right sides of the tab bar |
|
Shows or hides the panels inside |
RibbonBar
(RibbonControl)¶Top-level control in a ribbon user interface.
__init__
(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, agwStyle=RIBBON_BAR_DEFAULT_STYLE, validator=wx.DefaultValidator, name="RibbonBar")¶Default constructor.
parent (wx.Window
) – pointer to a parent window, must not be None
;
id (integer) – window identifier. If wx.ID_ANY
, will automatically create
an identifier;
pos (tuple or wx.Point
) – window position. wx.DefaultPosition
indicates that wxPython
should generate a default position for the window;
size (tuple or wx.Size
) – window size. wx.DefaultSize
indicates that wxPython should
generate a default size for the window. If no suitable size can be found, the
window will be sized to 20x20 pixels so that the window is visible but obviously
not correctly sized;
agwStyle –
the AGW-specific window style. This can be a combination of the following bits:
Window Styles |
Hex Value |
Description |
---|---|---|
|
0x9 |
Defined as |
|
0x1e |
Defined as |
|
0x1 |
Causes labels to be shown on the tabs in the ribbon bar. |
|
0x2 |
Causes icons to be shown on the tabs in the ribbon bar. |
|
0x0 |
Causes panels within pages to stack horizontally. |
|
0x4 |
Causes panels within pages to stack vertically. |
|
0x8 |
Causes extension buttons to be shown on panels (where the panel has such a button). |
|
0x10 |
Causes minimise buttons to be shown on panels (where the panel has such a button). |
|
0x20 |
Always shows the tabs area even when only one tab is added. |
validator (wx.Validator
) – the window validator;
name (string) – the window name.
AddPage
(self, page)¶Adds a page to the RibbonBar
.
page – an instance of RibbonPage
.
CommonInit
(self, agwStyle)¶Common initialization procedures.
agwStyle (integer) – the AGW-specific window style.
See also
SetAGWWindowStyleFlag
for a list of valid window styles.
DismissExpandedPanel
(self)¶Dismiss the expanded panel of the currently active page.
Calls and returns the value from RibbonPage.DismissExpandedPanel()
for the
currently active page, or False
if there is no active page.
DoEraseBackground
(self, dc)¶Does the initial painting of stuff from the OnPaint
event.
dc – an instance of wx.DC
.
DoGetBestSize
(self)¶Gets the size which best suits the window: for a control, it would be the minimal size which doesn’t truncate the control, for a panel - the same size as it would have after a call to Fit().
An instance of wx.Size
.
Note
Overridden from wx.Control
.
DoMouseButtonCommon
(self, event, tab_event_type)¶Common methods for all the mouse move/click events.
event – a MouseEvent
event to be processed;
tab_event_type (integer) – one of the RibbonBar
events.
GetActivePage
(self)¶Get the index of the active page.
In the rare case of no page being active, -1 is returned.
GetAGWWindowStyleFlag
(self)¶Returns the RibbonBar
window style flag.
See also
SetAGWWindowStyleFlag
for a list of valid window styles.
GetPage
(self, n)¶Get a page by index.
None
will be returned if the given index is out of range.
n (integer) – the zero-based index indicating the page position.
HasMultiplePages
(self)¶This method should be overridden to return true if this window has multiple pages.
All standard class with multiple pages such as Notebook
, Listbook
and Treebook
already override it to return true and user-defined classes with similar behaviour should also
do so, to allow the library to handle such windows appropriately.
HitTestTabs
(self, position)¶Hit test method for RibbonBar
, testing where the given (in client coordinates)
point lies.
position – an instance of wx.Point
in client coordinates.
a tuple containing the tab index and the RibbonPage
if the HitTestTabs
successfully found such combination, or a tuple (-1, None) if no tab has been hit.
OnEraseBackground
(self, event)¶Handles the wx.EVT_ERASE_BACKGROUND
event for RibbonBar
.
event – a EraseEvent
event to be processed.
OnMouseDoubleClick
(self, event)¶Handles the wx.EVT_LEFT_DCLICK
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseLeave
(self, event)¶Handles the wx.EVT_LEAVE_WINDOW
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseLeftDown
(self, event)¶Handles the wx.EVT_LEFT_DOWN
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseLeftUp
(self, event)¶Handles the wx.EVT_LEFT_UP
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseMiddleDown
(self, event)¶Handles the wx.EVT_MIDDLE_DOWN
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseMiddleUp
(self, event)¶Handles the wx.EVT_MIDDLE_UP
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseMove
(self, event)¶Handles the wx.EVT_MOTION
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseRightDown
(self, event)¶Handles the wx.EVT_RIGHT_DOWN
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnMouseRightUp
(self, event)¶Handles the wx.EVT_RIGHT_UP
event for RibbonBar
.
event – a MouseEvent
event to be processed.
OnPaint
(self, event)¶Handles the wx.EVT_PAINT
event for RibbonBar
.
event – a PaintEvent
event to be processed.
OnSize
(self, event)¶Handles the wx.EVT_SIZE
event for RibbonBar
.
event – a wx.SizeEvent
event to be processed.
OrderPageTabInfoBySmallWidthAsc
(self, first, second)¶Realize
(self)¶Perform initial layout and size calculations of the bar and its children.
This must be called after all of the bar’s children have been created (and their
children created, etc.) - if it is not, then windows may not be laid out or
sized correctly. Also calls RibbonPage.Realize()
on each child page.
Note
Reimplemented from RibbonControl
.
RepositionPage
(self, page)¶ScrollTabBar
(self, amount)¶Scrolls the tab area left/right/up/down by the specified amount.
amount (integer) – the amount by which the tab area is scrolled, in pixels.
SetActivePage
(self, page)¶See comments on SetActivePageByIndex
and SetActivePageByPage
.
SetActivePageByIndex
(self, page)¶Set the active page by index, without triggering any events.
page (integer) – The zero-based index of the page to activate.
True
if the specified page is now active, False
if it could
not be activated (for example because the page index is invalid).
SetActivePageByPage
(self, page)¶Set the active page, without triggering any events.
page – the page to activate, an instance of RibbonPage
.
True
if the specified page is now active, False
if it could
not be activated (for example because the given page is not a child of the
ribbon bar).
SetAGWWindowStyleFlag
(self, agwStyle)¶Sets the window style for RibbonBar
.
agwStyle (integer) – can be a combination of the following bits:
Window Styles |
Hex Value |
Description |
---|---|---|
|
0x9 |
Defined as |
|
0x1e |
Defined as |
|
0x1 |
Causes labels to be shown on the tabs in the ribbon bar. |
|
0x2 |
Causes icons to be shown on the tabs in the ribbon bar. |
|
0x0 |
Causes panels within pages to stack horizontally. |
|
0x4 |
Causes panels within pages to stack vertically. |
|
0x8 |
Causes extension buttons to be shown on panels (where the panel has such a button). |
|
0x10 |
Causes minimise buttons to be shown on panels (where the panel has such a button). |
|
0x20 |
Always shows the tabs area even when only one tab is added. |
Note
Please note that some styles cannot be changed after the window creation and that Refresh() might need to be be called after changing the others for the change to take place immediately.
SetArtProvider
(self, art)¶Set the art provider to be used be the ribbon bar.
Also sets the art provider on all current RibbonPage
children, and any
RibbonPage
children added in the future.
Note that unlike most other ribbon controls, the ribbon bar creates a default
art provider when initialised, so an explicit call to SetArtProvider
is
not required if the default art provider is sufficient. Also unlike other
ribbon controls, the ribbon bar takes ownership of the given pointer, and
will delete it when the art provider is changed or the bar is destroyed.
If this behaviour is not desired, then clone the art provider before setting it.
art – an art provider.
Note
Reimplemented from RibbonControl
.
SetTabCtrlMargins
(self, left, right)¶Set the margin widths (in pixels) on the left and right sides of the tab bar region of the ribbon bar.
These margins will be painted with the tab background, but tabs and scroll buttons will never be painted in the margins. The left margin could be used for rendering something equivalent to the “Office Button”, though this is not currently implemented. The right margin could be used for rendering a help button, and/or MDI buttons, but again, this is not currently implemented.
left (integer) – the left margin (in pixels);
right (integer) – the right margin (in pixels).