]> git.saurik.com Git - wxWidgets.git/blame - include/wx/menu.h
Removed some commented-out code
[wxWidgets.git] / include / wx / menu.h
CommitLineData
3dfac970
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/menu.h
3// Purpose: wxMenu and wxMenuBar classes
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 26.10.99
7// RCS-ID: $Id$
8// Copyright: (c) wxWindows team
371a5b4e 9// Licence: wxWindows licence
3dfac970
VZ
10///////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_MENU_H_BASE_
13#define _WX_MENU_H_BASE_
c801d85f 14
af49c4b8 15#if defined(__GNUG__) && !defined(__APPLE__)
3dfac970
VZ
16 #pragma interface "menubase.h"
17#endif
18
1e6feb95
VZ
19#if wxUSE_MENUS
20
3dfac970
VZ
21// ----------------------------------------------------------------------------
22// headers
23// ----------------------------------------------------------------------------
24
717a57c2 25#include "wx/list.h" // for "template" list classes
3dfac970
VZ
26#include "wx/window.h" // base class for wxMenuBar
27
717a57c2
VZ
28// also include this one to ensure compatibility with old code which only
29// included wx/menu.h
30#include "wx/menuitem.h"
31
3dfac970 32class WXDLLEXPORT wxMenu;
1e6feb95 33class WXDLLEXPORT wxMenuBarBase;
3dfac970
VZ
34class WXDLLEXPORT wxMenuBar;
35class WXDLLEXPORT wxMenuItem;
36
717a57c2 37// pseudo template list classes
f6bcfd97
BP
38WX_DECLARE_EXPORTED_LIST(wxMenu, wxMenuList);
39WX_DECLARE_EXPORTED_LIST(wxMenuItem, wxMenuItemList);
717a57c2 40
9739d9ee
VZ
41// ----------------------------------------------------------------------------
42// conditional compilation
43// ----------------------------------------------------------------------------
44
45// having callbacks in menus is a wxWin 1.6x feature which should be replaced
46// with event tables in wxWin 2.xx code - however provide it because many
47// people like it a lot by default
48#ifndef wxUSE_MENU_CALLBACK
49 #if WXWIN_COMPATIBILITY_2
50 #define wxUSE_MENU_CALLBACK 1
51 #else
52 #define wxUSE_MENU_CALLBACK 0
53 #endif // WXWIN_COMPATIBILITY_2
54#endif // !defined(wxUSE_MENU_CALLBACK)
55
3dfac970
VZ
56// ----------------------------------------------------------------------------
57// wxMenu
58// ----------------------------------------------------------------------------
59
717a57c2
VZ
60class WXDLLEXPORT wxMenuBase : public wxEvtHandler
61{
62public:
63 // create a menu
64 static wxMenu *New(const wxString& title = wxEmptyString, long style = 0);
65
66 // ctors
67 wxMenuBase(const wxString& title, long style = 0) : m_title(title)
68 { Init(style); }
69 wxMenuBase(long style = 0)
70 { Init(style); }
71
72 // dtor deletes all the menu items we own
73 virtual ~wxMenuBase();
74
75 // menu construction
76 // -----------------
77
d65c269b 78 // append any kind of item (normal/check/radio/separator)
d9e2e4c2 79 void Append(int itemid,
717a57c2
VZ
80 const wxString& text,
81 const wxString& help = wxEmptyString,
546bfbea 82 wxItemKind kind = wxITEM_NORMAL)
717a57c2 83 {
d9e2e4c2 84 DoAppend(wxMenuItem::New((wxMenu *)this, itemid, text, help, kind));
717a57c2
VZ
85 }
86
0e528b99
JS
87 // append a separator to the menu
88 void AppendSeparator() { Append(wxID_SEPARATOR, wxEmptyString); }
89
d65c269b 90 // append a check item
d9e2e4c2 91 void AppendCheckItem(int itemid,
d65c269b
VZ
92 const wxString& text,
93 const wxString& help = wxEmptyString)
94 {
d9e2e4c2 95 Append(itemid, text, help, wxITEM_CHECK);
d65c269b
VZ
96 }
97
98 // append a radio item
d9e2e4c2 99 void AppendRadioItem(int itemid,
d65c269b
VZ
100 const wxString& text,
101 const wxString& help = wxEmptyString)
102 {
d9e2e4c2 103 Append(itemid, text, help, wxITEM_RADIO);
d65c269b
VZ
104 }
105
717a57c2 106 // append a submenu
d9e2e4c2 107 void Append(int itemid,
717a57c2
VZ
108 const wxString& text,
109 wxMenu *submenu,
110 const wxString& help = wxEmptyString)
111 {
d9e2e4c2 112 DoAppend(wxMenuItem::New((wxMenu *)this, itemid, text, help,
546bfbea 113 wxITEM_NORMAL, submenu));
717a57c2
VZ
114 }
115
116 // the most generic form of Append() - append anything
117 void Append(wxMenuItem *item) { DoAppend(item); }
118
119 // insert a break in the menu (only works when appending the items, not
120 // inserting them)
121 virtual void Break() { }
122
123 // insert an item before given position
124 bool Insert(size_t pos, wxMenuItem *item);
d65c269b
VZ
125
126 // insert an item before given position
f6bcfd97 127 void Insert(size_t pos,
d9e2e4c2 128 int itemid,
f6bcfd97
BP
129 const wxString& text,
130 const wxString& help = wxEmptyString,
546bfbea 131 wxItemKind kind = wxITEM_NORMAL)
f6bcfd97 132 {
d9e2e4c2 133 Insert(pos, wxMenuItem::New((wxMenu *)this, itemid, text, help, kind));
f6bcfd97
BP
134 }
135
136 // insert a separator
137 void InsertSeparator(size_t pos)
138 {
139 Insert(pos, wxMenuItem::New((wxMenu *)this));
140 }
141
d65c269b
VZ
142 // insert a check item
143 void InsertCheckItem(size_t pos,
d9e2e4c2 144 int itemid,
d65c269b
VZ
145 const wxString& text,
146 const wxString& help = wxEmptyString)
147 {
d9e2e4c2 148 Insert(pos, itemid, text, help, wxITEM_CHECK);
d65c269b
VZ
149 }
150
151 // insert a radio item
152 void InsertRadioItem(size_t pos,
d9e2e4c2 153 int itemid,
d65c269b
VZ
154 const wxString& text,
155 const wxString& help = wxEmptyString)
156 {
d9e2e4c2 157 Insert(pos, itemid, text, help, wxITEM_RADIO);
d65c269b
VZ
158 }
159
f6bcfd97
BP
160 // insert a submenu
161 void Insert(size_t pos,
d9e2e4c2 162 int itemid,
f6bcfd97
BP
163 const wxString& text,
164 wxMenu *submenu,
165 const wxString& help = wxEmptyString)
166 {
d9e2e4c2 167 Insert(pos, wxMenuItem::New((wxMenu *)this, itemid, text, help,
546bfbea 168 wxITEM_NORMAL, submenu));
f6bcfd97
BP
169 }
170
171 // prepend an item to the menu
172 void Prepend(wxMenuItem *item)
173 {
174 Insert(0u, item);
175 }
176
d65c269b 177 // prepend any item to the menu
d9e2e4c2 178 void Prepend(int itemid,
f6bcfd97
BP
179 const wxString& text,
180 const wxString& help = wxEmptyString,
546bfbea 181 wxItemKind kind = wxITEM_NORMAL)
f6bcfd97 182 {
d9e2e4c2 183 Insert(0u, itemid, text, help, kind);
f6bcfd97
BP
184 }
185
d65c269b 186 // prepend a separator
f6bcfd97
BP
187 void PrependSeparator()
188 {
189 InsertSeparator(0u);
190 }
191
d65c269b 192 // prepend a check item
d9e2e4c2 193 void PrependCheckItem(int itemid,
d65c269b
VZ
194 const wxString& text,
195 const wxString& help = wxEmptyString)
196 {
d9e2e4c2 197 InsertCheckItem(0u, itemid, text, help);
d65c269b
VZ
198 }
199
200 // prepend a radio item
d9e2e4c2 201 void PrependRadioItem(int itemid,
d65c269b
VZ
202 const wxString& text,
203 const wxString& help = wxEmptyString)
204 {
d9e2e4c2 205 InsertRadioItem(0u, itemid, text, help);
d65c269b
VZ
206 }
207
208 // prepend a submenu
d9e2e4c2 209 void Prepend(int itemid,
f6bcfd97
BP
210 const wxString& text,
211 wxMenu *submenu,
212 const wxString& help = wxEmptyString)
213 {
d9e2e4c2 214 Insert(0u, itemid, text, submenu, help);
f6bcfd97 215 }
717a57c2
VZ
216
217 // detach an item from the menu, but don't delete it so that it can be
218 // added back later (but if it's not, the caller is responsible for
219 // deleting it!)
d9e2e4c2 220 wxMenuItem *Remove(int itemid) { return Remove(FindChildItem(itemid)); }
717a57c2
VZ
221 wxMenuItem *Remove(wxMenuItem *item);
222
223 // delete an item from the menu (submenus are not destroyed by this
224 // function, see Destroy)
d9e2e4c2 225 bool Delete(int itemid) { return Delete(FindChildItem(itemid)); }
717a57c2
VZ
226 bool Delete(wxMenuItem *item);
227
228 // delete the item from menu and destroy it (if it's a submenu)
d9e2e4c2 229 bool Destroy(int itemid) { return Destroy(FindChildItem(itemid)); }
717a57c2
VZ
230 bool Destroy(wxMenuItem *item);
231
232 // menu items access
233 // -----------------
234
235 // get the items
236 size_t GetMenuItemCount() const { return m_items.GetCount(); }
237
238 const wxMenuItemList& GetMenuItems() const { return m_items; }
239 wxMenuItemList& GetMenuItems() { return m_items; }
240
241 // search
1e6feb95 242 virtual int FindItem(const wxString& item) const;
d9e2e4c2 243 wxMenuItem* FindItem(int itemid, wxMenu **menu = NULL) const;
717a57c2
VZ
244
245 // get/set items attributes
d9e2e4c2
DE
246 void Enable(int itemid, bool enable);
247 bool IsEnabled(int itemid) const;
3dfac970 248
d9e2e4c2
DE
249 void Check(int itemid, bool check);
250 bool IsChecked(int itemid) const;
717a57c2 251
d9e2e4c2
DE
252 void SetLabel(int itemid, const wxString& label);
253 wxString GetLabel(int itemid) const;
717a57c2 254
d9e2e4c2
DE
255 virtual void SetHelpString(int itemid, const wxString& helpString);
256 virtual wxString GetHelpString(int itemid) const;
717a57c2
VZ
257
258 // misc accessors
259 // --------------
260
261 // the title
262 virtual void SetTitle(const wxString& title) { m_title = title; }
263 const wxString GetTitle() const { return m_title; }
264
717a57c2
VZ
265 // event handler
266 void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
267 wxEvtHandler *GetEventHandler() const { return m_eventHandler; }
268
269 // invoking window
270 void SetInvokingWindow(wxWindow *win) { m_invokingWindow = win; }
271 wxWindow *GetInvokingWindow() const { return m_invokingWindow; }
272
273 // style
274 long GetStyle() const { return m_style; }
275
276 // implementation helpers
277 // ----------------------
278
279 // Updates the UI for a menu and all submenus recursively. source is the
280 // object that has the update event handlers defined for it. If NULL, the
281 // menu or associated window will be used.
282 void UpdateUI(wxEvtHandler* source = (wxEvtHandler*)NULL);
283
1e6feb95
VZ
284 // get the menu bar this menu is attached to (may be NULL, always NULL for
285 // popup menus)
286 wxMenuBar *GetMenuBar() const { return m_menuBar; }
287
288 // called when the menu is attached/detached to/from a menu bar
289 virtual void Attach(wxMenuBarBase *menubar);
290 virtual void Detach();
291
717a57c2
VZ
292 // is the menu attached to a menu bar (or is it a popup one)?
293 bool IsAttached() const { return m_menuBar != NULL; }
294
295 // set/get the parent of this menu
296 void SetParent(wxMenu *parent) { m_menuParent = parent; }
297 wxMenu *GetParent() const { return m_menuParent; }
298
d65c269b
VZ
299 // implementation only from now on
300 // -------------------------------
301
302 // unlike FindItem(), this function doesn't recurse but only looks through
303 // our direct children and also may return the index of the found child if
304 // pos != NULL
d9e2e4c2 305 wxMenuItem *FindChildItem(int itemid, size_t *pos = NULL) const;
d65c269b
VZ
306
307 // called to generate a wxCommandEvent, return TRUE if it was processed,
308 // FALSE otherwise
309 //
310 // the checked parameter may have boolean value or -1 for uncheckable items
d9e2e4c2 311 bool SendEvent(int itemid, int checked = -1);
d65c269b 312
717a57c2 313 // compatibility: these functions are deprecated, use the new ones instead
d65c269b
VZ
314 // -----------------------------------------------------------------------
315
316 // use the versions taking wxItem_XXX now instead, they're more readable
317 // and allow adding the radio items as well
d9e2e4c2 318 void Append(int itemid,
d65c269b
VZ
319 const wxString& text,
320 const wxString& help,
321 bool isCheckable)
322 {
d9e2e4c2 323 Append(itemid, text, help, isCheckable ? wxITEM_CHECK : wxITEM_NORMAL);
d65c269b
VZ
324 }
325
326 void Insert(size_t pos,
d9e2e4c2 327 int itemid,
d65c269b
VZ
328 const wxString& text,
329 const wxString& help,
330 bool isCheckable)
331 {
d9e2e4c2 332 Insert(pos, itemid, text, help, isCheckable ? wxITEM_CHECK : wxITEM_NORMAL);
d65c269b
VZ
333 }
334
d9e2e4c2 335 void Prepend(int itemid,
d65c269b
VZ
336 const wxString& text,
337 const wxString& help,
338 bool isCheckable)
339 {
d9e2e4c2 340 Insert(0u, itemid, text, help, isCheckable);
d65c269b
VZ
341 }
342
343#if WXWIN_COMPATIBILITY
d9e2e4c2
DE
344 bool Enabled(int itemid) const { return IsEnabled(itemid); }
345 bool Checked(int itemid) const { return IsChecked(itemid); }
717a57c2
VZ
346
347 wxMenuItem* FindItemForId(int itemId, wxMenu **itemMenu) const
348 { return FindItem(itemId, itemMenu); }
349
350 wxList& GetItems() const { return (wxList &)m_items; }
c0ab6adf 351#endif // WXWIN_COMPATIBILITY
717a57c2 352
45f22d48 353#if wxUSE_MENU_CALLBACK || defined(__WXMOTIF__)
717a57c2
VZ
354 // wxWin 1.6x compatible menu event handling
355 wxFunction GetCallback() const { return m_callback; }
356 void Callback(const wxFunction func) { m_callback = func; }
9739d9ee 357
717a57c2 358 wxFunction m_callback;
9739d9ee 359#endif // wxUSE_MENU_CALLBACK
717a57c2
VZ
360
361protected:
362 // virtuals to override in derived classes
363 // ---------------------------------------
364
365 virtual bool DoAppend(wxMenuItem *item);
366 virtual bool DoInsert(size_t pos, wxMenuItem *item);
367
368 virtual wxMenuItem *DoRemove(wxMenuItem *item);
369 virtual bool DoDelete(wxMenuItem *item);
370 virtual bool DoDestroy(wxMenuItem *item);
371
372 // helpers
373 // -------
374
375 // common part of all ctors
376 void Init(long style);
377
1e6feb95
VZ
378 // associate the submenu with this menu
379 void AddSubMenu(wxMenu *submenu);
380
717a57c2
VZ
381 wxMenuBar *m_menuBar; // menubar we belong to or NULL
382 wxMenu *m_menuParent; // parent menu or NULL
383
384 wxString m_title; // the menu title or label
385 wxMenuItemList m_items; // the list of menu items
386
387 wxWindow *m_invokingWindow; // for popup menus
717a57c2
VZ
388
389 long m_style; // combination of wxMENU_XXX flags
390
391 wxEvtHandler *m_eventHandler; // a pluggable in event handler
22f3361e
VZ
392
393 DECLARE_NO_COPY_CLASS(wxMenuBase)
717a57c2 394};
3dfac970
VZ
395
396// ----------------------------------------------------------------------------
397// wxMenuBar
398// ----------------------------------------------------------------------------
399
400class WXDLLEXPORT wxMenuBarBase : public wxWindow
401{
402public:
403 // default ctor
404 wxMenuBarBase();
405
406 // dtor will delete all menus we own
407 virtual ~wxMenuBarBase();
408
409 // menu bar construction
410 // ---------------------
411
412 // append a menu to the end of menubar, return TRUE if ok
413 virtual bool Append(wxMenu *menu, const wxString& title);
414
415 // insert a menu before the given position into the menubar, return TRUE
416 // if inserted ok
417 virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title);
418
419 // menu bar items access
420 // ---------------------
421
422 // get the number of menus in the menu bar
423 size_t GetMenuCount() const { return m_menus.GetCount(); }
424
425 // get the menu at given position
426 wxMenu *GetMenu(size_t pos) const;
427
428 // replace the menu at given position with another one, returns the
429 // previous menu (which should be deleted by the caller)
430 virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title);
431
432 // delete the menu at given position from the menu bar, return the pointer
433 // to the menu (which should be deleted by the caller)
434 virtual wxMenu *Remove(size_t pos);
435
436 // enable or disable a submenu
437 virtual void EnableTop(size_t pos, bool enable) = 0;
438
1e6feb95 439 // is the menu enabled?
d699f48b 440 virtual bool IsEnabledTop(size_t WXUNUSED(pos)) const { return TRUE; }
1e6feb95 441
3dfac970
VZ
442 // get or change the label of the menu at given position
443 virtual void SetLabelTop(size_t pos, const wxString& label) = 0;
444 virtual wxString GetLabelTop(size_t pos) const = 0;
445
446 // item search
447 // -----------
448
449 // by menu and item names, returns wxNOT_FOUND if not found or id of the
450 // found item
1e6feb95 451 virtual int FindMenuItem(const wxString& menu, const wxString& item) const;
3dfac970
VZ
452
453 // find item by id (in any menu), returns NULL if not found
454 //
455 // if menu is !NULL, it will be filled with wxMenu this item belongs to
d9e2e4c2 456 virtual wxMenuItem* FindItem(int itemid, wxMenu **menu = NULL) const;
3dfac970 457
52130557 458 // find menu by its caption, return wxNOT_FOUND on failure
270e8b6a 459 int FindMenu(const wxString& title) const;
52130557 460
3dfac970
VZ
461 // item access
462 // -----------
463
464 // all these functions just use FindItem() and then call an appropriate
465 // method on it
466 //
467 // NB: under MSW, these methods can only be used after the menubar had
468 // been attached to the frame
469
d9e2e4c2
DE
470 void Enable(int itemid, bool enable);
471 void Check(int itemid, bool check);
472 bool IsChecked(int itemid) const;
473 bool IsEnabled(int itemid) const;
3dfac970 474
d9e2e4c2
DE
475 void SetLabel(int itemid, const wxString &label);
476 wxString GetLabel(int itemid) const;
3dfac970 477
d9e2e4c2
DE
478 void SetHelpString(int itemid, const wxString& helpString);
479 wxString GetHelpString(int itemid) const;
3dfac970 480
1e6feb95
VZ
481 // implementation helpers
482
483 // get the frame we are attached to (may return NULL)
484 wxFrame *GetFrame() const { return m_menuBarFrame; }
485
486 // returns TRUE if we're attached to a frame
487 bool IsAttached() const { return GetFrame() != NULL; }
488
489 // associate the menubar with the frame
490 virtual void Attach(wxFrame *frame);
491
492 // called before deleting the menubar normally
493 virtual void Detach();
494
9874b4ee
VZ
495 // need to override these ones to avoid virtual function hiding
496 virtual bool Enable(bool enable = TRUE) { return wxWindow::Enable(enable); }
497 virtual void SetLabel(const wxString& s) { wxWindow::SetLabel(s); }
3dfac970
VZ
498 virtual wxString GetLabel() const { return wxWindow::GetLabel(); }
499
1e6feb95
VZ
500 // don't want menu bars to accept the focus by tabbing to them
501 virtual bool AcceptsFocusFromKeyboard() const { return FALSE; }
502
3dfac970
VZ
503 // compatibility only: these functions are deprecated, use the new ones
504 // instead
717a57c2 505#if WXWIN_COMPATIBILITY
d9e2e4c2
DE
506 bool Enabled(int itemid) const { return IsEnabled(itemid); }
507 bool Checked(int itemid) const { return IsChecked(itemid); }
3dfac970 508
d9e2e4c2
DE
509 wxMenuItem* FindMenuItemById(int itemid) const
510 { return FindItem(itemid); }
511 wxMenuItem* FindItemForId(int itemid, wxMenu **menu = NULL) const
512 { return FindItem(itemid, menu); }
3dfac970
VZ
513#endif // WXWIN_COMPATIBILITY
514
515protected:
516 // the list of all our menus
517 wxMenuList m_menus;
1e6feb95
VZ
518
519 // the frame we are attached to (may be NULL)
520 wxFrame *m_menuBarFrame;
22f3361e
VZ
521
522 DECLARE_NO_COPY_CLASS(wxMenuBarBase)
3dfac970
VZ
523};
524
525// ----------------------------------------------------------------------------
526// include the real class declaration
527// ----------------------------------------------------------------------------
528
529#ifdef wxUSE_BASE_CLASSES_ONLY
530 #define wxMenuItem wxMenuItemBase
531#else // !wxUSE_BASE_CLASSES_ONLY
1e6feb95
VZ
532#if defined(__WXUNIVERSAL__)
533 #include "wx/univ/menu.h"
534#elif defined(__WXMSW__)
3dfac970 535 #include "wx/msw/menu.h"
2049ba38 536#elif defined(__WXMOTIF__)
3dfac970 537 #include "wx/motif/menu.h"
2049ba38 538#elif defined(__WXGTK__)
3dfac970 539 #include "wx/gtk/menu.h"
34138703 540#elif defined(__WXMAC__)
3dfac970 541 #include "wx/mac/menu.h"
e64df9bc
DE
542#elif defined(__WXCOCOA__)
543 #include "wx/cocoa/menu.h"
1777b9bb 544#elif defined(__WXPM__)
3dfac970 545 #include "wx/os2/menu.h"
c801d85f 546#endif
3dfac970
VZ
547#endif // wxUSE_BASE_CLASSES_ONLY/!wxUSE_BASE_CLASSES_ONLY
548
1e6feb95
VZ
549#endif // wxUSE_MENUS
550
c801d85f 551#endif
34138703 552 // _WX_MENU_H_BASE_