|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2017 - ROLI Ltd.
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- By using JUCE, you agree to the terms of both the JUCE 5 End-User License
- Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
- 27th April 2017).
-
- End User License Agreement: www.juce.com/juce-5-licence
- Privacy Policy: www.juce.com/juce-5-privacy-policy
-
- Or: You may also use this code under the terms of the GPL v3 (see
- www.gnu.org/licenses).
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- namespace juce
- {
-
- ApplicationCommandManager::ApplicationCommandManager()
- : firstTarget (nullptr)
- {
- keyMappings = new KeyPressMappingSet (*this);
- Desktop::getInstance().addFocusChangeListener (this);
- }
-
- ApplicationCommandManager::~ApplicationCommandManager()
- {
- Desktop::getInstance().removeFocusChangeListener (this);
- keyMappings = nullptr;
- }
-
- //==============================================================================
- void ApplicationCommandManager::clearCommands()
- {
- commands.clear();
- keyMappings->clearAllKeyPresses();
- triggerAsyncUpdate();
- }
-
- void ApplicationCommandManager::registerCommand (const ApplicationCommandInfo& newCommand)
- {
- // zero isn't a valid command ID!
- jassert (newCommand.commandID != 0);
-
- // the name isn't optional!
- jassert (newCommand.shortName.isNotEmpty());
-
- if (auto* command = getMutableCommandForID (newCommand.commandID))
- {
- // Trying to re-register the same command ID with different parameters can often indicate a typo.
- // This assertion is here because I've found it useful catching some mistakes, but it may also cause
- // false alarms if you're deliberately updating some flags for a command.
- jassert (newCommand.shortName == getCommandForID (newCommand.commandID)->shortName
- && newCommand.categoryName == getCommandForID (newCommand.commandID)->categoryName
- && newCommand.defaultKeypresses == getCommandForID (newCommand.commandID)->defaultKeypresses
- && (newCommand.flags & (ApplicationCommandInfo::wantsKeyUpDownCallbacks | ApplicationCommandInfo::hiddenFromKeyEditor | ApplicationCommandInfo::readOnlyInKeyEditor))
- == (getCommandForID (newCommand.commandID)->flags & (ApplicationCommandInfo::wantsKeyUpDownCallbacks | ApplicationCommandInfo::hiddenFromKeyEditor | ApplicationCommandInfo::readOnlyInKeyEditor)));
-
- *command = newCommand;
- }
- else
- {
- ApplicationCommandInfo* const newInfo = new ApplicationCommandInfo (newCommand);
- newInfo->flags &= ~ApplicationCommandInfo::isTicked;
- commands.add (newInfo);
-
- keyMappings->resetToDefaultMapping (newCommand.commandID);
-
- triggerAsyncUpdate();
- }
- }
-
- void ApplicationCommandManager::registerAllCommandsForTarget (ApplicationCommandTarget* target)
- {
- if (target != nullptr)
- {
- Array<CommandID> commandIDs;
- target->getAllCommands (commandIDs);
-
- for (int i = 0; i < commandIDs.size(); ++i)
- {
- ApplicationCommandInfo info (commandIDs.getUnchecked(i));
- target->getCommandInfo (info.commandID, info);
-
- registerCommand (info);
- }
- }
- }
-
- void ApplicationCommandManager::removeCommand (const CommandID commandID)
- {
- for (int i = commands.size(); --i >= 0;)
- {
- if (commands.getUnchecked (i)->commandID == commandID)
- {
- commands.remove (i);
- triggerAsyncUpdate();
-
- const Array<KeyPress> keys (keyMappings->getKeyPressesAssignedToCommand (commandID));
-
- for (int j = keys.size(); --j >= 0;)
- keyMappings->removeKeyPress (keys.getReference (j));
- }
- }
- }
-
- void ApplicationCommandManager::commandStatusChanged()
- {
- triggerAsyncUpdate();
- }
-
- //==============================================================================
- ApplicationCommandInfo* ApplicationCommandManager::getMutableCommandForID (CommandID commandID) const noexcept
- {
- for (int i = commands.size(); --i >= 0;)
- if (commands.getUnchecked(i)->commandID == commandID)
- return commands.getUnchecked(i);
-
- return nullptr;
- }
-
- const ApplicationCommandInfo* ApplicationCommandManager::getCommandForID (const CommandID commandID) const noexcept
- {
- return getMutableCommandForID (commandID);
- }
-
- String ApplicationCommandManager::getNameOfCommand (const CommandID commandID) const noexcept
- {
- if (auto* ci = getCommandForID (commandID))
- return ci->shortName;
-
- return {};
- }
-
- String ApplicationCommandManager::getDescriptionOfCommand (const CommandID commandID) const noexcept
- {
- if (auto* ci = getCommandForID (commandID))
- return ci->description.isNotEmpty() ? ci->description
- : ci->shortName;
-
- return {};
- }
-
- StringArray ApplicationCommandManager::getCommandCategories() const
- {
- StringArray s;
-
- for (int i = 0; i < commands.size(); ++i)
- s.addIfNotAlreadyThere (commands.getUnchecked(i)->categoryName, false);
-
- return s;
- }
-
- Array<CommandID> ApplicationCommandManager::getCommandsInCategory (const String& categoryName) const
- {
- Array<CommandID> results;
-
- for (int i = 0; i < commands.size(); ++i)
- if (commands.getUnchecked(i)->categoryName == categoryName)
- results.add (commands.getUnchecked(i)->commandID);
-
- return results;
- }
-
- //==============================================================================
- bool ApplicationCommandManager::invokeDirectly (const CommandID commandID, const bool asynchronously)
- {
- ApplicationCommandTarget::InvocationInfo info (commandID);
- info.invocationMethod = ApplicationCommandTarget::InvocationInfo::direct;
-
- return invoke (info, asynchronously);
- }
-
- bool ApplicationCommandManager::invoke (const ApplicationCommandTarget::InvocationInfo& inf, const bool asynchronously)
- {
- // This call isn't thread-safe for use from a non-UI thread without locking the message
- // manager first..
- jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager());
-
- bool ok = false;
- ApplicationCommandInfo commandInfo (0);
-
- if (auto* target = getTargetForCommand (inf.commandID, commandInfo))
- {
- ApplicationCommandTarget::InvocationInfo info (inf);
- info.commandFlags = commandInfo.flags;
-
- sendListenerInvokeCallback (info);
- ok = target->invoke (info, asynchronously);
- commandStatusChanged();
- }
-
- return ok;
- }
-
- //==============================================================================
- ApplicationCommandTarget* ApplicationCommandManager::getFirstCommandTarget (const CommandID)
- {
- return firstTarget != nullptr ? firstTarget
- : findDefaultComponentTarget();
- }
-
- void ApplicationCommandManager::setFirstCommandTarget (ApplicationCommandTarget* const newTarget) noexcept
- {
- firstTarget = newTarget;
- }
-
- ApplicationCommandTarget* ApplicationCommandManager::getTargetForCommand (const CommandID commandID,
- ApplicationCommandInfo& upToDateInfo)
- {
- ApplicationCommandTarget* target = getFirstCommandTarget (commandID);
-
- if (target == nullptr)
- target = JUCEApplication::getInstance();
-
- if (target != nullptr)
- target = target->getTargetForCommand (commandID);
-
- if (target != nullptr)
- {
- upToDateInfo.commandID = commandID;
- target->getCommandInfo (commandID, upToDateInfo);
- }
-
- return target;
- }
-
- //==============================================================================
- ApplicationCommandTarget* ApplicationCommandManager::findTargetForComponent (Component* c)
- {
- ApplicationCommandTarget* target = dynamic_cast<ApplicationCommandTarget*> (c);
-
- if (target == nullptr && c != nullptr)
- target = c->findParentComponentOfClass<ApplicationCommandTarget>();
-
- return target;
- }
-
- ApplicationCommandTarget* ApplicationCommandManager::findDefaultComponentTarget()
- {
- Component* c = Component::getCurrentlyFocusedComponent();
-
- if (c == nullptr)
- {
- if (auto* activeWindow = TopLevelWindow::getActiveTopLevelWindow())
- {
- c = activeWindow->getPeer()->getLastFocusedSubcomponent();
-
- if (c == nullptr)
- c = activeWindow;
- }
- }
-
- if (c == nullptr && Process::isForegroundProcess())
- {
- auto& desktop = Desktop::getInstance();
-
- // getting a bit desperate now: try all desktop comps..
- for (int i = desktop.getNumComponents(); --i >= 0;)
- if (auto* peer = desktop.getComponent(i)->getPeer())
- if (auto* target = findTargetForComponent (peer->getLastFocusedSubcomponent()))
- return target;
- }
-
- if (c != nullptr)
- {
- // if we're focused on a ResizableWindow, chances are that it's the content
- // component that really should get the event. And if not, the event will
- // still be passed up to the top level window anyway, so let's send it to the
- // content comp.
- if (auto* resizableWindow = dynamic_cast<ResizableWindow*> (c))
- if (auto* content = resizableWindow->getContentComponent())
- c = content;
-
- if (auto* target = findTargetForComponent (c))
- return target;
- }
-
- return JUCEApplication::getInstance();
- }
-
- //==============================================================================
- void ApplicationCommandManager::addListener (ApplicationCommandManagerListener* const listener)
- {
- listeners.add (listener);
- }
-
- void ApplicationCommandManager::removeListener (ApplicationCommandManagerListener* const listener)
- {
- listeners.remove (listener);
- }
-
- void ApplicationCommandManager::sendListenerInvokeCallback (const ApplicationCommandTarget::InvocationInfo& info)
- {
- listeners.call (&ApplicationCommandManagerListener::applicationCommandInvoked, info);
- }
-
- void ApplicationCommandManager::handleAsyncUpdate()
- {
- listeners.call (&ApplicationCommandManagerListener::applicationCommandListChanged);
- }
-
- void ApplicationCommandManager::globalFocusChanged (Component*)
- {
- commandStatusChanged();
- }
-
- } // namespace juce
|