wxMenu Class Reference
[Menus]

#include <wx/menu.h>

Inheritance diagram for wxMenu:

wxEvtHandler wxObject

List of all members.


Detailed Description

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 -1 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 wxID_ABOUT and 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 MacOS X and will be inserted into the system menu (following the appropriate MacOS X interface guideline). On PalmOS wxID_EXIT is disabled according to Palm OS Companion guidelines.
Menu items may be either normal items, check items or 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. Finally note that radio items are not supported under Motif.

Library:  wxCore

Category:  Menus

See also:
wxMenuBar, wxWindow::PopupMenu, Event Handling Overview, wxFileHistory (most recently used files menu)

Public Member Functions

 wxMenu (long style)
 wxMenu (const wxString &title="", long style=0)
 ~wxMenu ()
wxMenuItemAppend (int id, const wxString &item=wxEmptyString, const wxString &helpString=wxEmptyString, wxItemKind kind=wxITEM_NORMAL)
wxMenuItemAppend (int id, const wxString &item, wxMenu *subMenu, const wxString &helpString=wxEmptyString)
wxMenuItemAppend (wxMenuItem *menuItem)
wxMenuItemAppendCheckItem (int id, const wxString &item, const wxString &helpString="")
wxMenuItemAppendRadioItem (int id, const wxString &item, const wxString &helpString="")
wxMenuItemAppendSeparator ()
wxMenuItemAppendSubMenu (wxMenu *submenu, const wxString &text, const wxString &help=wxEmptyString)
void Break ()
void Check (int id, const bool check)
void Delete (int id)
void Delete (wxMenuItem *item)
void Destroy (int id)
void Destroy (wxMenuItem *item)
void Enable (int id, const bool enable)
int FindItem (const wxString &itemString) const
const wxMenuItemFindItem (int id, wxMenu **menu=NULL) const
wxMenuItemFindItemByPosition (size_t position) const
wxString GetHelpString (int id) const
wxString GetLabel (int id) const
wxString GetLabelText (int id) const
size_t GetMenuItemCount () const
wxMenuItemList GetMenuItems () const
wxString GetTitle () const
wxMenuItemInsert (size_t pos, wxMenuItem *item)
wxMenuItemInsert (size_t pos, int id, const wxString &item="", const wxString &helpString="", wxItemKind kind=wxITEM_NORMAL)
wxMenuItemInsertCheckItem (size_t pos, int id, const wxString &item, const wxString &helpString="")
wxMenuItemInsertRadioItem (size_t pos, int id, const wxString &item, const wxString &helpString="")
wxMenuItemInsertSeparator (size_t pos)
bool IsChecked (int id) const
bool IsEnabled (int id) const
wxMenuItemPrepend (wxMenuItem *item)
wxMenuItemPrepend (int id, const wxString &item="", const wxString &helpString="", wxItemKind kind=wxITEM_NORMAL)
wxMenuItemPrependCheckItem (int id, const wxString &item, const wxString &helpString="")
wxMenuItemPrependRadioItem (int id, const wxString &item, const wxString &helpString="")
wxMenuItemPrependSeparator ()
wxMenuItemRemove (int id)
wxMenuItemRemove (wxMenuItem *item)
void SetHelpString (int id, const wxString &helpString)
void SetLabel (int id, const wxString &label)
void SetTitle (const wxString &title)
void UpdateUI (wxEvtHandler *source=NULL) const

Constructor & Destructor Documentation

wxMenu::wxMenu ( long  style  ) 

Constructs a wxMenu object.

Parameters:
style If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only).

wxMenu::wxMenu ( const wxString title = "",
long  style = 0 
)

Constructs a wxMenu object with a title

Parameters:
title Title at the top of the menu (not always supported).
style If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only).

wxMenu::~wxMenu (  ) 

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 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.


Member Function Documentation

wxMenuItem* wxMenu::Append ( int  id,
const wxString item = wxEmptyString,
const wxString helpString = wxEmptyString,
wxItemKind  kind = wxITEM_NORMAL 
)

Adds a menu item.

Parameters:
id The menu command identifier.
item The string to appear on the menu item.
helpString An optional help string associated with the item. By default, the handler for the wxEVT_MENU_HIGHLIGHT event displays this string in the status line.
kind May be wxITEM_SEPARATOR, wxITEM_NORMAL, wxITEM_CHECK or wxITEM_RADIO
See also:
AppendSeparator(), AppendCheckItem(), AppendRadioItem(), AppendSubMenu(), Insert(), SetLabel(), GetHelpString(), SetHelpString(), wxMenuItem

