#include <wx/menuitem.h>
A menu item represents an item in a menu.
Note that you usually don't have to deal with it directly as wxMenu methods usually construct an object of this class for you.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros for events emitted by this class:
wxEVT_MENU
command, which is generated by a menu item. This type of event is sent as wxCommandEvent. wxEVT_MENU
command, which is generated by a range of menu items. This type of event is sent as wxCommandEvent. This class provides several functions for customizing the menu items appearance that are available only in wxMSW port. These functions should not be used in portable programs and, moreover, have some known limitations even in wxMSW: using them switches the menu item in a "owner drawn" mode, where it is painted by wxWidgets itself and not the system, which may result in a slightly different appearance for it. Owner drawn items are also incompatible with dark mode support and using them makes the entire menu containing them to use standard light mode colours even in dark mode.
Getters | |
wxColour & | GetBackgroundColour () const |
Returns the background colour associated with the menu item. More... | |
wxBitmap | GetBitmap () const |
Returns the item bitmap. More... | |
wxBitmap | GetBitmap (bool checked) const |
Returns the checked or unchecked bitmap. More... | |
wxBitmapBundle | GetBitmapBundle () const |
Returns the bitmap bundle containing the bitmap used for this item. More... | |
virtual wxBitmap | GetDisabledBitmap () const |
Returns the bitmap used for disabled items. More... | |
wxFont & | GetFont () const |
Returns the font associated with the menu item. More... | |
const wxString & | GetHelp () const |
Returns the help string associated with the menu item. More... | |
int | GetId () const |
Returns the menu item identifier. More... | |
virtual wxString | GetItemLabel () const |
Returns the text associated with the menu item including any accelerator characters that were passed to the constructor or SetItemLabel(). More... | |
virtual wxString | GetItemLabelText () const |
Returns the text associated with the menu item, without any accelerator characters. More... | |
wxItemKind | GetKind () const |
Returns the item kind, one of wxITEM_SEPARATOR , wxITEM_NORMAL , wxITEM_CHECK or wxITEM_RADIO . More... | |
wxString | GetLabel () const |
Returns the text associated with the menu item without any accelerator characters it might contain. More... | |
int | GetMarginWidth () const |
Gets the width of the menu item checkmark bitmap. More... | |
wxMenu * | GetMenu () const |
Returns the menu this menu item is in, or nullptr if this menu item is not attached. More... | |
wxString | GetName () const |
Returns the text associated with the menu item. More... | |
wxMenu * | GetSubMenu () const |
Returns the submenu associated with the menu item, or nullptr if there isn't one. More... | |
const wxString & | GetText () const |
Returns the text associated with the menu item, such as it was passed to the wxMenuItem constructor, i.e. with any accelerator characters it may contain. More... | |
wxColour & | GetTextColour () const |
Returns the text colour associated with the menu item. More... | |
virtual wxAcceleratorEntry * | GetAccel () const |
Get our accelerator or nullptr (caller must delete the pointer) More... | |
static wxAcceleratorEntry * | GetAccelFromString (const wxString &label) |
Extract the accelerator from the given menu string, return nullptr if none found. More... | |
Public Member Functions | |
wxMenuItem (wxMenu *parentMenu=nullptr, int id=wxID_SEPARATOR, const wxString &text=wxEmptyString, const wxString &helpString=wxEmptyString, wxItemKind kind=wxITEM_NORMAL, wxMenu *subMenu=nullptr) | |
Constructs a wxMenuItem object. More... | |
virtual | ~wxMenuItem () |
Destructor. More... | |
virtual void | Check (bool check=true) |
Checks or unchecks the menu item. More... | |
virtual void | Enable (bool enable=true) |
Enables or disables the menu item. More... | |
Checkers | |
bool | IsCheck () const |
Returns true if the item is a check item. More... | |
bool | IsCheckable () const |
Returns true if the item is checkable. More... | |
virtual bool | IsChecked () const |
Returns true if the item is checked. More... | |
virtual bool | IsEnabled () const |
Returns true if the item is enabled. More... | |
bool | IsRadio () const |
Returns true if the item is a radio button. More... | |
bool | IsSeparator () const |
Returns true if the item is a separator. More... | |
bool | IsSubMenu () const |
Returns true if the item is a submenu. More... | |
Setters | |
void | SetBackgroundColour (const wxColour &colour) |
Sets the background colour associated with the menu item. More... | |
void | SetBitmap (const wxBitmapBundle &bmp) |
Sets the bitmap for the menu item. More... | |
void | SetBitmap (const wxBitmapBundle &bmp, bool checked) |
Sets the checked or unchecked bitmap for the menu item. More... | |
void | SetBitmaps (const wxBitmapBundle &checked, const wxBitmapBundle &unchecked=wxNullBitmap) |
Sets the checked/unchecked bitmaps for the menu item. More... | |
void | SetDisabledBitmap (const wxBitmapBundle &disabled) |
Sets the to be used for disabled menu items. More... | |
void | SetFont (const wxFont &font) |
Sets the font associated with the menu item. More... | |
void | SetHelp (const wxString &helpString) |
Sets the help string. More... | |
virtual void | SetItemLabel (const wxString &label) |
Sets the label associated with the menu item. More... | |
void | SetMarginWidth (int width) |
Sets the width of the menu item checkmark bitmap. More... | |
void | SetMenu (wxMenu *menu) |
Sets the parent menu which will contain this menu item. More... | |
void | SetSubMenu (wxMenu *menu) |
Sets the submenu of this menu item. More... | |
virtual void | SetText (const wxString &text) |
Sets the text associated with the menu item. More... | |
void | SetTextColour (const wxColour &colour) |
Sets the text colour associated with the menu item. More... | |
virtual void | SetAccel (wxAcceleratorEntry *accel) |
Set the accel for this item - this may also be done indirectly with SetText() More... | |
virtual void | AddExtraAccel (const wxAcceleratorEntry &accel) |
Add an extra accelerator for this menu item. More... | |
void | ClearExtraAccels () |
Clear the extra accelerators list. More... | |
Public Member Functions inherited from wxObject | |
wxObject () | |
Default ctor; initializes to nullptr the internal reference data. More... | |
wxObject (const wxObject &other) | |
Copy ctor. More... | |
virtual | ~wxObject () |
Destructor. More... | |
virtual wxClassInfo * | GetClassInfo () const |
This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar). More... | |
wxObjectRefData * | GetRefData () const |
Returns the wxObject::m_refData pointer, i.e. the data referenced by this object. More... | |
bool | IsKindOf (const wxClassInfo *info) const |
Determines whether this class is a subclass of (or the same class as) the given class. More... | |
bool | IsSameAs (const wxObject &obj) const |
Returns true if this object has the same data pointer as obj. More... | |
void | Ref (const wxObject &clone) |
Makes this object refer to the data in clone. More... | |
void | SetRefData (wxObjectRefData *data) |
Sets the wxObject::m_refData pointer. More... | |
void | UnRef () |
Decrements the reference count in the associated data, and if it is zero, deletes the data. More... | |
void | UnShare () |
This is the same of AllocExclusive() but this method is public. More... | |
void | operator delete (void *buf) |
The delete operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More... | |
void * | operator new (size_t size, const wxString &filename=nullptr, int lineNum=0) |
The new operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More... | |
Static Public Member Functions | |
static wxString | GetLabelFromText (const wxString &text) |
static wxString | GetLabelText (const wxString &text) |
Strips all accelerator characters and mnemonics from the given text. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from wxObject | |
void | AllocExclusive () |
Ensure that this object's data is not shared with any other object. More... | |
virtual wxObjectRefData * | CreateRefData () const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. More... | |
virtual wxObjectRefData * | CloneRefData (const wxObjectRefData *data) const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying data. More... | |
Protected Attributes inherited from wxObject | |
wxObjectRefData * | m_refData |
Pointer to an object which is the object's reference-counted data. More... | |
wxMenuItem::wxMenuItem | ( | wxMenu * | parentMenu = nullptr , |
int | id = wxID_SEPARATOR , |
||
const wxString & | text = wxEmptyString , |
||
const wxString & | helpString = wxEmptyString , |
||
wxItemKind | kind = wxITEM_NORMAL , |
||
wxMenu * | subMenu = nullptr |
||
) |
Constructs a wxMenuItem object.
Menu items can be standard, or "stock menu items", or custom. For the standard menu items (such as commands to open a file, exit the program and so on, see Stock Items for the full list) it is enough to specify just the stock ID and leave text and helpString empty. Some platforms (currently wxGTK only, and see the remark in SetBitmap() documentation) will also show standard bitmaps for stock menu items.
Leaving at least text empty for the stock menu items is actually strongly recommended as they will have appearance and keyboard interface (including standard accelerators) familiar to the user.
For the custom (non-stock) menu items, text must be specified and while helpString may be left empty, it's recommended to pass the item description (which is automatically shown by the library in the status bar when the menu item is selected) in this parameter.
Finally note that you can e.g. use a stock menu label without using its stock help string:
that is, stock properties are set independently one from the other.
parentMenu | Menu that the menu item belongs to. Can be nullptr if the item is going to be added to the menu later. |
id | Identifier for this menu item. May be wxID_SEPARATOR , in which case the given kind is ignored and taken to be wxITEM_SEPARATOR instead. |
text | Text for the menu item, as shown on the menu. See SetItemLabel() for more info. |
helpString | Optional help string that will be shown on the status bar. |
kind | May be wxITEM_SEPARATOR , wxITEM_NORMAL , wxITEM_CHECK or wxITEM_RADIO . |
subMenu | If non-null, indicates that the menu item is a submenu. |
|
virtual |
Destructor.
|
virtual |
Add an extra accelerator for this menu item.
Additional accelerators are not shown in the item's label, but still will trigger the menu command when pressed.
They can be useful to let multiple keys be used as accelerators for the same command, e.g. WXK_ADD
and WXK_NUMPAD_ADD
.
|
virtual |
Checks or unchecks the menu item.
Note that this only works when the item is already appended to a menu.
void wxMenuItem::ClearExtraAccels | ( | ) |
Clear the extra accelerators list.
This doesn't affect the main item accelerator (if any).
|
virtual |
Enables or disables the menu item.
|
virtual |
Get our accelerator or nullptr (caller must delete the pointer)
|
static |
Extract the accelerator from the given menu string, return nullptr if none found.
wxColour& wxMenuItem::GetBackgroundColour | ( | ) | const |
Returns the background colour associated with the menu item.
wxBitmap wxMenuItem::GetBitmap | ( | ) | const |
Returns the item bitmap.
This method exists only for compatibility, please use GetBitmapBundle() in the new code.
wxBitmap wxMenuItem::GetBitmap | ( | bool | checked | ) | const |
Returns the checked or unchecked bitmap.
This overload only exists in wxMSW, avoid using it in portable code.
wxBitmapBundle wxMenuItem::GetBitmapBundle | ( | ) | const |
Returns the bitmap bundle containing the bitmap used for this item.
The returned bundle is invalid, i.e. empty, if no bitmap is associated with the item.
|
virtual |
Returns the bitmap used for disabled items.
wxFont& wxMenuItem::GetFont | ( | ) | const |
Returns the font associated with the menu item.
const wxString& wxMenuItem::GetHelp | ( | ) | const |
Returns the help string associated with the menu item.
int wxMenuItem::GetId | ( | ) | const |
Returns the menu item identifier.
|
virtual |
Returns the text associated with the menu item including any accelerator characters that were passed to the constructor or SetItemLabel().
|
virtual |
Returns the text associated with the menu item, without any accelerator characters.
wxItemKind wxMenuItem::GetKind | ( | ) | const |
Returns the item kind, one of wxITEM_SEPARATOR
, wxITEM_NORMAL
, wxITEM_CHECK
or wxITEM_RADIO
.
wxString wxMenuItem::GetLabel | ( | ) | const |
Returns the text associated with the menu item without any accelerator characters it might contain.
Strips all accelerator characters and mnemonics from the given text.
For example:
will return just "Hello"
.
int wxMenuItem::GetMarginWidth | ( | ) | const |
Gets the width of the menu item checkmark bitmap.
wxMenu* wxMenuItem::GetMenu | ( | ) | const |
Returns the menu this menu item is in, or nullptr if this menu item is not attached.
wxString wxMenuItem::GetName | ( | ) | const |
Returns the text associated with the menu item.
wxMenu* wxMenuItem::GetSubMenu | ( | ) | const |
Returns the submenu associated with the menu item, or nullptr if there isn't one.
const wxString& wxMenuItem::GetText | ( | ) | const |
Returns the text associated with the menu item, such as it was passed to the wxMenuItem constructor, i.e. with any accelerator characters it may contain.
wxColour& wxMenuItem::GetTextColour | ( | ) | const |
Returns the text colour associated with the menu item.
bool wxMenuItem::IsCheck | ( | ) | const |
Returns true if the item is a check item.
Unlike IsCheckable() this doesn't return true for the radio buttons.
bool wxMenuItem::IsCheckable | ( | ) | const |
Returns true if the item is checkable.
Notice that the radio buttons are considered to be checkable as well, so this method returns true for them too. Use IsCheck() if you want to test for the check items only.
|
virtual |
Returns true if the item is checked.
|
virtual |
Returns true if the item is enabled.
bool wxMenuItem::IsRadio | ( | ) | const |
Returns true if the item is a radio button.
bool wxMenuItem::IsSeparator | ( | ) | const |
Returns true if the item is a separator.
bool wxMenuItem::IsSubMenu | ( | ) | const |
Returns true if the item is a submenu.
|
virtual |
Set the accel for this item - this may also be done indirectly with SetText()
void wxMenuItem::SetBackgroundColour | ( | const wxColour & | colour | ) |
Sets the background colour associated with the menu item.
Please note that this function only exists in wxMSW and works by making the menu item "owner-drawn" there, please see the note about such items in this class description.
void wxMenuItem::SetBitmap | ( | const wxBitmapBundle & | bmp | ) |
Sets the bitmap for the menu item.
Notice that GTK+ uses a global setting called gtk-menu-images
to determine if the images should be shown in the menus at all. If it is off (which is the case in e.g. Gnome 2.28 by default), no images will be shown, consistently with the native behaviour.
void wxMenuItem::SetBitmap | ( | const wxBitmapBundle & | bmp, |
bool | checked | ||
) |
Sets the checked or unchecked bitmap for the menu item.
It is equivalent to wxMenuItem::SetBitmaps(bmp, wxNullBitmap) if checked is true or SetBitmaps(wxNullBitmap, bmp) otherwise.
Note that different bitmaps for checked and unchecked item states are not supported in most ports, while setting just a single bitmap using the overload above is supported in all of them.
void wxMenuItem::SetBitmaps | ( | const wxBitmapBundle & | checked, |
const wxBitmapBundle & | unchecked = wxNullBitmap |
||
) |
Sets the checked/unchecked bitmaps for the menu item.
The first bitmap is also used as the single bitmap for uncheckable menu items.
void wxMenuItem::SetDisabledBitmap | ( | const wxBitmapBundle & | disabled | ) |
Sets the to be used for disabled menu items.
void wxMenuItem::SetFont | ( | const wxFont & | font | ) |
Sets the font associated with the menu item.
Please note that this function only exists in wxMSW and works by making the menu item "owner-drawn" there, please see the note about such items in this class description.
void wxMenuItem::SetHelp | ( | const wxString & | helpString | ) |
Sets the help string.
|
virtual |
Sets the label associated with the menu item.
Note that if the ID of this menu item corresponds to a stock ID, then it is not necessary to specify a label: wxWidgets will automatically use the stock item label associated with that ID. See the constructor for more info.
The label string for the normal menu items (not separators) may include the accelerator which can be used to activate the menu item from keyboard. An accelerator key can be specified using the ampersand &
character. In order to embed an ampersand character in the menu item text, the ampersand must be doubled.
Optionally you can specify also an accelerator string appending a tab character \t
followed by a valid key combination (e.g. CTRL+V
). Its general syntax is any combination of "CTRL"
, "RAWCTRL"
, "ALT"
and "SHIFT"
strings (case doesn't matter) separated by either '-'
or '+'
characters and followed by the accelerator itself. Note that the displayed accelerator can differ from the string specified here though, e.g. Ctrl+X
could be actually shown on the screen when Ctrl-X
is used. Notice that CTRL
corresponds to the "Ctrl" key on most platforms but not under macOS where it is mapped to "Cmd" key on Mac keyboard. Usually this is exactly what you want in portable code but if you really need to use the (rarely used for this purpose) "Ctrl" key even under Mac, you may use RAWCTRL
to prevent this mapping. Under the other platforms RAWCTRL
is the same as plain CTRL
.
The accelerator may be any alphanumeric character, any function key (from F1
to F12
), any numpad digit key using KP_
prefix (i.e. from KP_0
to KP_9
) or one of the special strings listed below (again, case doesn't matter) corresponding to the specified key code:
Del
or Delete:
WXK_DELETEBack:
WXK_BACKIns
or Insert:
WXK_INSERTEnter
or Return:
WXK_RETURNPgUp
or PageUp:
WXK_PAGEUPPgDn
or PageDown:
WXK_PAGEDOWNLeft:
WXK_LEFTRight:
WXK_RIGHTUp:
WXK_UPDown:
WXK_DOWNHome:
WXK_HOMEEnd:
WXK_ENDSpace:
WXK_SPACETab:
WXK_TABEsc
or Escape:
WXK_ESCAPECancel:
WXK_CANCELClear:
WXK_CLEARMenu:
WXK_MENUPause:
WXK_PAUSECapital:
WXK_CAPITALSelect:
WXK_SELECTPrint:
WXK_PRINTExecute:
WXK_EXECUTESnapshot:
WXK_SNAPSHOTHelp:
WXK_HELPAdd:
WXK_ADDSeparator:
WXK_SEPARATORSubtract:
WXK_SUBTRACTDecimal:
WXK_DECIMALDivide:
WXK_DIVIDENum_lock:
WXK_NUMLOCKScroll_lock:
WXK_SCROLLKP_Space:
WXK_NUMPAD_SPACEKP_Tab:
WXK_NUMPAD_TABKP_Enter:
WXK_NUMPAD_ENTERKP_Home:
WXK_NUMPAD_HOMEKP_Left:
WXK_NUMPAD_LEFTKP_Up:
WXK_NUMPAD_UPKP_Right:
WXK_NUMPAD_RIGHTKP_Down:
WXK_NUMPAD_DOWNKP_PageUp:
WXK_NUMPAD_PAGEUPKP_PageDown:
WXK_NUMPAD_PAGEDOWNKP_Prior:
WXK_NUMPAD_PAGEUPKP_Next:
WXK_NUMPAD_PAGEDOWNKP_End:
WXK_NUMPAD_ENDKP_Begin:
WXK_NUMPAD_BEGINKP_Insert:
WXK_NUMPAD_INSERTKP_Delete:
WXK_NUMPAD_DELETEKP_Equal:
WXK_NUMPAD_EQUALKP_Multiply:
WXK_NUMPAD_MULTIPLYKP_Add:
WXK_NUMPAD_ADDKP_Separator:
WXK_NUMPAD_SEPARATORKP_Subtract:
WXK_NUMPAD_SUBTRACTKP_Decimal:
WXK_NUMPAD_DECIMALKP_Divide:
WXK_NUMPAD_DIVIDEWindows_Left:
WXK_WINDOWS_LEFTWindows_Right:
WXK_WINDOWS_RIGHTWindows_Menu:
WXK_WINDOWS_MENUCommand:
WXK_COMMANDExamples:
"SHIFT"
with non-alphabetic characters currently doesn't work, even in combination with other modifiers, due to GTK+ limitation. E.g. Shift+Ctrl+A
works but Shift+Ctrl+1
or Shift+/
do not, so avoid using accelerators of this form in portable code.void wxMenuItem::SetMarginWidth | ( | int | width | ) |
Sets the width of the menu item checkmark bitmap.
void wxMenuItem::SetMenu | ( | wxMenu * | menu | ) |
Sets the parent menu which will contain this menu item.
void wxMenuItem::SetSubMenu | ( | wxMenu * | menu | ) |
Sets the submenu of this menu item.
|
virtual |
Sets the text associated with the menu item.
void wxMenuItem::SetTextColour | ( | const wxColour & | colour | ) |
Sets the text colour associated with the menu item.
Please note that this function only exists in wxMSW and works by making the menu item "owner-drawn" there, please see the note about such items in this class description.