Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: chrome/browser/ui/views/ash/ime_controller_chromeos.cc

Issue 10452042: Fixing french keyboard handling (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed review Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/ash/ime_controller_chromeos.cc
diff --git a/chrome/browser/ui/views/ash/ime_controller_chromeos.cc b/chrome/browser/ui/views/ash/ime_controller_chromeos.cc
index 1934357e90140bc62cc7e8ea681e6ab6cc68b498..dfaefd691cc92b090fa959707174d976d25f6dec 100644
--- a/chrome/browser/ui/views/ash/ime_controller_chromeos.cc
+++ b/chrome/browser/ui/views/ash/ime_controller_chromeos.cc
@@ -5,6 +5,7 @@
#include "chrome/browser/ui/views/ash/ime_controller_chromeos.h"
#include "chrome/browser/chromeos/input_method/input_method_manager.h"
+#include "ui/base/accelerators/accelerator.h"
bool ImeController::HandleNextIme() {
chromeos::input_method::InputMethodManager* manager =
@@ -23,3 +24,29 @@ bool ImeController::HandleSwitchIme(const ui::Accelerator& accelerator) {
chromeos::input_method::InputMethodManager::GetInstance();
return manager->SwitchInputMethod(accelerator);
}
+
+bool ImeController::IsFrenchKeyboard() {
Daniel Erat 2012/05/30 15:58:27 nit: move this down so it matches the declaration
Mr4D (OOO till 08-26) 2012/05/30 16:21:31 Done.
+ chromeos::input_method::InputMethodManager* manager =
+ chromeos::input_method::InputMethodManager::GetInstance();
+ const chromeos::input_method::InputMethodDescriptor& descriptor =
+ manager->GetCurrentInputMethod();
+ const std::string& layout = descriptor.id();
+ return (layout == "xkb:fr::fra" || layout == "xkb:be::fra");
+}
+
+ui::Accelerator ImeController::RemapAccelerator(
+ const ui::Accelerator& accelerator) {
+ ui::KeyboardCode key = accelerator.key_code();
+ int modifiers = accelerator.modifiers();
+ // On French keyboards the user needs to press a number key in conjunction
+ // with the shift key. To get the right accelerator from our static table
Daniel Erat 2012/05/30 15:58:27 nit: link to http://crbug.com/129017 here so it's
Mr4D (OOO till 08-26) 2012/05/30 16:21:31 Done.
+ // we modify the received accelerator to match this.
+ if (key >= ui::VKEY_0 && key <= ui::VKEY_9) {
+ // A keyboard layout can get changed by the user, so we need to dynamically
Daniel Erat 2012/05/30 15:58:27 will HandleSwitchIme() get called when this happen
Mr4D (OOO till 08-26) 2012/05/30 16:21:31 This is only done for number keys. Even more: I am
Daniel Erat 2012/05/30 16:54:06 Just change the comment to "This is cheap; check i
Mr4D (OOO till 08-26) 2012/05/30 17:37:17 Had the comment already changed, but changed it on
+ // check if a modification is required.
+ if (IsFrenchKeyboard())
+ // We toggle the shift key to get the correct accelerator from our table.
+ modifiers ^= ui::EF_SHIFT_DOWN;
+ }
+ return ui::Accelerator(key, modifiers);
+}

Powered by Google App Engine
This is Rietveld 408576698