OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "ui/base/ime/input_method_base.h" | 5 #include "ui/base/ime/input_method_base.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "ui/base/ime/input_method_delegate.h" | 8 #include "ui/base/ime/input_method_delegate.h" |
9 #include "ui/base/ime/text_input_client.h" | 9 #include "ui/base/ime/text_input_client.h" |
10 | 10 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 OnDidChangeFocusedClient(old, client); | 46 OnDidChangeFocusedClient(old, client); |
47 } | 47 } |
48 | 48 |
49 TextInputClient* InputMethodBase::GetTextInputClient() const { | 49 TextInputClient* InputMethodBase::GetTextInputClient() const { |
50 return system_toplevel_window_focused_ ? text_input_client_ : NULL; | 50 return system_toplevel_window_focused_ ? text_input_client_ : NULL; |
51 } | 51 } |
52 | 52 |
53 void InputMethodBase::OnTextInputTypeChanged(const TextInputClient* client) { | 53 void InputMethodBase::OnTextInputTypeChanged(const TextInputClient* client) { |
54 if (!IsTextInputClientFocused(client)) | 54 if (!IsTextInputClientFocused(client)) |
55 return; | 55 return; |
56 // TODO(yusukes): Support TextInputTypeTracker for TOUCH_UI. | 56 // TODO(yusukes): Support TextInputTypeTracker for USE_VIRTUAL_KEYBOARD. |
57 } | 57 } |
58 | 58 |
59 TextInputType InputMethodBase::GetTextInputType() const { | 59 TextInputType InputMethodBase::GetTextInputType() const { |
60 TextInputClient* client = GetTextInputClient(); | 60 TextInputClient* client = GetTextInputClient(); |
61 return client ? client->GetTextInputType() : TEXT_INPUT_TYPE_NONE; | 61 return client ? client->GetTextInputType() : TEXT_INPUT_TYPE_NONE; |
62 } | 62 } |
63 | 63 |
64 bool InputMethodBase::IsTextInputClientFocused(const TextInputClient* client) { | 64 bool InputMethodBase::IsTextInputClientFocused(const TextInputClient* client) { |
65 return client && (client == GetTextInputClient()); | 65 return client && (client == GetTextInputClient()); |
66 } | 66 } |
(...skipping 15 matching lines...) Expand all Loading... |
82 } | 82 } |
83 | 83 |
84 void InputMethodBase::DispatchFabricatedKeyEventPostIME(EventType type, | 84 void InputMethodBase::DispatchFabricatedKeyEventPostIME(EventType type, |
85 KeyboardCode key_code, | 85 KeyboardCode key_code, |
86 int flags) const { | 86 int flags) const { |
87 if (delegate_) | 87 if (delegate_) |
88 delegate_->DispatchFabricatedKeyEventPostIME(type, key_code, flags); | 88 delegate_->DispatchFabricatedKeyEventPostIME(type, key_code, flags); |
89 } | 89 } |
90 | 90 |
91 } // namespace ui | 91 } // namespace ui |
OLD | NEW |