]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/menuevt.tex
translate VK_OEM_PLUS to '=', not '+', because this is what the unmodified key is
[wxWidgets.git] / docs / latex / wx / menuevt.tex
CommitLineData
a660d684
KB
1\section{\class{wxMenuEvent}}\label{wxmenuevent}
2
3This class is used for a variety of menu-related events. Note that
f4fcc291
JS
4these do not include menu command events, which are
5handled using \helpref{wxCommandEvent}{wxcommandevent} objects.
6
684761db 7The default handler for wxEVT\_MENU\_HIGHLIGHT displays help
f4fcc291 8text in the first field of the status bar.
a660d684
KB
9
10\wxheading{Derived from}
11
12\helpref{wxEvent}{wxevent}\\
13\helpref{wxObject}{wxobject}
14
954b8ae6
JS
15\wxheading{Include files}
16
17<wx/event.h>
18
a660d684
KB
19\wxheading{Event table macros}
20
21To process a menu event, use these event handler macros to direct input to member
22functions that take a wxMenuEvent argument.
23
24\twocolwidtha{7cm}
25\begin{twocollist}\itemsep=0pt
2f930c85
JS
26\twocolitem{{\bf EVT\_MENU\_OPEN(func)}}{A menu is about to be opened. On Windows,
27this is only sent once for each navigation of the menubar (up until all menus have closed).}
ccef86c7
VZ
28\twocolitem{{\bf EVT\_MENU\_CLOSE(func)}}{A menu has been just closed.}
29\twocolitem{{\bf EVT\_MENU\_HIGHLIGHT(id, func)}}{The menu item with the
2edb0bde 30specified id has been highlighted: used to show help prompts in the status bar
ccef86c7
VZ
31by \helpref{wxFrame}{wxframe}}
32\twocolitem{{\bf EVT\_MENU\_HIGHLIGHT\_ALL(func)}}{A menu item has been
33highlighted, i.e. the currently selected menu item has changed.}
d2c2afc9 34\end{twocollist}
a660d684
KB
35
36\wxheading{See also}
37
ccef86c7
VZ
38\helpref{Command events}{wxcommandevent},\\
39\helpref{Event handling overview}{eventhandlingoverview}
a660d684
KB
40
41\latexignore{\rtfignore{\wxheading{Members}}}
42
71c749e1 43
dcbd177f 44\membersection{wxMenuEvent::wxMenuEvent}\label{wxmenueventctor}
a660d684
KB
45
46\func{}{wxMenuEvent}{\param{WXTYPE }{id = 0}, \param{int }{id = 0}, \param{wxDC* }{dc = NULL}}
47
48Constructor.
49
71c749e1 50
dcbd177f 51\membersection{wxMenuEvent::m\_menuId}\label{wxmenueventmmenuid}
a660d684
KB
52
53\member{int}{m\_menuId}
54
55The relevant menu identifier.
56
71c749e1
VZ
57
58\membersection{wxMenuEvent::GetMenu}\label{wxmenueventgetmenu}
59
60\constfunc{wxMenu *}{GetMenu}{\void}
61
62Returns the menu which is being opened or closed. This method should be only
63used with the \texttt{OPEN} and \texttt{CLOSE} events.
64
65
a660d684
KB
66\membersection{wxMenuEvent::GetMenuId}\label{wxmenueventgetmenuid}
67
68\constfunc{int}{GetMenuId}{\void}
69
ccef86c7
VZ
70Returns the menu identifier associated with the event. This method should be
71only used with the {\tt HIGHLIGHT} events.
72
71c749e1 73
ccef86c7
VZ
74\membersection{wxMenuEvent::IsPopup}\label{wxmenueventispopup}
75
76\constfunc{bool}{IsPopup}{\void}
77
cc81d32f
VS
78Returns {\tt true} if the menu which is being opened or closed is a popup menu,
79{\tt false} if it is a normal one.
ccef86c7
VZ
80
81This method should be only used with the {\tt OPEN} and {\tt CLOSE} events.
82
a660d684 83