wxListEvent Class Reference
[Events]

#include <wx/listctrl.h>

Inheritance diagram for wxListEvent:

wxNotifyEvent wxCommandEvent wxEvent wxObject

List of all members.


Detailed Description

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

Events:

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

See also:
wxListCtrl

Public Member Functions

 wxListEvent (wxEventType commandType=wxEVT_NULL, int id=0)
long GetCacheFrom () const
long GetCacheTo () const
int GetColumn () const
long GetData () const
int GetImage () const
long GetIndex () const
const wxListItemGetItem () const
int GetKeyCode () const
const wxStringGetLabel () const
long GetMask () const
wxPoint GetPoint () const
const wxStringGetText () const
bool IsEditCancelled () const

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



wxWidgets logo

[ top ]