]> git.saurik.com Git - wxWidgets.git/blame - include/wx/menuitem.h
cleanup mac
[wxWidgets.git] / include / wx / menuitem.h
CommitLineData
974e8d94
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/menuitem.h
3// Purpose: wxMenuItem class
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 25.10.99
7// RCS-ID: $Id$
8// Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
974e8d94
VZ
10///////////////////////////////////////////////////////////////////////////////
11
50414e24
JS
12#ifndef _WX_MENUITEM_H_BASE_
13#define _WX_MENUITEM_H_BASE_
14
2ecf902b
WS
15#include "wx/defs.h"
16
1e6feb95
VZ
17#if wxUSE_MENUS
18
974e8d94
VZ
19// ----------------------------------------------------------------------------
20// headers
21// ----------------------------------------------------------------------------
22
23#include "wx/object.h" // base class
24
974e8d94
VZ
25// ----------------------------------------------------------------------------
26// forward declarations
27// ----------------------------------------------------------------------------
28
b5dbe15d
VS
29class WXDLLIMPEXP_FWD_CORE wxAcceleratorEntry;
30class WXDLLIMPEXP_FWD_CORE wxMenuItem;
31class WXDLLIMPEXP_FWD_CORE wxMenu;
974e8d94
VZ
32
33// ----------------------------------------------------------------------------
34// wxMenuItem is an item in the menu which may be either a normal item, a sub
35// menu or a separator
36// ----------------------------------------------------------------------------
37
38class WXDLLEXPORT wxMenuItemBase : public wxObject
39{
40public:
41 // creation
42 static wxMenuItem *New(wxMenu *parentMenu = (wxMenu *)NULL,
d9e2e4c2 43 int itemid = wxID_SEPARATOR,
974e8d94
VZ
44 const wxString& text = wxEmptyString,
45 const wxString& help = wxEmptyString,
546bfbea 46 wxItemKind kind = wxITEM_NORMAL,
974e8d94
VZ
47 wxMenu *subMenu = (wxMenu *)NULL);
48
717a57c2
VZ
49 // destruction: wxMenuItem will delete its submenu
50 virtual ~wxMenuItemBase();
51
3dfac970
VZ
52 // the menu we're in
53 wxMenu *GetMenu() const { return m_parentMenu; }
1e93ca17 54 void SetMenu(wxMenu* menu) { m_parentMenu = menu; }
3dfac970 55
974e8d94 56 // get/set id
d9e2e4c2 57 void SetId(int itemid) { m_id = itemid; }
974e8d94
VZ
58 int GetId() const { return m_id; }
59 bool IsSeparator() const { return m_id == wxID_SEPARATOR; }
60
717a57c2
VZ
61 // the item's text (or name)
62 //
52af3158 63 // NB: the item's label includes the accelerators and mnemonics info (if
717a57c2 64 // any), i.e. it may contain '&' or '_' or "\t..." and thus is
52af3158
JS
65 // different from the item's text which only contains the text shown
66 // in the menu. This used to be called SetText.
67 virtual void SetItemLabel(const wxString& str);
974e8d94 68
52af3158
JS
69 // return the item label including any mnemonics and accelerators.
70 // This used to be called GetText.
71 virtual wxString GetItemLabel() const { return m_text; }
72
73 // return just the text of the item label, without any mnemonics
74 // This used to be called GetLabel.
75 virtual wxString GetItemLabelText() const { return GetLabelText(m_text); }
76
77 // return just the text part of the given label (implemented in platform-specific code)
78 // This used to be called GetLabelFromText.
79 static wxString GetLabelText(const wxString& label);
3b59cdbf 80
974e8d94 81 // what kind of menu item we are
d65c269b 82 wxItemKind GetKind() const { return m_kind; }
d36d8dd7 83 void SetKind(wxItemKind kind) { m_kind = kind; }
d65c269b 84
bb28b477 85 virtual void SetCheckable(bool checkable) { m_kind = checkable ? wxITEM_CHECK : wxITEM_NORMAL; }
0472ece7 86 bool IsCheckable() const
546bfbea 87 { return m_kind == wxITEM_CHECK || m_kind == wxITEM_RADIO; }
974e8d94
VZ
88
89 bool IsSubMenu() const { return m_subMenu != NULL; }
90 void SetSubMenu(wxMenu *menu) { m_subMenu = menu; }
91 wxMenu *GetSubMenu() const { return m_subMenu; }
92
93 // state
4e32eea1 94 virtual void Enable(bool enable = true) { m_isEnabled = enable; }
974e8d94 95 virtual bool IsEnabled() const { return m_isEnabled; }
717a57c2 96
4e32eea1 97 virtual void Check(bool check = true) { m_isChecked = check; }
974e8d94 98 virtual bool IsChecked() const { return m_isChecked; }
717a57c2 99 void Toggle() { Check(!m_isChecked); }
974e8d94
VZ
100
101 // help string (displayed in the status bar by default)
345319d6 102 void SetHelp(const wxString& str);
974e8d94
VZ
103 const wxString& GetHelp() const { return m_help; }
104
717a57c2 105#if wxUSE_ACCEL
1e6feb95
VZ
106 // extract the accelerator from the given menu string, return NULL if none
107 // found
108 static wxAcceleratorEntry *GetAccelFromString(const wxString& label);
109
717a57c2 110 // get our accelerator or NULL (caller must delete the pointer)
1e6feb95 111 virtual wxAcceleratorEntry *GetAccel() const;
717a57c2
VZ
112
113 // set the accel for this item - this may also be done indirectly with
114 // SetText()
115 virtual void SetAccel(wxAcceleratorEntry *accel);
116#endif // wxUSE_ACCEL
117
b4a980f4 118#if WXWIN_COMPATIBILITY_2_8
974e8d94 119 // compatibility only, use new functions in the new code
b4a980f4 120 wxDEPRECATED( void SetName(const wxString& str) );
52af3158
JS
121 wxDEPRECATED( wxString GetName() const );
122
123 // Now use GetItemLabelText
124 wxDEPRECATED( wxString GetLabel() const ) ;
125
126 // Now use GetItemLabel
127 wxDEPRECATED( const wxString& GetText() const );
128
129 // Now use GetLabelText to strip the accelerators
130 wxDEPRECATED( static wxString GetLabelFromText(const wxString& text) );
131
132 // Now use SetItemLabel
133 wxDEPRECATED( virtual void SetText(const wxString& str) );
b4a980f4 134#endif // WXWIN_COMPATIBILITY_2_8
974e8d94 135
d65c269b 136 static wxMenuItem *New(wxMenu *parentMenu,
d9e2e4c2 137 int itemid,
d65c269b
VZ
138 const wxString& text,
139 const wxString& help,
140 bool isCheckable,
141 wxMenu *subMenu = (wxMenu *)NULL)
142 {
d9e2e4c2 143 return New(parentMenu, itemid, text, help,
546bfbea 144 isCheckable ? wxITEM_CHECK : wxITEM_NORMAL, subMenu);
d65c269b
VZ
145 }
146
974e8d94 147protected:
4e32eea1 148 int m_id; // numeric id of the item >= 0 or wxID_ANY or wxID_SEPARATOR
974e8d94
VZ
149 wxMenu *m_parentMenu, // the menu we belong to
150 *m_subMenu; // our sub menu or NULL
151 wxString m_text, // label of the item
152 m_help; // the help string for the item
3103e8a9 153 wxItemKind m_kind; // separator/normal/check/radio item?
974e8d94
VZ
154 bool m_isChecked; // is checked?
155 bool m_isEnabled; // is enabled?
c0d6c58b 156
d65c269b
VZ
157 // this ctor is for the derived classes only, we're never created directly
158 wxMenuItemBase(wxMenu *parentMenu = (wxMenu *)NULL,
d9e2e4c2 159 int itemid = wxID_SEPARATOR,
d65c269b
VZ
160 const wxString& text = wxEmptyString,
161 const wxString& help = wxEmptyString,
546bfbea 162 wxItemKind kind = wxITEM_NORMAL,
d65c269b 163 wxMenu *subMenu = (wxMenu *)NULL);
7af206c1
VZ
164
165private:
166 // and, if we have one ctor, compiler won't generate a default copy one, so
167 // declare them ourselves - but don't implement as they shouldn't be used
168 wxMenuItemBase(const wxMenuItemBase& item);
169 wxMenuItemBase& operator=(const wxMenuItemBase& item);
974e8d94
VZ
170};
171
b4a980f4 172#if WXWIN_COMPATIBILITY_2_8
21324807 173inline void wxMenuItemBase::SetName(const wxString &str)
52af3158
JS
174 { SetItemLabel(str); }
175inline wxString wxMenuItemBase::GetName() const
176 { return GetItemLabel(); }
177inline wxString wxMenuItemBase::GetLabel() const
808260ec 178 { return GetLabelText(m_text); }
52af3158
JS
179inline const wxString& wxMenuItemBase::GetText() const { return m_text; }
180inline void wxMenuItemBase::SetText(const wxString& text) { SetItemLabel(text); }
b4a980f4
VZ
181#endif // WXWIN_COMPATIBILITY_2_8
182
974e8d94
VZ
183// ----------------------------------------------------------------------------
184// include the real class declaration
185// ----------------------------------------------------------------------------
186
187#ifdef wxUSE_BASE_CLASSES_ONLY
188 #define wxMenuItem wxMenuItemBase
189#else // !wxUSE_BASE_CLASSES_ONLY
1e6feb95
VZ
190#if defined(__WXUNIVERSAL__)
191 #include "wx/univ/menuitem.h"
4055ed82 192#elif defined(__WXPALMOS__)
ffecfa5a 193 #include "wx/palmos/menuitem.h"
1e6feb95 194#elif defined(__WXMSW__)
974e8d94 195 #include "wx/msw/menuitem.h"
50414e24 196#elif defined(__WXMOTIF__)
974e8d94 197 #include "wx/motif/menuitem.h"
1be7a35c 198#elif defined(__WXGTK20__)
974e8d94 199 #include "wx/gtk/menuitem.h"
1be7a35c
MR
200#elif defined(__WXGTK__)
201 #include "wx/gtk1/menuitem.h"
50414e24 202#elif defined(__WXMAC__)
974e8d94 203 #include "wx/mac/menuitem.h"
e64df9bc
DE
204#elif defined(__WXCOCOA__)
205 #include "wx/cocoa/menuitem.h"
1777b9bb 206#elif defined(__WXPM__)
974e8d94 207 #include "wx/os2/menuitem.h"
c801d85f 208#endif
974e8d94 209#endif // wxUSE_BASE_CLASSES_ONLY/!wxUSE_BASE_CLASSES_ONLY
c801d85f 210
1e6feb95
VZ
211#endif // wxUSE_MENUS
212
c801d85f 213#endif
50414e24 214 // _WX_MENUITEM_H_BASE_