Chromium Code Reviews| 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/base/ime/input_method_win.h" | 5 #include "ui/base/ime/input_method_win.h" |
| 6 | 6 |
| 7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/profiler/scoped_tracker.h" | 9 #include "base/profiler/scoped_tracker.h" |
| 10 #include "ui/base/ime/text_input_client.h" | 10 #include "ui/base/ime/text_input_client.h" |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 | 25 |
| 26 } // namespace | 26 } // namespace |
| 27 | 27 |
| 28 InputMethodWin::InputMethodWin(internal::InputMethodDelegate* delegate, | 28 InputMethodWin::InputMethodWin(internal::InputMethodDelegate* delegate, |
| 29 HWND toplevel_window_handle) | 29 HWND toplevel_window_handle) |
| 30 : toplevel_window_handle_(toplevel_window_handle), | 30 : toplevel_window_handle_(toplevel_window_handle), |
| 31 pending_requested_direction_(base::i18n::UNKNOWN_DIRECTION), | 31 pending_requested_direction_(base::i18n::UNKNOWN_DIRECTION), |
| 32 accept_carriage_return_(false), | 32 accept_carriage_return_(false), |
| 33 enabled_(false), | 33 enabled_(false), |
| 34 is_candidate_popup_open_(false), | 34 is_candidate_popup_open_(false), |
| 35 composing_window_handle_(NULL), | 35 composing_window_handle_(NULL) { |
| 36 suppress_next_char_(false) { | |
| 37 SetDelegate(delegate); | 36 SetDelegate(delegate); |
| 38 } | 37 } |
| 39 | 38 |
| 40 void InputMethodWin::OnFocus() { | 39 void InputMethodWin::OnFocus() { |
| 41 InputMethodBase::OnFocus(); | 40 InputMethodBase::OnFocus(); |
| 42 if (GetTextInputClient()) | 41 if (GetTextInputClient()) |
| 43 UpdateIMEState(); | 42 UpdateIMEState(); |
| 44 } | 43 } |
| 45 | 44 |
| 46 void InputMethodWin::OnBlur() { | 45 void InputMethodWin::OnBlur() { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 97 *result = original_result; | 96 *result = original_result; |
| 98 return !!handled; | 97 return !!handled; |
| 99 } | 98 } |
| 100 | 99 |
| 101 void InputMethodWin::DispatchKeyEvent(ui::KeyEvent* event) { | 100 void InputMethodWin::DispatchKeyEvent(ui::KeyEvent* event) { |
| 102 if (!event->HasNativeEvent()) { | 101 if (!event->HasNativeEvent()) { |
| 103 DispatchFabricatedKeyEvent(event); | 102 DispatchFabricatedKeyEvent(event); |
| 104 return; | 103 return; |
| 105 } | 104 } |
| 106 | 105 |
| 106 MSG msg; | |
| 107 std::vector<MSG> char_msgs; | |
| 107 const base::NativeEvent& native_key_event = event->native_event(); | 108 const base::NativeEvent& native_key_event = event->native_event(); |
| 109 ::TranslateMessage(&native_key_event); | |
| 110 while (::PeekMessage(&msg, native_key_event.hwnd, WM_CHAR, WM_SYSCHAR, | |
| 111 PM_REMOVE)) { | |
|
James Su
2015/08/04 17:06:44
There are WM_SYSKEYDOWN and WM_SYSKEYUP between WM
Shu Chen
2015/08/05 01:36:45
Done.
| |
| 112 char_msgs.push_back(msg); | |
| 113 } | |
| 114 | |
| 115 BOOL handled = FALSE; | |
| 108 if (native_key_event.message == WM_CHAR) { | 116 if (native_key_event.message == WM_CHAR) { |
| 109 BOOL handled; | |
| 110 OnChar(native_key_event.hwnd, native_key_event.message, | 117 OnChar(native_key_event.hwnd, native_key_event.message, |
| 111 native_key_event.wParam, native_key_event.lParam, &handled); | 118 native_key_event.wParam, native_key_event.lParam, &handled); |
| 112 if (handled) | 119 if (handled) |
| 113 event->StopPropagation(); | 120 event->StopPropagation(); |
| 114 return; | 121 return; |
| 115 } | 122 } |
| 116 // Handles ctrl-shift key to change text direction and layout alignment. | 123 // Handles ctrl-shift key to change text direction and layout alignment. |
| 117 if (ui::IMM32Manager::IsRTLKeyboardLayoutInstalled() && | 124 if (ui::IMM32Manager::IsRTLKeyboardLayoutInstalled() && |
| 118 !IsTextInputTypeNone()) { | 125 !IsTextInputTypeNone()) { |
| 119 // TODO: shouldn't need to generate a KeyEvent here. | 126 // TODO: shouldn't need to generate a KeyEvent here. |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 130 } else if (key.type() == ui::ET_KEY_RELEASED && | 137 } else if (key.type() == ui::ET_KEY_RELEASED && |
| 131 (code == ui::VKEY_SHIFT || code == ui::VKEY_CONTROL) && | 138 (code == ui::VKEY_SHIFT || code == ui::VKEY_CONTROL) && |
| 132 pending_requested_direction_ != base::i18n::UNKNOWN_DIRECTION) { | 139 pending_requested_direction_ != base::i18n::UNKNOWN_DIRECTION) { |
| 133 GetTextInputClient()->ChangeTextDirectionAndLayoutAlignment( | 140 GetTextInputClient()->ChangeTextDirectionAndLayoutAlignment( |
| 134 pending_requested_direction_); | 141 pending_requested_direction_); |
| 135 pending_requested_direction_ = base::i18n::UNKNOWN_DIRECTION; | 142 pending_requested_direction_ = base::i18n::UNKNOWN_DIRECTION; |
| 136 } | 143 } |
| 137 } | 144 } |
| 138 | 145 |
| 139 ui::EventDispatchDetails details = DispatchKeyEventPostIME(event); | 146 ui::EventDispatchDetails details = DispatchKeyEventPostIME(event); |
| 140 if (!details.dispatcher_destroyed) | 147 if (details.dispatcher_destroyed || details.target_destroyed || |
| 141 suppress_next_char_ = event->stopped_propagation(); | 148 event->stopped_propagation()) { |
| 149 return; | |
| 150 } | |
| 151 | |
| 152 for (size_t i = 0; i < char_msgs.size(); ++i) { | |
| 153 msg = char_msgs[i]; | |
| 154 if (msg.message == WM_CHAR || msg.message == WM_SYSCHAR) | |
| 155 OnChar(msg.hwnd, msg.message, msg.wParam, msg.lParam, &handled); | |
| 156 } | |
| 142 } | 157 } |
| 143 | 158 |
| 144 void InputMethodWin::OnTextInputTypeChanged(const TextInputClient* client) { | 159 void InputMethodWin::OnTextInputTypeChanged(const TextInputClient* client) { |
| 145 if (!IsTextInputClientFocused(client) || !IsWindowFocused(client)) | 160 if (!IsTextInputClientFocused(client) || !IsWindowFocused(client)) |
| 146 return; | 161 return; |
| 147 imm32_manager_.CancelIME(toplevel_window_handle_); | 162 imm32_manager_.CancelIME(toplevel_window_handle_); |
| 148 UpdateIMEState(); | 163 UpdateIMEState(); |
| 149 } | 164 } |
| 150 | 165 |
| 151 void InputMethodWin::OnCaretBoundsChanged(const TextInputClient* client) { | 166 void InputMethodWin::OnCaretBoundsChanged(const TextInputClient* client) { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 217 UINT message, | 232 UINT message, |
| 218 WPARAM wparam, | 233 WPARAM wparam, |
| 219 LPARAM lparam, | 234 LPARAM lparam, |
| 220 BOOL* handled) { | 235 BOOL* handled) { |
| 221 // TODO(vadimt): Remove ScopedTracker below once crbug.com/440919 is fixed. | 236 // TODO(vadimt): Remove ScopedTracker below once crbug.com/440919 is fixed. |
| 222 tracked_objects::ScopedTracker tracking_profile( | 237 tracked_objects::ScopedTracker tracking_profile( |
| 223 FROM_HERE_WITH_EXPLICIT_FUNCTION("440919 InputMethodWin::OnChar")); | 238 FROM_HERE_WITH_EXPLICIT_FUNCTION("440919 InputMethodWin::OnChar")); |
| 224 | 239 |
| 225 *handled = TRUE; | 240 *handled = TRUE; |
| 226 | 241 |
| 227 if (suppress_next_char_) { | |
| 228 suppress_next_char_ = false; | |
| 229 return 0; | |
| 230 } | |
| 231 | |
| 232 // We need to send character events to the focused text input client event if | 242 // We need to send character events to the focused text input client event if |
| 233 // its text input type is ui::TEXT_INPUT_TYPE_NONE. | 243 // its text input type is ui::TEXT_INPUT_TYPE_NONE. |
| 234 if (GetTextInputClient()) { | 244 if (GetTextInputClient()) { |
| 235 const base::char16 kCarriageReturn = L'\r'; | 245 const base::char16 kCarriageReturn = L'\r'; |
| 236 const base::char16 ch = static_cast<base::char16>(wparam); | 246 const base::char16 ch = static_cast<base::char16>(wparam); |
| 237 // A mask to determine the previous key state from |lparam|. The value is 1 | 247 // A mask to determine the previous key state from |lparam|. The value is 1 |
| 238 // if the key is down before the message is sent, or it is 0 if the key is | 248 // if the key is down before the message is sent, or it is 0 if the key is |
| 239 // up. | 249 // up. |
| 240 const uint32 kPrevKeyDownBit = 0x40000000; | 250 const uint32 kPrevKeyDownBit = 0x40000000; |
| 241 if (ch == kCarriageReturn && !(lparam & kPrevKeyDownBit)) | 251 if (ch == kCarriageReturn && !(lparam & kPrevKeyDownBit)) |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 580 // window. So we can safely assume that |attached_window_handle| is ready for | 590 // window. So we can safely assume that |attached_window_handle| is ready for |
| 581 // receiving keyboard input as long as it is an active window. This works well | 591 // receiving keyboard input as long as it is an active window. This works well |
| 582 // even when the |attached_window_handle| becomes active but has not received | 592 // even when the |attached_window_handle| becomes active but has not received |
| 583 // WM_FOCUS yet. | 593 // WM_FOCUS yet. |
| 584 return toplevel_window_handle_ && | 594 return toplevel_window_handle_ && |
| 585 GetActiveWindow() == toplevel_window_handle_; | 595 GetActiveWindow() == toplevel_window_handle_; |
| 586 } | 596 } |
| 587 | 597 |
| 588 void InputMethodWin::DispatchFabricatedKeyEvent(ui::KeyEvent* event) { | 598 void InputMethodWin::DispatchFabricatedKeyEvent(ui::KeyEvent* event) { |
| 589 if (event->is_char()) { | 599 if (event->is_char()) { |
| 590 if (suppress_next_char_) { | |
| 591 suppress_next_char_ = false; | |
| 592 return; | |
| 593 } | |
| 594 if (GetTextInputClient()) { | 600 if (GetTextInputClient()) { |
| 595 GetTextInputClient()->InsertChar( | 601 GetTextInputClient()->InsertChar( |
| 596 static_cast<base::char16>(event->key_code()), | 602 static_cast<base::char16>(event->key_code()), |
| 597 ui::GetModifiersFromKeyState()); | 603 ui::GetModifiersFromKeyState()); |
| 598 return; | 604 return; |
| 599 } | 605 } |
| 600 } | 606 } |
| 601 ignore_result(DispatchKeyEventPostIME(event)); | 607 ignore_result(DispatchKeyEventPostIME(event)); |
| 602 } | 608 } |
| 603 | 609 |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 631 enabled_ = true; | 637 enabled_ = true; |
| 632 break; | 638 break; |
| 633 } | 639 } |
| 634 | 640 |
| 635 imm32_manager_.SetTextInputMode(window_handle, text_input_mode); | 641 imm32_manager_.SetTextInputMode(window_handle, text_input_mode); |
| 636 tsf_inputscope::SetInputScopeForTsfUnawareWindow( | 642 tsf_inputscope::SetInputScopeForTsfUnawareWindow( |
| 637 window_handle, text_input_type, text_input_mode); | 643 window_handle, text_input_type, text_input_mode); |
| 638 } | 644 } |
| 639 | 645 |
| 640 } // namespace ui | 646 } // namespace ui |
| OLD | NEW |