| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ | 5 #ifndef CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ |
| 6 #define CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ | 6 #define CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 // Returns the input method descriptor from the given input method id string. | 108 // Returns the input method descriptor from the given input method id string. |
| 109 // If the given input method id is invalid, returns NULL. | 109 // If the given input method id is invalid, returns NULL. |
| 110 virtual const InputMethodDescriptor* GetInputMethodFromId( | 110 virtual const InputMethodDescriptor* GetInputMethodFromId( |
| 111 const std::string& input_method_id) const = 0; | 111 const std::string& input_method_id) const = 0; |
| 112 | 112 |
| 113 // Changes the current input method to |input_method_id|. If |input_method_id| | 113 // Changes the current input method to |input_method_id|. If |input_method_id| |
| 114 // is not active, switch to the first one in the active input method list. | 114 // is not active, switch to the first one in the active input method list. |
| 115 virtual void ChangeInputMethod(const std::string& input_method_id) = 0; | 115 virtual void ChangeInputMethod(const std::string& input_method_id) = 0; |
| 116 | 116 |
| 117 // Enables keyboard layouts (e.g. US Qwerty, US Dvorak, French Azerty) that | 117 // Enables "login" keyboard layouts (e.g. US Qwerty, US Dvorak, French |
| 118 // are necessary for the |language_code| and then switches to |initial_layout| | 118 // Azerty) that are necessary for the |language_code| and then switches to |
| 119 // if the string is not empty. For example, if |language_code| is "en-US", US | 119 // |initial_layout| if the string is not empty. For example, if |
| 120 // Qwerty, US International, US Extended, US Dvorak, and US Colemak layouts | 120 // |language_code| is "en-US", US Qwerty, US International, US Extended, US |
| 121 // would be enabled. Likewise, for Germany locale, US Qwerty which corresponds | 121 // Dvorak, and US Colemak layouts would be enabled. Likewise, for Germany |
| 122 // to the hardware keyboard layout and several keyboard layouts for Germany | 122 // locale, US Qwerty which corresponds to the hardware keyboard layout and |
| 123 // would be enabled. | 123 // several keyboard layouts for Germany would be enabled. |
| 124 // This method is for setting up i18n keyboard layouts for the login screen. | 124 // Only layouts suitable for login screen are enabled. |
| 125 virtual void EnableLayouts(const std::string& language_code, | 125 virtual void EnableLoginLayouts(const std::string& language_code, |
| 126 const std::string& initial_layout) = 0; | 126 const std::string& initial_layout) = 0; |
| 127 | 127 |
| 128 // Activates the input method property specified by the |key|. | 128 // Activates the input method property specified by the |key|. |
| 129 virtual void ActivateInputMethodProperty(const std::string& key) = 0; | 129 virtual void ActivateInputMethodProperty(const std::string& key) = 0; |
| 130 | 130 |
| 131 // Updates the list of active input method IDs, and then starts or stops the | 131 // Updates the list of active input method IDs, and then starts or stops the |
| 132 // system input method framework as needed. | 132 // system input method framework as needed. |
| 133 virtual bool EnableInputMethods( | 133 virtual bool EnableInputMethods( |
| 134 const std::vector<std::string>& new_active_input_method_ids) = 0; | 134 const std::vector<std::string>& new_active_input_method_ids) = 0; |
| 135 | 135 |
| 136 // Adds one entry to the list of active input method IDs, and then starts or | 136 // Adds one entry to the list of active input method IDs, and then starts or |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0; | 188 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0; |
| 189 | 189 |
| 190 // If keyboard layout can be uset at login screen | 190 // If keyboard layout can be uset at login screen |
| 191 virtual bool IsLoginKeyboard(const std::string& layout) const = 0; | 191 virtual bool IsLoginKeyboard(const std::string& layout) const = 0; |
| 192 }; | 192 }; |
| 193 | 193 |
| 194 } // namespace input_method | 194 } // namespace input_method |
| 195 } // namespace chromeos | 195 } // namespace chromeos |
| 196 | 196 |
| 197 #endif // CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ | 197 #endif // CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ |
| OLD | NEW |