// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_ASH_EVENT_REWRITER_H_ #define CHROME_BROWSER_UI_ASH_EVENT_REWRITER_H_ #include #include #include "ash/event_rewriter_delegate.h" #include "base/basictypes.h" #include "base/compiler_specific.h" #include "ui/aura/root_window_observer.h" #include "ui/base/keycodes/keyboard_codes.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/device_hierarchy_observer.h" #endif class PrefService; namespace aura { class RootWindow; } #if defined(OS_CHROMEOS) namespace chromeos { namespace input_method { class XKeyboard; } } #endif class EventRewriter : public ash::EventRewriterDelegate, public aura::RootWindowObserver #if defined(OS_CHROMEOS) , public chromeos::DeviceHierarchyObserver #endif { public: enum DeviceType { kDeviceUnknown = 0, kDeviceAppleKeyboard, }; EventRewriter(); virtual ~EventRewriter(); // Calls DeviceAddedInternal. DeviceType DeviceAddedForTesting(int device_id, const std::string& device_name); // Calls Rewrite. void RewriteForTesting(ui::KeyEvent* event); const std::map& device_id_to_type_for_testing() const { return device_id_to_type_; } void set_last_device_id_for_testing(int device_id) { last_device_id_ = device_id; } void set_pref_service_for_testing(const PrefService* pref_service) { pref_service_ = pref_service; } #if defined(OS_CHROMEOS) void set_xkeyboard_for_testing(chromeos::input_method::XKeyboard* xkeyboard) { xkeyboard_ = xkeyboard; } #endif // Gets DeviceType from the |device_name|. static DeviceType GetDeviceType(const std::string& device_name); private: // ash::EventRewriterDelegate overrides: virtual ash::EventRewriterDelegate::Action RewriteOrFilterKeyEvent( ui::KeyEvent* event) OVERRIDE; virtual ash::EventRewriterDelegate::Action RewriteOrFilterLocatedEvent( ui::LocatedEvent* event) OVERRIDE; // aura::RootWindowObserver overrides: virtual void OnKeyboardMappingChanged(const aura::RootWindow* root) OVERRIDE; #if defined(OS_CHROMEOS) // chromeos::DeviceHierarchyObserver overrides: virtual void DeviceHierarchyChanged() OVERRIDE {} virtual void DeviceAdded(int device_id) OVERRIDE; virtual void DeviceRemoved(int device_id) OVERRIDE; virtual void DeviceKeyPressedOrReleased(int device_id) OVERRIDE; // Updates |*_xkeycode_| in response to a keyboard map change. void RefreshKeycodes(); // Converts an X key symbol like XK_Control_L to a key code. unsigned char NativeKeySymToNativeKeycode(unsigned long keysym); #endif // Rewrites the |event| by applying all RewriteXXX functions as needed. void Rewrite(ui::KeyEvent* event); // Rewrites a modifier key press/release following the current user // preferences. bool RewriteModifiers(ui::KeyEvent* event); // Rewrites a NumPad key press/release without Num Lock to a corresponding key // press/release with the lock. Returns true when |event| is rewritten. bool RewriteNumPadKeys(ui::KeyEvent* event); // Rewrites Backspace and Arrow keys following the Chrome OS keyboard spec. // * Alt+Backspace -> Delete // * Alt+Up -> Prior (aka PageUp) // * Alt+Down -> Next (aka PageDown) // * Ctrl+Alt+Up -> Home // * Ctrl+Alt+Down -> End bool RewriteBackspaceAndArrowKeys(ui::KeyEvent* event); // Rewrites the located |event|. void RewriteLocatedEvent(ui::LocatedEvent* event); // Overwrites |event| with the keycodes and flags. void OverwriteEvent(ui::KeyEvent* event, unsigned int new_native_keycode, unsigned int new_native_state, ui::KeyboardCode new_keycode, int new_flags); // Checks the type of the |device_name|, and inserts a new entry to // |device_id_to_type_|. DeviceType DeviceAddedInternal(int device_id, const std::string& device_name); // Returns true if |last_device_id_| is Apple's. bool IsAppleKeyboard() const; // Remaps |original_flags| to |remapped_flags| and |original_native_modifiers| // to |remapped_native_modifiers| following the current user prefs. void GetRemappedModifierMasks(int original_flags, unsigned int original_native_modifiers, int* remapped_flags, unsigned int* remapped_native_modifiers) const; std::map device_id_to_type_; int last_device_id_; #if defined(OS_CHROMEOS) // X keycodes corresponding to various keysyms. unsigned int control_l_xkeycode_; unsigned int control_r_xkeycode_; unsigned int alt_l_xkeycode_; unsigned int alt_r_xkeycode_; unsigned int meta_l_xkeycode_; unsigned int meta_r_xkeycode_; unsigned int windows_l_xkeycode_; unsigned int caps_lock_xkeycode_; unsigned int void_symbol_xkeycode_; unsigned int delete_xkeycode_; unsigned int home_xkeycode_; unsigned int end_xkeycode_; unsigned int prior_xkeycode_; unsigned int next_xkeycode_; unsigned int kp_0_xkeycode_; unsigned int kp_1_xkeycode_; unsigned int kp_2_xkeycode_; unsigned int kp_3_xkeycode_; unsigned int kp_4_xkeycode_; unsigned int kp_5_xkeycode_; unsigned int kp_6_xkeycode_; unsigned int kp_7_xkeycode_; unsigned int kp_8_xkeycode_; unsigned int kp_9_xkeycode_; unsigned int kp_decimal_xkeycode_; chromeos::input_method::XKeyboard* xkeyboard_; // for testing. #endif const PrefService* pref_service_; // for testing. DISALLOW_COPY_AND_ASSIGN(EventRewriter); }; #endif // CHROME_BROWSER_UI_ASH_EVENT_REWRITER_H_