File: menu.h

package info (click to toggle)
wxwidgets3.0 3.0.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 120,808 kB
  • ctags: 118,010
  • sloc: cpp: 889,420; makefile: 52,980; ansic: 21,933; sh: 5,603; python: 2,935; xml: 1,534; perl: 281
file content (1060 lines) | stat: -rw-r--r-- 32,871 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
/////////////////////////////////////////////////////////////////////////////
// Name:        menu.h
// Purpose:     interface of wxMenuBar
// Author:      wxWidgets team
// Licence:     wxWindows licence
/////////////////////////////////////////////////////////////////////////////

/**
    @class wxMenuBar

    A menu bar is a series of menus accessible from the top of a frame.

    @remarks
    To respond to a menu selection, provide a handler for EVT_MENU, in the frame
    that contains the menu bar.

    If you have a toolbar which uses the same identifiers as your EVT_MENU entries,
    events from the toolbar will also be processed by your EVT_MENU event handlers.

    Tip: under Windows, if you discover that menu shortcuts (for example, Alt-F
    to show the file menu) are not working, check any EVT_CHAR events you are
    handling in child windows.
    If you are not calling event.Skip() for events that you don't process in
    these event handlers, menu shortcuts may cease to work.

    @library{wxcore}
    @category{menus}

    @see wxMenu, @ref overview_events
*/
class wxMenuBar : public wxWindow
{
public:
    /**
        Construct an empty menu bar.

        @param style
            If wxMB_DOCKABLE the menu bar can be detached (wxGTK only).
    */
    wxMenuBar(long style = 0);

    /**
        Construct a menu bar from arrays of menus and titles.

        @param n
            The number of menus.
        @param menus
            An array of menus. Do not use this array again - it now belongs to
            the menu bar.
        @param titles
            An array of title strings. Deallocate this array after creating
            the menu bar.
        @param style
            If wxMB_DOCKABLE the menu bar can be detached (wxGTK only).

        @beginWxPerlOnly
        Not supported by wxPerl.
        @endWxPerlOnly
    */
    wxMenuBar(size_t n, wxMenu* menus[], const wxString titles[],
              long style = 0);

    /**
        Destructor, destroying the menu bar and removing it from the parent
        frame (if any).
    */
    virtual ~wxMenuBar();

    /**
        Adds the item to the end of the menu bar.

        @param menu
            The menu to add. Do not deallocate this menu after calling Append().
        @param title
            The title of the menu, must be non-empty.

        @return @true on success, @false if an error occurred.

        @see Insert()
    */
    virtual bool Append(wxMenu* menu, const wxString& title);

    /**
        Checks or unchecks a menu item.

        @param id
            The menu item identifier.
        @param check
            If @true, checks the menu item, otherwise the item is unchecked.

        @remarks Only use this when the menu bar has been associated with a
                 frame; otherwise, use the wxMenu equivalent call.
    */
    void Check(int id, bool check);

    /**
        Enables or disables (greys out) a menu item.

        @param id
            The menu item identifier.
        @param enable
            @true to enable the item, @false to disable it.

        @remarks Only use this when the menu bar has been associated with a
                 frame; otherwise, use the wxMenu equivalent call.
    */
    void Enable(int id, bool enable);

    /**
        Returns true if the menu with the given index is enabled.

        @param pos
            The menu position (0-based)

        @since 2.9.4
    */
    bool IsEnabledTop(size_t pos) const;

    /**
        Enables or disables a whole menu.

        @param pos
            The position of the menu, starting from zero.
        @param enable
            @true to enable the menu, @false to disable it.

        @remarks Only use this when the menu bar has been associated with a frame.
    */
    virtual void EnableTop(size_t pos, bool enable);

    /**
        Finds the menu item object associated with the given menu item identifier.

        @param id
            Menu item identifier.
        @param menu
            If not @NULL, menu will get set to the associated menu.

        @return The found menu item object, or @NULL if one was not found.

        @beginWxPerlOnly
        In wxPerl this method takes just the @a id parameter;
        in scalar context it returns the associated @c Wx::MenuItem, in list
        context it returns a 2-element list (item, submenu).
        @endWxPerlOnly
    */
    virtual wxMenuItem* FindItem(int id, wxMenu** menu = NULL) const;

