1 \section{\class{wxListEvent
}}\label{wxlistevent
}
3 A list event holds information about events associated with wxListCtrl objects.
5 \wxheading{Derived from
}
7 \helpref{wxNotifyEvent
}{wxnotifyevent
}\\
8 \helpref{wxCommandEvent
}{wxcommandevent
}\\
9 \helpref{wxEvent
}{wxevent
}\\
10 \helpref{wxObject
}{wxobject
}
12 \wxheading{Include files
}
16 \wxheading{Event table macros
}
18 To process input from a list control, use these event handler macros to direct input to member
19 functions that take a wxListEvent argument.
22 \begin{twocollist
}\itemsep=
0pt
23 \twocolitem{{\bf EVT
\_LIST\_BEGIN\_DRAG(id, func)
}}{Begin dragging with the left mouse button.
}
24 \twocolitem{{\bf EVT
\_LIST\_BEGIN\_RDRAG(id, func)
}}{Begin dragging with the right mouse button.
}
25 \twocolitem{{\bf EVT
\_LIST\_BEGIN\_LABEL\_EDIT(id, func)
}}{Begin editing a label. This can be prevented by calling
\helpref{Veto()
}{wxnotifyeventveto
}.
}
26 \twocolitem{{\bf EVT
\_LIST\_END\_LABEL\_EDIT(id, func)
}}{Finish editing a label. This can be prevented by calling
\helpref{Veto()
}{wxnotifyeventveto
}.
}
27 \twocolitem{{\bf EVT
\_LIST\_DELETE\_ITEM(id, func)
}}{Delete an item.
}
28 \twocolitem{{\bf EVT
\_LIST\_DELETE\_ALL\_ITEMS(id, func)
}}{Delete all items.
}
29 \twocolitem{{\bf EVT
\_LIST\_GET\_INFO(id, func)
}}{Request information from the application, usually the item text.
}
30 \twocolitem{{\bf EVT
\_LIST\_SET\_INFO(id, func)
}}{Information is being supplied (not implemented).
}
31 \twocolitem{{\bf EVT
\_LIST\_ITEM\_SELECTED(id, func)
}}{The item has been selected.
}
32 \twocolitem{{\bf EVT
\_LIST\_ITEM\_DESELECTED(id, func)
}}{The item has been deselected.
}
33 \twocolitem{{\bf EVT
\_LIST\_ITEM\_ACTIVATED(id, func)
}}{The item has been activated (ENTER or double click).
}
34 \twocolitem{{\bf EVT
\_LIST\_KEY\_DOWN(id, func)
}}{A key has been pressed.
}
35 \twocolitem{{\bf EVT
\_LIST\_INSERT\_ITEM(id, func)
}}{An item has been inserted.
}
36 \twocolitem{{\bf EVT
\_LIST\_COL\_CLICK(id, func)
}}{A column (
{\bf m
\_col}) has been left-clicked.
}
37 \twocolitem{{\bf EVT
\_LIST\_CACHE\_HINT(id, func)
}}{Prepare cache for a virtual list control
}
42 \helpref{wxListCtrl
}{wxlistctrl
}
44 \latexignore{\rtfignore{\wxheading{Members
}}}
46 \membersection{wxListEvent::wxListEvent
}
48 \func{}{wxListEvent
}{\param{WXTYPE
}{commandType =
0},
\param{int
}{id =
0}}
52 \membersection{wxListEvent::GetCacheFrom
}\label{wxlisteventgetcachefrom
}
54 \constfunc{long
}{GetCacheFrom
}{\void}
56 For
{\tt EVT
\_LIST\_CACHE\_HINT} event only: return the first item which the
57 list control advises us to cache.
59 \membersection{wxListEvent::GetCacheTo
}\label{wxlisteventgetcacheto
}
61 \constfunc{long
}{GetCacheTo
}{\void}
63 For
{\tt EVT
\_LIST\_CACHE\_HINT} event only: return the last item (inclusive)
64 which the list control advises us to cache.
66 \membersection{wxListEvent::GetCode
}\label{wxlisteventgetcode
}
68 \constfunc{int
}{GetCode
}{\void}
70 Key code if the event is a keypress event.
72 \membersection{wxListEvent::GetIndex
}\label{wxlisteventgetindex
}
74 \constfunc{long
}{GetIndex
}{\void}
78 \membersection{wxListEvent::GetOldIndex
}\label{wxlisteventgetoldindex
}
80 \constfunc{long
}{GetOldIndex
}{\void}
84 \membersection{wxListEvent::GetColumn
}\label{wxlisteventgetcolumn
}
86 \constfunc{int
}{GetColumn
}{\void}
90 \membersection{wxListEvent::Cancelled
}\label{wxlisteventcancelled
}
92 \constfunc{bool
}{Cancelled
}{\void}
94 TRUE if this event is an end edit event and the user cancelled the edit.
96 \membersection{wxListEvent::GetPoint
}\label{wxlisteventgetpoint
}
98 \constfunc{wxPoint
}{GetPoint
}{\void}
100 The position of the mouse pointer if the event is a drag event.
103 \membersection{wxListEvent::GetLabel
}\label{wxlisteventgetlabel
}
105 \constfunc{const wxString\&
}{GetLabel
}{\void}
109 \membersection{wxListEvent::GetText
}\label{wxlisteventgettext
}
111 \constfunc{const wxString\&
}{GetText
}{\void}
115 \membersection{wxListEvent::GetImage
}\label{wxlisteventgetimage
}
117 \constfunc{int
}{GetImage
}{\void}
121 \membersection{wxListEvent::GetData
}\label{wxlisteventgetdata
}
123 \constfunc{long
}{GetData
}{\void}
127 \membersection{wxListEvent::GetMask
}\label{wxlisteventgetmask
}
129 \constfunc{long
}{GetMask
}{\void}
133 \membersection{wxListEvent::GetItem
}\label{wxlisteventgetitem
}
135 \constfunc{const wxListItem\&
}{GetItem
}{\void}
137 An item object, used by some events. See also
\helpref{wxListCtrl::SetItem
}{wxlistctrlsetitem
}.