OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "cros/chromeos_keyboard.h" | 9 #include "cros/chromeos_keyboard.h" |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 virtual bool RemapModifierKeys(const ModifierMap& modifier_map) = 0; | 31 virtual bool RemapModifierKeys(const ModifierMap& modifier_map) = 0; |
32 | 32 |
33 // Gets whehter we have separate keyboard layout per window, or not. The | 33 // Gets whehter we have separate keyboard layout per window, or not. The |
34 // result is stored in |is_per_window|. Returns true on success. | 34 // result is stored in |is_per_window|. Returns true on success. |
35 virtual bool GetKeyboardLayoutPerWindow(bool* is_per_window) const = 0; | 35 virtual bool GetKeyboardLayoutPerWindow(bool* is_per_window) const = 0; |
36 | 36 |
37 // Sets whether we have separate keyboard layout per window, or not. If false | 37 // Sets whether we have separate keyboard layout per window, or not. If false |
38 // is given, the same keyboard layout will be shared for all applications. | 38 // is given, the same keyboard layout will be shared for all applications. |
39 // Returns true on success. | 39 // Returns true on success. |
40 virtual bool SetKeyboardLayoutPerWindow(bool is_per_window) = 0; | 40 virtual bool SetKeyboardLayoutPerWindow(bool is_per_window) = 0; |
41 }; | |
42 | 41 |
43 class KeyboardLibraryImpl : public KeyboardLibrary { | 42 // Get library implementation. |
44 public: | 43 static KeyboardLibrary* GetImpl(bool stub); |
45 KeyboardLibraryImpl() {} | |
46 virtual ~KeyboardLibraryImpl() {} | |
47 | |
48 // KeyboardLibrary overrides. | |
49 virtual std::string GetCurrentKeyboardLayoutName() const; | |
50 virtual bool SetCurrentKeyboardLayoutByName(const std::string& layout_name); | |
51 virtual bool RemapModifierKeys(const ModifierMap& modifier_map); | |
52 virtual bool GetKeyboardLayoutPerWindow(bool* is_per_window) const; | |
53 virtual bool SetKeyboardLayoutPerWindow(bool is_per_window); | |
54 | |
55 private: | |
56 DISALLOW_COPY_AND_ASSIGN(KeyboardLibraryImpl); | |
57 }; | 44 }; |
58 | 45 |
59 } // namespace chromeos | 46 } // namespace chromeos |
60 | 47 |
61 #endif // CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ | 48 #endif // CHROME_BROWSER_CHROMEOS_CROS_KEYBOARD_LIBRARY_H_ |
OLD | NEW |