    /**
        Returns the index of the menu with the given @a title or @c wxNOT_FOUND if no
        such menu exists in this menubar.

        The @a title parameter may specify either the menu title
        (with accelerator characters, i.e. @c "&File") or just the
        menu label (@c "File") indifferently.
    */
    int FindMenu(const wxString& title) const;

    /**
        Finds the menu item id for a menu name/menu item string pair.

        @param menuString
            Menu title to find.
        @param itemString
            Item to find.

        @return The menu item identifier, or wxNOT_FOUND if none was found.

        @remarks Any special menu codes are stripped out of source and target
                 strings before matching.
    */
    virtual int FindMenuItem(const wxString& menuString,
                             const wxString& itemString) const;

    /**
        Gets the help string associated with the menu item identifier.

        @param id
            The menu item identifier.

        @return The help string, or the empty string if there was no help string
                or the menu item was not found.

        @see SetHelpString()
    */
    wxString GetHelpString(int id) const;

    /**
        Gets the label associated with a menu item.

        @param id
            The menu item identifier.

        @return The menu item label, or the empty string if the item was not
                found.

        @remarks Use only after the menubar has been associated with a frame.
    */
    wxString GetLabel(int id) const;

    /**
        Returns the label of a top-level menu. Note that the returned string does not
        include the accelerator characters which could have been specified in the menu
        title string during its construction.

        @param pos
            Position of the menu on the menu bar, starting from zero.

        @return The menu label, or the empty string if the menu was not found.

        @remarks Use only after the menubar has been associated with a frame.

        @deprecated
        This function is deprecated in favour of GetMenuLabel() and GetMenuLabelText().

        @see SetLabelTop()
    */
    wxString GetLabelTop(size_t pos) const;

    /**
        Returns the menu at @a menuIndex (zero-based).
    */
    wxMenu* GetMenu(size_t menuIndex) const;

    /**
        Returns the number of menus in this menubar.
    */
    size_t GetMenuCount() const;

    /**
        Returns the label of a top-level menu. Note that the returned string
        includes the accelerator characters that have been specified in the menu
        title string during its construction.

        @param pos
            Position of the menu on the menu bar, starting from zero.

        @return The menu label, or the empty string if the menu was not found.

        @remarks Use only after the menubar has been associated with a frame.

        @see GetMenuLabelText(), SetMenuLabel()
    */
    virtual wxString GetMenuLabel(size_t pos) const;

    /**
        Returns the label of a top-level menu. Note that the returned string does not
        include any accelerator characters that may have been specified in the menu
        title string during its construction.

        @param pos
            Position of the menu on the menu bar, starting from zero.

        @return The menu label, or the empty string if the menu was not found.

        @remarks Use only after the menubar has been associated with a frame.

        @see GetMenuLabel(), SetMenuLabel()
    */
    virtual wxString GetMenuLabelText(size_t pos) const;

    /**
        Inserts the menu at the given position into the menu bar. Inserting menu at
        position 0 will insert it in the very beginning of it, inserting at position
        GetMenuCount() is the same as calling Append().

        @param pos
            The position of the new menu in the menu bar
        @param menu
            The menu to add. wxMenuBar owns the menu and will free it.
        @param title
            The title of the menu.

        @return @true on success, @false if an error occurred.

        @see Append()
    */
    virtual bool Insert(size_t pos, wxMenu* menu, const wxString& title);

    /**
        Determines whether an item is checked.

        @param id
            The menu item identifier.

        @return @true if the item was found and is checked, @false otherwise.
    */
    bool IsChecked(int id) const;

    /**
        Determines whether an item is enabled.

        @param id
            The menu item identifier.

        @return @true if the item was found and is enabled, @false otherwise.
    */
    bool IsEnabled(int id) const;

    /**
        Redraw the menu bar
    */
    virtual void Refresh(bool eraseBackground = true, const wxRect* rect = NULL);

