#include </home/zeitlin/src/wx/github/interface/wx/listctrl.h>
A list event holds information about events associated with wxListCtrl objects.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros:
Public Member Functions | |
wxListEvent (wxEventType commandType=wxEVT_NULL, int id=0) | |
Constructor. | |
long | GetCacheFrom () const |
For EVT_LIST_CACHE_HINT event only: return the first item which the list control advises us to cache. | |
long | GetCacheTo () const |
For EVT_LIST_CACHE_HINT event only: return the last item (inclusive) which the list control advises us to cache. | |
int | GetColumn () const |
The column position: it is only used with COL events. | |
long | GetData () const |
The data. | |
int | GetImage () const |
The image. | |
long | GetIndex () const |
The item index. | |
const wxListItem & | GetItem () const |
An item object, used by some events. | |
int | GetKeyCode () const |
Key code if the event is a keypress event. | |
const wxString & | GetLabel () const |
The (new) item label for EVT_LIST_END_LABEL_EDIT event. | |
long | GetMask () const |
The mask. | |
wxPoint | GetPoint () const |
The position of the mouse pointer if the event is a drag event. | |
const wxString & | GetText () const |
The text. | |
bool | IsEditCancelled () const |
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). |
wxListEvent::wxListEvent | ( | wxEventType | commandType = wxEVT_NULL , |
int | id = 0 |
||
) |
Constructor.
long wxListEvent::GetCacheFrom | ( | ) | const |
For EVT_LIST_CACHE_HINT
event only: return the first item which the list control advises us to cache.
long wxListEvent::GetCacheTo | ( | ) | const |
For EVT_LIST_CACHE_HINT
event only: return the last item (inclusive) which the list control advises us to cache.
int wxListEvent::GetColumn | ( | ) | const |
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.
long wxListEvent::GetData | ( | ) | const |
The data.
int wxListEvent::GetImage | ( | ) | const |
The image.
long wxListEvent::GetIndex | ( | ) | const |
The item index.
const wxListItem& wxListEvent::GetItem | ( | ) | const |
An item object, used by some events.
See also wxListCtrl::SetItem.
int wxListEvent::GetKeyCode | ( | ) | const |
Key code if the event is a keypress event.
const wxString& wxListEvent::GetLabel | ( | ) | const |
The (new) item label for EVT_LIST_END_LABEL_EDIT
event.
long wxListEvent::GetMask | ( | ) | const |
The mask.
wxPoint wxListEvent::GetPoint | ( | ) | const |
The position of the mouse pointer if the event is a drag event.
const wxString& wxListEvent::GetText | ( | ) | const |
The text.
bool wxListEvent::IsEditCancelled | ( | ) | const |
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).