JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins

« « « Anklang Documentation
Loading...
Searching...
No Matches
Classes | Public Member Functions | Static Public Member Functions | List of all members
juce::MenuBarModel Class Referenceabstract

A class for controlling MenuBar components. More...

#include "juce_MenuBarModel.h"

Inheritance diagram for juce::MenuBarModel:
juce::AsyncUpdater juce::ApplicationCommandManagerListener

Classes

class  Listener
 A class to receive callbacks when a MenuBarModel changes. More...
 

Public Member Functions

 ~MenuBarModel () override
 Destructor.
 
void menuItemsChanged ()
 Call this when some of your menu items have changed.
 
void setApplicationCommandManagerToWatch (ApplicationCommandManager *manager)
 Tells the menu bar to listen to the specified command manager, and to update itself when the commands change.
 
void addListener (Listener *listenerToAdd)
 Registers a listener for callbacks when the menu items in this model change.
 
void removeListener (Listener *listenerToRemove)
 Removes a listener.
 
virtual StringArray getMenuBarNames ()=0
 This method must return a list of the names of the menus.
 
virtual PopupMenu getMenuForIndex (int topLevelMenuIndex, const String &menuName)=0
 This should return the popup menu to display for a given top-level menu.
 
virtual void menuItemSelected (int menuItemID, int topLevelMenuIndex)=0
 This is called when a menu item has been clicked on.
 
virtual void menuBarActivated (bool isActive)
 This is called when the user starts/stops navigating the menu bar.
 
void applicationCommandInvoked (const ApplicationCommandTarget::InvocationInfo &) override
 Called when an app command is about to be invoked.
 
void applicationCommandListChanged () override
 Called when commands are registered or deregistered from the command manager, or when commands are made active or inactive.
 
void handleAsyncUpdate () override
 Called back to do whatever your class needs to do.
 
void handleMenuBarActivate (bool isActive)
 

Static Public Member Functions

static void setMacMainMenu (MenuBarModel *newMenuBarModel, const PopupMenu *extraAppleMenuItems=nullptr, const String &recentItemsMenuName=String())
 OSX ONLY - Sets the model that is currently being shown as the main menu bar at the top of the screen on the Mac.
 
static MenuBarModelgetMacMainMenu ()
 OSX ONLY - Returns the menu model that is currently being shown as the main menu bar.
 
static const PopupMenugetMacExtraAppleItemsMenu ()
 OSX ONLY - Returns the menu that was last passed as the extraAppleMenuItems argument to setMacMainMenu(), or nullptr if none was specified.
 

Detailed Description

A class for controlling MenuBar components.

This class is used to tell a MenuBar what menus to show, and to respond to a menu being selected.

See also
MenuBarModel::Listener, MenuBarComponent, PopupMenu

@tags{GUI}

Definition at line 40 of file juce_MenuBarModel.h.

Constructor & Destructor Documentation

◆ MenuBarModel()

juce::MenuBarModel::MenuBarModel ( )
noexcept

Definition at line 29 of file juce_MenuBarModel.cpp.

◆ ~MenuBarModel()

juce::MenuBarModel::~MenuBarModel ( )
override

Destructor.

Definition at line 34 of file juce_MenuBarModel.cpp.

Member Function Documentation

◆ addListener()

void juce::MenuBarModel::addListener ( Listener listenerToAdd)

Registers a listener for callbacks when the menu items in this model change.

The listener object will get callbacks when this object's menuItemsChanged() method is called.

See also
removeListener

Definition at line 59 of file juce_MenuBarModel.cpp.

◆ applicationCommandInvoked()

void juce::MenuBarModel::applicationCommandInvoked ( const ApplicationCommandTarget::InvocationInfo )
overridevirtual

Called when an app command is about to be invoked.

Implements juce::ApplicationCommandManagerListener.

Definition at line 80 of file juce_MenuBarModel.cpp.

◆ applicationCommandListChanged()

void juce::MenuBarModel::applicationCommandListChanged ( )
overridevirtual

Called when commands are registered or deregistered from the command manager, or when commands are made active or inactive.

