1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenu, wxMenuBar classes
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin (wxMenuItem is now in separate file)
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "menu.h"
21 #include "wx/dynarray.h"
22 #include "wx/string.h"
28 class WXDLLEXPORT wxMenuItem
;
29 class WXDLLEXPORT wxMenuBar
;
30 class WXDLLEXPORT wxMenu
;
31 class WXDLLEXPORT wxFrame
;
33 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
35 WX_DEFINE_ARRAY(wxAcceleratorEntry
*, wxAcceleratorArray
);
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 class WXDLLEXPORT wxMenu
: public wxEvtHandler
43 DECLARE_DYNAMIC_CLASS(wxMenu
)
47 wxMenu(const wxString
& title
,
48 const wxFunction func
)
53 wxMenu( long WXUNUSED(style
) )
55 Init( wxEmptyString
);
58 wxMenu(const wxString
& title
= wxEmptyString
, long WXUNUSED(style
) = 0)
66 // append a separator to the menu
67 void AppendSeparator();
68 // append a normal item to the menu
69 void Append(int id
, const wxString
& label
,
70 const wxString
& helpString
= wxEmptyString
,
71 bool checkable
= FALSE
);
73 void Append(int id
, const wxString
& label
,
75 const wxString
& helpString
= wxEmptyString
);
76 // append anything (create wxMenuItem first)
77 void Append(wxMenuItem
*pItem
);
79 // insert a break in the menu
83 // If it's a submenu, menu is not destroyed.
84 // VZ: why? shouldn't it return "wxMenu *" then?
88 void SetClientData(void* clientData
) { m_clientData
= clientData
; }
89 void* GetClientData() const { return m_clientData
; }
92 // enable/disable item
93 void Enable(int id
, bool enable
);
95 bool IsEnabled(int id
) const;
97 // check/uncheck item - only for checkable items, of course
98 void Check(int id
, bool check
);
100 bool IsChecked(int id
) const;
104 void SetTitle(const wxString
& label
);
105 const wxString
GetTitle() const;
107 void SetLabel(int id
, const wxString
& label
);
108 wxString
GetLabel(int id
) const;
110 virtual void SetHelpString(int id
, const wxString
& helpString
);
111 virtual wxString
GetHelpString(int id
) const;
113 // get the list of items
114 wxList
& GetItems() const { return (wxList
&)m_menuItems
; }
117 // returns id of the item matching the given string or wxNOT_FOUND
118 virtual int FindItem(const wxString
& itemString
) const;
119 // returns NULL if not found
120 wxMenuItem
* FindItem(int id
) const { return FindItemForId(id
); }
121 // find wxMenuItem by ID, and item's menu too if itemMenu is !NULL
122 wxMenuItem
*FindItemForId(int itemId
, wxMenu
**itemMenu
= NULL
) const;
124 // Updates the UI for a menu and all submenus recursively. source is the
125 // object that has the update event handlers defined for it. If NULL, the
126 // menu or associated window will be used.
127 void UpdateUI(wxEvtHandler
* source
= (wxEvtHandler
*)NULL
);
129 bool ProcessCommand(wxCommandEvent
& event
);
131 virtual void SetParent(wxEvtHandler
*parent
) { m_parent
= parent
; }
132 void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
133 wxEvtHandler
*GetEventHandler() const { return m_eventHandler
; }
136 bool MSWCommand(WXUINT param
, WXWORD id
);
138 void SetInvokingWindow(wxWindow
*pWin
) { m_pInvokingWindow
= pWin
; }
139 wxWindow
*GetInvokingWindow() const { return m_pInvokingWindow
; }
141 // semi-private accessors
142 // get the window which contains this menu
143 wxWindow
*GetWindow() const;
144 // get the menu handle
145 WXHMENU
GetHMenu() const;
147 // only for wxMenuBar
148 void Attach(wxMenuBar
*menubar
);
152 size_t GetAccelCount() const { return m_accels
.GetCount(); }
153 size_t CopyAccels(wxAcceleratorEntry
*accels
) const;
154 #endif // wxUSE_ACCEL
156 wxFunction
GetCallback() const { return m_callback
; }
157 void Callback(const wxFunction func
) { m_callback
= func
; }
158 wxFunction m_callback
;
160 #ifdef WXWIN_COMPATIBILITY
161 // compatibility: these functions are deprecated
162 bool Enabled(int id
) const { return IsEnabled(id
); }
163 bool Checked(int id
) const { return IsChecked(id
); }
165 #endif // WXWIN_COMPATIBILITY
168 // common part of all ctors
169 void Init(const wxString
& title
, const wxFunction func
= NULL
);
173 // This is used when m_hMenu is NULL because we don't want to
174 // delete it in ~wxMenu (it's been added to a parent menu).
175 // But we'll still need the handle for other purposes.
176 // Might be better to have a flag saying whether it's deleteable or not.
177 WXHMENU m_savehMenu
; // Used for Enable() on popup
182 wxMenu
* m_topLevelMenu
;
183 wxMenuBar
* m_menuBar
;
185 wxEvtHandler
* m_parent
;
186 wxEvtHandler
* m_eventHandler
;
187 wxWindow
*m_pInvokingWindow
;
191 // the accelerators for our menu items
192 wxAcceleratorArray m_accels
;
193 #endif // wxUSE_ACCEL
196 // ----------------------------------------------------------------------------
197 // Menu Bar (a la Windows)
198 // ----------------------------------------------------------------------------
200 class WXDLLEXPORT wxMenuBar
: public wxEvtHandler
202 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
206 // default constructor
209 wxMenuBar(long style
);
210 // menubar takes ownership of the menus arrays but copies the titles
211 wxMenuBar(int n
, wxMenu
*menus
[], const wxString titles
[]);
212 virtual ~wxMenuBar();
214 // menubar construction
216 void Append(wxMenu
*menu
, const wxString
& title
);
217 void Insert(int pos
, wxMenu
* menu
, const wxString
& title
);
218 void ReplaceMenu(int pos
, wxMenu
* new_menu
, const wxString
& title
);
219 int FindMenu(const wxString
& title
);
221 virtual void Delete(wxMenu
*menu
, int index
= 0); /* Menu not destroyed */
224 // NB: must only be used AFTER menu has been attached to frame,
225 // otherwise use individual menus to enable/disable items
227 void Enable(int id
, bool enable
);
228 // TRUE if item enabled
229 bool IsEnabled(int id
) const;
231 void EnableTop(int pos
, bool enable
);
233 // works only with checkable items
234 void Check(int id
, bool check
);
236 bool IsChecked(int id
) const;
238 void SetLabel(int id
, const wxString
& label
) ;
239 wxString
GetLabel(int id
) const ;
241 virtual void SetHelpString(int id
, const wxString
& helpString
);
242 virtual wxString
GetHelpString(int id
) const ;
244 void SetLabelTop(int pos
, const wxString
& label
) ;
245 wxString
GetLabelTop(int pos
) const ;
247 // notifications: return FALSE to prevent the menu from being
249 virtual bool OnAppend(wxMenu
*menu
, const wxChar
*title
);
250 virtual bool OnDelete(wxMenu
*menu
, int index
);
253 // by menu and item names, returns wxNOT_FOUND if not found
254 virtual int FindMenuItem(const wxString
& menuString
,
255 const wxString
& itemString
) const;
256 // returns NULL if not found
257 wxMenuItem
* FindItem(int id
) const { return FindItemForId(id
); }
258 // returns NULL if not found, fills menuForItem if !NULL
259 wxMenuItem
*FindItemForId(int itemId
, wxMenu
**menuForItem
= NULL
) const;
262 int GetMenuCount() const { return m_menuCount
; }
263 wxMenu
*GetMenu(int i
) const { return m_menus
[i
]; }
265 void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
266 wxEvtHandler
*GetEventHandler() { return m_eventHandler
; }
268 #ifdef WXWIN_COMPATIBILITY
269 // compatibility: these functions are deprecated
270 bool Enabled(int id
) const { return IsEnabled(id
); }
271 bool Checked(int id
) const { return IsChecked(id
); }
272 #endif // WXWIN_COMPATIBILITY
275 // returns TRUE if we're attached to a frame
276 bool IsAttached() const { return m_menuBarFrame
!= NULL
; }
277 // get the frame we live in
278 wxFrame
*GetFrame() const { return m_menuBarFrame
; }
280 void Attach(wxFrame
*frame
);
283 // get the accel table for the menus
284 const wxAcceleratorTable
& GetAccelTable() const { return m_accelTable
; }
285 #endif // wxUSE_ACCEL
287 // get the menu handle
288 WXHMENU
GetHMenu() const { return m_hMenu
; }
290 // if the menubar is modified, the display is not updated automatically,
291 // call this function to update it (m_menuBarFrame should be !NULL)
295 // common part of all ctors
298 wxEvtHandler
*m_eventHandler
;
302 wxFrame
*m_menuBarFrame
;
306 // the accelerator table for all accelerators in all our menus
307 wxAcceleratorTable m_accelTable
;
308 #endif // wxUSE_ACCEL
311 #endif // _WX_MENU_H_