]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/menu.h
When registering editor, try wxRTTI class name in additon to result of wxPGEditor...
[wxWidgets.git] / interface / wx / menu.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: menu.h
e54c96f1 3// Purpose: interface of wxMenuBar
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxMenuBar
7c913512 11
23324ae1 12 A menu bar is a series of menus accessible from the top of a frame.
7c913512 13
23324ae1
FM
14 @library{wxcore}
15 @category{menus}
7c913512 16
54c49fab 17 @see wxMenu, @ref overview_eventhandling "Event Handling Overview"
23324ae1
FM
18*/
19class wxMenuBar : public wxWindow
20{
21public:
ff58644a
RR
22 /**
23 Construct an empty menu barM
24
25 @param style
26 If wxMB_DOCKABLE the menu bar can be detached (wxGTK only).
27 */
28 wxMenuBar(long style = 0);
29
23324ae1
FM
30 /**
31 Construct a menu bar from arrays of menus and titles.
3c4f71cc 32
7c913512 33 @param n
4cc4bfaf 34 The number of menus.
7c913512 35 @param menus
ff58644a
RR
36 An array of menus. Do not use this array again - it now belongs to
37 the menu bar.
7c913512 38 @param titles
ff58644a
RR
39 An array of title strings. Deallocate this array after creating
40 the menu bar.
7c913512 41 @param style
4cc4bfaf 42 If wxMB_DOCKABLE the menu bar can be detached (wxGTK only).
23324ae1 43 */
7c913512
FM
44 wxMenuBar(size_t n, wxMenu* menus[], const wxString titles[],
45 long style = 0);
23324ae1
FM
46
47 /**
48 Destructor, destroying the menu bar and removing it from the parent frame (if
49 any).
50 */
adaaa686 51 virtual ~wxMenuBar();
23324ae1
FM
52
53 /**
54 Adds the item to the end of the menu bar.
3c4f71cc 55
7c913512 56 @param menu
4cc4bfaf 57 The menu to add. Do not deallocate this menu after calling Append.
7c913512 58 @param title
4cc4bfaf 59 The title of the menu.
3c4f71cc 60
d29a9a8a 61 @return @true on success, @false if an error occurred.
3c4f71cc 62
4cc4bfaf 63 @see Insert()
23324ae1 64 */
adaaa686 65 virtual bool Append(wxMenu* menu, const wxString& title);
23324ae1
FM
66
67 /**
68 Checks or unchecks a menu item.
3c4f71cc 69
7c913512 70 @param id
4cc4bfaf 71 The menu item identifier.
7c913512 72 @param check
4cc4bfaf 73 If @true, checks the menu item, otherwise the item is unchecked.
3c4f71cc 74
23324ae1 75 @remarks Only use this when the menu bar has been associated with a
4cc4bfaf 76 frame; otherwise, use the wxMenu equivalent call.
23324ae1
FM
77 */
78 void Check(int id, const bool check);
79
80 /**
81 Enables or disables (greys out) a menu item.
3c4f71cc 82
7c913512 83 @param id
4cc4bfaf 84 The menu item identifier.
7c913512 85 @param enable
4cc4bfaf 86 @true to enable the item, @false to disable it.
3c4f71cc 87
23324ae1 88 @remarks Only use this when the menu bar has been associated with a
4cc4bfaf 89 frame; otherwise, use the wxMenu equivalent call.
23324ae1
FM
90 */
91 void Enable(int id, const bool enable);
92
93 /**
94 Enables or disables a whole menu.
3c4f71cc 95
7c913512 96 @param pos
4cc4bfaf 97 The position of the menu, starting from zero.
7c913512 98 @param enable
4cc4bfaf 99 @true to enable the menu, @false to disable it.
3c4f71cc 100
23324ae1
FM
101 @remarks Only use this when the menu bar has been associated with a frame.
102 */
103 void EnableTop(int pos, const bool enable);
104
105 /**
106 Finds the menu item object associated with the given menu item identifier.
3c4f71cc 107
7c913512 108 @param id
4cc4bfaf 109 Menu item identifier.
7c913512 110 @param menu
4cc4bfaf 111 If not @NULL, menu will get set to the associated menu.
3c4f71cc 112
d29a9a8a 113 @return The found menu item object, or @NULL if one was not found.
23324ae1 114 */
328f5751 115 wxMenuItem* FindItem(int id, wxMenu menu = NULL) const;
23324ae1
FM
116
117 /**
4cc4bfaf
FM
118 Returns the index of the menu with the given @a title or @c wxNOT_FOUND if no
119 such menu exists in this menubar. The @a title parameter may specify either
23324ae1
FM
120 the menu title (with accelerator characters, i.e. @c "File") or just the
121 menu label (@c "File") indifferently.
122 */
328f5751 123 int FindMenu(const wxString& title) const;
23324ae1
FM
124
125 /**
126 Finds the menu item id for a menu name/menu item string pair.
3c4f71cc 127
7c913512 128 @param menuString
4cc4bfaf 129 Menu title to find.
7c913512 130 @param itemString
4cc4bfaf 131 Item to find.
3c4f71cc 132
d29a9a8a 133 @return The menu item identifier, or wxNOT_FOUND if none was found.
3c4f71cc 134
23324ae1 135 @remarks Any special menu codes are stripped out of source and target
4cc4bfaf 136 strings before matching.
23324ae1
FM
137 */
138 int FindMenuItem(const wxString& menuString,
328f5751 139 const wxString& itemString) const;
23324ae1
FM
140
141 /**
142 Gets the help string associated with the menu item identifier.
3c4f71cc 143
7c913512 144 @param id
4cc4bfaf 145 The menu item identifier.
3c4f71cc 146
d29a9a8a
BP
147 @return The help string, or the empty string if there was no help string
148 or the menu item was not found.
3c4f71cc 149
4cc4bfaf 150 @see SetHelpString()
23324ae1 151 */
328f5751 152 wxString GetHelpString(int id) const;
23324ae1
FM
153
154 /**
155 Gets the label associated with a menu item.
3c4f71cc 156
7c913512 157 @param id
4cc4bfaf 158 The menu item identifier.
3c4f71cc 159
d29a9a8a
BP
160 @return The menu item label, or the empty string if the item was not
161 found.
3c4f71cc 162
23324ae1
FM
163 @remarks Use only after the menubar has been associated with a frame.
164 */
328f5751 165 wxString GetLabel(int id) const;
23324ae1
FM
166
167 /**
168 Returns the label of a top-level menu. Note that the returned string does not
169 include the accelerator characters which could have been specified in the menu
170 title string during its construction.
3c4f71cc 171
7c913512 172 @param pos
4cc4bfaf 173 Position of the menu on the menu bar, starting from zero.
3c4f71cc 174
d29a9a8a 175 @return The menu label, or the empty string if the menu was not found.
3c4f71cc 176
23324ae1 177 @remarks Use only after the menubar has been associated with a frame.
3c4f71cc 178
4cc4bfaf 179 @see SetLabelTop()
23324ae1 180 */
328f5751 181 wxString GetLabelTop(int pos) const;
23324ae1
FM
182
183 /**
4cc4bfaf 184 Returns the menu at @a menuIndex (zero-based).
23324ae1 185 */
328f5751 186 wxMenu* GetMenu(int menuIndex) const;
23324ae1
FM
187
188 /**
189 Returns the number of menus in this menubar.
190 */
328f5751 191 size_t GetMenuCount() const;
23324ae1
FM
192
193 /**
194 Returns the label of a top-level menu. Note that the returned string
195 includes the accelerator characters that have been specified in the menu
196 title string during its construction.
3c4f71cc 197
7c913512 198 @param pos
4cc4bfaf 199 Position of the menu on the menu bar, starting from zero.
3c4f71cc 200
d29a9a8a 201 @return The menu label, or the empty string if the menu was not found.
3c4f71cc 202
23324ae1 203 @remarks Use only after the menubar has been associated with a frame.
3c4f71cc 204
4cc4bfaf 205 @see GetMenuLabelText(), SetMenuLabel()
23324ae1 206 */
328f5751 207 wxString GetMenuLabel(int pos) const;
23324ae1
FM
208
209 /**
210 Returns the label of a top-level menu. Note that the returned string does not
211 include any accelerator characters that may have been specified in the menu
212 title string during its construction.
3c4f71cc 213
7c913512 214 @param pos
4cc4bfaf 215 Position of the menu on the menu bar, starting from zero.
3c4f71cc 216
d29a9a8a 217 @return The menu label, or the empty string if the menu was not found.
3c4f71cc 218
23324ae1 219 @remarks Use only after the menubar has been associated with a frame.
3c4f71cc 220
4cc4bfaf 221 @see GetMenuLabel(), SetMenuLabel()
23324ae1 222 */
328f5751 223 wxString GetMenuLabelText(int pos) const;
23324ae1
FM
224
225 /**
226 Inserts the menu at the given position into the menu bar. Inserting menu at
7c913512
FM
227 position 0 will insert it in the very beginning of it, inserting at position
228 GetMenuCount() is the same as calling
23324ae1 229 Append().
3c4f71cc 230
7c913512 231 @param pos
4cc4bfaf 232 The position of the new menu in the menu bar
7c913512 233 @param menu
4cc4bfaf 234 The menu to add. wxMenuBar owns the menu and will free it.
7c913512 235 @param title
4cc4bfaf 236 The title of the menu.
3c4f71cc 237
d29a9a8a 238 @return @true on success, @false if an error occurred.
3c4f71cc 239
4cc4bfaf 240 @see Append()
23324ae1 241 */
adaaa686 242 virtual bool Insert(size_t pos, wxMenu* menu, const wxString& title);
23324ae1
FM
243
244 /**
245 Determines whether an item is checked.
3c4f71cc 246
7c913512 247 @param id
4cc4bfaf 248 The menu item identifier.
3c4f71cc 249
d29a9a8a 250 @return @true if the item was found and is checked, @false otherwise.
23324ae1 251 */
328f5751 252 bool IsChecked(int id) const;
23324ae1
FM
253
254 /**
255 Determines whether an item is enabled.
3c4f71cc 256
7c913512 257 @param id
4cc4bfaf 258 The menu item identifier.
3c4f71cc 259
d29a9a8a 260 @return @true if the item was found and is enabled, @false otherwise.
23324ae1 261 */
328f5751 262 bool IsEnabled(int id) const;
23324ae1
FM
263
264 /**
265 Redraw the menu bar
266 */
267 void Refresh();
268
269 /**
270 Removes the menu from the menu bar and returns the menu object - the caller is
7c913512 271 responsible for deleting it. This function may be used together with
23324ae1
FM
272 Insert() to change the menubar
273 dynamically.
3c4f71cc 274
4cc4bfaf 275 @see Replace()
23324ae1 276 */
adaaa686 277 virtual wxMenu* Remove(size_t pos);
23324ae1
FM
278
279 /**
280 Replaces the menu at the given position with another one.
3c4f71cc 281
7c913512 282 @param pos
4cc4bfaf 283 The position of the new menu in the menu bar
7c913512 284 @param menu
4cc4bfaf 285 The menu to add.
7c913512 286 @param title
4cc4bfaf 287 The title of the menu.
3c4f71cc 288
d29a9a8a
BP
289 @return The menu which was previously at position pos. The caller is
290 responsible for deleting it.
3c4f71cc 291
4cc4bfaf 292 @see Insert(), Remove()
23324ae1 293 */
adaaa686 294 virtual wxMenu* Replace(size_t pos, wxMenu* menu, const wxString& title);
23324ae1
FM
295
296 /**
297 Sets the help string associated with a menu item.
3c4f71cc 298
7c913512 299 @param id
4cc4bfaf 300 Menu item identifier.
7c913512 301 @param helpString
4cc4bfaf 302 Help string to associate with the menu item.
3c4f71cc 303
4cc4bfaf 304 @see GetHelpString()
23324ae1
FM
305 */
306 void SetHelpString(int id, const wxString& helpString);
307
308 /**
309 Sets the label of a menu item.
3c4f71cc 310
7c913512 311 @param id
4cc4bfaf 312 Menu item identifier.
7c913512 313 @param label
4cc4bfaf 314 Menu item label.
3c4f71cc 315
23324ae1 316 @remarks Use only after the menubar has been associated with a frame.
3c4f71cc 317
4cc4bfaf 318 @see GetLabel()
23324ae1
FM
319 */
320 void SetLabel(int id, const wxString& label);
321
322 /**
323 Sets the label of a top-level menu.
3c4f71cc 324
7c913512 325 @param pos
4cc4bfaf 326 The position of a menu on the menu bar, starting from zero.
7c913512 327 @param label
4cc4bfaf 328 The menu label.
3c4f71cc 329
23324ae1 330 @remarks Use only after the menubar has been associated with a frame.
3c4f71cc 331
4cc4bfaf 332 @see GetLabelTop()
23324ae1
FM
333 */
334 void SetLabelTop(int pos, const wxString& label);
335
336 /**
337 Sets the label of a top-level menu.
3c4f71cc 338
7c913512 339 @param pos
4cc4bfaf 340 The position of a menu on the menu bar, starting from zero.
7c913512 341 @param label
4cc4bfaf 342 The menu label.
3c4f71cc 343
23324ae1
FM
344 @remarks Use only after the menubar has been associated with a frame.
345 */
346 void SetMenuLabel(int pos, const wxString& label);
347};
348
349
e54c96f1 350
23324ae1
FM
351/**
352 @class wxMenu
7c913512 353
23324ae1
FM
354 A menu is a popup (or pull down) list of items, one of which may be
355 selected before the menu goes away (clicking elsewhere dismisses the
356 menu). Menus may be used to construct either menu bars or popup menus.
7c913512 357
23324ae1
FM
358 A menu item has an integer ID associated with it which can be used to
359 identify the selection, or to change the menu item in some way. A menu item
360 with a special identifier -1 is a separator item and doesn't have an
361 associated command but just makes a separator line appear in the menu.
7c913512 362
1f1d2182 363 @note Please note that @e wxID_ABOUT and @e wxID_EXIT are
23324ae1
FM
364 predefined by wxWidgets and have a special meaning since entries
365 using these IDs will be taken out of the normal menus under MacOS X
366 and will be inserted into the system menu (following the appropriate
367 MacOS X interface guideline). On PalmOS @e wxID_EXIT is disabled according
368 to Palm OS Companion guidelines.
7c913512 369
23324ae1
FM
370 Menu items may be either normal items, check items or radio items. Normal items
371 don't have any special properties while the check items have a boolean flag
372 associated to them and they show a checkmark in the menu when the flag is set.
373 wxWidgets automatically toggles the flag value when the item is clicked and its
374 value may be retrieved using either wxMenu::IsChecked method
7c913512 375 of wxMenu or wxMenuBar itself or by using
23324ae1
FM
376 wxEvent::IsChecked when you get the menu
377 notification for the item in question.
7c913512 378
23324ae1
FM
379 The radio items are similar to the check items except that all the other items
380 in the same radio group are unchecked when a radio item is checked. The radio
381 group is formed by a contiguous range of radio items, i.e. it starts at the
382 first item of this kind and ends with the first item of a different kind (or
383 the end of the menu). Notice that because the radio groups are defined in terms
384 of the item positions inserting or removing the items in the menu containing
385 the radio items risks to not work correctly. Finally note that radio items
386 are not supported under Motif.
7c913512 387
23324ae1
FM
388 @library{wxcore}
389 @category{menus}
7c913512 390
54c49fab
VZ
391 @see wxMenuBar, wxWindow::PopupMenu,
392 @ref overview_eventhandling "Event Handling Overview",
393 @ref wxFileHistory "wxFileHistory (most recently used files menu)"
23324ae1
FM
394*/
395class wxMenu : public wxEvtHandler
396{
397public:
23324ae1
FM
398 /**
399 Constructs a wxMenu object.
3c4f71cc 400
7c913512 401 @param style
4cc4bfaf 402 If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only).
23324ae1 403 */
7c913512 404 wxMenu(long style);
23324ae1 405
ff58644a
RR
406 /**
407 Constructs a wxMenu object with a title
408
409 @param title
410 Title at the top of the menu (not always supported).
411 @param style
412 If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only).
413 */
414 wxMenu(const wxString& title = "", long style = 0);
415
23324ae1
FM
416 /**
417 Destructor, destroying the menu.
23324ae1
FM
418 Note: under Motif, a popup menu must have a valid parent (the window
419 it was last popped up on) when being destroyed. Therefore, make sure
420 you delete or re-use the popup menu @e before destroying the
421 parent window. Re-use in this context means popping up the menu on
422 a different window from last time, which causes an implicit destruction
423 and recreation of internal data structures.
424 */
adaaa686 425 virtual ~wxMenu();
23324ae1 426
23324ae1 427 /**
ff58644a 428 Adds a menu item.
3c4f71cc 429
7c913512 430 @param id
4cc4bfaf 431 The menu command identifier.
7c913512 432 @param item
4cc4bfaf 433 The string to appear on the menu item.
7c913512 434 @param helpString
4cc4bfaf
FM
435 An optional help string associated with the item.
436 By default, the handler for the wxEVT_MENU_HIGHLIGHT event displays
437 this string in the status line.
54c49fab
VZ
438 @param kind
439 May be wxITEM_SEPARATOR, wxITEM_NORMAL,
440 wxITEM_CHECK or wxITEM_RADIO
3c4f71cc 441
4cc4bfaf
FM
442 @see AppendSeparator(), AppendCheckItem(), AppendRadioItem(),
443 AppendSubMenu(), Insert(), SetLabel(),
444 GetHelpString(), SetHelpString(), wxMenuItem
23324ae1 445 */
54c49fab
VZ
446 wxMenuItem* Append(int id, const wxString& item = wxEmptyString,
447 const wxString& helpString = wxEmptyString,
23324ae1 448 wxItemKind kind = wxITEM_NORMAL);
ff58644a
RR
449
450 /**
451 Adds a submenu.
452
5dfae0ad 453 @deprecated This function is deprecated, use AppendSubMenu() instead.
54c49fab 454
ff58644a
RR
455 @param id
456 The menu command identifier.
457 @param item
458 The string to appear on the menu item.
54c49fab 459 @param subMenu
ff58644a
RR
460 Pull-right submenu.
461 @param helpString
462 An optional help string associated with the item.
463 By default, the handler for the wxEVT_MENU_HIGHLIGHT event displays
464 this string in the status line.
465
466 @see AppendSeparator(), AppendCheckItem(), AppendRadioItem(),
467 AppendSubMenu(), Insert(), SetLabel(),
468 GetHelpString(), SetHelpString(), wxMenuItem
469 */
adaaa686 470 wxMenuItem* Append(int id, const wxString& item, wxMenu* subMenu,
54c49fab 471 const wxString& helpString = wxEmptyString);
ff58644a
RR
472
473 /**
474 Adds a menu item object. This is the most generic variant of Append() method
475 because it may be used for both items (including separators) and submenus and
476 because you can also specify various extra properties of a menu item this way,
477 such as bitmaps and fonts.
478
479 @param menuItem
480 A menuitem object. It will be owned by the wxMenu object after this function
481 is called, so do not delete it yourself.
482
483 @see AppendSeparator(), AppendCheckItem(), AppendRadioItem(),
484 AppendSubMenu(), Insert(), SetLabel(),
485 GetHelpString(), SetHelpString(), wxMenuItem
486 */
7c913512 487 wxMenuItem* Append(wxMenuItem* menuItem);
23324ae1
FM
488
489 /**
490 Adds a checkable item to the end of the menu.
3c4f71cc 491
4cc4bfaf 492 @see Append(), InsertCheckItem()
23324ae1
FM
493 */
494 wxMenuItem* AppendCheckItem(int id, const wxString& item,
495 const wxString& helpString = "");
496
497 /**
498 Adds a radio item to the end of the menu. All consequent radio items form a
499 group and when an item in the group is checked, all the others are
500 automatically unchecked.
3c4f71cc 501
4cc4bfaf 502 @see Append(), InsertRadioItem()
23324ae1
FM
503 */
504 wxMenuItem* AppendRadioItem(int id, const wxString& item,
505 const wxString& helpString = "");
506
507 /**
508 Adds a separator to the end of the menu.
3c4f71cc 509
4cc4bfaf 510 @see Append(), InsertSeparator()
23324ae1
FM
511 */
512 wxMenuItem* AppendSeparator();
513
514 /**
4cc4bfaf
FM
515 Adds the given @a submenu to this menu. @a text is the text shown in the
516 menu for it and @a help is the help string shown in the status bar when the
23324ae1
FM
517 submenu item is selected.
518 */
4cc4bfaf
FM
519 wxMenuItem* AppendSubMenu(wxMenu* submenu, const wxString& text,
520 const wxString& help = wxEmptyString);
23324ae1
FM
521
522 /**
523 Inserts a break in a menu, causing the next appended item to appear in a new
524 column.
525 */
adaaa686 526 virtual void Break();
23324ae1
FM
527
528 /**
529 Checks or unchecks the menu item.
3c4f71cc 530
7c913512 531 @param id
4cc4bfaf 532 The menu item identifier.
7c913512 533 @param check
4cc4bfaf 534 If @true, the item will be checked, otherwise it will be unchecked.
3c4f71cc 535
4cc4bfaf 536 @see IsChecked()
23324ae1
FM
537 */
538 void Check(int id, const bool check);
539
23324ae1
FM
540 /**
541 Deletes the menu item from the menu. If the item is a submenu, it will
ff58644a 542 @b not be deleted. Use Destroy() if you want to delete a submenu.
3c4f71cc 543
7c913512 544 @param id
4cc4bfaf 545 Id of the menu item to be deleted.
ff58644a
RR
546
547 @see FindItem(), Destroy(), Remove()
548 */
549 void Delete(int id);
550
551 /**
552 Deletes the menu item from the menu. If the item is a submenu, it will
553 @b not be deleted. Use Destroy() if you want to delete a submenu.
554
7c913512 555 @param item
4cc4bfaf 556 Menu item to be deleted.
3c4f71cc 557
4cc4bfaf 558 @see FindItem(), Destroy(), Remove()
23324ae1 559 */
4cc4bfaf 560 void Delete(wxMenuItem* item);
23324ae1 561
23324ae1
FM
562 /**
563 Deletes the menu item from the menu. If the item is a submenu, it will
ff58644a
RR
564 be deleted. Use Remove() if you want to keep the submenu (for example,
565 to reuse it later).
3c4f71cc 566
7c913512 567 @param id
4cc4bfaf 568 Id of the menu item to be deleted.
ff58644a
RR
569
570 @see FindItem(), Deletes(), Remove()
571 */
572 void Destroy(int id);
573
574 /**
575 Deletes the menu item from the menu. If the item is a submenu, it will
576 be deleted. Use Remove() if you want to keep the submenu (for example,
577 to reuse it later).
578
7c913512 579 @param item
4cc4bfaf 580 Menu item to be deleted.
3c4f71cc 581
4cc4bfaf 582 @see FindItem(), Deletes(), Remove()
23324ae1 583 */
4cc4bfaf 584 void Destroy(wxMenuItem* item);
23324ae1
FM
585
586 /**
587 Enables or disables (greys out) a menu item.
3c4f71cc 588
7c913512 589 @param id
4cc4bfaf 590 The menu item identifier.
7c913512 591 @param enable
4cc4bfaf 592 @true to enable the menu item, @false to disable it.
3c4f71cc 593
4cc4bfaf 594 @see IsEnabled()
23324ae1
FM
595 */
596 void Enable(int id, const bool enable);
597
23324ae1 598 /**
ff58644a 599 Finds the menu id for a menu item string.
3c4f71cc 600
7c913512 601 @param itemString
4cc4bfaf 602 Menu item string to find.
ff58644a 603
d29a9a8a 604 @return Menu item identifier, or wxNOT_FOUND if none is found.
ff58644a
RR
605
606 @remarks Any special menu codes are stripped out of source and target
607 strings before matching.
608 */
adaaa686 609 virtual int FindItem(const wxString& itemString) const;
ff58644a
RR
610
611 /**
612 Finds the menu item object associated with the given menu item identifier and,
613 optionally, the (sub)menu it belongs to.
614
7c913512 615 @param id
4cc4bfaf 616 Menu item identifier.
7c913512 617 @param menu
4cc4bfaf
FM
618 If the pointer is not @NULL, it will be filled with the item's
619 parent menu (if the item was found)
3c4f71cc 620
d29a9a8a 621 @return Menu item object or NULL if none is found.
23324ae1 622 */
328f5751 623 const wxMenuItem * FindItem(int id, wxMenu** menu = NULL) const;
23324ae1
FM
624
625 /**
626 Returns the wxMenuItem given a position in the menu.
627 */
328f5751 628 wxMenuItem* FindItemByPosition(size_t position) const;
23324ae1
FM
629
630 /**
631 Returns the help string associated with a menu item.
3c4f71cc 632
7c913512 633 @param id
4cc4bfaf 634 The menu item identifier.
3c4f71cc 635
d29a9a8a
BP
636 @return The help string, or the empty string if there is no help string
637 or the item was not found.
3c4f71cc 638
4cc4bfaf 639 @see SetHelpString(), Append()
23324ae1 640 */
adaaa686 641 virtual wxString GetHelpString(int id) const;
23324ae1
FM
642
643 /**
644 Returns a menu item label.
3c4f71cc 645
7c913512 646 @param id
4cc4bfaf 647 The menu item identifier.
3c4f71cc 648
d29a9a8a 649 @return The item label, or the empty string if the item was not found.
3c4f71cc 650
4cc4bfaf 651 @see GetLabelText(), SetLabel()
23324ae1 652 */
328f5751 653 wxString GetLabel(int id) const;
23324ae1
FM
654
655 /**
656 Returns a menu item label, without any of the original mnemonics and
657 accelerators.
3c4f71cc 658
7c913512 659 @param id
4cc4bfaf 660 The menu item identifier.
3c4f71cc 661
d29a9a8a 662 @return The item label, or the empty string if the item was not found.
3c4f71cc 663
4cc4bfaf 664 @see GetLabel(), SetLabel()
23324ae1 665 */
328f5751 666 wxString GetLabelText(int id) const;
23324ae1
FM
667
668 /**
669 Returns the number of items in the menu.
670 */
328f5751 671 size_t GetMenuItemCount() const;
23324ae1
FM
672
673 /**
674 Returns the list of items in the menu. wxMenuItemList is a pseudo-template
675 list class containing wxMenuItem pointers, see wxList.
676 */
328f5751 677 wxMenuItemList GetMenuItems() const;
23324ae1
FM
678
679 /**
680 Returns the title of the menu.
3c4f71cc 681
7c913512 682 @remarks This is relevant only to popup menus, use
4cc4bfaf 683 wxMenuBar::GetMenuLabel for the menus in the menubar.
3c4f71cc 684
4cc4bfaf 685 @see SetTitle()
23324ae1 686 */
328f5751 687 wxString GetTitle() const;
23324ae1 688
23324ae1 689 /**
4cc4bfaf 690 Inserts the given @a item before the position @e pos. Inserting the item
23324ae1
FM
691 at position GetMenuItemCount() is the same
692 as appending it.
3c4f71cc 693
4cc4bfaf 694 @see Append(), Prepend()
23324ae1 695 */
4cc4bfaf 696 wxMenuItem* Insert(size_t pos, wxMenuItem* item);
ff58644a
RR
697
698 /**
699 Inserts the given @a item before the position @e pos. Inserting the item
700 at position GetMenuItemCount() is the same
701 as appending it.
702
703 @see Append(), Prepend()
704 */
7c913512
FM
705 wxMenuItem* Insert(size_t pos, int id,
706 const wxString& item = "",
707 const wxString& helpString = "",
708 wxItemKind kind = wxITEM_NORMAL);
23324ae1
FM
709
710 /**
711 Inserts a checkable item at the given position.
3c4f71cc 712
4cc4bfaf 713 @see Insert(), AppendCheckItem()
23324ae1
FM
714 */
715 wxMenuItem* InsertCheckItem(size_t pos, int id,
716 const wxString& item,
717 const wxString& helpString = "");
718
719 /**
720 Inserts a radio item at the given position.
3c4f71cc 721
4cc4bfaf 722 @see Insert(), AppendRadioItem()
23324ae1
FM
723 */
724 wxMenuItem* InsertRadioItem(size_t pos, int id,
725 const wxString& item,
726 const wxString& helpString = "");
727
728 /**
729 Inserts a separator at the given position.
3c4f71cc 730
4cc4bfaf 731 @see Insert(), AppendSeparator()
23324ae1
FM
732 */
733 wxMenuItem* InsertSeparator(size_t pos);
734
735 /**
736 Determines whether a menu item is checked.
3c4f71cc 737
7c913512 738 @param id
4cc4bfaf 739 The menu item identifier.
3c4f71cc 740
d29a9a8a 741 @return @true if the menu item is checked, @false otherwise.
3c4f71cc 742
4cc4bfaf 743 @see Check()
23324ae1 744 */
328f5751 745 bool IsChecked(int id) const;
23324ae1
FM
746
747 /**
748 Determines whether a menu item is enabled.
3c4f71cc 749
7c913512 750 @param id
4cc4bfaf 751 The menu item identifier.
3c4f71cc 752
d29a9a8a 753 @return @true if the menu item is enabled, @false otherwise.
3c4f71cc 754
4cc4bfaf 755 @see Enable()
23324ae1 756 */
328f5751 757 bool IsEnabled(int id) const;
23324ae1 758
23324ae1 759 /**
4cc4bfaf 760 Inserts the given @a item at position 0, i.e. before all the other
23324ae1 761 existing items.
3c4f71cc 762
4cc4bfaf 763 @see Append(), Insert()
23324ae1 764 */
4cc4bfaf 765 wxMenuItem* Prepend(wxMenuItem* item);
ff58644a
RR
766
767 /**
768 Inserts the given @a item at position 0, i.e. before all the other
769 existing items.
770
771 @see Append(), Insert()
772 */
7c913512
FM
773 wxMenuItem* Prepend(int id, const wxString& item = "",
774 const wxString& helpString = "",
775 wxItemKind kind = wxITEM_NORMAL);
23324ae1
FM
776
777 /**
778 Inserts a checkable item at position 0.
3c4f71cc 779
4cc4bfaf 780 @see Prepend(), AppendCheckItem()
23324ae1
FM
781 */
782 wxMenuItem* PrependCheckItem(int id, const wxString& item,
783 const wxString& helpString = "");
784
785 /**
786 Inserts a radio item at position 0.
3c4f71cc 787
4cc4bfaf 788 @see Prepend(), AppendRadioItem()
23324ae1
FM
789 */
790 wxMenuItem* PrependRadioItem(int id, const wxString& item,
791 const wxString& helpString = "");
792
793 /**
794 Inserts a separator at position 0.
3c4f71cc 795
4cc4bfaf 796 @see Prepend(), AppendSeparator()
23324ae1
FM
797 */
798 wxMenuItem* PrependSeparator();
799
23324ae1
FM
800 /**
801 Removes the menu item from the menu but doesn't delete the associated C++
5dfae0ad 802 object. This allows you to reuse the same item later by adding it back to the menu
23324ae1 803 (especially useful with submenus).
3c4f71cc 804
7c913512 805 @param id
4cc4bfaf 806 The identifier of the menu item to remove.
ff58644a 807
5dfae0ad 808 @return A pointer to the item which was detached from the menu.
ff58644a
RR
809 */
810 wxMenuItem* Remove(int id);
811
812 /**
813 Removes the menu item from the menu but doesn't delete the associated C++
5dfae0ad 814 object. This allows you to reuse the same item later by adding it back to the menu
ff58644a
RR
815 (especially useful with submenus).
816
7c913512 817 @param item
4cc4bfaf 818 The menu item to remove.
3c4f71cc 819
5dfae0ad 820 @return A pointer to the item which was detached from the menu.
23324ae1 821 */
4cc4bfaf 822 wxMenuItem* Remove(wxMenuItem* item);
23324ae1
FM
823
824 /**
825 Sets an item's help string.
3c4f71cc 826
7c913512 827 @param id
4cc4bfaf 828 The menu item identifier.
7c913512 829 @param helpString
4cc4bfaf 830 The help string to set.
3c4f71cc 831
4cc4bfaf 832 @see GetHelpString()
23324ae1 833 */
adaaa686 834 virtual void SetHelpString(int id, const wxString& helpString);
23324ae1
FM
835
836 /**
837 Sets the label of a menu item.
3c4f71cc 838
7c913512 839 @param id
4cc4bfaf 840 The menu item identifier.
7c913512 841 @param label
4cc4bfaf 842 The menu item label to set.
3c4f71cc 843
4cc4bfaf 844 @see Append(), GetLabel()
23324ae1
FM
845 */
846 void SetLabel(int id, const wxString& label);
847
848 /**
849 Sets the title of the menu.
3c4f71cc 850
7c913512 851 @param title
4cc4bfaf 852 The title to set.
3c4f71cc 853
7c913512 854 @remarks This is relevant only to popup menus, use
4cc4bfaf 855 wxMenuBar::SetLabelTop for the menus in the menubar.
3c4f71cc 856
4cc4bfaf 857 @see GetTitle()
23324ae1 858 */
adaaa686 859 virtual void SetTitle(const wxString& title);
23324ae1
FM
860
861 /**
4cc4bfaf 862 Sends events to @a source (or owning window if @NULL) to update the
23324ae1
FM
863 menu UI. This is called just before the menu is popped up with
864 wxWindow::PopupMenu, but
865 the application may call it at other times if required.
866 */
adaaa686 867 void UpdateUI(wxEvtHandler* source = NULL);
23324ae1 868};
e54c96f1 869