mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-09 18:44:46 +00:00
722 lines
19 KiB
C++
722 lines
19 KiB
C++
// Aseprite
|
|
// Copyright (C) 2001-2016 David Capello
|
|
//
|
|
// This program is distributed under the terms of
|
|
// the End-User License Agreement for Aseprite.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "app/ui/keyboard_shortcuts.h"
|
|
|
|
#include "app/app.h"
|
|
#include "app/app_menus.h"
|
|
#include "app/commands/command.h"
|
|
#include "app/commands/commands.h"
|
|
#include "app/commands/params.h"
|
|
#include "app/document.h"
|
|
#include "app/tools/ink.h"
|
|
#include "app/tools/tool.h"
|
|
#include "app/tools/tool_box.h"
|
|
#include "app/ui_context.h"
|
|
#include "app/xml_document.h"
|
|
#include "app/xml_exception.h"
|
|
#include "ui/accelerator.h"
|
|
#include "ui/message.h"
|
|
|
|
#define XML_KEYBOARD_FILE_VERSION "1"
|
|
|
|
namespace {
|
|
|
|
static struct {
|
|
const char* name;
|
|
const char* userfriendly;
|
|
app::KeyAction action;
|
|
} actions[] = {
|
|
{ "CopySelection" , "Copy Selection" , app::KeyAction::CopySelection },
|
|
{ "SnapToGrid" , "Snap To Grid" , app::KeyAction::SnapToGrid },
|
|
{ "AngleSnap" , "Angle Snap" , app::KeyAction::AngleSnap },
|
|
{ "MaintainAspectRatio" , "Maintain Aspect Ratio", app::KeyAction::MaintainAspectRatio },
|
|
{ "ScaleFromCenter" , "Scale From Center" , app::KeyAction::ScaleFromCenter },
|
|
{ "LockAxis" , "Lock Axis" , app::KeyAction::LockAxis },
|
|
{ "AddSelection" , "Add Selection" , app::KeyAction::AddSelection },
|
|
{ "SubtractSelection" , "Subtract Selection" , app::KeyAction::SubtractSelection },
|
|
{ "AutoSelectLayer" , "Auto Select Layer" , app::KeyAction::AutoSelectLayer },
|
|
{ "StraightLineFromLastPoint", "Straight Line from Last Point", app::KeyAction::StraightLineFromLastPoint },
|
|
{ "MoveOrigin" , "Move Origin" , app::KeyAction::MoveOrigin },
|
|
{ "SquareAspect" , "Square Aspect" , app::KeyAction::SquareAspect },
|
|
{ "DrawFromCenter" , "Draw From Center" , app::KeyAction::DrawFromCenter },
|
|
{ "LeftMouseButton" , "Trigger Left Mouse Button" , app::KeyAction::LeftMouseButton },
|
|
{ "RightMouseButton" , "Trigger Right Mouse Button" , app::KeyAction::RightMouseButton },
|
|
{ NULL , NULL , app::KeyAction::None }
|
|
};
|
|
|
|
const char* get_shortcut(TiXmlElement* elem)
|
|
{
|
|
const char* shortcut = NULL;
|
|
|
|
#ifdef _WIN32
|
|
if (!shortcut) shortcut = elem->Attribute("win");
|
|
#elif defined __APPLE__
|
|
if (!shortcut) shortcut = elem->Attribute("mac");
|
|
#else
|
|
if (!shortcut) shortcut = elem->Attribute("linux");
|
|
#endif
|
|
|
|
if (!shortcut)
|
|
shortcut = elem->Attribute("shortcut");
|
|
|
|
return shortcut;
|
|
}
|
|
|
|
std::string get_user_friendly_string_for_keyaction(app::KeyAction action)
|
|
{
|
|
for (int c=0; actions[c].name; ++c) {
|
|
if (action == actions[c].action)
|
|
return actions[c].userfriendly;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
namespace base {
|
|
|
|
template<> app::KeyAction convert_to(const std::string& from) {
|
|
app::KeyAction action = app::KeyAction::None;
|
|
|
|
for (int c=0; actions[c].name; ++c) {
|
|
if (from == actions[c].name)
|
|
return actions[c].action;
|
|
}
|
|
|
|
return action;
|
|
}
|
|
|
|
template<> std::string convert_to(const app::KeyAction& from) {
|
|
for (int c=0; actions[c].name; ++c) {
|
|
if (from == actions[c].action)
|
|
return actions[c].name;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
} // namespace base
|
|
|
|
namespace app {
|
|
|
|
using namespace ui;
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Key
|
|
|
|
Key::Key(Command* command, const Params& params, KeyContext keyContext)
|
|
: m_type(KeyType::Command)
|
|
, m_useUsers(false)
|
|
, m_keycontext(keyContext)
|
|
, m_command(command)
|
|
, m_params(params)
|
|
{
|
|
}
|
|
|
|
Key::Key(KeyType type, tools::Tool* tool)
|
|
: m_type(type)
|
|
, m_useUsers(false)
|
|
, m_keycontext(KeyContext::Any)
|
|
, m_tool(tool)
|
|
{
|
|
}
|
|
|
|
Key::Key(KeyAction action)
|
|
: m_type(KeyType::Action)
|
|
, m_useUsers(false)
|
|
, m_keycontext(KeyContext::Any)
|
|
, m_action(action)
|
|
{
|
|
switch (action) {
|
|
case KeyAction::None:
|
|
m_keycontext = KeyContext::Any;
|
|
break;
|
|
case KeyAction::CopySelection:
|
|
case KeyAction::SnapToGrid:
|
|
case KeyAction::LockAxis:
|
|
m_keycontext = KeyContext::TranslatingSelection;
|
|
break;
|
|
case KeyAction::AngleSnap:
|
|
m_keycontext = KeyContext::RotatingSelection;
|
|
break;
|
|
case KeyAction::MaintainAspectRatio:
|
|
case KeyAction::ScaleFromCenter:
|
|
m_keycontext = KeyContext::ScalingSelection;
|
|
break;
|
|
case KeyAction::AddSelection:
|
|
case KeyAction::SubtractSelection:
|
|
m_keycontext = KeyContext::SelectionTool;
|
|
break;
|
|
case KeyAction::AutoSelectLayer:
|
|
m_keycontext = KeyContext::MoveTool;
|
|
break;
|
|
case KeyAction::StraightLineFromLastPoint:
|
|
m_keycontext = KeyContext::FreehandTool;
|
|
break;
|
|
case KeyAction::MoveOrigin:
|
|
case KeyAction::SquareAspect:
|
|
case KeyAction::DrawFromCenter:
|
|
m_keycontext = KeyContext::ShapeTool;
|
|
break;
|
|
case KeyAction::LeftMouseButton:
|
|
m_keycontext = KeyContext::Any;
|
|
break;
|
|
case KeyAction::RightMouseButton:
|
|
m_keycontext = KeyContext::Any;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void Key::add(const ui::Accelerator& accel, KeySource source)
|
|
{
|
|
Accelerators* accels = &m_accels;
|
|
|
|
if (source == KeySource::UserDefined) {
|
|
if (!m_useUsers) {
|
|
m_useUsers = true;
|
|
m_users = m_accels;
|
|
}
|
|
accels = &m_users;
|
|
}
|
|
|
|
// Remove the accelerator from other commands
|
|
if (source == KeySource::UserDefined) {
|
|
KeyboardShortcuts::instance()->disableAccel(accel, m_keycontext);
|
|
m_userRemoved.remove(accel);
|
|
}
|
|
|
|
// Add the accelerator
|
|
accels->add(accel);
|
|
}
|
|
|
|
bool Key::isPressed(Message* msg) const
|
|
{
|
|
ASSERT(dynamic_cast<KeyMessage*>(msg) != NULL);
|
|
|
|
for (const Accelerator& accel : accels()) {
|
|
if (accel.isPressed(msg->modifiers(),
|
|
static_cast<KeyMessage*>(msg)->scancode(),
|
|
static_cast<KeyMessage*>(msg)->unicodeChar()) &&
|
|
(m_keycontext == KeyContext::Any ||
|
|
m_keycontext == KeyboardShortcuts::instance()->getCurrentKeyContext())) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool Key::isPressed() const
|
|
{
|
|
for (const Accelerator& accel : this->accels()) {
|
|
if (accel.isPressed())
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool Key::isLooselyPressed() const
|
|
{
|
|
for (const Accelerator& accel : this->accels()) {
|
|
if (accel.isLooselyPressed())
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool Key::hasAccel(const ui::Accelerator& accel) const
|
|
{
|
|
return accels().has(accel);
|
|
}
|
|
|
|
void Key::disableAccel(const ui::Accelerator& accel)
|
|
{
|
|
if (!m_useUsers) {
|
|
m_useUsers = true;
|
|
m_users = m_accels;
|
|
}
|
|
|
|
m_users.remove(accel);
|
|
|
|
if (m_accels.has(accel))
|
|
m_userRemoved.add(accel);
|
|
}
|
|
|
|
void Key::reset()
|
|
{
|
|
m_users.clear();
|
|
m_userRemoved.clear();
|
|
m_useUsers = false;
|
|
}
|
|
|
|
std::string Key::triggerString() const
|
|
{
|
|
switch (m_type) {
|
|
case KeyType::Command:
|
|
m_command->loadParams(m_params);
|
|
return m_command->friendlyName();
|
|
case KeyType::Tool:
|
|
case KeyType::Quicktool: {
|
|
std::string text = m_tool->getText();
|
|
if (m_type == KeyType::Quicktool)
|
|
text += " (quick)";
|
|
return text;
|
|
}
|
|
case KeyType::Action:
|
|
return get_user_friendly_string_for_keyaction(m_action);
|
|
}
|
|
return "Unknown";
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// KeyboardShortcuts
|
|
|
|
KeyboardShortcuts* KeyboardShortcuts::instance()
|
|
{
|
|
static KeyboardShortcuts* singleton = NULL;
|
|
if (!singleton)
|
|
singleton = new KeyboardShortcuts();
|
|
return singleton;
|
|
}
|
|
|
|
KeyboardShortcuts::KeyboardShortcuts()
|
|
{
|
|
}
|
|
|
|
KeyboardShortcuts::~KeyboardShortcuts()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
void KeyboardShortcuts::clear()
|
|
{
|
|
for (Key* key : m_keys) {
|
|
delete key;
|
|
}
|
|
m_keys.clear();
|
|
}
|
|
|
|
void KeyboardShortcuts::importFile(TiXmlElement* rootElement, KeySource source)
|
|
{
|
|
// <keyboard><commands><key>
|
|
TiXmlHandle handle(rootElement);
|
|
TiXmlElement* xmlKey = handle
|
|
.FirstChild("commands")
|
|
.FirstChild("key").ToElement();
|
|
while (xmlKey) {
|
|
const char* command_name = xmlKey->Attribute("command");
|
|
const char* command_key = get_shortcut(xmlKey);
|
|
bool removed = bool_attr_is_true(xmlKey, "removed");
|
|
|
|
if (command_name) {
|
|
Command* command = CommandsModule::instance()->getCommandByName(command_name);
|
|
if (command) {
|
|
// Read context
|
|
KeyContext keycontext = KeyContext::Any;
|
|
const char* keycontextstr = xmlKey->Attribute("context");
|
|
if (keycontextstr) {
|
|
if (strcmp(keycontextstr, "Selection") == 0)
|
|
keycontext = KeyContext::SelectionTool;
|
|
else if (strcmp(keycontextstr, "Normal") == 0)
|
|
keycontext = KeyContext::Normal;
|
|
}
|
|
|
|
// Read params
|
|
Params params;
|
|
|
|
TiXmlElement* xmlParam = xmlKey->FirstChildElement("param");
|
|
while (xmlParam) {
|
|
const char* param_name = xmlParam->Attribute("name");
|
|
const char* param_value = xmlParam->Attribute("value");
|
|
|
|
if (param_name && param_value)
|
|
params.set(param_name, param_value);
|
|
|
|
xmlParam = xmlParam->NextSiblingElement();
|
|
}
|
|
|
|
// add the keyboard shortcut to the command
|
|
Key* key = this->command(command_name, params, keycontext);
|
|
if (key && command_key) {
|
|
Accelerator accel(command_key);
|
|
|
|
if (!removed) {
|
|
key->add(accel, source);
|
|
|
|
// Add the shortcut to the menuitems with this command
|
|
// (this is only visual, the
|
|
// "CustomizedGuiManager::onProcessMessage" is the only
|
|
// one that process keyboard shortcuts)
|
|
if (key->accels().size() == 1) {
|
|
AppMenus::instance()->applyShortcutToMenuitemsWithCommand(
|
|
command, params, key);
|
|
}
|
|
}
|
|
else
|
|
key->disableAccel(accel);
|
|
}
|
|
}
|
|
}
|
|
|
|
xmlKey = xmlKey->NextSiblingElement();
|
|
}
|
|
|
|
// Load keyboard shortcuts for tools
|
|
// <gui><keyboard><tools><key>
|
|
xmlKey = handle
|
|
.FirstChild("tools")
|
|
.FirstChild("key").ToElement();
|
|
while (xmlKey) {
|
|
const char* tool_id = xmlKey->Attribute("tool");
|
|
const char* tool_key = get_shortcut(xmlKey);
|
|
bool removed = bool_attr_is_true(xmlKey, "removed");
|
|
|
|
if (tool_id) {
|
|
tools::Tool* tool = App::instance()->toolBox()->getToolById(tool_id);
|
|
if (tool) {
|
|
Key* key = this->tool(tool);
|
|
if (key && tool_key) {
|
|
LOG(VERBOSE) << "KEYS: Shortcut for tool " << tool_id << ": " << tool_key << "\n";
|
|
Accelerator accel(tool_key);
|
|
|
|
if (!removed)
|
|
key->add(accel, source);
|
|
else
|
|
key->disableAccel(accel);
|
|
}
|
|
}
|
|
}
|
|
xmlKey = xmlKey->NextSiblingElement();
|
|
}
|
|
|
|
// Load keyboard shortcuts for quicktools
|
|
// <gui><keyboard><quicktools><key>
|
|
xmlKey = handle
|
|
.FirstChild("quicktools")
|
|
.FirstChild("key").ToElement();
|
|
while (xmlKey) {
|
|
const char* tool_id = xmlKey->Attribute("tool");
|
|
const char* tool_key = get_shortcut(xmlKey);
|
|
bool removed = bool_attr_is_true(xmlKey, "removed");
|
|
|
|
if (tool_id) {
|
|
tools::Tool* tool = App::instance()->toolBox()->getToolById(tool_id);
|
|
if (tool) {
|
|
Key* key = this->quicktool(tool);
|
|
if (key && tool_key) {
|
|
LOG(VERBOSE) << "KEYS: Shortcut for quicktool " << tool_id << ": " << tool_key << "\n";
|
|
Accelerator accel(tool_key);
|
|
|
|
if (!removed)
|
|
key->add(accel, source);
|
|
else
|
|
key->disableAccel(accel);
|
|
}
|
|
}
|
|
}
|
|
xmlKey = xmlKey->NextSiblingElement();
|
|
}
|
|
|
|
// Load special keyboard shortcuts for sprite editor customization
|
|
// <gui><keyboard><spriteeditor>
|
|
xmlKey = handle
|
|
.FirstChild("actions")
|
|
.FirstChild("key").ToElement();
|
|
while (xmlKey) {
|
|
const char* tool_action = xmlKey->Attribute("action");
|
|
const char* tool_key = get_shortcut(xmlKey);
|
|
bool removed = bool_attr_is_true(xmlKey, "removed");
|
|
|
|
if (tool_action) {
|
|
KeyAction action = base::convert_to<KeyAction, std::string>(tool_action);
|
|
if (action != KeyAction::None) {
|
|
Key* key = this->action(action);
|
|
if (key && tool_key) {
|
|
LOG(VERBOSE) << "KEYS: Shortcut for action " << tool_action << ": " << tool_key << "\n";
|
|
Accelerator accel(tool_key);
|
|
|
|
if (!removed)
|
|
key->add(accel, source);
|
|
else
|
|
key->disableAccel(accel);
|
|
}
|
|
}
|
|
}
|
|
xmlKey = xmlKey->NextSiblingElement();
|
|
}
|
|
}
|
|
|
|
void KeyboardShortcuts::importFile(const std::string& filename, KeySource source)
|
|
{
|
|
XmlDocumentRef doc = app::open_xml(filename);
|
|
TiXmlHandle handle(doc.get());
|
|
TiXmlElement* xmlKey = handle.FirstChild("keyboard").ToElement();
|
|
|
|
importFile(xmlKey, source);
|
|
}
|
|
|
|
void KeyboardShortcuts::exportFile(const std::string& filename)
|
|
{
|
|
XmlDocumentRef doc(new TiXmlDocument());
|
|
|
|
TiXmlElement keyboard("keyboard");
|
|
TiXmlElement commands("commands");
|
|
TiXmlElement tools("tools");
|
|
TiXmlElement quicktools("quicktools");
|
|
TiXmlElement actions("actions");
|
|
|
|
keyboard.SetAttribute("version", XML_KEYBOARD_FILE_VERSION);
|
|
|
|
exportKeys(commands, KeyType::Command);
|
|
exportKeys(tools, KeyType::Tool);
|
|
exportKeys(quicktools, KeyType::Quicktool);
|
|
exportKeys(actions, KeyType::Action);
|
|
|
|
keyboard.InsertEndChild(commands);
|
|
keyboard.InsertEndChild(tools);
|
|
keyboard.InsertEndChild(quicktools);
|
|
keyboard.InsertEndChild(actions);
|
|
|
|
TiXmlDeclaration declaration("1.0", "utf-8", "");
|
|
doc->InsertEndChild(declaration);
|
|
doc->InsertEndChild(keyboard);
|
|
save_xml(doc, filename);
|
|
}
|
|
|
|
void KeyboardShortcuts::exportKeys(TiXmlElement& parent, KeyType type)
|
|
{
|
|
for (Key* key : m_keys) {
|
|
// Save only user defined accelerators.
|
|
if (key->type() != type)
|
|
continue;
|
|
|
|
for (const ui::Accelerator& accel : key->userRemovedAccels())
|
|
exportAccel(parent, key, accel, true);
|
|
|
|
for (const ui::Accelerator& accel : key->userAccels())
|
|
exportAccel(parent, key, accel, false);
|
|
}
|
|
}
|
|
|
|
void KeyboardShortcuts::exportAccel(TiXmlElement& parent, Key* key, const ui::Accelerator& accel, bool removed)
|
|
{
|
|
TiXmlElement elem("key");
|
|
|
|
switch (key->type()) {
|
|
|
|
case KeyType::Command: {
|
|
const char* keycontextStr = NULL;
|
|
|
|
elem.SetAttribute("command", key->command()->id().c_str());
|
|
|
|
switch (key->keycontext()) {
|
|
case KeyContext::Any:
|
|
// Without "context" attribute
|
|
break;
|
|
case KeyContext::Normal:
|
|
keycontextStr = "Normal";
|
|
break;
|
|
case KeyContext::SelectionTool:
|
|
keycontextStr = "Selection";
|
|
break;
|
|
case KeyContext::TranslatingSelection:
|
|
keycontextStr = "TranslatingSelection";
|
|
break;
|
|
case KeyContext::ScalingSelection:
|
|
keycontextStr = "ScalingSelection";
|
|
break;
|
|
case KeyContext::RotatingSelection:
|
|
keycontextStr = "RotatingSelection";
|
|
break;
|
|
case KeyContext::MoveTool:
|
|
keycontextStr = "MoveTool";
|
|
break;
|
|
case KeyContext::FreehandTool:
|
|
keycontextStr = "FreehandTool";
|
|
break;
|
|
case KeyContext::ShapeTool:
|
|
keycontextStr = "ShapeTool";
|
|
break;
|
|
}
|
|
|
|
if (keycontextStr)
|
|
elem.SetAttribute("context", keycontextStr);
|
|
|
|
for (const auto& param : key->params()) {
|
|
if (param.second.empty())
|
|
continue;
|
|
|
|
TiXmlElement paramElem("param");
|
|
paramElem.SetAttribute("name", param.first.c_str());
|
|
paramElem.SetAttribute("value", param.second.c_str());
|
|
elem.InsertEndChild(paramElem);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case KeyType::Tool:
|
|
case KeyType::Quicktool:
|
|
elem.SetAttribute("tool", key->tool()->getId().c_str());
|
|
break;
|
|
|
|
case KeyType::Action:
|
|
elem.SetAttribute("action",
|
|
base::convert_to<std::string>(key->action()).c_str());
|
|
break;
|
|
}
|
|
|
|
elem.SetAttribute("shortcut", accel.toString().c_str());
|
|
|
|
if (removed)
|
|
elem.SetAttribute("removed", "true");
|
|
|
|
parent.InsertEndChild(elem);
|
|
}
|
|
|
|
void KeyboardShortcuts::reset()
|
|
{
|
|
for (Key* key : m_keys)
|
|
key->reset();
|
|
}
|
|
|
|
Key* KeyboardShortcuts::command(const char* commandName, const Params& params, KeyContext keyContext)
|
|
{
|
|
Command* command = CommandsModule::instance()->getCommandByName(commandName);
|
|
if (!command)
|
|
return NULL;
|
|
|
|
for (Key* key : m_keys) {
|
|
if (key->type() == KeyType::Command &&
|
|
key->keycontext() == keyContext &&
|
|
key->command() == command &&
|
|
key->params() == params) {
|
|
return key;
|
|
}
|
|
}
|
|
|
|
Key* key = new Key(command, params, keyContext);
|
|
m_keys.push_back(key);
|
|
return key;
|
|
}
|
|
|
|
Key* KeyboardShortcuts::tool(tools::Tool* tool)
|
|
{
|
|
for (Key* key : m_keys) {
|
|
if (key->type() == KeyType::Tool &&
|
|
key->tool() == tool) {
|
|
return key;
|
|
}
|
|
}
|
|
|
|
Key* key = new Key(KeyType::Tool, tool);
|
|
m_keys.push_back(key);
|
|
return key;
|
|
}
|
|
|
|
Key* KeyboardShortcuts::quicktool(tools::Tool* tool)
|
|
{
|
|
for (Key* key : m_keys) {
|
|
if (key->type() == KeyType::Quicktool &&
|
|
key->tool() == tool) {
|
|
return key;
|
|
}
|
|
}
|
|
|
|
Key* key = new Key(KeyType::Quicktool, tool);
|
|
m_keys.push_back(key);
|
|
return key;
|
|
}
|
|
|
|
Key* KeyboardShortcuts::action(KeyAction action)
|
|
{
|
|
for (Key* key : m_keys) {
|
|
if (key->type() == KeyType::Action &&
|
|
key->action() == action) {
|
|
return key;
|
|
}
|
|
}
|
|
|
|
Key* key = new Key(action);
|
|
m_keys.push_back(key);
|
|
return key;
|
|
}
|
|
|
|
void KeyboardShortcuts::disableAccel(const ui::Accelerator& accel, KeyContext keyContext)
|
|
{
|
|
for (Key* key : m_keys) {
|
|
if (key->keycontext() == keyContext && key->hasAccel(accel))
|
|
key->disableAccel(accel);
|
|
}
|
|
}
|
|
|
|
KeyContext KeyboardShortcuts::getCurrentKeyContext()
|
|
{
|
|
Document* doc = UIContext::instance()->activeDocument();
|
|
|
|
if (doc &&
|
|
doc->isMaskVisible() &&
|
|
App::instance()->activeTool()->getInk(0)->isSelection())
|
|
return KeyContext::SelectionTool;
|
|
else
|
|
return KeyContext::Normal;
|
|
}
|
|
|
|
bool KeyboardShortcuts::getCommandFromKeyMessage(Message* msg, Command** command, Params* params)
|
|
{
|
|
for (Key* key : m_keys) {
|
|
if (key->type() == KeyType::Command && key->isPressed(msg)) {
|
|
if (command) *command = key->command();
|
|
if (params) *params = key->params();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
tools::Tool* KeyboardShortcuts::getCurrentQuicktool(tools::Tool* currentTool)
|
|
{
|
|
if (currentTool && currentTool->getInk(0)->isSelection()) {
|
|
Key* key = action(KeyAction::CopySelection);
|
|
if (key && key->isPressed())
|
|
return NULL;
|
|
}
|
|
|
|
tools::ToolBox* toolbox = App::instance()->toolBox();
|
|
|
|
// Iterate over all tools
|
|
for (tools::Tool* tool : *toolbox) {
|
|
Key* key = quicktool(tool);
|
|
|
|
// Collect all tools with the pressed keyboard-shortcut
|
|
if (key && key->isPressed()) {
|
|
return tool;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
KeyAction KeyboardShortcuts::getCurrentActionModifiers(KeyContext context)
|
|
{
|
|
KeyAction flags = KeyAction::None;
|
|
|
|
for (Key* key : m_keys) {
|
|
if (key->type() == KeyType::Action &&
|
|
key->keycontext() == context &&
|
|
key->isLooselyPressed()) {
|
|
flags = static_cast<KeyAction>(int(flags) | int(key->action()));
|
|
}
|
|
}
|
|
|
|
return flags;
|
|
}
|
|
|
|
} // namespace app
|