]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/cmdevent.tex
splitter in bin format
[wxWidgets.git] / docs / latex / wx / cmdevent.tex
CommitLineData
a660d684
KB
1\section{\class{wxCommandEvent}}\label{wxcommandevent}
2
3This event class contains information about command events, which originate from a variety of
4simple controls. More complex controls, such as \helpref{wxTreeCtrl}{wxtreectrl}, have separate command event classes.
5
6\wxheading{Derived from}
7
8\helpref{wxEvent}{wxevent}
9
954b8ae6
JS
10\wxheading{Include files}
11
12<wx/event.h>
13
a660d684
KB
14\wxheading{Event table macros}
15
16To process a menu command event, use these event handler macros to direct input to member
17functions that take a wxCommandEvent argument.
18
19\twocolwidtha{7cm}
20\begin{twocollist}\itemsep=0pt
1f112209 21\twocolitem{{\bf EVT\_COMMAND(id, event, func)}}{Process a command, supplying the window identifier,
a660d684 22command event identifier, and member function.}
1f112209 23\twocolitem{{\bf EVT\_COMMAND\_RANGE(id1, id2, event, func)}}{Process a command for a range
a660d684
KB
24of window identifiers, supplying the minimum and maximum window identifiers,
25command event identifier, and member function.}
26\twocolitem{{\bf EVT\_BUTTON(id, func)}}{Process a wxEVT\_COMMAND\_BUTTON\_CLICKED command,
27which is generated by a wxButton control.}
28\twocolitem{{\bf EVT\_CHECKBOX(id, func)}}{Process a wxEVT\_COMMAND\_CHECKBOX\_CLICKED command,
29which is generated by a wxCheckBox control.}
30\twocolitem{{\bf EVT\_CHOICE(id, func)}}{Process a wxEVT\_COMMAND\_CHOICE\_SELECTED command,
31which is generated by a wxChoice control.}
32\twocolitem{{\bf EVT\_LISTBOX(id, func)}}{Process a wxEVT\_COMMAND\_LISTBOX\_SELECTED command,
33which is generated by a wxListBox control.}
e14dccff 34\twocolitem{{\bf EVT\_LISTBOX\_DCLICK(id, func)}}{Process a wxEVT\_COMMAND\_LISTBOX\_DOUBLECLICKED command,
debe6624 35which is generated by a wxListBox control.}
a660d684
KB
36\twocolitem{{\bf EVT\_TEXT(id, func)}}{Process a wxEVT\_COMMAND\_TEXT\_UPDATED command,
37which is generated by a wxTextCtrl control.}
38\twocolitem{{\bf EVT\_TEXT\_ENTER(id, func)}}{Process a wxEVT\_COMMAND\_TEXT\_ENTER command,
39which is generated by a wxTextCtrl control.}
40\twocolitem{{\bf EVT\_MENU(id, func)}}{Process a wxEVT\_COMMAND\_MENU\_SELECTED command,
41which is generated by a menu item.}
42\twocolitem{{\bf EVT\_MENU\_RANGE(id1, id2, func)}}{Process a wxEVT\_COMMAND\_MENU\_RANGE command,
43which is generated by a range of menu items.}
44\twocolitem{{\bf EVT\_SLIDER(id, func)}}{Process a wxEVT\_COMMAND\_SLIDER\_UPDATED command,
45which is generated by a wxSlider control.}
46\twocolitem{{\bf EVT\_RADIOBOX(id, func)}}{Process a wxEVT\_COMMAND\_RADIOBOX\_SELECTED command,
47which is generated by a wxRadioBox control.}
48\twocolitem{{\bf EVT\_RADIOBUTTON(id, func)}}{Process a wxEVT\_COMMAND\_RADIOBUTTON\_SELECTED command,
49which is generated by a wxRadioButton control.}
50\twocolitem{{\bf EVT\_SCROLLBAR(id, func)}}{Process a wxEVT\_COMMAND\_SCROLLBAR\_UPDATED command,
51which is generated by a wxScrollBar control. This is provided for compatibility only;
52more specific scrollbar event macros should be used instead (see \helpref{wxScrollEvent}{wxscrollevent}).}
53\twocolitem{{\bf EVT\_COMBOBOX(id, func)}}{Process a wxEVT\_COMMAND\_COMBOBOX\_SELECTED command,
54which is generated by a wxComboBox control.}
81d66cf3
JS
55\twocolitem{{\bf EVT\_TOOL(id, func)}}{Process a wxEVT\_COMMAND\_TOOL\_CLICKED event
56(a synonym for wxEVT\_COMMAND\_MENU\_SELECTED). Pass the id of the tool.}
57\twocolitem{{\bf EVT\_TOOL\_RANGE(id1, id2, func)}}{Process a wxEVT\_COMMAND\_TOOL\_CLICKED event
58for a range id identifiers. Pass the ids of the tools.}
59\twocolitem{{\bf EVT\_TOOL\_RCLICKED(id, func)}}{Process a wxEVT\_COMMAND\_TOOL\_RCLICKED event.
60Pass the id of the tool.}
61\twocolitem{{\bf EVT\_TOOL\_RCLICKED\_RANGE(id1, id2, func)}}{Process a wxEVT\_COMMAND\_TOOL\_RCLICKED event
62for a range of ids. Pass the ids of the tools.}
63\twocolitem{{\bf EVT\_TOOL\_ENTER(id, func)}}{Process a wxEVT\_COMMAND\_TOOL\_ENTER event.
64Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved off a tool.}
a660d684
KB
65\twocolitem{{\bf EVT\_COMMAND\_LEFT\_CLICK(id, func)}}{Process a wxEVT\_COMMAND\_LEFT\_CLICK command,
66which is generated by a control (Windows 95 and NT only).}
67\twocolitem{{\bf EVT\_COMMAND\_LEFT\_DCLICK(id, func)}}{Process a wxEVT\_COMMAND\_LEFT\_DCLICK command,
68which is generated by a control (Windows 95 and NT only).}
69\twocolitem{{\bf EVT\_COMMAND\_RIGHT\_CLICK(id, func)}}{Process a wxEVT\_COMMAND\_RIGHT\_CLICK command,
70which is generated by a control (Windows 95 and NT only).}
71\twocolitem{{\bf EVT\_COMMAND\_SET\_FOCUS(id, func)}}{Process a wxEVT\_COMMAND\_SET\_FOCUS command,
72which is generated by a control (Windows 95 and NT only).}
73\twocolitem{{\bf EVT\_COMMAND\_KILL\_FOCUS(id, func)}}{Process a wxEVT\_COMMAND\_KILL\_FOCUS command,
74which is generated by a control (Windows 95 and NT only).}
75\twocolitem{{\bf EVT\_COMMAND\_ENTER(id, func)}}{Process a wxEVT\_COMMAND\_ENTER command,
76which is generated by a control.}
77\end{twocollist}%
78
79\latexignore{\rtfignore{\wxheading{Members}}}
80
81\membersection{wxCommandEvent::m\_clientData}
82
9c884972 83\member{void*}{m\_clientData}
a660d684
KB
84
85Contains a pointer to client data for listboxes and choices, if the event
9c884972 86was a selection. Beware, this is not implemented anyway...
a660d684
KB
87
88\membersection{wxCommandEvent::m\_commandInt}
89
90\member{int}{m\_commandInt}
91
92Contains an integer identifier corresponding to a listbox, choice or
93radiobox selection (only if the event was a selection, not a
94deselection), or a boolean value representing the value of a checkbox.
95
96\membersection{wxCommandEvent::m\_commandString}
97
98\member{char*}{m\_commandString}
99
100Contains a string corresponding to a listbox or choice selection.
101
102\membersection{wxCommandEvent::m\_extraLong}
103
104\member{long}{m\_extraLong}
105
106Extra information. If the event comes from a listbox selection, it is
107a boolean determining whether the event was a selection (TRUE) or a
108deselection (FALSE). A listbox deselection only occurs for
109multiple-selection boxes, and in this case the index and string values
110are indeterminate and the listbox must be examined by the application.
111
112\membersection{wxCommandEvent::wxCommandEvent}
113
114\func{}{wxCommandEvent}{\param{WXTYPE}{ commandEventType = 0}, \param{int}{ id = 0}}
115
116Constructor.
117
118\membersection{wxCommandEvent::Checked}
119
120\func{bool}{Checked}{\void}
121
122Returns TRUE or FALSE for a checkbox selection event.
123
124\membersection{wxCommandEvent::GetClientData}
125
9c884972 126\func{void*}{GetClientData}{\void}
a660d684
KB
127
128Returns client data pointer for a listbox or choice selection event
9c884972 129(not valid for a deselection). Beware, this is not implmented anywhere...
a660d684
KB
130
131\membersection{wxCommandEvent::GetExtraLong}
132
133\func{long}{GetExtraLong}{\void}
134
135Returns the {\bf m\_extraLong} member.
136
137\membersection{wxCommandEvent::GetInt}
138
139\func{int}{GetInt}{\void}
140
141Returns the {\bf m\_commandInt} member.
142
143\membersection{wxCommandEvent::GetSelection}
144
145\func{int}{GetSelection}{\void}
146
147Returns item index for a listbox or choice selection event (not valid for
148a deselection).
149
150\membersection{wxCommandEvent::GetString}
151
152\func{char*}{GetString}{\void}
153
154Returns item string for a listbox or choice selection event (not valid for
155a deselection).
156
157\membersection{wxCommandEvent::IsSelection}
158
159\func{bool}{IsSelection}{\void}
160
161For a listbox or choice event, returns TRUE if it is a selection, FALSE if it
162is a deselection.
163
164\membersection{wxCommandEvent::SetClientData}
165
9c884972 166\func{void}{SetClientData}{\param{void*}{ clientData}}
a660d684
KB
167
168Sets the client data for this event.
169
170\membersection{wxCommandEvent::SetExtraLong}
171
172\func{void}{SetExtraLong}{\param{int}{ extraLong}}
173
174Sets the {\bf m\_extraLong} member.
175
176\membersection{wxCommandEvent::SetInt}
177
178\func{void}{SetInt}{\param{int}{ intCommand}}
179
180Sets the {\bf m\_commandInt} member.
181
182\membersection{wxCommandEvent::SetString}
183
184\func{void}{SetString}{\param{char*}{ string}}
185
186Sets the {\bf m\_commandString} member.
187