wxMenuBar (wx v2.5.4)

Copy Markdown View Source

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

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

See:

This class is derived, and can use functions, from:

wxWidgets docs: wxMenuBar

Summary

Functions

Adds the item to the end of the menu bar.

Checks or unchecks a menu item.

Destroys the object

Enables or disables (greys out) a menu item.

Enables or disables a whole menu.

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

Returns the index of the menu with the given title or wxNOT\_FOUND if no such menu exists in this menubar.

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

Gets the help string associated with the menu item identifier.

Gets the label associated with a menu item.

Returns the menu at menuIndex (zero-based).

Returns the number of menus in this menubar.

Returns the label of a top-level menu.

Returns the label of a top-level menu.

Inserts the menu at the given position into the menu bar.

Determines whether an item is checked.

Determines whether an item is enabled.

Enables you to get the global menubar on Mac, that is, the menubar displayed when the app is running without any frames open.

Enables you to set the global menubar on Mac, that is, the menubar displayed when the app is running without any frames open.

Construct an empty menu bar.

Returns the Apple menu.

Removes the menu from the menu bar and returns the menu object - the caller is responsible for deleting it.

Replaces the menu at the given position with another one.

Sets the help string associated with a menu item.

Sets the label of a menu item.

Sets the label of a top-level menu.

Types

wxMenuBar()

-type wxMenuBar() :: wx:wx_object().

Functions

append(This, Menu, Title) -> boolean()

Types

This = wxMenuBar()
Menu = wxMenu:wxMenu()
Title = unicode:chardata()

Adds the item to the end of the menu bar.

Return: true on success, false if an error occurred.

See: insert/4

check(This :: wxMenuBar(), Id :: integer(), Check :: boolean()) -> ok

Checks or unchecks a menu item.

Remark: Only use this when the menu bar has been associated with a frame; otherwise, use the wxMenu equivalent call.

destroy(This :: wxMenuBar()) -> ok

Destroys the object

enable(This :: wxMenuBar(), Id :: integer(), Enable :: boolean()) -> ok

Enables or disables (greys out) a menu item.

Remark: Only use this when the menu bar has been associated with a frame; otherwise, use the wxMenu equivalent call.

enableTop(This :: wxMenuBar(), Pos :: integer(), Enable :: boolean()) -> ok

Enables or disables a whole menu.

Remark: Only use this when the menu bar has been associated with a frame.

findItem(This :: wxMenuBar(), Id :: integer()) -> Result

Types

Result = wxMenuItem:wxMenuItem()

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

Return: The found menu item object, or NULL if one was not found.

findMenu(This :: wxMenuBar(), Title :: unicode:chardata()) -> integer()

Returns the index of the menu with the given title or wxNOT\_FOUND if no such menu exists in this menubar.

The title parameter may specify either the menu title (with accelerator characters, i.e. "&File") or just the menu label ("File") indifferently.

findMenuItem(This, MenuString, ItemString) -> integer()

Types

This = wxMenuBar()
MenuString = ItemString = unicode:chardata()

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

Return: The menu item identifier, or wxNOT_FOUND if none was found.

Remark: Any special menu codes are stripped out of source and target strings before matching.

getAutoWindowMenu() -> boolean()

getHelpString(This :: wxMenuBar(), Id :: integer()) -> unicode:charlist()

Gets the help string associated with 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/3

getLabel(This :: wxMenuBar(), Id :: integer()) -> unicode:charlist()

Gets the label associated with a menu item.

Return: The menu item label, or the empty string if the item was not found.

Remark: Use only after the menubar has been associated with a frame.

getLabelTop(This :: wxMenuBar(), Pos :: integer()) -> unicode:charlist()

Equivalent to: getMenuLabel/2

getMenu(This :: wxMenuBar(), MenuIndex :: integer()) -> wxMenu:wxMenu()

Returns the menu at menuIndex (zero-based).

getMenuCount(This :: wxMenuBar()) -> integer()

Returns the number of menus in this menubar.

getMenuLabel(This :: wxMenuBar(), Pos :: integer()) -> unicode:charlist()

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.

Return: The menu label, or the empty string if the menu was not found.

Remark: Use only after the menubar has been associated with a frame.

See:

getMenuLabelText(This :: wxMenuBar(), Pos :: integer()) -> unicode:charlist()

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.

Return: The menu label, or the empty string if the menu was not found.

Remark: Use only after the menubar has been associated with a frame.

See:

insert(This, Pos, Menu, Title) -> boolean()

Types

This = wxMenuBar()
Pos = integer()
Menu = wxMenu:wxMenu()
Title = unicode:chardata()

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/1 is the same as calling append/3.

Return: true on success, false if an error occurred.

See: append/3

isChecked(This :: wxMenuBar(), Id :: integer()) -> boolean()

Determines whether an item is checked.

Return: true if the item was found and is checked, false otherwise.

isEnabled(This :: wxMenuBar(), Id :: integer()) -> boolean()

Determines whether an item is enabled.

Return: true if the item was found and is enabled, false otherwise.

macGetCommonMenuBar() -> wxMenuBar()

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.

Remark: Only exists on Mac, other platforms do not have this method.

Only for:wxosx

macSetCommonMenuBar(Menubar :: wxMenuBar()) -> ok

Enables you to set the global menubar on Mac, that is, the menubar displayed when the app is running without any frames open.

Remark: Only exists on Mac, other platforms do not have this method.

Only for:wxosx

new() -> wxMenuBar()

Construct an empty menu bar.

new(Style :: integer()) -> wxMenuBar()

oSXGetAppleMenu(This :: wxMenuBar()) -> wxMenu:wxMenu()

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.

Only for:wxosx

Since: 3.0.1

remove(This :: wxMenuBar(), Pos :: integer()) -> wxMenu:wxMenu()

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/4 to change the menubar dynamically.

See: replace/4

replace(This, Pos, Menu, Title) -> wxMenu:wxMenu()

Types

This = wxMenuBar()
Pos = integer()
Menu = wxMenu:wxMenu()
Title = unicode:chardata()

Replaces the menu at the given position with another one.

Return: The menu which was previously at position pos. The caller is responsible for deleting it.

See:

setAutoWindowMenu(Enable :: boolean()) -> ok

setHelpString(This, Id, HelpString) -> ok

Types

This = wxMenuBar()
Id = integer()
HelpString = unicode:chardata()

Sets the help string associated with a menu item.

See: getHelpString/2

setLabel(This, Id, Label) -> ok

Types

This = wxMenuBar()
Id = integer()
Label = unicode:chardata()

Sets the label of a menu item.

Remark: Use only after the menubar has been associated with a frame.

See: getLabel/2

setLabelTop(This, Pos, Label) -> ok

Types

This = wxMenuBar()
Pos = integer()
Label = unicode:chardata()

Equivalent to: setMenuLabel/3

setMenuLabel(This, Pos, Label) -> ok

Types

This = wxMenuBar()
Pos = integer()
Label = unicode:chardata()

Sets the label of a top-level menu.

Remark: Use only after the menubar has been associated with a frame.