A list event holds information about events associated with wx.ListCtrl objects.
^^
Handlers bound for the following event types will receive a wx.ListEvent parameter.
EVT_LIST_BEGIN_DRAG: Begin dragging with the left mouse button.
EVT_LIST_BEGIN_RDRAG: Begin dragging with the right mouse button.
EVT_LIST_BEGIN_LABEL_EDIT: Begin editing a label. This can be prevented by calling Veto
EVT_LIST_END_LABEL_EDIT: Finish editing a label. This can be prevented by calling Veto
EVT_LIST_DELETE_ITEM: Delete an item.
EVT_LIST_DELETE_ALL_ITEMS: Delete all items.
EVT_LIST_ITEM_SELECTED: The item has been selected. Notice that the mouse is captured by the control itself when this event is generated, see event handling overview.
EVT_LIST_ITEM_DESELECTED: The item has been deselected. GetIndex
may be -1 with virtual lists.
EVT_LIST_ITEM_ACTIVATED: The item has been activated (ENTER
or double click).
EVT_LIST_ITEM_FOCUSED: The currently focused item has changed.
EVT_LIST_ITEM_MIDDLE_CLICK: The middle mouse button has been clicked on an item.
EVT_LIST_ITEM_RIGHT_CLICK: The right mouse button has been clicked on an item.
EVT_LIST_KEY_DOWN: A key has been pressed. GetIndex
may be -1 if no item is selected.
EVT_LIST_INSERT_ITEM: An item has been inserted.
EVT_LIST_COL_CLICK: A column (m_col) has been left-clicked.
EVT_LIST_COL_RIGHT_CLICK: A column (m_col) (which can be -1 if the click occurred outside any column) has been right-clicked.
EVT_LIST_COL_BEGIN_DRAG: The user started resizing a column - can be vetoed.
EVT_LIST_COL_DRAGGING: The divider between columns is being dragged.
EVT_LIST_COL_END_DRAG: A column has been resized by the user.
EVT_LIST_CACHE_HINT: Prepare cache for a virtual list control
EVT_LIST_ITEM_CHECKED: The item has been checked (new since wxWidgets 3.1.0).
EVT_LIST_ITEM_UNCHECKED: The item has been unchecked (new since wxWidgets 3.1.0). ^^
Constructor. |
|
For |
|
For |
|
The column position: it is only used with |
|
The data. |
|
The image. |
|
The item index. |
|
An item object, used by some events. |
|
Key code if the event is a keypress event. |
|
The (new) item label for |
|
The mask. |
|
The position of the mouse pointer if the event is a drag event. |
|
The text. |
|
This method only makes sense for |
|
See |
|
See |
|
See |
|
See |
|
See |
|
See |
|
See |
|
See |
wx.
ListEvent
(NotifyEvent)¶Possible constructors:
ListEvent(commandType=wxEVT_NULL, id=0)
A list event holds information about events associated with ListCtrl objects.
__init__
(self, commandType=wxEVT_NULL, id=0)¶Constructor.
commandType (wx.EventType) –
id (int) –
GetCacheFrom
(self)¶For EVT_LIST_CACHE_HINT
event only: return the first item which the list control advises us to cache.
long
GetCacheTo
(self)¶For EVT_LIST_CACHE_HINT
event only: return the last item (inclusive) which the list control advises us to cache.
long
GetColumn
(self)¶The column position: it is only used with COL
events.
For the column dragging events, it is the column to the left of the divider being dragged, for the column click events it may be -1 if the user clicked in the list control header outside any column.
int
GetData
(self)¶The data.
wx.UIntPtr
GetImage
(self)¶The image.
int
GetIndex
(self)¶The item index.
long
GetItem
(self)¶An item object, used by some events.
See also wx.ListCtrl.SetItem
.
GetKeyCode
(self)¶Key code if the event is a keypress event.
int
GetLabel
(self)¶The (new) item label for EVT_LIST_END_LABEL_EDIT
event.
string
GetMask
(self)¶The mask.
long
GetPoint
(self)¶The position of the mouse pointer if the event is a drag event.
GetText
(self)¶The text.
string
IsEditCancelled
(self)¶This method only makes sense for EVT_LIST_END_LABEL_EDIT
message and returns True
if it the label editing has been cancelled by the user ( GetLabel
returns an empty string in this case but it doesn’t allow the application to distinguish between really cancelling the edit and the admittedly rare case when the user wants to rename it to an empty string).
bool
SetCacheFrom
(self, cacheFrom)¶cacheFrom (long) –
See also
SetCacheTo
(self, cacheTo)¶cacheTo (long) –
See also
SetItem
(self, item)¶item (wx.ListItem) –
See also
SetKeyCode
(self, code)¶code (int) –
See also
CacheFrom
¶See GetCacheFrom
and SetCacheFrom
CacheTo
¶See GetCacheTo
and SetCacheTo
KeyCode
¶See GetKeyCode
and SetKeyCode