Note that if you're using this to watch for changes to whether a command is disabled, you'll need to make sure that ApplicationCommandManager::commandStatusChanged() is called whenever the status of your command might have changed.

Implements juce::ApplicationCommandManagerListener.

Definition at line 85 of file juce_MenuBarModel.cpp.

◆ getMenuForIndex()

virtual PopupMenu juce::MenuBarModel::getMenuForIndex ( int  topLevelMenuIndex,
const String menuName 
)
pure virtual

This should return the popup menu to display for a given top-level menu.

Parameters
topLevelMenuIndexthe index of the top-level menu to show
menuNamethe name of the top-level menu item to show

◆ handleAsyncUpdate()

void juce::MenuBarModel::handleAsyncUpdate ( )
overridevirtual

Called back to do whatever your class needs to do.

This method is called by the message thread at the next convenient time after the triggerAsyncUpdate() method has been called.

Implements juce::AsyncUpdater.

Definition at line 75 of file juce_MenuBarModel.cpp.

◆ handleMenuBarActivate()

void juce::MenuBarModel::handleMenuBarActivate ( bool  isActive)

Definition at line 90 of file juce_MenuBarModel.cpp.

◆ menuBarActivated()

void juce::MenuBarModel::menuBarActivated ( bool  isActive)
virtual

This is called when the user starts/stops navigating the menu bar.

Parameters
isActivetrue when the user starts navigating the menu bar

Definition at line 96 of file juce_MenuBarModel.cpp.

◆ menuItemsChanged()

void juce::MenuBarModel::menuItemsChanged ( )

Call this when some of your menu items have changed.

This method will cause a callback to any MenuBarListener objects that are registered with this model.

If this model is displaying items from an ApplicationCommandManager, you can use the setApplicationCommandManagerToWatch() method to cause change messages to be sent automatically when the ApplicationCommandManager is changed.

See also
addListener, removeListener, MenuBarListener

Definition at line 40 of file juce_MenuBarModel.cpp.

◆ menuItemSelected()

virtual void juce::MenuBarModel::menuItemSelected ( int  menuItemID,
int  topLevelMenuIndex 
)
pure virtual

This is called when a menu item has been clicked on.

Parameters
menuItemIDthe item ID of the PopupMenu item that was selected
topLevelMenuIndexthe index of the top-level menu from which the item was chosen (just in case you've used duplicate ID numbers on more than one of the popup menus)

◆ removeListener()

void juce::MenuBarModel::removeListener ( Listener listenerToRemove)

Removes a listener.

See also
addListener

Definition at line 64 of file juce_MenuBarModel.cpp.

◆ setApplicationCommandManagerToWatch()

void juce::MenuBarModel::setApplicationCommandManagerToWatch ( ApplicationCommandManager manager)

Tells the menu bar to listen to the specified command manager, and to update itself when the commands change.

This will also allow it to flash a menu name when a command from that menu is invoked using a keystroke.

Definition at line 45 of file juce_MenuBarModel.cpp.

◆ setMacMainMenu()

static void juce::MenuBarModel::setMacMainMenu ( MenuBarModel newMenuBarModel,
const PopupMenu extraAppleMenuItems = nullptr,
const String recentItemsMenuName = String() 
)
static

OSX ONLY - Sets the model that is currently being shown as the main menu bar at the top of the screen on the Mac.

You can pass nullptr to stop the current model being displayed. Be careful not to delete a model while it is being used.

An optional extra menu can be specified, containing items to add to the top of the apple menu. (Confusingly, the 'apple' menu isn't the one with a picture of an apple, it's the one next to it, with your application's name at the top and the services menu etc on it). When one of these items is selected, the menu bar model will be used to invoke it, and in the menuItemSelected() callback the topLevelMenuIndex parameter will be -1. If you pass in an extraAppleMenuItems object then newMenuBarModel must be non-null.

If the recentItemsMenuName parameter is non-empty, then any sub-menus with this name will be replaced by OSX's special recent-files menu.


The documentation for this class was generated from the following files: