| 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/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 // If a derived class overrides this method, it should call parent's | 46 // If a derived class overrides this method, it should call parent's |
| 47 // implementation. | 47 // implementation. |
| 48 void OnTextInputTypeChanged(const TextInputClient* client) override; | 48 void OnTextInputTypeChanged(const TextInputClient* client) override; |
| 49 | 49 |
| 50 TextInputType GetTextInputType() const override; | 50 TextInputType GetTextInputType() const override; |
| 51 TextInputMode GetTextInputMode() const override; | 51 TextInputMode GetTextInputMode() const override; |
| 52 int GetTextInputFlags() const override; | 52 int GetTextInputFlags() const override; |
| 53 bool CanComposeInline() const override; | 53 bool CanComposeInline() const override; |
| 54 void ShowImeIfNeeded() override; | 54 void ShowImeIfNeeded() override; |
| 55 void SetSupportsOnScreenKeyboard(bool supported) override; |
| 56 bool SupportsOnScreenKeyboard() const override; |
| 57 void OnKeyboardBoundsUnchanged() override; |
| 55 | 58 |
| 56 void AddObserver(InputMethodObserver* observer) override; | 59 void AddObserver(InputMethodObserver* observer) override; |
| 57 void RemoveObserver(InputMethodObserver* observer) override; | 60 void RemoveObserver(InputMethodObserver* observer) override; |
| 58 | 61 |
| 59 protected: | 62 protected: |
| 60 virtual void OnWillChangeFocusedClient(TextInputClient* focused_before, | 63 virtual void OnWillChangeFocusedClient(TextInputClient* focused_before, |
| 61 TextInputClient* focused) {} | 64 TextInputClient* focused) {} |
| 62 virtual void OnDidChangeFocusedClient(TextInputClient* focused_before, | 65 virtual void OnDidChangeFocusedClient(TextInputClient* focused_before, |
| 63 TextInputClient* focused) {} | 66 TextInputClient* focused) {} |
| 64 | 67 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 void CandidateWindowShownCallback(); | 109 void CandidateWindowShownCallback(); |
| 107 void CandidateWindowUpdatedCallback(); | 110 void CandidateWindowUpdatedCallback(); |
| 108 void CandidateWindowHiddenCallback(); | 111 void CandidateWindowHiddenCallback(); |
| 109 | 112 |
| 110 internal::InputMethodDelegate* delegate_; | 113 internal::InputMethodDelegate* delegate_; |
| 111 TextInputClient* text_input_client_; | 114 TextInputClient* text_input_client_; |
| 112 | 115 |
| 113 ObserverList<InputMethodObserver> observer_list_; | 116 ObserverList<InputMethodObserver> observer_list_; |
| 114 | 117 |
| 115 bool system_toplevel_window_focused_; | 118 bool system_toplevel_window_focused_; |
| 119 bool on_screen_keyboard_supported_; |
| 116 | 120 |
| 117 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); | 121 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); |
| 118 }; | 122 }; |
| 119 | 123 |
| 120 } // namespace ui | 124 } // namespace ui |
| 121 | 125 |
| 122 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ | 126 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ |
| OLD | NEW |