| 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 #include "ui/views/ime/input_method_bridge.h" | 5 #include "ui/views/ime/input_method_bridge.h" |
| 6 | 6 |
| 7 #include "ui/base/ime/input_method.h" | 7 #include "ui/base/ime/input_method.h" |
| 8 #include "ui/base/ime/input_method_observer.h" | 8 #include "ui/base/ime/input_method_observer.h" |
| 9 #include "ui/events/event.h" | 9 #include "ui/events/event.h" |
| 10 #include "ui/gfx/rect.h" | 10 #include "ui/gfx/rect.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 return host_->IsActive(); | 165 return host_->IsActive(); |
| 166 } | 166 } |
| 167 | 167 |
| 168 bool InputMethodBridge::IsCandidatePopupOpen() const { | 168 bool InputMethodBridge::IsCandidatePopupOpen() const { |
| 169 DCHECK(host_); | 169 DCHECK(host_); |
| 170 | 170 |
| 171 return host_->IsCandidatePopupOpen(); | 171 return host_->IsCandidatePopupOpen(); |
| 172 } | 172 } |
| 173 | 173 |
| 174 // Overridden from TextInputClient. Forward an event from the system-wide IME | 174 // Overridden from TextInputClient. Forward an event from the system-wide IME |
| 175 // to the text input |client|, which is e.g. views::Textfield. | 175 // to the text input |client|, which is e.g. views::NativeTextfieldViews. |
| 176 void InputMethodBridge::SetCompositionText( | 176 void InputMethodBridge::SetCompositionText( |
| 177 const ui::CompositionText& composition) { | 177 const ui::CompositionText& composition) { |
| 178 TextInputClient* client = GetTextInputClient(); | 178 TextInputClient* client = GetTextInputClient(); |
| 179 if (client) | 179 if (client) |
| 180 client->SetCompositionText(composition); | 180 client->SetCompositionText(composition); |
| 181 } | 181 } |
| 182 | 182 |
| 183 void InputMethodBridge::ConfirmCompositionText() { | 183 void InputMethodBridge::ConfirmCompositionText() { |
| 184 TextInputClient* client = GetTextInputClient(); | 184 TextInputClient* client = GetTextInputClient(); |
| 185 if (client) | 185 if (client) |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 OnTextInputTypeChanged(focused); | 326 OnTextInputTypeChanged(focused); |
| 327 OnCaretBoundsChanged(focused); | 327 OnCaretBoundsChanged(focused); |
| 328 } | 328 } |
| 329 | 329 |
| 330 ui::InputMethod* InputMethodBridge::GetHostInputMethod() const { | 330 ui::InputMethod* InputMethodBridge::GetHostInputMethod() const { |
| 331 return host_; | 331 return host_; |
| 332 } | 332 } |
| 333 | 333 |
| 334 | 334 |
| 335 } // namespace views | 335 } // namespace views |
| OLD | NEW |