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.
EVT_LIST_ITEM_DESELECTED: The item has been deselected.
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
See also
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 |
Possible constructors:
ListEvent(commandType=wxEVT_NULL, id=0)
A list event holds information about events associated with ListCtrl objects.
Constructor.
commandType (wx.EventType) –
id (int) –
For EVT_LIST_CACHE_HINT
event only: return the first item which the list control advises us to cache.
long
For EVT_LIST_CACHE_HINT
event only: return the last item (inclusive) which the list control advises us to cache.
long
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
The data.
wx.UIntPtr
The image.
int
The item index.
long
An item object, used by some events.
See also wx.ListCtrl.SetItem
.
Key code if the event is a keypress event.
int
The (new) item label for EVT_LIST_END_LABEL_EDIT
event.
string
The mask.
long
The position of the mouse pointer if the event is a drag event.
The text.
string
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
cacheFrom (long) –
See also
cacheTo (long) –
See also
item (wx.ListItem) –
See also
code (int) –
See also
See GetCacheFrom
and SetCacheFrom
See GetCacheTo
and SetCacheTo
See GetKeyCode
and SetKeyCode