A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://wxpython.org/Phoenix/docs/html/wx.CommandEvent.html below:

wx.CommandEvent — wxPython Phoenix 4.2.4a1 documentation

wx.CommandEvent¶

This event class contains information about command events, which originate from a variety of simple controls.

Note that CommandEvents and CommandEvent-derived event classes by default and unlike other Event-derived classes propagate upward from the source window (the window which emits the event) up to the first parent which processes the event. Be sure to read How Events Propagate Upwards.

More complex controls, such as wx.TreeCtrl, have separate command event classes.

Events Emitted by this Class¶

Handlers bound for the following event types will receive a wx.CommandEvent parameter.

Class Hierarchy¶

Inheritance diagram for class

CommandEvent

:

Known Subclasses¶

ActiveXEvent , wx.ChildFocusEvent, wx.ClipboardTextEvent, wx.CollapsiblePaneEvent, wx.ColourDialogEvent, wx.ColourPickerEvent, wx.ContextMenuEvent, wx.adv.DateEvent, wx.FileCtrlEvent, wx.FileDirPickerEvent, wx.FindDialogEvent, wx.FontPickerEvent, wx.grid.GridEditorCreatedEvent, wx.HelpEvent, wx.html.HtmlCellEvent, wx.html.HtmlLinkEvent, wx.adv.HyperlinkEvent, wx.NotifyEvent, wx.propgrid.PropertyGridEvent, wx.ribbon.RibbonButtonBarEvent, wx.ribbon.RibbonGalleryEvent, wx.ribbon.RibbonPanelEvent, wx.ribbon.RibbonToolBarEvent, wx.adv.SashEvent, wx.ScrollEvent, wx.stc.StyledTextEvent, wx.TextUrlEvent, wx.UpdateUIEvent, wx.WindowCreateEvent, wx.WindowDestroyEvent, wx.WindowModalDialogEvent

Methods Summary¶

__init__

Constructor.

GetClientData

Returns client object pointer for a listbox or choice selection event (not valid for a deselection).

GetClientObject

Alias for GetClientData

GetExtraLong

Returns extra information dependent on the event objects type.

GetInt

Returns the integer identifier corresponding to a listbox, choice or radiobox selection (only if the event was a selection, not a deselection), or a boolean value representing the value of a checkbox.

GetSelection

Returns item index for a listbox or choice selection event (not valid for a deselection).

GetString

Returns item string for a listbox or choice selection event.

IsChecked

This method can be used with checkbox and menu events: for the checkboxes, the method returns True for a selection event and False for a deselection one.

IsSelection

For a listbox or similar event, returns True if it is a selection, False if it is a deselection.

SetClientData

Sets the client object for this event.

SetClientObject

Alias for SetClientData

SetExtraLong

Sets the m_extraLong member.

SetInt

Sets the m_commandInt member.

SetString

Sets the m_commandString member.

Properties Summary¶ Class API¶
class wx.CommandEvent(Event)¶

Possible constructors:

CommandEvent(commandEventType=wxEVT_NULL, id=0) -> None

This event class contains information about command events, which originate from a variety of simple controls.


Methods¶
__init__(self, commandEventType=wxEVT_NULL, id=0)¶

Constructor.

Parameters:
  • commandEventType (wx.EventType)

  • id (int)

Return type:

None


GetClientData(self)¶

Returns client object pointer for a listbox or choice selection event (not valid for a deselection).

Return type:

ClientData


GetClientObject(self)¶

Alias for GetClientData


GetExtraLong(self)¶

Returns extra information dependent on the event objects type.

If the event comes from a listbox selection, it is a boolean determining whether the event was a selection (True) or a deselection (False). A listbox deselection only occurs for multiple-selection boxes, and in this case the index and string values are indeterminate and the listbox must be examined by the application.

Return type:

int


GetInt(self)¶

Returns the integer identifier corresponding to a listbox, choice or radiobox selection (only if the event was a selection, not a deselection), or a boolean value representing the value of a checkbox.

For a menu item, this method returns -1 if the item is not checkable or a boolean value (True or False) for checkable items indicating the new state of the item.

Return type:

int


GetSelection(self)¶

Returns item index for a listbox or choice selection event (not valid for a deselection).

Return type:

int


GetString(self)¶

Returns item string for a listbox or choice selection event.

If one or several items have been deselected, returns the index of the first deselected item. If some items have been selected and others deselected at the same time, it will return the index of the first selected item.

Return type:

str


IsChecked(self)¶

This method can be used with checkbox and menu events: for the checkboxes, the method returns True for a selection event and False for a deselection one.

For the menu events, this method indicates if the menu item just has become checked or unchecked (and thus only makes sense for checkable menu items).

Notice that this method cannot be used with wx.CheckListBox currently.

Return type:

bool


IsSelection(self)¶

For a listbox or similar event, returns True if it is a selection, False if it is a deselection.

If some items have been selected and others deselected at the same time, it will return True.

Return type:

bool


SetClientData(self, data)¶

Sets the client object for this event.

The client object is not owned by the event object and the event object will not delete the client object in its destructor.

The client object must be owned and deleted by another object (e.g. a control) that has longer life time than the event object.

Parameters:

data (ClientData)

Return type:

None


SetClientObject(self, data)¶

Alias for SetClientData


SetExtraLong(self, extraLong)¶

Sets the m_extraLong member.

Parameters:

extraLong (long)

Return type:

None


SetInt(self, intCommand)¶

Sets the m_commandInt member.

Parameters:

intCommand (int)

Return type:

None


SetString(self, string)¶

Sets the m_commandString member.

Parameters:

string (string)

Return type:

None


Properties¶
ClientData¶

See GetClientData and SetClientData


ExtraLong¶

See GetExtraLong and SetExtraLong


Int¶

See GetInt and SetInt


Selection¶

See GetSelection


String¶

See GetString and SetString


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4