    /**
        Removes the menu from the menu bar and returns the menu object - the caller
        is responsible for deleting it. This function may be used together with
        Insert() to change the menubar dynamically.

        @see Replace()
    */
    virtual wxMenu* Remove(size_t pos);

    /**
        Replaces the menu at the given position with another one.

        @param pos
            The position of the new menu in the menu bar
        @param menu
            The menu to add.
        @param title
            The title of the menu.

        @return The menu which was previously at position pos.
                The caller is responsible for deleting it.

        @see Insert(), Remove()
    */
    virtual wxMenu* Replace(size_t pos, wxMenu* menu, const wxString& title);

    /**
        Sets the help string associated with a menu item.

        @param id
            Menu item identifier.
        @param helpString
            Help string to associate with the menu item.

        @see GetHelpString()
    */
    void SetHelpString(int id, const wxString& helpString);

    /**
        Sets the label of a menu item.

        @param id
            Menu item identifier.
        @param label
            Menu item label.

        @remarks Use only after the menubar has been associated with a frame.

        @see GetLabel()
    */
    void SetLabel(int id, const wxString& label);

    /**
        Sets the label of a top-level menu.

        @param pos
            The position of a menu on the menu bar, starting from zero.
        @param label
            The menu label.

        @remarks Use only after the menubar has been associated with a frame.

        @deprecated
        This function has been deprecated in favour of SetMenuLabel().

        @see GetLabelTop()
    */
    void SetLabelTop(size_t pos, const wxString& label);

    /**
        Sets the label of a top-level menu.

        @param pos
            The position of a menu on the menu bar, starting from zero.
        @param label
            The menu label.

        @remarks Use only after the menubar has been associated with a frame.
    */
    virtual void SetMenuLabel(size_t pos, const wxString& label);
    
    /**        
        Enables you to set the global menubar on Mac, that is, the menubar displayed
        when the app is running without any frames open.
        
        @param menubar
            The menubar to set.
            
        @remarks Only exists on Mac, other platforms do not have this method. 

        @onlyfor{wxosx}
    */
    static void MacSetCommonMenuBar(wxMenuBar* menubar);
    
    /**        
        Enables you to get the global menubar on Mac, that is, the menubar displayed
        when the app is running without any frames open.
        
        @return The global menubar.
            
        @remarks Only exists on Mac, other platforms do not have this method. 

        @onlyfor{wxosx}
    */
    static wxMenuBar* MacGetCommonMenuBar();

    /**
        Returns the Apple menu.

        This is the leftmost menu with application's name as its title. You
        shouldn't remove any items from it, but it is safe to insert extra menu
        items or submenus into it.

        @onlyfor{wxosx}
        @since 3.0.1
     */
    wxMenu *OSXGetAppleMenu() const;

    wxFrame *GetFrame() const;
    bool IsAttached() const;
    virtual void Attach(wxFrame *frame);
    virtual void Detach();

};



/**
    @class wxMenu

    A menu is a popup (or pull down) list of items, one of which may be
    selected before the menu goes away (clicking elsewhere dismisses the
    menu). Menus may be used to construct either menu bars or popup menus.

    A menu item has an integer ID associated with it which can be used to
    identify the selection, or to change the menu item in some way. A menu item
    with a special identifier @e wxID_SEPARATOR is a separator item and doesn't
    have an associated command but just makes a separator line appear in the
    menu.

    @note
    Please note that @e wxID_ABOUT and @e wxID_EXIT are predefined by wxWidgets
    and have a special meaning since entries using these IDs will be taken out
    of the normal menus under OS X and will be inserted into the system menu
    (following the appropriate OS X interface guideline).

    Menu items may be either @e normal items, @e check items or @e radio items.
    Normal items don't have any special properties while the check items have a
    boolean flag associated to them and they show a checkmark in the menu when
    the flag is set.
    wxWidgets automatically toggles the flag value when the item is clicked and its
    value may be retrieved using either wxMenu::IsChecked method of wxMenu or
    wxMenuBar itself or by using wxEvent::IsChecked when you get the menu
    notification for the item in question.

    The radio items are similar to the check items except that all the other items
    in the same radio group are unchecked when a radio item is checked. The radio
    group is formed by a contiguous range of radio items, i.e. it starts at the
    first item of this kind and ends with the first item of a different kind (or
    the end of the menu). Notice that because the radio groups are defined in terms
    of the item positions inserting or removing the items in the menu containing
    the radio items risks to not work correctly.


    @section menu_allocation Allocation strategy

    All menus must be created on the @b heap because all menus attached to a
    menubar or to another menu will be deleted by their parent when it is
    deleted. The only exception to this rule are the popup menus (i.e. menus
    used with wxWindow::PopupMenu()) as wxWidgets does not destroy them to
    allow reusing the same menu more than once. But the exception applies only
    to the menus themselves and not to any submenus of popup menus which are
    still destroyed by wxWidgets as usual and so must be heap-allocated.

    As the frame menubar is deleted by the frame itself, it means that normally
    all menus used are deleted automatically.


    @section menu_eventhandling Event handling

    If the menu is part of a menubar, then wxMenuBar event processing is used.

    With a popup menu (see wxWindow::PopupMenu), there is a variety of ways to
    handle a menu selection event (@c wxEVT_MENU):
    - Provide @c EVT_MENU handlers in the window which pops up the menu, or in an
      ancestor of that window (the simplest method);
    - Derive a new class from wxMenu and define event table entries using the @c EVT_MENU macro;
    - Set a new event handler for wxMenu, through wxEvtHandler::SetNextHandler,
      specifying an object whose class has @c EVT_MENU entries;

    Note that instead of static @c EVT_MENU macros you can also use dynamic
    connection; see @ref overview_events_bind.

    @library{wxcore}
    @category{menus}

    @see wxMenuBar, wxWindow::PopupMenu, @ref overview_events,
         @ref wxFileHistory "wxFileHistory (most recently used files menu)"
*/
class wxMenu : public wxEvtHandler
{
public:

    /**
        Constructs a wxMenu object.
    */
    wxMenu();
    
    /**
        Constructs a wxMenu object.

        @param style
            If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only).
    */
    wxMenu(long style);

    /**
        Constructs a wxMenu object with a title.

        @param title
            Title at the top of the menu (not always supported).
        @param style
            If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only).
    */
    wxMenu(const wxString& title, long style = 0);

    /**
        Destructor, destroying the menu.

        @note
            Under Motif, a popup menu must have a valid parent (the window
            it was last popped up on) when being destroyed. Therefore, make sure
            you delete or re-use the popup menu @e before destroying the parent
            window. Re-use in this context means popping up the menu on a different
            window from last time, which causes an implicit destruction and
            recreation of internal data structures.
    */
    virtual ~wxMenu();

    /**
        Adds a menu item.

        @param id
            The menu command identifier.
        @param item
            The string to appear on the menu item.
            See wxMenuItem::SetItemLabel() for more details.
        @param helpString
            An optional help string associated with the item.
            By default, the handler for the @c wxEVT_MENU_HIGHLIGHT event displays
            this string in the status line.
        @param kind
            May be @c wxITEM_SEPARATOR, @c wxITEM_NORMAL, @c wxITEM_CHECK or @c wxITEM_RADIO.

        Example:
        @code
        m_pFileMenu->Append(ID_NEW_FILE, "&New file\tCTRL+N", "Creates a new XYZ document");
        @endcode
        or even better for stock menu items (see wxMenuItem::wxMenuItem):
        @code
        m_pFileMenu->Append(wxID_NEW, "", "Creates a new XYZ document");
        @endcode

        @remarks
        This command can be used after the menu has been shown, as well as on
        initial creation of a menu or menubar.

        @see AppendSeparator(), AppendCheckItem(), AppendRadioItem(),
             AppendSubMenu(), Insert(), SetLabel(), GetHelpString(),
             SetHelpString(), wxMenuItem
    */
    wxMenuItem* Append(int id, const wxString& item = wxEmptyString,
                       const wxString& helpString = wxEmptyString,
                       wxItemKind kind = wxITEM_NORMAL);