wxMenuItem* wxMenu::Append ( int  id,
const wxString item,
wxMenu subMenu,
const wxString helpString = wxEmptyString 
)

Adds a submenu.

Deprecated:
This function is deprecated, use AppendSubMenu() instead.
Parameters:
id The menu command identifier.
item The string to appear on the menu item.
subMenu Pull-right submenu.
helpString An optional help string associated with the item. By default, the handler for the wxEVT_MENU_HIGHLIGHT event displays this string in the status line.
See also:
AppendSeparator(), AppendCheckItem(), AppendRadioItem(), AppendSubMenu(), Insert(), SetLabel(), GetHelpString(), SetHelpString(), wxMenuItem

wxMenuItem* wxMenu::Append ( wxMenuItem menuItem  ) 

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.

Parameters:
menuItem A menuitem object. It will be owned by the wxMenu object after this function is called, so do not delete it yourself.
See also:
AppendSeparator(), AppendCheckItem(), AppendRadioItem(), AppendSubMenu(), Insert(), SetLabel(), GetHelpString(), SetHelpString(), wxMenuItem

wxMenuItem* wxMenu::AppendCheckItem ( int  id,
const wxString item,
const wxString helpString = "" 
)

Adds a checkable item to the end of the menu.

See also:
Append(), InsertCheckItem()

wxMenuItem* wxMenu::AppendRadioItem ( int  id,
const wxString item,
const wxString helpString = "" 
)

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.

See also:
Append(), InsertRadioItem()

wxMenuItem* wxMenu::AppendSeparator (  ) 

Adds a separator to the end of the menu.

See also:
Append(), InsertSeparator()

wxMenuItem* wxMenu::AppendSubMenu ( wxMenu submenu,
const wxString text,
const wxString help = wxEmptyString 
)

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

void wxMenu::Break (  ) 

Inserts a break in a menu, causing the next appended item to appear in a new column.

void wxMenu::Check ( int  id,
const bool  check 
)

Checks or unchecks the menu item.

Parameters:
id The menu item identifier.
check If true, the item will be checked, otherwise it will be unchecked.
See also:
IsChecked()

void wxMenu::Delete ( int  id  ) 

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

Parameters:
id Id of the menu item to be deleted.
See also:
FindItem(), Destroy(), Remove()

void wxMenu::Delete ( wxMenuItem item  ) 

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

Parameters:
item Menu item to be deleted.
See also:
FindItem(), Destroy(), Remove()

void wxMenu::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).

Parameters:
id Id of the menu item to be deleted.
See also:
FindItem(), Deletes(), Remove()

void wxMenu::Destroy ( 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).

Parameters:
item Menu item to be deleted.
See also:
FindItem(), Deletes(), Remove()

void wxMenu::Enable ( int  id,
const bool  enable 
)

Enables or disables (greys out) a menu item.

Parameters:
id The menu item identifier.
enable true to enable the menu item, false to disable it.
See also:
IsEnabled()

int wxMenu::FindItem ( const wxString itemString  )  const

Finds the menu id for a menu item string.

Parameters:
itemString Menu item string to find.
Returns:
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.

const wxMenuItem* wxMenu::FindItem ( int  id,
wxMenu **  menu = NULL 
) const

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

Parameters:
id Menu item identifier.
menu If the pointer is not NULL, it will be filled with the item's parent menu (if the item was found)
Returns:
Menu item object or NULL if none is found.

wxMenuItem* wxMenu::FindItemByPosition ( size_t  position  )  const

Returns the wxMenuItem given a position in the menu.

wxString wxMenu::GetHelpString ( int  id  )  const

Returns the help string associated with a menu item.

Parameters:
id The menu item identifier.
Returns:
The help string, or the empty string if there is no help string or the item was not found.
See also:
SetHelpString(), Append()

wxString wxMenu::GetLabel ( int  id  )  const

Returns a menu item label.

Parameters:
id The menu item identifier.
Returns:
The item label, or the empty string if the item was not found.
See also:
GetLabelText(), SetLabel()

wxString wxMenu::GetLabelText ( int  id  )  const

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

