1 \section{\class{wxCommandEvent
}}\label{wxcommandevent
}
3 This event class contains information about command events, which originate from a variety of
4 simple controls. More complex controls, such as
\helpref{wxTreeCtrl
}{wxtreectrl
}, have separate command event classes.
6 \wxheading{Derived from
}
8 \helpref{wxEvent
}{wxevent
}
10 \wxheading{Event table macros
}
12 To process a menu command event, use these event handler macros to direct input to member
13 functions that take a wxCommandEvent argument.
16 \begin{twocollist
}\itemsep=
0pt
17 \twocolitem{{\bf EVT
\_COMMAND(id, cmd, func)
}}{Process a command, supplying the window identifier,
18 command event identifier, and member function.
}
19 \twocolitem{{\bf EVT
\_COMMAND\_RANGE(id1, id2, cmd, func)
}}{Process a command for a range
20 of window identifiers, supplying the minimum and maximum window identifiers,
21 command event identifier, and member function.
}
22 \twocolitem{{\bf EVT
\_BUTTON(id, func)
}}{Process a wxEVT
\_COMMAND\_BUTTON\_CLICKED command,
23 which is generated by a wxButton control.
}
24 \twocolitem{{\bf EVT
\_CHECKBOX(id, func)
}}{Process a wxEVT
\_COMMAND\_CHECKBOX\_CLICKED command,
25 which is generated by a wxCheckBox control.
}
26 \twocolitem{{\bf EVT
\_CHOICE(id, func)
}}{Process a wxEVT
\_COMMAND\_CHOICE\_SELECTED command,
27 which is generated by a wxChoice control.
}
28 \twocolitem{{\bf EVT
\_LISTBOX(id, func)
}}{Process a wxEVT
\_COMMAND\_LISTBOX\_SELECTED command,
29 which is generated by a wxListBox control.
}
30 \twocolitem{{\bf EVT
\_TEXT(id, func)
}}{Process a wxEVT
\_COMMAND\_TEXT\_UPDATED command,
31 which is generated by a wxTextCtrl control.
}
32 \twocolitem{{\bf EVT
\_TEXT\_ENTER(id, func)
}}{Process a wxEVT
\_COMMAND\_TEXT\_ENTER command,
33 which is generated by a wxTextCtrl control.
}
34 \twocolitem{{\bf EVT
\_MENU(id, func)
}}{Process a wxEVT
\_COMMAND\_MENU\_SELECTED command,
35 which is generated by a menu item.
}
36 \twocolitem{{\bf EVT
\_MENU\_RANGE(id1, id2, func)
}}{Process a wxEVT
\_COMMAND\_MENU\_RANGE command,
37 which is generated by a range of menu items.
}
38 \twocolitem{{\bf EVT
\_SLIDER(id, func)
}}{Process a wxEVT
\_COMMAND\_SLIDER\_UPDATED command,
39 which is generated by a wxSlider control.
}
40 \twocolitem{{\bf EVT
\_RADIOBOX(id, func)
}}{Process a wxEVT
\_COMMAND\_RADIOBOX\_SELECTED command,
41 which is generated by a wxRadioBox control.
}
42 \twocolitem{{\bf EVT
\_RADIOBUTTON(id, func)
}}{Process a wxEVT
\_COMMAND\_RADIOBUTTON\_SELECTED command,
43 which is generated by a wxRadioButton control.
}
44 \twocolitem{{\bf EVT
\_SCROLLBAR(id, func)
}}{Process a wxEVT
\_COMMAND\_SCROLLBAR\_UPDATED command,
45 which is generated by a wxScrollBar control. This is provided for compatibility only;
46 more specific scrollbar event macros should be used instead (see
\helpref{wxScrollEvent
}{wxscrollevent
}).
}
47 \twocolitem{{\bf EVT
\_COMBOBOX(id, func)
}}{Process a wxEVT
\_COMMAND\_COMBOBOX\_SELECTED command,
48 which is generated by a wxComboBox control.
}
49 \twocolitem{{\bf EVT
\_TOOL(id, func)
}}{Process a wxEVT
\_COMMAND\_TOOL\_CLICKED command,
50 which is generated by a toobar button.
}
51 \twocolitem{{\bf EVT
\_TOOL\_RCLICKED(id, func)
}}{Process a wxEVT
\_COMMAND\_TOOL\_RCLICKED command,
52 which is generated by a toobar button.
}
53 \twocolitem{{\bf EVT
\_TOOL\_ENTER(id, func)
}}{Process a wxEVT
\_COMMAND\_TOOL\_ENTER command,
54 which is generated by a toobar button.
}
55 \twocolitem{{\bf EVT
\_COMMAND\_LEFT\_CLICK(id, func)
}}{Process a wxEVT
\_COMMAND\_LEFT\_CLICK command,
56 which is generated by a control (Windows
95 and NT only).
}
57 \twocolitem{{\bf EVT
\_COMMAND\_LEFT\_DCLICK(id, func)
}}{Process a wxEVT
\_COMMAND\_LEFT\_DCLICK command,
58 which is generated by a control (Windows
95 and NT only).
}
59 \twocolitem{{\bf EVT
\_COMMAND\_RIGHT\_CLICK(id, func)
}}{Process a wxEVT
\_COMMAND\_RIGHT\_CLICK command,
60 which is generated by a control (Windows
95 and NT only).
}
61 \twocolitem{{\bf EVT
\_COMMAND\_SET\_FOCUS(id, func)
}}{Process a wxEVT
\_COMMAND\_SET\_FOCUS command,
62 which is generated by a control (Windows
95 and NT only).
}
63 \twocolitem{{\bf EVT
\_COMMAND\_KILL\_FOCUS(id, func)
}}{Process a wxEVT
\_COMMAND\_KILL\_FOCUS command,
64 which is generated by a control (Windows
95 and NT only).
}
65 \twocolitem{{\bf EVT
\_COMMAND\_ENTER(id, func)
}}{Process a wxEVT
\_COMMAND\_ENTER command,
66 which is generated by a control.
}
69 \latexignore{\rtfignore{\wxheading{Members
}}}
71 \membersection{wxCommandEvent::m
\_clientData}
73 \member{char*
}{m
\_clientData}
75 Contains a pointer to client data for listboxes and choices, if the event
78 \membersection{wxCommandEvent::m
\_commandInt}
80 \member{int
}{m
\_commandInt}
82 Contains an integer identifier corresponding to a listbox, choice or
83 radiobox selection (only if the event was a selection, not a
84 deselection), or a boolean value representing the value of a checkbox.
86 \membersection{wxCommandEvent::m
\_commandString}
88 \member{char*
}{m
\_commandString}
90 Contains a string corresponding to a listbox or choice selection.
92 \membersection{wxCommandEvent::m
\_extraLong}
94 \member{long
}{m
\_extraLong}
96 Extra information. If the event comes from a listbox selection, it is
97 a boolean determining whether the event was a selection (TRUE) or a
98 deselection (FALSE). A listbox deselection only occurs for
99 multiple-selection boxes, and in this case the index and string values
100 are indeterminate and the listbox must be examined by the application.
102 \membersection{wxCommandEvent::wxCommandEvent
}
104 \func{}{wxCommandEvent
}{\param{WXTYPE
}{ commandEventType =
0},
\param{int
}{ id =
0}}
108 \membersection{wxCommandEvent::Checked
}
110 \func{bool
}{Checked
}{\void}
112 Returns TRUE or FALSE for a checkbox selection event.
114 \membersection{wxCommandEvent::GetClientData
}
116 \func{char*
}{GetClientData
}{\void}
118 Returns client data pointer for a listbox or choice selection event
119 (not valid for a deselection).
121 \membersection{wxCommandEvent::GetExtraLong
}
123 \func{long
}{GetExtraLong
}{\void}
125 Returns the
{\bf m
\_extraLong} member.
127 \membersection{wxCommandEvent::GetInt
}
129 \func{int
}{GetInt
}{\void}
131 Returns the
{\bf m
\_commandInt} member.
133 \membersection{wxCommandEvent::GetSelection
}
135 \func{int
}{GetSelection
}{\void}
137 Returns item index for a listbox or choice selection event (not valid for
140 \membersection{wxCommandEvent::GetString
}
142 \func{char*
}{GetString
}{\void}
144 Returns item string for a listbox or choice selection event (not valid for
147 \membersection{wxCommandEvent::IsSelection
}
149 \func{bool
}{IsSelection
}{\void}
151 For a listbox or choice event, returns TRUE if it is a selection, FALSE if it
154 \membersection{wxCommandEvent::SetClientData
}
156 \func{void
}{SetClientData
}{\param{char*
}{ clientData
}}
158 Sets the client data for this event.
160 \membersection{wxCommandEvent::SetExtraLong
}
162 \func{void
}{SetExtraLong
}{\param{int
}{ extraLong
}}
164 Sets the
{\bf m
\_extraLong} member.
166 \membersection{wxCommandEvent::SetInt
}
168 \func{void
}{SetInt
}{\param{int
}{ intCommand
}}
170 Sets the
{\bf m
\_commandInt} member.
172 \membersection{wxCommandEvent::SetString
}
174 \func{void
}{SetString
}{\param{char*
}{ string
}}
176 Sets the
{\bf m
\_commandString} member.