    /**
        Adds a submenu.

        @deprecated This function is deprecated, use AppendSubMenu() instead.

        @param id
            The menu command identifier.
        @param item
            The string to appear on the menu item.
        @param subMenu
            Pull-right submenu.
        @param helpString
            An optional help string associated with the item.
            By default, the handler for the @c wxEVT_MENU_HIGHLIGHT event displays
            this string in the status line.

        @see AppendSeparator(), AppendCheckItem(), AppendRadioItem(),
             AppendSubMenu(), Insert(), SetLabel(), GetHelpString(),
             SetHelpString(), wxMenuItem
    */
    wxMenuItem* Append(int id, const wxString& item, wxMenu* subMenu,
                       const wxString& helpString = wxEmptyString);

    /**
        Adds a menu item object.

        This is the most generic variant of Append() method because it may be
        used for both items (including separators) and submenus and because
        you can also specify various extra properties of a menu item this way,
        such as bitmaps and fonts.

        @param menuItem
            A menuitem object. It will be owned by the wxMenu object after this
            function is called, so do not delete it yourself.

        @remarks
            See the remarks for the other Append() overloads.

        @see AppendSeparator(), AppendCheckItem(), AppendRadioItem(),
             AppendSubMenu(), Insert(), SetLabel(), GetHelpString(),
             SetHelpString(), wxMenuItem
    */
    wxMenuItem* Append(wxMenuItem* menuItem);

    /**
        Adds a checkable item to the end of the menu.

        @see Append(), InsertCheckItem()
    */
    wxMenuItem* AppendCheckItem(int id, const wxString& item,
                                const wxString& help = wxEmptyString);

    /**
        Adds a radio item to the end of the menu.
        All consequent radio items form a group and when an item in the group is
        checked, all the others are automatically unchecked.

        @note Radio items are not supported under wxMotif.

        @see Append(), InsertRadioItem()
    */
    wxMenuItem* AppendRadioItem(int id, const wxString& item,
                                const wxString& help = wxEmptyString);

    /**
        Adds a separator to the end of the menu.

        @see Append(), InsertSeparator()
    */
    wxMenuItem* AppendSeparator();

    /**
        Adds the given @a submenu to this menu. @a text is the text shown in the
        menu for it and @a help is the help string shown in the status bar when the
        submenu item is selected.

        @see Insert(), Prepend()
    */
    wxMenuItem* AppendSubMenu(wxMenu* submenu, const wxString& text,
                              const wxString& help = wxEmptyString);

    /**
        Inserts a break in a menu, causing the next appended item to appear in
        a new column.
    */
    virtual void Break();

    /**
        Checks or unchecks the menu item.

        @param id
            The menu item identifier.
        @param check
            If @true, the item will be checked, otherwise it will be unchecked.

        @see IsChecked()
    */
    void Check(int id, bool check);

    /**
        Deletes the menu item from the menu. If the item is a submenu, it will
        @b not be deleted. Use Destroy() if you want to delete a submenu.

        @param id
            Id of the menu item to be deleted.

        @see FindItem(), Destroy(), Remove()
    */
    bool Delete(int id);

    /**
        Deletes the menu item from the menu. If the item is a submenu, it will
        @b not be deleted. Use Destroy() if you want to delete a submenu.

        @param item
            Menu item to be deleted.

        @see FindItem(), Destroy(), Remove()
    */
    bool Delete(wxMenuItem* item);

    /**
        Deletes the menu item from the menu. If the item is a submenu, it will
        be deleted. Use Remove() if you want to keep the submenu (for example,
        to reuse it later).

        @param id
            Id of the menu item to be deleted.

        @see FindItem(), Delete(), Remove()
    */
    bool Destroy(int id);

    /**
        Deletes the menu item from the menu. If the item is a submenu, it will
        be deleted. Use Remove() if you want to keep the submenu (for example,
        to reuse it later).

        @param item
            Menu item to be deleted.

        @see FindItem(), Delete(), Remove()
    */
    bool Destroy(wxMenuItem* item);

