wx.ListEvent¶
A list event holds information about events associated with wx.ListCtrl objects.
Events Emitted by this Class¶
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).
See also
Class Hierarchy¶
Methods Summary¶
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 |
|
Properties Summary¶
See |
|
See |
|
See |
|
See |
|
See |
|
See |
|
See |
|
See |
Class API¶
- class wx.ListEvent(NotifyEvent)¶
Possible constructors:
ListEvent(commandType=wxEVT_NULL, id=0) -> None
A list event holds information about events associated with ListCtrl objects.
Methods¶
- __init__(self, commandType=wxEVT_NULL, id=0)¶
Constructor.
- Parameters:
commandType (wx.EventType)
id (int)
- Return type:
None
- GetCacheFrom(self)¶
For
EVT_LIST_CACHE_HINT
event only: return the first item which the list control advises us to cache.- Return type:
int
- GetCacheTo(self)¶
For
EVT_LIST_CACHE_HINT
event only: return the last item (inclusive) which the list control advises us to cache.- Return type:
int
- 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.
- Return type:
int
- GetData(self)¶
The data.
- Return type:
wx.UIntPtr
- GetImage(self)¶
The image.
- Return type:
int
- GetIndex(self)¶
The item index.
- Return type:
int
- GetItem(self)¶
An item object, used by some events.
See also
wx.ListCtrl.SetItem
.- Return type:
- GetKeyCode(self)¶
Key code if the event is a keypress event.
- Return type:
int
- GetLabel(self)¶
The (new) item label for
EVT_LIST_END_LABEL_EDIT
event.- Return type:
str
- GetMask(self)¶
The mask.
- Return type:
int
- GetPoint(self)¶
The position of the mouse pointer if the event is a drag event.
- Return type:
- GetText(self)¶
The text.
- Return type:
str
- IsEditCancelled(self)¶
This method only makes sense for
EVT_LIST_END_LABEL_EDIT
message and returnsTrue
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).- Return type:
bool
- SetCacheFrom(self, cacheFrom)¶
- Parameters:
cacheFrom (long)
- Return type:
None
See also
- SetCacheTo(self, cacheTo)¶
- Parameters:
cacheTo (long)
- Return type:
None
See also
- SetItem(self, item)¶
- Parameters:
item (wx.ListItem)
- Return type:
None
See also
- SetKeyCode(self, code)¶
- Parameters:
code (int)
- Return type:
None
See also
Properties¶
- CacheFrom¶
See
GetCacheFrom
andSetCacheFrom
- CacheTo¶
See
GetCacheTo
andSetCacheTo
- KeyCode¶
See
GetKeyCode
andSetKeyCode