]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxMenuEvent}}\label{wxmenuevent} |
2 | ||
3 | This class is used for a variety of menu-related events. Note that | |
f4fcc291 JS |
4 | these do not include menu command events, which are |
5 | handled using \helpref{wxCommandEvent}{wxcommandevent} objects. | |
6 | ||
684761db | 7 | The default handler for wxEVT\_MENU\_HIGHLIGHT displays help |
f4fcc291 | 8 | text 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 | ||
21 | To process a menu event, use these event handler macros to direct input to member | |
5cb1ae8b JS |
22 | functions that take a wxMenuEvent argument. They can only be processed by |
23 | a menubar's frame. | |
a660d684 KB |
24 | |
25 | \twocolwidtha{7cm} | |
26 | \begin{twocollist}\itemsep=0pt | |
2f930c85 JS |
27 | \twocolitem{{\bf EVT\_MENU\_OPEN(func)}}{A menu is about to be opened. On Windows, |
28 | this is only sent once for each navigation of the menubar (up until all menus have closed).} | |
ccef86c7 VZ |
29 | \twocolitem{{\bf EVT\_MENU\_CLOSE(func)}}{A menu has been just closed.} |
30 | \twocolitem{{\bf EVT\_MENU\_HIGHLIGHT(id, func)}}{The menu item with the | |
2edb0bde | 31 | specified id has been highlighted: used to show help prompts in the status bar |
ccef86c7 VZ |
32 | by \helpref{wxFrame}{wxframe}} |
33 | \twocolitem{{\bf EVT\_MENU\_HIGHLIGHT\_ALL(func)}}{A menu item has been | |
34 | highlighted, i.e. the currently selected menu item has changed.} | |
d2c2afc9 | 35 | \end{twocollist} |
a660d684 KB |
36 | |
37 | \wxheading{See also} | |
38 | ||
ccef86c7 VZ |
39 | \helpref{Command events}{wxcommandevent},\\ |
40 | \helpref{Event handling overview}{eventhandlingoverview} | |
a660d684 KB |
41 | |
42 | \latexignore{\rtfignore{\wxheading{Members}}} | |
43 | ||
71c749e1 | 44 | |
dcbd177f | 45 | \membersection{wxMenuEvent::wxMenuEvent}\label{wxmenueventctor} |
a660d684 | 46 | |
f6e9a818 | 47 | \func{}{wxMenuEvent}{\param{WXTYPE }{id = 0}, \param{int }{id = 0}, \param{wxMenu* }{menu = NULL}} |
a660d684 KB |
48 | |
49 | Constructor. | |
50 | ||
71c749e1 | 51 | |
71c749e1 VZ |
52 | \membersection{wxMenuEvent::GetMenu}\label{wxmenueventgetmenu} |
53 | ||
54 | \constfunc{wxMenu *}{GetMenu}{\void} | |
55 | ||
3980000c | 56 | Returns the menu which is being opened or closed. This method should only be |
71c749e1 VZ |
57 | used with the \texttt{OPEN} and \texttt{CLOSE} events. |
58 | ||
59 | ||
a660d684 KB |
60 | \membersection{wxMenuEvent::GetMenuId}\label{wxmenueventgetmenuid} |
61 | ||
62 | \constfunc{int}{GetMenuId}{\void} | |
63 | ||
ccef86c7 VZ |
64 | Returns the menu identifier associated with the event. This method should be |
65 | only used with the {\tt HIGHLIGHT} events. | |
66 | ||
71c749e1 | 67 | |
ccef86c7 VZ |
68 | \membersection{wxMenuEvent::IsPopup}\label{wxmenueventispopup} |
69 | ||
70 | \constfunc{bool}{IsPopup}{\void} | |
71 | ||
cc81d32f VS |
72 | Returns {\tt true} if the menu which is being opened or closed is a popup menu, |
73 | {\tt false} if it is a normal one. | |
ccef86c7 | 74 | |
3980000c | 75 | This method should only be used with the {\tt OPEN} and {\tt CLOSE} events. |
ccef86c7 | 76 | |
a660d684 | 77 |