]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: menuitem.h | |
3 | // Purpose: wxMenuItem class | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 11.11.97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MOTIF_MENUITEM_H | |
13 | #define _WX_MOTIF_MENUITEM_H | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "menuitem.h" | |
17 | #endif | |
18 | ||
19 | class WXDLLEXPORT wxMenuBar; | |
20 | ||
21 | // ---------------------------------------------------------------------------- | |
22 | // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour | |
23 | // ---------------------------------------------------------------------------- | |
24 | ||
25 | class wxMenuItem : public wxMenuItemBase | |
26 | { | |
27 | public: | |
28 | // ctor & dtor | |
29 | wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL, | |
30 | int id = wxID_SEPARATOR, | |
31 | const wxString& text = wxEmptyString, | |
32 | const wxString& help = wxEmptyString, | |
33 | bool isCheckable = FALSE, | |
34 | wxMenu *subMenu = (wxMenu *)NULL); | |
35 | ~wxMenuItem(); | |
36 | ||
37 | // accessors (some more are inherited from wxOwnerDrawn or are below) | |
38 | virtual void SetText(const wxString& label); | |
39 | virtual void Enable(bool enable = TRUE); | |
40 | virtual void Check(bool check = TRUE); | |
41 | ||
42 | void DeleteSubMenu(); | |
43 | ||
44 | // implementation from now on | |
45 | void CreateItem (WXWidget menu, wxMenuBar * menuBar, wxMenu * topMenu); | |
46 | void DestroyItem(bool full); | |
47 | ||
48 | WXWidget GetButtonWidget() const { return m_buttonWidget; } | |
49 | ||
50 | wxMenuBar* GetMenuBar() const { return m_menuBar; } | |
51 | void SetMenuBar(wxMenuBar* menuBar) { m_menuBar = menuBar; } | |
52 | ||
53 | wxMenu* GetTopMenu() const { return m_topMenu; } | |
54 | void SetTopMenu(wxMenu* menu) { m_topMenu = menu; } | |
55 | ||
56 | private: | |
57 | WXWidget m_buttonWidget; | |
58 | wxMenuBar* m_menuBar; | |
59 | wxMenu* m_topMenu; // Top-level menu e.g. popup-menu | |
60 | ||
61 | DECLARE_DYNAMIC_CLASS(wxMenuItem) | |
62 | }; | |
63 | ||
64 | #endif // _WX_MOTIF_MENUITEM_H |