Version: 2.9.4
Public Member Functions
wxListEvent Class Reference

#include </home/zeitlin/src/wx/github/interface/wx/listctrl.h>

Inheritance diagram for wxListEvent:

Detailed Description

A list event holds information about events associated with wxListCtrl objects.

Events using this class

The following event handler macros redirect the events to member function handlers 'func' with prototypes like:

void handlerFuncName(wxListEvent& event)

Event macros:

Library:  wxBase
Category:  Events
参照:
wxListCtrl

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 wxListItemGetItem () const
 An item object, used by some events.
int GetKeyCode () const
 Key code if the event is a keypress event.
const wxStringGetLabel () 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 wxStringGetText () 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).

List of all members.


Constructor & Destructor Documentation

wxListEvent::wxListEvent ( wxEventType  commandType = wxEVT_NULL,
int  id = 0 
)

Constructor.


Member Function Documentation

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).

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines