accelerator.cc revision 2a99a7e74a7f215066514fe81d2bfa6639d9eddd
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "ui/base/accelerators/accelerator.h"
6
7#if defined(OS_WIN)
8#include <windows.h>
9#elif defined(TOOLKIT_GTK)
10#include <gdk/gdk.h>
11#endif
12
13#include "base/i18n/rtl.h"
14#include "base/logging.h"
15#include "base/string_util.h"
16#include "base/utf_string_conversions.h"
17#include "grit/ui_strings.h"
18#include "ui/base/l10n/l10n_util.h"
19
20#if !defined(OS_WIN) && (defined(USE_AURA) || defined(OS_MACOSX))
21#include "ui/base/keycodes/keyboard_code_conversion.h"
22#endif
23
24namespace ui {
25
26Accelerator::Accelerator()
27    : key_code_(ui::VKEY_UNKNOWN),
28      type_(ui::ET_KEY_PRESSED),
29      modifiers_(0) {
30}
31
32Accelerator::Accelerator(KeyboardCode keycode, int modifiers)
33    : key_code_(keycode),
34      type_(ui::ET_KEY_PRESSED),
35      modifiers_(modifiers) {
36}
37
38Accelerator::Accelerator(const Accelerator& accelerator) {
39  key_code_ = accelerator.key_code_;
40  type_ = accelerator.type_;
41  modifiers_ = accelerator.modifiers_;
42  if (accelerator.platform_accelerator_.get())
43    platform_accelerator_ = accelerator.platform_accelerator_->CreateCopy();
44}
45
46Accelerator::~Accelerator() {
47}
48
49Accelerator& Accelerator::operator=(const Accelerator& accelerator) {
50  if (this != &accelerator) {
51    key_code_ = accelerator.key_code_;
52    type_ = accelerator.type_;
53    modifiers_ = accelerator.modifiers_;
54    if (accelerator.platform_accelerator_.get())
55      platform_accelerator_ = accelerator.platform_accelerator_->CreateCopy();
56    else
57      platform_accelerator_.reset();
58  }
59  return *this;
60}
61
62bool Accelerator::operator <(const Accelerator& rhs) const {
63  if (key_code_ != rhs.key_code_)
64    return key_code_ < rhs.key_code_;
65  if (type_ != rhs.type_)
66    return type_ < rhs.type_;
67  return modifiers_ < rhs.modifiers_;
68}
69
70bool Accelerator::operator ==(const Accelerator& rhs) const {
71  if (platform_accelerator_.get() != rhs.platform_accelerator_.get() &&
72      ((!platform_accelerator_.get() || !rhs.platform_accelerator_.get()) ||
73       !platform_accelerator_->Equals(*rhs.platform_accelerator_))) {
74    return false;
75  }
76
77  return (key_code_ == rhs.key_code_) && (type_ == rhs.type_) &&
78      (modifiers_ == rhs.modifiers_);
79}
80
81bool Accelerator::operator !=(const Accelerator& rhs) const {
82  return !(*this == rhs);
83}
84
85bool Accelerator::IsShiftDown() const {
86  return (modifiers_ & EF_SHIFT_DOWN) != 0;
87}
88
89bool Accelerator::IsCtrlDown() const {
90  return (modifiers_ & EF_CONTROL_DOWN) != 0;
91}
92
93bool Accelerator::IsAltDown() const {
94  return (modifiers_ & EF_ALT_DOWN) != 0;
95}
96
97bool Accelerator::IsCmdDown() const {
98  return (modifiers_ & EF_COMMAND_DOWN) != 0;
99}
100
101string16 Accelerator::GetShortcutText() const {
102  int string_id = 0;
103  switch(key_code_) {
104    case ui::VKEY_TAB:
105      string_id = IDS_APP_TAB_KEY;
106      break;
107    case ui::VKEY_RETURN:
108      string_id = IDS_APP_ENTER_KEY;
109      break;
110    case ui::VKEY_ESCAPE:
111      string_id = IDS_APP_ESC_KEY;
112      break;
113    case ui::VKEY_PRIOR:
114      string_id = IDS_APP_PAGEUP_KEY;
115      break;
116    case ui::VKEY_NEXT:
117      string_id = IDS_APP_PAGEDOWN_KEY;
118      break;
119    case ui::VKEY_END:
120      string_id = IDS_APP_END_KEY;
121      break;
122    case ui::VKEY_HOME:
123      string_id = IDS_APP_HOME_KEY;
124      break;
125    case ui::VKEY_INSERT:
126      string_id = IDS_APP_INSERT_KEY;
127      break;
128    case ui::VKEY_DELETE:
129      string_id = IDS_APP_DELETE_KEY;
130      break;
131    case ui::VKEY_LEFT:
132      string_id = IDS_APP_LEFT_ARROW_KEY;
133      break;
134    case ui::VKEY_RIGHT:
135      string_id = IDS_APP_RIGHT_ARROW_KEY;
136      break;
137    case ui::VKEY_BACK:
138      string_id = IDS_APP_BACKSPACE_KEY;
139      break;
140    case ui::VKEY_F1:
141      string_id = IDS_APP_F1_KEY;
142      break;
143    case ui::VKEY_F11:
144      string_id = IDS_APP_F11_KEY;
145      break;
146    default:
147      break;
148  }
149
150  string16 shortcut;
151  if (!string_id) {
152#if defined(OS_WIN)
153    // Our fallback is to try translate the key code to a regular character
154    // unless it is one of digits (VK_0 to VK_9). Some keyboard
155    // layouts have characters other than digits assigned in
156    // an unshifted mode (e.g. French AZERY layout has 'a with grave
157    // accent' for '0'). For display in the menu (e.g. Ctrl-0 for the
158    // default zoom level), we leave VK_[0-9] alone without translation.
159    wchar_t key;
160    if (key_code_ >= '0' && key_code_ <= '9')
161      key = key_code_;
162    else
163      key = LOWORD(::MapVirtualKeyW(key_code_, MAPVK_VK_TO_CHAR));
164    shortcut += key;
165#elif defined(USE_AURA) || defined(OS_MACOSX)
166    const uint16 c = GetCharacterFromKeyCode(key_code_, false);
167    if (c != 0)
168      shortcut += static_cast<string16::value_type>(base::ToUpperASCII(c));
169#elif defined(TOOLKIT_GTK)
170    const gchar* name = NULL;
171    switch (key_code_) {
172      case ui::VKEY_OEM_2:
173        name = static_cast<const gchar*>("/");
174        break;
175      default:
176        name = gdk_keyval_name(gdk_keyval_to_lower(key_code_));
177        break;
178    }
179    if (name) {
180      if (name[0] != 0 && name[1] == 0)
181        shortcut += static_cast<string16::value_type>(g_ascii_toupper(name[0]));
182      else
183        shortcut += UTF8ToUTF16(name);
184    }
185#endif
186  } else {
187    shortcut = l10n_util::GetStringUTF16(string_id);
188  }
189
190  // Checking whether the character used for the accelerator is alphanumeric.
191  // If it is not, then we need to adjust the string later on if the locale is
192  // right-to-left. See below for more information of why such adjustment is
193  // required.
194  string16 shortcut_rtl;
195  bool adjust_shortcut_for_rtl = false;
196  if (base::i18n::IsRTL() && shortcut.length() == 1 &&
197      !IsAsciiAlpha(shortcut[0]) && !IsAsciiDigit(shortcut[0])) {
198    adjust_shortcut_for_rtl = true;
199    shortcut_rtl.assign(shortcut);
200  }
201
202  if (IsShiftDown())
203    shortcut = l10n_util::GetStringFUTF16(IDS_APP_SHIFT_MODIFIER, shortcut);
204
205  // Note that we use 'else-if' in order to avoid using Ctrl+Alt as a shortcut.
206  // See http://blogs.msdn.com/oldnewthing/archive/2004/03/29/101121.aspx for
207  // more information.
208  if (IsCtrlDown())
209    shortcut = l10n_util::GetStringFUTF16(IDS_APP_CONTROL_MODIFIER, shortcut);
210  else if (IsAltDown())
211    shortcut = l10n_util::GetStringFUTF16(IDS_APP_ALT_MODIFIER, shortcut);
212
213  if (IsCmdDown())
214    shortcut = l10n_util::GetStringFUTF16(IDS_APP_COMMAND_MODIFIER, shortcut);
215
216  // For some reason, menus in Windows ignore standard Unicode directionality
217  // marks (such as LRE, PDF, etc.). On RTL locales, we use RTL menus and
218  // therefore any text we draw for the menu items is drawn in an RTL context.
219  // Thus, the text "Ctrl++" (which we currently use for the Zoom In option)
220  // appears as "++Ctrl" in RTL because the Unicode BiDi algorithm puts
221  // punctuations on the left when the context is right-to-left. Shortcuts that
222  // do not end with a punctuation mark (such as "Ctrl+H" do not have this
223  // problem).
224  //
225  // The only way to solve this problem is to adjust the string if the locale
226  // is RTL so that it is drawn correctly in an RTL context. Instead of
227  // returning "Ctrl++" in the above example, we return "++Ctrl". This will
228  // cause the text to appear as "Ctrl++" when Windows draws the string in an
229  // RTL context because the punctuation no longer appears at the end of the
230  // string.
231  //
232  // TODO(idana) bug# 1232732: this hack can be avoided if instead of using
233  // views::Menu we use views::MenuItemView because the latter is a View
234  // subclass and therefore it supports marking text as RTL or LTR using
235  // standard Unicode directionality marks.
236  if (adjust_shortcut_for_rtl) {
237    int key_length = static_cast<int>(shortcut_rtl.length());
238    DCHECK_GT(key_length, 0);
239    shortcut_rtl.append(ASCIIToUTF16("+"));
240
241    // Subtracting the size of the shortcut key and 1 for the '+' sign.
242    shortcut_rtl.append(shortcut, 0, shortcut.length() - key_length - 1);
243    shortcut.swap(shortcut_rtl);
244  }
245
246  return shortcut;
247}
248
249}  // namespace ui
250