1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenuItem class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MENUITEM_H_BASE_
13 #define _WX_MENUITEM_H_BASE_
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 #include "wx/object.h" // base class
25 // ----------------------------------------------------------------------------
26 // forward declarations
27 // ----------------------------------------------------------------------------
29 class WXDLLIMPEXP_FWD_CORE wxAcceleratorEntry
;
30 class WXDLLIMPEXP_FWD_CORE wxMenuItem
;
31 class WXDLLIMPEXP_FWD_CORE wxMenu
;
33 // ----------------------------------------------------------------------------
34 // wxMenuItem is an item in the menu which may be either a normal item, a sub
35 // menu or a separator
36 // ----------------------------------------------------------------------------
38 class WXDLLIMPEXP_CORE wxMenuItemBase
: public wxObject
42 static wxMenuItem
*New(wxMenu
*parentMenu
= NULL
,
43 int itemid
= wxID_SEPARATOR
,
44 const wxString
& text
= wxEmptyString
,
45 const wxString
& help
= wxEmptyString
,
46 wxItemKind kind
= wxITEM_NORMAL
,
47 wxMenu
*subMenu
= NULL
);
49 // destruction: wxMenuItem will delete its submenu
50 virtual ~wxMenuItemBase();
53 wxMenu
*GetMenu() const { return m_parentMenu
; }
54 void SetMenu(wxMenu
* menu
) { m_parentMenu
= menu
; }
57 void SetId(int itemid
) { m_id
= itemid
; }
58 int GetId() const { return m_id
; }
60 // the item's text (or name)
62 // NB: the item's label includes the accelerators and mnemonics info (if
63 // any), i.e. it may contain '&' or '_' or "\t..." and thus is
64 // different from the item's text which only contains the text shown
65 // in the menu. This used to be called SetText.
66 virtual void SetItemLabel(const wxString
& str
);
68 // return the item label including any mnemonics and accelerators.
69 // This used to be called GetText.
70 virtual wxString
GetItemLabel() const { return m_text
; }
72 // return just the text of the item label, without any mnemonics
73 // This used to be called GetLabel.
74 virtual wxString
GetItemLabelText() const { return GetLabelText(m_text
); }
76 // return just the text part of the given label (implemented in platform-specific code)
77 // This used to be called GetLabelFromText.
78 static wxString
GetLabelText(const wxString
& label
);
80 // what kind of menu item we are
81 wxItemKind
GetKind() const { return m_kind
; }
82 void SetKind(wxItemKind kind
) { m_kind
= kind
; }
83 bool IsSeparator() const { return m_kind
== wxITEM_SEPARATOR
; }
85 bool IsCheck() const { return m_kind
== wxITEM_CHECK
; }
86 bool IsRadio() const { return m_kind
== wxITEM_RADIO
; }
88 virtual void SetCheckable(bool checkable
)
89 { m_kind
= checkable
? wxITEM_CHECK
: wxITEM_NORMAL
; }
91 // Notice that this doesn't quite match SetCheckable().
92 bool IsCheckable() const
93 { return m_kind
== wxITEM_CHECK
|| m_kind
== wxITEM_RADIO
; }
95 bool IsSubMenu() const { return m_subMenu
!= NULL
; }
96 void SetSubMenu(wxMenu
*menu
) { m_subMenu
= menu
; }
97 wxMenu
*GetSubMenu() const { return m_subMenu
; }
100 virtual void Enable(bool enable
= true) { m_isEnabled
= enable
; }
101 virtual bool IsEnabled() const { return m_isEnabled
; }
103 virtual void Check(bool check
= true) { m_isChecked
= check
; }
104 virtual bool IsChecked() const { return m_isChecked
; }
105 void Toggle() { Check(!m_isChecked
); }
107 // help string (displayed in the status bar by default)
108 void SetHelp(const wxString
& str
);
109 const wxString
& GetHelp() const { return m_help
; }
112 // extract the accelerator from the given menu string, return NULL if none
114 static wxAcceleratorEntry
*GetAccelFromString(const wxString
& label
);
116 // get our accelerator or NULL (caller must delete the pointer)
117 virtual wxAcceleratorEntry
*GetAccel() const;
119 // set the accel for this item - this may also be done indirectly with
121 virtual void SetAccel(wxAcceleratorEntry
*accel
);
122 #endif // wxUSE_ACCEL
124 #if WXWIN_COMPATIBILITY_2_8
125 // compatibility only, use new functions in the new code
126 wxDEPRECATED( void SetName(const wxString
& str
) );
127 wxDEPRECATED( wxString
GetName() const );
129 // Now use GetItemLabelText
130 wxDEPRECATED( wxString
GetLabel() const ) ;
132 // Now use GetItemLabel
133 wxDEPRECATED( const wxString
& GetText() const );
135 // Now use GetLabelText to strip the accelerators
136 static wxDEPRECATED( wxString
GetLabelFromText(const wxString
& text
) );
138 // Now use SetItemLabel
139 wxDEPRECATED( virtual void SetText(const wxString
& str
) );
140 #endif // WXWIN_COMPATIBILITY_2_8
142 static wxMenuItem
*New(wxMenu
*parentMenu
,
144 const wxString
& text
,
145 const wxString
& help
,
147 wxMenu
*subMenu
= NULL
)
149 return New(parentMenu
, itemid
, text
, help
,
150 isCheckable
? wxITEM_CHECK
: wxITEM_NORMAL
, subMenu
);
154 wxWindowIDRef m_id
; // numeric id of the item >= 0 or wxID_ANY or wxID_SEPARATOR
155 wxMenu
*m_parentMenu
, // the menu we belong to
156 *m_subMenu
; // our sub menu or NULL
157 wxString m_text
, // label of the item
158 m_help
; // the help string for the item
159 wxItemKind m_kind
; // separator/normal/check/radio item?
160 bool m_isChecked
; // is checked?
161 bool m_isEnabled
; // is enabled?
163 // this ctor is for the derived classes only, we're never created directly
164 wxMenuItemBase(wxMenu
*parentMenu
= NULL
,
165 int itemid
= wxID_SEPARATOR
,
166 const wxString
& text
= wxEmptyString
,
167 const wxString
& help
= wxEmptyString
,
168 wxItemKind kind
= wxITEM_NORMAL
,
169 wxMenu
*subMenu
= NULL
);
172 // and, if we have one ctor, compiler won't generate a default copy one, so
173 // declare them ourselves - but don't implement as they shouldn't be used
174 wxMenuItemBase(const wxMenuItemBase
& item
);
175 wxMenuItemBase
& operator=(const wxMenuItemBase
& item
);
178 #if WXWIN_COMPATIBILITY_2_8
179 inline void wxMenuItemBase::SetName(const wxString
&str
)
180 { SetItemLabel(str
); }
181 inline wxString
wxMenuItemBase::GetName() const
182 { return GetItemLabel(); }
183 inline wxString
wxMenuItemBase::GetLabel() const
184 { return GetLabelText(m_text
); }
185 inline const wxString
& wxMenuItemBase::GetText() const { return m_text
; }
186 inline void wxMenuItemBase::SetText(const wxString
& text
) { SetItemLabel(text
); }
187 #endif // WXWIN_COMPATIBILITY_2_8
189 // ----------------------------------------------------------------------------
190 // include the real class declaration
191 // ----------------------------------------------------------------------------
193 #ifdef wxUSE_BASE_CLASSES_ONLY
194 #define wxMenuItem wxMenuItemBase
195 #else // !wxUSE_BASE_CLASSES_ONLY
196 #if defined(__WXUNIVERSAL__)
197 #include "wx/univ/menuitem.h"
198 #elif defined(__WXMSW__)
199 #include "wx/msw/menuitem.h"
200 #elif defined(__WXMOTIF__)
201 #include "wx/motif/menuitem.h"
202 #elif defined(__WXGTK20__)
203 #include "wx/gtk/menuitem.h"
204 #elif defined(__WXGTK__)
205 #include "wx/gtk1/menuitem.h"
206 #elif defined(__WXMAC__)
207 #include "wx/osx/menuitem.h"
208 #elif defined(__WXCOCOA__)
209 #include "wx/cocoa/menuitem.h"
210 #elif defined(__WXPM__)
211 #include "wx/os2/menuitem.h"
213 #endif // wxUSE_BASE_CLASSES_ONLY/!wxUSE_BASE_CLASSES_ONLY
215 #endif // wxUSE_MENUS
218 // _WX_MENUITEM_H_BASE_