wx.ribbon.RibbonControl serves as a base class for all controls which share the ribbon characteristics of having a ribbon art provider, and (optionally) non-continuous resizing.
Despite what the name may imply, it is not the top-level control for creating a ribbon interface - that is wx.ribbon.RibbonBar.
Ribbon controls often have a region which is “transparent”, and shows the contents of the ribbon page or panel behind it. If implementing a new ribbon control, then it may be useful to realise that this effect is done by the art provider when painting the background of the control, and hence in the paint handler for the new control, you should call a draw background method on the art provider ( wx.ribbon.RibbonArtProvider.DrawButtonBarBackground
and wx.ribbon.RibbonArtProvider.DrawToolBarBackground
typically just redraw what is behind the rectangle being painted) if you want transparent regions.
wx.ribbon.RibbonBar, wx.ribbon.RibbonButtonBar, wx.ribbon.RibbonGallery, wx.ribbon.RibbonPage, wx.ribbon.RibbonPanel, wx.ribbon.RibbonToolBar
Constructor. |
|
Implementation of |
|
Implementation of |
|
Get the first ancestor which is a wx.ribbon.RibbonBar (or derived) or |
|
Get the art provider to be used. |
|
Finds the best width and height given the parent’s width and height. |
|
If sizing is not continuous, then return a suitable size for the control which is larger than the current size. |
|
If sizing is not continuous, then return a suitable size for the control which is smaller than the current size. |
|
Alias for |
|
Perform initial size and layout calculations after children have been added, and/or realize children. |
|
Set the art provider to be used. |
See |
wx.ribbon.
RibbonControl
(Control)¶Possible constructors:
RibbonControl()
RibbonControl(parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize,
style=0, validator=DefaultValidator, name=ControlNameStr)
RibbonControl serves as a base class for all controls which share the ribbon characteristics of having a ribbon art provider, and (optionally) non-continuous resizing.
__init__
(self, *args, **kw)¶__init__ (self)
Constructor.
__init__ (self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=0, validator=DefaultValidator, name=ControlNameStr)
Constructor.
If parent is a wx.ribbon.RibbonControl with a not None
art provider, then the art provider of new control is set to that of parent.
parent (wx.Window) –
id (wx.WindowID) –
pos (wx.Point) –
size (wx.Size) –
style (long) –
validator (wx.Validator) –
name (string) –
DoGetNextLargerSize
(self, direction, relative_to)¶Implementation of GetNextLargerSize
.
Controls which have non-continuous sizing must override this virtual function rather than GetNextLargerSize
.
direction (Orientation) –
relative_to (wx.Size) –
Size
DoGetNextSmallerSize
(self, direction, relative_to)¶Implementation of GetNextSmallerSize
.
Controls which have non-continuous sizing must override this virtual function rather than GetNextSmallerSize
.
direction (Orientation) –
relative_to (wx.Size) –
Size
GetAncestorRibbonBar
(self)¶Get the first ancestor which is a wx.ribbon.RibbonBar (or derived) or None
if not having such parent.
New in version 2.9.4.
GetArtProvider
(self)¶Get the art provider to be used.
Note that until an art provider has been set in some way, this function may return None
.
GetBestSizeForParentSize
(self, parentSize)¶Finds the best width and height given the parent’s width and height.
Used to implement the wx.ribbon.RIBBON_PANEL_FLEXIBLE
panel style.
parentSize (wx.Size) –
Size
GetClassDefaultAttributes
(variant=WINDOW_VARIANT_NORMAL)¶variant (WindowVariant) –
VisualAttributes
GetNextLargerSize
(self, *args, **kw)¶GetNextLargerSize (self, direction)
If sizing is not continuous, then return a suitable size for the control which is larger than the current size.
direction (Orientation) – The direction(s) in which the size should increase.
Size
The current size if there is no larger size, otherwise a suitable size which is larger in the given direction(s), and the same as the current size in the other direction (if any).
See also
GetNextLargerSize (self, direction, relative_to)
If sizing is not continuous, then return a suitable size for the control which is larger than the given size.
direction (Orientation) – The direction(s) in which the size should increase.
relative_to (wx.Size) – The size for which a larger size should be found.
Size
relative_to if there is no larger size, otherwise a suitable size which is larger in the given direction(s), and the same as relative_to in the other direction (if any).
GetNextSmallerSize
(self, *args, **kw)¶GetNextSmallerSize (self, direction)
If sizing is not continuous, then return a suitable size for the control which is smaller than the current size.
direction (Orientation) – The direction(s) in which the size should reduce.
Size
The current size if there is no smaller size, otherwise a suitable size which is smaller in the given direction(s), and the same as the current size in the other direction (if any).
See also
GetNextSmallerSize (self, direction, relative_to)
If sizing is not continuous, then return a suitable size for the control which is smaller than the given size.
direction (Orientation) – The direction(s) in which the size should reduce.
relative_to (wx.Size) – The size for which a smaller size should be found.
Size
relative_to if there is no smaller size, otherwise a suitable size which is smaller in the given direction(s), and the same as relative_to in the other direction (if any).
IsSizingContinuous
(self)¶bool
True
if this window can take any size (greater than its minimum size), False
if it can only take certain sizes.
Realize
(self)¶Perform initial size and layout calculations after children have been added, and/or realize children.
bool
SetArtProvider
(self, art)¶Set the art provider to be used.
In many cases, setting the art provider will also set the art provider on all child windows which extend wx.ribbon.RibbonControl.
In most cases, controls will not take ownership of the given pointer, with the notable exception being wx.ribbon.RibbonBar.SetArtProvider
.
art (wx.ribbon.RibbonArtProvider) –
AncestorRibbonBar
¶ArtProvider
¶See GetArtProvider
and SetArtProvider