1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenuItem class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MENUITEM_H_BASE_
13 #define _WX_MENUITEM_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #include "wx/object.h" // base class
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 // id for a separator line in the menu (invalid for normal item)
26 #define wxID_SEPARATOR (-1)
28 #ifndef ID_SEPARATOR // for compatibility only, don't use in new code
29 #define ID_SEPARATOR wxID_SEPARATOR
32 // ----------------------------------------------------------------------------
33 // forward declarations
34 // ----------------------------------------------------------------------------
36 class WXDLLEXPORT wxAcceleratorEntry
;
37 class WXDLLEXPORT wxMenuItem
;
38 class WXDLLEXPORT wxMenu
;
40 // ----------------------------------------------------------------------------
41 // wxMenuItem is an item in the menu which may be either a normal item, a sub
42 // menu or a separator
43 // ----------------------------------------------------------------------------
45 class WXDLLEXPORT wxMenuItemBase
: public wxObject
50 static wxMenuItem
*New(wxMenu
*parentMenu
= (wxMenu
*)NULL
,
51 int id
= wxID_SEPARATOR
,
52 const wxString
& text
= wxEmptyString
,
53 const wxString
& help
= wxEmptyString
,
54 bool isCheckable
= FALSE
,
55 wxMenu
*subMenu
= (wxMenu
*)NULL
);
57 // destruction: wxMenuItem will delete its submenu
58 virtual ~wxMenuItemBase();
61 wxMenu
*GetMenu() const { return m_parentMenu
; }
64 void SetId(int id
) { m_id
= id
; }
65 int GetId() const { return m_id
; }
66 bool IsSeparator() const { return m_id
== wxID_SEPARATOR
; }
68 // the item's text (or name)
70 // NB: the item's text includes the accelerators and mnemonics info (if
71 // any), i.e. it may contain '&' or '_' or "\t..." and thus is
72 // different from the item's label which only contains the text shown
74 virtual void SetText(const wxString
& str
) { m_text
= str
; }
75 virtual wxString
GetLabel() const { return m_text
; }
76 const wxString
& GetText() const { return m_text
; }
78 // what kind of menu item we are
79 virtual void SetCheckable(bool checkable
) { m_isCheckable
= checkable
; }
80 bool IsCheckable() const { return m_isCheckable
; }
82 bool IsSubMenu() const { return m_subMenu
!= NULL
; }
83 void SetSubMenu(wxMenu
*menu
) { m_subMenu
= menu
; }
84 wxMenu
*GetSubMenu() const { return m_subMenu
; }
87 virtual void Enable(bool enable
= TRUE
) { m_isEnabled
= enable
; }
88 virtual bool IsEnabled() const { return m_isEnabled
; }
90 virtual void Check(bool check
= TRUE
) { m_isChecked
= check
; }
91 virtual bool IsChecked() const { return m_isChecked
; }
92 void Toggle() { Check(!m_isChecked
); }
94 // help string (displayed in the status bar by default)
95 void SetHelp(const wxString
& str
) { m_help
= str
; }
96 const wxString
& GetHelp() const { return m_help
; }
99 // get our accelerator or NULL (caller must delete the pointer)
100 virtual wxAcceleratorEntry
*GetAccel() const { return NULL
; }
102 // set the accel for this item - this may also be done indirectly with
104 virtual void SetAccel(wxAcceleratorEntry
*accel
);
105 #endif // wxUSE_ACCEL
107 // compatibility only, use new functions in the new code
108 void SetName(const wxString
& str
) { SetText(str
); }
109 const wxString
& GetName() const { return GetText(); }
112 int m_id
; // numeric id of the item >= 0 or -1
113 wxMenu
*m_parentMenu
, // the menu we belong to
114 *m_subMenu
; // our sub menu or NULL
115 wxString m_text
, // label of the item
116 m_help
; // the help string for the item
117 bool m_isCheckable
; // can be checked?
118 bool m_isChecked
; // is checked?
119 bool m_isEnabled
; // is enabled?
121 // some compilers need a default constructor here, do not use
126 // ----------------------------------------------------------------------------
127 // include the real class declaration
128 // ----------------------------------------------------------------------------
130 #ifdef wxUSE_BASE_CLASSES_ONLY
131 #define wxMenuItem wxMenuItemBase
132 #else // !wxUSE_BASE_CLASSES_ONLY
133 #if defined(__WXMSW__)
134 #include "wx/msw/menuitem.h"
135 #elif defined(__WXMOTIF__)
136 #include "wx/motif/menuitem.h"
137 #elif defined(__WXGTK__)
138 #include "wx/gtk/menuitem.h"
139 #elif defined(__WXQT__)
140 #include "wx/qt/menuitem.h"
141 #elif defined(__WXMAC__)
142 #include "wx/mac/menuitem.h"
143 #elif defined(__WXPM__)
144 #include "wx/os2/menuitem.h"
145 #elif defined(__WXSTUBS__)
146 #include "wx/stubs/menuitem.h"
148 #endif // wxUSE_BASE_CLASSES_ONLY/!wxUSE_BASE_CLASSES_ONLY
151 // _WX_MENUITEM_H_BASE_