    /**
        Enables or disables (greys out) a menu item.

        @param id
            The menu item identifier.
        @param enable
            @true to enable the menu item, @false to disable it.

        @see IsEnabled()
    */
    void Enable(int id, bool enable);

    /**
      Finds the menu item object associated with the given menu item identifier
      and, optionally, the position of the item in the menu.

      Unlike FindItem(), this function doesn't recurse but only looks at the
      direct children of this menu.

      @param id
          The identifier of the menu item to find.
      @param pos
          If the pointer is not @NULL, it is filled with the item's position if
          it was found or @c (size_t)wxNOT_FOUND otherwise.
      @return
        Menu item object or @NULL if not found.
     */
    wxMenuItem *FindChildItem(int id, size_t *pos = NULL) const;

    /**
        Finds the menu id for a menu item string.

        @param itemString
            Menu item string to find.

        @return Menu item identifier, or wxNOT_FOUND if none is found.

        @remarks Any special menu codes are stripped out of source and target
                 strings before matching.
    */
    virtual int FindItem(const wxString& itemString) const;

    /**
        Finds the menu item object associated with the given menu item identifier and,
        optionally, the (sub)menu it belongs to.

        @param id
            Menu item identifier.
        @param menu
            If the pointer is not @NULL, it will be filled with the item's
            parent menu (if the item was found)

        @return Menu item object or NULL if none is found.
    */
    wxMenuItem* FindItem(int id, wxMenu** menu = NULL) const;

    /**
        Returns the wxMenuItem given a position in the menu.
    */
    wxMenuItem* FindItemByPosition(size_t position) const;

    /**
        Returns the help string associated with a menu item.

        @param id
            The menu item identifier.

        @return The help string, or the empty string if there is no help string
                or the item was not found.

        @see SetHelpString(), Append()
    */
    virtual wxString GetHelpString(int id) const;

    /**
        Returns a menu item label.

        @param id
            The menu item identifier.

        @return The item label, or the empty string if the item was not found.

        @see GetLabelText(), SetLabel()
    */
    wxString GetLabel(int id) const;

    /**
        Returns a menu item label, without any of the original mnemonics and
        accelerators.

        @param id
            The menu item identifier.

        @return The item label, or the empty string if the item was not found.

        @see GetLabel(), SetLabel()
    */
    wxString GetLabelText(int id) const;

    /**
        Returns the number of items in the menu.
    */
    size_t GetMenuItemCount() const;

    //@{
    /**
        Returns the list of items in the menu.

        wxMenuItemList is a pseudo-template list class containing wxMenuItem
        pointers, see wxList.
    */
    wxMenuItemList& GetMenuItems();
    const wxMenuItemList& GetMenuItems() const;
    //@}

    /**
        Returns the title of the menu.

        @see SetTitle()
    */
    const wxString& GetTitle() const;

    /**
        Inserts the given @a item before the position @a pos.

        Inserting the item at position GetMenuItemCount() is the same
        as appending it.

        @see Append(), Prepend()
    */
    wxMenuItem* Insert(size_t pos, wxMenuItem* menuItem);

    /**
        Inserts the given @a item before the position @a pos.

        Inserting the item at position GetMenuItemCount() is the same
        as appending it.

        @see Append(), Prepend()
    */
    wxMenuItem* Insert(size_t pos, int id,
                       const wxString& item = wxEmptyString,
                       const wxString& helpString = wxEmptyString,
                       wxItemKind kind = wxITEM_NORMAL);

    /**
        Inserts the given @a submenu before the position @a pos.
        @a text is the text shown in the menu for it and @a help is the
        help string shown in the status bar when the submenu item is selected.

        @see AppendSubMenu(), Prepend()
    */
    wxMenuItem* Insert(size_t pos, int id, const wxString& text,
                       wxMenu* submenu, const wxString& help = wxEmptyString);

    /**
        Inserts a checkable item at the given position.

        @see Insert(), AppendCheckItem()
    */
    wxMenuItem* InsertCheckItem(size_t pos, int id, const wxString& item,
                                const wxString& helpString = wxEmptyString);

