]>
Commit | Line | Data |
---|---|---|
23d1d521 JS |
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 | ||
9874b4ee VZ |
12 | #ifndef _WX_MOTIF_MENUITEM_H |
13 | #define _WX_MOTIF_MENUITEM_H | |
23d1d521 JS |
14 | |
15 | #ifdef __GNUG__ | |
9874b4ee | 16 | #pragma interface "menuitem.h" |
23d1d521 JS |
17 | #endif |
18 | ||
c71830c3 VZ |
19 | class WXDLLEXPORT wxMenuBar; |
20 | ||
23d1d521 JS |
21 | // ---------------------------------------------------------------------------- |
22 | // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour | |
23 | // ---------------------------------------------------------------------------- | |
23d1d521 | 24 | |
c71830c3 | 25 | class wxMenuItem : public wxMenuItemBase |
9874b4ee | 26 | { |
23d1d521 | 27 | public: |
9874b4ee VZ |
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(); | |
23d1d521 | 36 | |
9874b4ee VZ |
37 | // accessors (some more are inherited from wxOwnerDrawn or are below) |
38 | virtual void SetText(const wxString& label); | |
c71830c3 | 39 | virtual wxString GetLabel() const; |
9874b4ee VZ |
40 | virtual void Enable(bool enable = TRUE); |
41 | virtual void Check(bool check = TRUE); | |
23d1d521 | 42 | |
9874b4ee | 43 | void DeleteSubMenu(); |
23d1d521 | 44 | |
9874b4ee VZ |
45 | // implementation from now on |
46 | void CreateItem (WXWidget menu, wxMenuBar * menuBar, wxMenu * topMenu); | |
47 | void DestroyItem(bool full); | |
23d1d521 | 48 | |
9874b4ee | 49 | WXWidget GetButtonWidget() const { return m_buttonWidget; } |
23d1d521 | 50 | |
9874b4ee VZ |
51 | wxMenuBar* GetMenuBar() const { return m_menuBar; } |
52 | void SetMenuBar(wxMenuBar* menuBar) { m_menuBar = menuBar; } | |
23d1d521 | 53 | |
9874b4ee VZ |
54 | wxMenu* GetTopMenu() const { return m_topMenu; } |
55 | void SetTopMenu(wxMenu* menu) { m_topMenu = menu; } | |
23d1d521 JS |
56 | |
57 | private: | |
9874b4ee VZ |
58 | WXWidget m_buttonWidget; |
59 | wxMenuBar* m_menuBar; | |
60 | wxMenu* m_topMenu; // Top-level menu e.g. popup-menu | |
23d1d521 | 61 | |
9874b4ee | 62 | DECLARE_DYNAMIC_CLASS(wxMenuItem) |
23d1d521 JS |
63 | }; |
64 | ||
9874b4ee | 65 | #endif // _WX_MOTIF_MENUITEM_H |