| 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 UI_BASE_IME_INPUT_METHOD_BASE_H_ | 5 #ifndef UI_BASE_IME_INPUT_METHOD_BASE_H_ |
| 6 #define UI_BASE_IME_INPUT_METHOD_BASE_H_ | 6 #define UI_BASE_IME_INPUT_METHOD_BASE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 virtual void OnFocus() OVERRIDE; | 37 virtual void OnFocus() OVERRIDE; |
| 38 virtual void OnBlur() OVERRIDE; | 38 virtual void OnBlur() OVERRIDE; |
| 39 virtual void SetFocusedTextInputClient(TextInputClient* client) OVERRIDE; | 39 virtual void SetFocusedTextInputClient(TextInputClient* client) OVERRIDE; |
| 40 virtual TextInputClient* GetTextInputClient() const OVERRIDE; | 40 virtual TextInputClient* GetTextInputClient() const OVERRIDE; |
| 41 | 41 |
| 42 // If a derived class overrides this method, it should call parent's | 42 // If a derived class overrides this method, it should call parent's |
| 43 // implementation. | 43 // implementation. |
| 44 virtual void OnTextInputTypeChanged(const TextInputClient* client) OVERRIDE; | 44 virtual void OnTextInputTypeChanged(const TextInputClient* client) OVERRIDE; |
| 45 | 45 |
| 46 virtual TextInputType GetTextInputType() const OVERRIDE; | 46 virtual TextInputType GetTextInputType() const OVERRIDE; |
| 47 virtual TextInputMode GetTextInputMode() const OVERRIDE; |
| 47 virtual bool CanComposeInline() const OVERRIDE; | 48 virtual bool CanComposeInline() const OVERRIDE; |
| 48 | 49 |
| 49 virtual void AddObserver(InputMethodObserver* observer) OVERRIDE; | 50 virtual void AddObserver(InputMethodObserver* observer) OVERRIDE; |
| 50 virtual void RemoveObserver(InputMethodObserver* observer) OVERRIDE; | 51 virtual void RemoveObserver(InputMethodObserver* observer) OVERRIDE; |
| 51 | 52 |
| 52 protected: | 53 protected: |
| 53 virtual void OnWillChangeFocusedClient(TextInputClient* focused_before, | 54 virtual void OnWillChangeFocusedClient(TextInputClient* focused_before, |
| 54 TextInputClient* focused) {} | 55 TextInputClient* focused) {} |
| 55 virtual void OnDidChangeFocusedClient(TextInputClient* focused_before, | 56 virtual void OnDidChangeFocusedClient(TextInputClient* focused_before, |
| 56 TextInputClient* focused) {} | 57 TextInputClient* focused) {} |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ObserverList<InputMethodObserver> observer_list_; | 93 ObserverList<InputMethodObserver> observer_list_; |
| 93 | 94 |
| 94 bool system_toplevel_window_focused_; | 95 bool system_toplevel_window_focused_; |
| 95 | 96 |
| 96 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); | 97 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); |
| 97 }; | 98 }; |
| 98 | 99 |
| 99 } // namespace ui | 100 } // namespace ui |
| 100 | 101 |
| 101 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ | 102 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ |
| OLD | NEW |