    /**
        Inserts a radio item at the given position.

        @see Insert(), AppendRadioItem()
    */
    wxMenuItem* InsertRadioItem(size_t pos, int id, const wxString& item,
                                const wxString& helpString = wxEmptyString);

    /**
        Inserts a separator at the given position.

        @see Insert(), AppendSeparator()
    */
    wxMenuItem* InsertSeparator(size_t pos);

    /**
        Determines whether a menu item is checked.

        @param id
            The menu item identifier.

        @return @true if the menu item is checked, @false otherwise.

        @see Check()
    */
    bool IsChecked(int id) const;

    /**
        Determines whether a menu item is enabled.

        @param id
            The menu item identifier.

        @return @true if the menu item is enabled, @false otherwise.

        @see Enable()
    */
    bool IsEnabled(int id) const;

    /**
        Inserts the given @a item at position 0, i.e.\ before all the other
        existing items.

        @see Append(), Insert()
    */
    wxMenuItem* Prepend(wxMenuItem* item);

    /**
        Inserts the given @a item at position 0, i.e.\ before all the other
        existing items.

        @see Append(), Insert()
    */
    wxMenuItem* Prepend(int id, const wxString& item = wxEmptyString,
                        const wxString& helpString = wxEmptyString,
                        wxItemKind kind = wxITEM_NORMAL);

    /**
        Inserts the given @a submenu at position 0.

        @see AppendSubMenu(), Insert()
    */
    wxMenuItem* Prepend(int id, const wxString& text, wxMenu* submenu,
                        const wxString& help = wxEmptyString);

    /**
        Inserts a checkable item at position 0.

        @see Prepend(), AppendCheckItem()
    */
    wxMenuItem* PrependCheckItem(int id, const wxString& item,
                                 const wxString& helpString = wxEmptyString);

    /**
        Inserts a radio item at position 0.

        @see Prepend(), AppendRadioItem()
    */
    wxMenuItem* PrependRadioItem(int id, const wxString& item,
                                 const wxString& helpString = wxEmptyString);

    /**
        Inserts a separator at position 0.

        @see Prepend(), AppendSeparator()
    */
    wxMenuItem* PrependSeparator();

    /**
        Removes the menu item from the menu but doesn't delete the associated C++
        object. This allows you to reuse the same item later by adding it back to
        the menu (especially useful with submenus).

        @param id
            The identifier of the menu item to remove.

        @return A pointer to the item which was detached from the menu.
    */
    wxMenuItem* Remove(int id);

    /**
        Removes the menu item from the menu but doesn't delete the associated C++
        object. This allows you to reuse the same item later by adding it back to
        the menu (especially useful with submenus).

        @param item
            The menu item to remove.

        @return A pointer to the item which was detached from the menu.
    */
    wxMenuItem* Remove(wxMenuItem* item);

    /**
        Sets an item's help string.

        @param id
            The menu item identifier.
        @param helpString
            The help string to set.

        @see GetHelpString()
    */
    virtual void SetHelpString(int id, const wxString& helpString);

    /**
        Sets the label of a menu item.

        @param id
            The menu item identifier.
        @param label
            The menu item label to set.

        @see Append(), GetLabel()
    */
    void SetLabel(int id, const wxString& label);

    /**
        Sets the title of the menu.

        @param title
            The title to set.

        @remarks Notice that you can only call this method directly for the
            popup menus, to change the title of a menu that is part of a menu
            bar you need to use wxMenuBar::SetLabelTop().

        @see GetTitle()
    */
    virtual void SetTitle(const wxString& title);

    /**
        Sends events to @a source (or owning window if @NULL) to update the
        menu UI.

        This is called just before the menu is popped up with wxWindow::PopupMenu,
        but the application may call it at other times if required.
    */
    void UpdateUI(wxEvtHandler* source = NULL);

    
    void SetInvokingWindow(wxWindow *win);
    wxWindow *GetInvokingWindow() const;
    wxWindow *GetWindow() const;
    long GetStyle() const;
    void SetParent(wxMenu *parent);
    wxMenu *GetParent() const;

    virtual void Attach(wxMenuBar *menubar);
    virtual void Detach();
    bool IsAttached() const;

};