Parameters:
id The menu item identifier.
Returns:
The item label, or the empty string if the item was not found.
See also:
GetLabel(), SetLabel()

size_t wxMenu::GetMenuItemCount (  )  const

Returns the number of items in the menu.

wxMenuItemList wxMenu::GetMenuItems (  )  const

Returns the list of items in the menu. wxMenuItemList is a pseudo-template list class containing wxMenuItem pointers, see wxList.

wxString wxMenu::GetTitle (  )  const

Returns the title of the menu.

Remarks:
This is relevant only to popup menus, use wxMenuBar::GetMenuLabel for the menus in the menubar.
See also:
SetTitle()

wxMenuItem* wxMenu::Insert ( size_t  pos,
wxMenuItem item 
)

Inserts the given item before the position pos. Inserting the item at position GetMenuItemCount() is the same as appending it.

See also:
Append(), Prepend()

wxMenuItem* wxMenu::Insert ( size_t  pos,
int  id,
const wxString item = "",
const wxString helpString = "",
wxItemKind  kind = wxITEM_NORMAL 
)

Inserts the given item before the position pos. Inserting the item at position GetMenuItemCount() is the same as appending it.

See also:
Append(), Prepend()

wxMenuItem* wxMenu::InsertCheckItem ( size_t  pos,
int  id,
const wxString item,
const wxString helpString = "" 
)

Inserts a checkable item at the given position.

See also:
Insert(), AppendCheckItem()

wxMenuItem* wxMenu::InsertRadioItem ( size_t  pos,
int  id,
const wxString item,
const wxString helpString = "" 
)

Inserts a radio item at the given position.

See also:
Insert(), AppendRadioItem()

wxMenuItem* wxMenu::InsertSeparator ( size_t  pos  ) 

Inserts a separator at the given position.

See also:
Insert(), AppendSeparator()

bool wxMenu::IsChecked ( int  id  )  const

Determines whether a menu item is checked.

Parameters:
id The menu item identifier.
Returns:
true if the menu item is checked, false otherwise.
See also:
Check()

bool wxMenu::IsEnabled ( int  id  )  const

Determines whether a menu item is enabled.

Parameters:
id The menu item identifier.
Returns:
true if the menu item is enabled, false otherwise.
See also:
Enable()

wxMenuItem* wxMenu::Prepend ( wxMenuItem item  ) 

Inserts the given item at position 0, i.e. before all the other existing items.

See also:
Append(), Insert()

wxMenuItem* wxMenu::Prepend ( int  id,
const wxString item = "",
const wxString helpString = "",
wxItemKind  kind = wxITEM_NORMAL 
)

Inserts the given item at position 0, i.e. before all the other existing items.

See also:
Append(), Insert()

wxMenuItem* wxMenu::PrependCheckItem ( int  id,
const wxString item,
const wxString helpString = "" 
)

Inserts a checkable item at position 0.

See also:
Prepend(), AppendCheckItem()

wxMenuItem* wxMenu::PrependRadioItem ( int  id,
const wxString item,
const wxString helpString = "" 
)

Inserts a radio item at position 0.

See also:
Prepend(), AppendRadioItem()

wxMenuItem* wxMenu::PrependSeparator (  ) 

Inserts a separator at position 0.

See also:
Prepend(), AppendSeparator()

wxMenuItem* wxMenu::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).

Parameters:
id The identifier of the menu item to remove.
Returns:
A pointer to the item which was detached from the menu.

wxMenuItem* wxMenu::Remove ( wxMenuItem item  ) 

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).

Parameters:
item The menu item to remove.
Returns:
A pointer to the item which was detached from the menu.

void wxMenu::SetHelpString ( int  id,
const wxString helpString 
)

Sets an item's help string.

Parameters:
id The menu item identifier.
helpString The help string to set.
See also:
GetHelpString()

void wxMenu::SetLabel ( int  id,
const wxString label 
)

Sets the label of a menu item.

Parameters:
id The menu item identifier.
label The menu item label to set.
See also:
Append(), GetLabel()

void wxMenu::SetTitle ( const wxString title  ) 

Sets the title of the menu.

Parameters:
title The title to set.
Remarks:
This is relevant only to popup menus, use wxMenuBar::SetLabelTop for the menus in the menubar.
See also:
GetTitle()

void wxMenu::UpdateUI ( wxEvtHandler source = NULL  )  const

Sends events to 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.



wxWidgets logo

[ top ]