wx.lib.agw.ribbon.gallery.RibbonGalleryEvent¶
Handles events related to RibbonGallery
.
Class Hierarchy¶
Known Superclasses¶
Methods Summary¶
Default class constructor. |
|
Returns the gallery which the event relates to. |
|
Returns the gallery item which the event relates to, or |
|
Sets the gallery relating to this event. |
|
Sets the gallery item relating to this event. |
Class API¶
- class RibbonGalleryEvent(wx.PyCommandEvent)¶
Handles events related to
RibbonGallery
.
Methods¶
- __init__(self, command_type=None, win_id=0, gallery=None, item=None)¶
Default class constructor.
- Parameters:
command_type (integer) – the event type;
win_id (integer) – the event identifier;
gallery – an instance of
RibbonGallery
;item – an instance of
RibbonGalleryItem
.
- GetGallery(self)¶
Returns the gallery which the event relates to.
- GetGalleryItem(self)¶
Returns the gallery item which the event relates to, or
None
if it does not relate to an item.
- SetGallery(self, gallery)¶
Sets the gallery relating to this event.
- Parameters:
gallery – an instance of
RibbonGallery
.
- SetGalleryItem(self, item)¶
Sets the gallery item relating to this event.
- Parameters:
item – an instance of
RibbonGalleryItem
.