2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-14 21:12:27 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/ui/accelerator_util.h"
|
2013-05-14 21:12:27 +08:00
|
|
|
|
2013-10-21 15:33:19 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2013-05-14 21:12:27 +08:00
|
|
|
#include <string>
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <vector>
|
2013-05-14 21:12:27 +08:00
|
|
|
|
2016-01-31 02:27:14 +01:00
|
|
|
#include "atom/common/keyboard_util.h"
|
2014-03-15 16:36:29 +08:00
|
|
|
#include "base/stl_util.h"
|
2013-05-14 21:12:27 +08:00
|
|
|
#include "base/strings/string_number_conversions.h"
|
|
|
|
#include "base/strings/string_split.h"
|
2014-03-15 16:36:29 +08:00
|
|
|
#include "base/strings/string_util.h"
|
2013-05-14 21:12:27 +08:00
|
|
|
|
|
|
|
namespace accelerator_util {
|
|
|
|
|
2016-03-06 15:04:05 +09:00
|
|
|
bool StringToAccelerator(const std::string& shortcut,
|
2013-05-14 21:12:27 +08:00
|
|
|
ui::Accelerator* accelerator) {
|
2016-03-06 15:04:05 +09:00
|
|
|
if (!base::IsStringASCII(shortcut)) {
|
2013-10-21 13:39:55 +08:00
|
|
|
LOG(ERROR) << "The accelerator string can only contain ASCII characters";
|
|
|
|
return false;
|
|
|
|
}
|
2013-05-14 21:12:27 +08:00
|
|
|
|
2015-12-07 19:56:23 +08:00
|
|
|
std::vector<std::string> tokens = base::SplitString(
|
|
|
|
shortcut, "+", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
|
2013-05-14 21:12:27 +08:00
|
|
|
|
|
|
|
// Now, parse it into an accelerator.
|
|
|
|
int modifiers = ui::EF_NONE;
|
|
|
|
ui::KeyboardCode key = ui::VKEY_UNKNOWN;
|
2016-07-10 15:56:42 +02:00
|
|
|
for (const auto& token : tokens) {
|
2016-03-06 15:04:05 +09:00
|
|
|
bool shifted = false;
|
2016-07-10 13:32:40 +02:00
|
|
|
ui::KeyboardCode code = atom::KeyboardCodeFromStr(token, &shifted);
|
2016-03-06 15:04:05 +09:00
|
|
|
if (shifted)
|
2015-01-23 15:26:54 -08:00
|
|
|
modifiers |= ui::EF_SHIFT_DOWN;
|
2016-03-06 15:04:05 +09:00
|
|
|
switch (code) {
|
|
|
|
// The token can be a modifier.
|
|
|
|
case ui::VKEY_SHIFT:
|
|
|
|
modifiers |= ui::EF_SHIFT_DOWN;
|
|
|
|
break;
|
|
|
|
case ui::VKEY_CONTROL:
|
|
|
|
modifiers |= ui::EF_CONTROL_DOWN;
|
|
|
|
break;
|
|
|
|
case ui::VKEY_MENU:
|
|
|
|
modifiers |= ui::EF_ALT_DOWN;
|
|
|
|
break;
|
|
|
|
case ui::VKEY_COMMAND:
|
|
|
|
modifiers |= ui::EF_COMMAND_DOWN;
|
|
|
|
break;
|
|
|
|
case ui::VKEY_ALTGR:
|
|
|
|
modifiers |= ui::EF_ALTGR_DOWN;
|
|
|
|
break;
|
|
|
|
// Or it is a normal key.
|
|
|
|
default:
|
|
|
|
key = code;
|
2013-05-14 21:12:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-21 14:05:43 +08:00
|
|
|
if (key == ui::VKEY_UNKNOWN) {
|
2016-03-06 15:04:05 +09:00
|
|
|
LOG(WARNING) << shortcut << " doesn't contain a valid key";
|
2013-10-21 14:05:43 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-14 21:12:27 +08:00
|
|
|
*accelerator = ui::Accelerator(key, modifiers);
|
2013-05-16 15:24:18 +08:00
|
|
|
SetPlatformAccelerator(accelerator);
|
2013-05-14 21:12:27 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-06 16:04:18 -07:00
|
|
|
void GenerateAcceleratorTable(AcceleratorTable* table,
|
|
|
|
atom::AtomMenuModel* model) {
|
2014-03-15 16:36:29 +08:00
|
|
|
int count = model->GetItemCount();
|
|
|
|
for (int i = 0; i < count; ++i) {
|
2016-07-06 16:04:18 -07:00
|
|
|
atom::AtomMenuModel::ItemType type = model->GetTypeAt(i);
|
|
|
|
if (type == atom::AtomMenuModel::TYPE_SUBMENU) {
|
|
|
|
auto submodel = model->GetSubmenuModelAt(i);
|
2014-03-15 16:36:29 +08:00
|
|
|
GenerateAcceleratorTable(table, submodel);
|
|
|
|
} else {
|
|
|
|
ui::Accelerator accelerator;
|
2016-07-06 16:04:18 -07:00
|
|
|
if (model->GetAcceleratorAtWithParams(i, true, &accelerator)) {
|
2014-03-15 16:36:29 +08:00
|
|
|
MenuItem item = { i, model };
|
|
|
|
(*table)[accelerator] = item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TriggerAcceleratorTableCommand(AcceleratorTable* table,
|
|
|
|
const ui::Accelerator& accelerator) {
|
2016-11-30 16:30:03 +09:00
|
|
|
if (base::ContainsKey(*table, accelerator)) {
|
2014-03-15 16:36:29 +08:00
|
|
|
const accelerator_util::MenuItem& item = (*table)[accelerator];
|
2016-11-14 12:29:27 +08:00
|
|
|
if (item.model->IsEnabledAt(item.position)) {
|
|
|
|
item.model->ActivatedAt(item.position);
|
|
|
|
return true;
|
2016-11-15 13:19:34 +08:00
|
|
|
}
|
2014-03-15 16:36:29 +08:00
|
|
|
}
|
2016-11-14 12:29:27 +08:00
|
|
|
return false;
|
2014-03-15 16:36:29 +08:00
|
|
|
}
|
|
|
|
|
2013-05-14 21:12:27 +08:00
|
|
|
} // namespace accelerator_util
|