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/command_line.h" | |
| 9 #include "base/profiler/scoped_tracker.h" | 10 #include "base/profiler/scoped_tracker.h" |
| 10 #include "ui/base/ime/text_input_client.h" | 11 #include "ui/base/ime/text_input_client.h" |
| 11 #include "ui/base/ime/win/tsf_input_scope.h" | 12 #include "ui/base/ime/win/tsf_input_scope.h" |
| 13 #include "ui/base/ui_base_switches.h" | |
| 12 #include "ui/events/event.h" | 14 #include "ui/events/event.h" |
| 13 #include "ui/events/event_constants.h" | 15 #include "ui/events/event_constants.h" |
| 14 #include "ui/events/event_utils.h" | 16 #include "ui/events/event_utils.h" |
| 15 #include "ui/events/keycodes/keyboard_codes.h" | 17 #include "ui/events/keycodes/keyboard_codes.h" |
| 16 #include "ui/gfx/win/dpi.h" | 18 #include "ui/gfx/win/dpi.h" |
| 17 #include "ui/gfx/win/hwnd_util.h" | 19 #include "ui/gfx/win/hwnd_util.h" |
| 18 | 20 |
| 19 namespace ui { | 21 namespace ui { |
| 20 namespace { | 22 namespace { |
| 21 | 23 |
| 22 // Extra number of chars before and after selection (or composition) range which | 24 // Extra number of chars before and after selection (or composition) range which |
| 23 // is returned to IME for improving conversion accuracy. | 25 // is returned to IME for improving conversion accuracy. |
| 24 static const size_t kExtraNumberOfChars = 20; | 26 static const size_t kExtraNumberOfChars = 20; |
| 25 | 27 |
| 26 } // namespace | 28 } // namespace |
| 27 | 29 |
| 28 InputMethodWin::InputMethodWin(internal::InputMethodDelegate* delegate, | 30 InputMethodWin::InputMethodWin(internal::InputMethodDelegate* delegate, |
| 29 HWND toplevel_window_handle) | 31 HWND toplevel_window_handle) |
| 30 : toplevel_window_handle_(toplevel_window_handle), | 32 : toplevel_window_handle_(toplevel_window_handle), |
| 31 pending_requested_direction_(base::i18n::UNKNOWN_DIRECTION), | 33 pending_requested_direction_(base::i18n::UNKNOWN_DIRECTION), |
| 32 accept_carriage_return_(false), | 34 accept_carriage_return_(false), |
| 33 enabled_(false), | 35 enabled_(false), |
| 34 is_candidate_popup_open_(false), | 36 is_candidate_popup_open_(false), |
| 35 composing_window_handle_(NULL), | 37 composing_window_handle_(NULL) { |
| 36 suppress_next_char_(false) { | |
| 37 SetDelegate(delegate); | 38 SetDelegate(delegate); |
| 38 } | 39 } |
| 39 | 40 |
| 40 void InputMethodWin::OnFocus() { | 41 void InputMethodWin::OnFocus() { |
| 41 InputMethodBase::OnFocus(); | 42 InputMethodBase::OnFocus(); |
| 42 if (GetTextInputClient()) | 43 if (GetTextInputClient()) |
| 43 UpdateIMEState(); | 44 UpdateIMEState(); |
| 44 } | 45 } |
| 45 | 46 |
| 46 void InputMethodWin::OnBlur() { | 47 void InputMethodWin::OnBlur() { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 97 *result = original_result; | 98 *result = original_result; |
| 98 return !!handled; | 99 return !!handled; |
| 99 } | 100 } |
| 100 | 101 |
| 101 void InputMethodWin::DispatchKeyEvent(ui::KeyEvent* event) { | 102 void InputMethodWin::DispatchKeyEvent(ui::KeyEvent* event) { |
| 102 if (!event->HasNativeEvent()) { | 103 if (!event->HasNativeEvent()) { |
| 103 DispatchFabricatedKeyEvent(event); | 104 DispatchFabricatedKeyEvent(event); |
| 104 return; | 105 return; |
| 105 } | 106 } |
| 106 | 107 |
| 108 std::vector<MSG> char_msgs; | |
| 107 const base::NativeEvent& native_key_event = event->native_event(); | 109 const base::NativeEvent& native_key_event = event->native_event(); |
| 110 if (base::CommandLine::ForCurrentProcess()->HasSwitch( | |
| 111 switches::kEnableMergeKeyCharEvents)) { | |
| 112 // Combines the WM_KEY* and WM_CHAR messages in the event processing flow | |
| 113 // which is necessary to let Chrome IME extension to process the key event | |
| 114 // and perform corresponding IME actions. | |
| 115 // Chrome IME extension may wants to consume certain key events based on | |
| 116 // the character information of WM_CHAR messages. Holding WM_KEY* messages | |
| 117 // until WM_CHAR is processed by the IME extension is not feasible because | |
| 118 // there is no way to know wether there will or not be a WM_CHAR following | |
| 119 // the WM_KEY*. | |
| 120 // Chrome never handles dead chars so it is safe to remove/ignore | |
| 121 // WM_*DEADCHAR messages. | |
| 122 MSG msg; | |
| 123 while (::PeekMessage(&msg, native_key_event.hwnd, WM_CHAR, WM_DEADCHAR, | |
|
ananta
2015/09/01 21:53:45
Peeking out WM_CHAR's here will solve the issue yo
Shu Chen
2015/09/02 02:51:07
I don't see losing flexibility by this cl.
Chrome
| |
| 124 PM_REMOVE)) { | |
| 125 if (msg.message == WM_CHAR) | |
| 126 char_msgs.push_back(msg); | |
| 127 } | |
| 128 while (::PeekMessage(&msg, native_key_event.hwnd, WM_SYSCHAR, | |
| 129 WM_SYSDEADCHAR, PM_REMOVE)) { | |
| 130 if (msg.message == WM_SYSCHAR) | |
| 131 char_msgs.push_back(msg); | |
| 132 } | |
| 133 } | |
| 134 | |
| 135 BOOL handled = FALSE; | |
| 108 if (native_key_event.message == WM_CHAR) { | 136 if (native_key_event.message == WM_CHAR) { |
|
ananta
2015/09/01 21:53:45
Will this code execute if the kEnableMergeKeyCharE
Shu Chen
2015/09/02 02:51:07
Yes. This remains the original behavior to support
| |
| 109 BOOL handled; | |
| 110 OnChar(native_key_event.hwnd, native_key_event.message, | 137 OnChar(native_key_event.hwnd, native_key_event.message, |
| 111 native_key_event.wParam, native_key_event.lParam, &handled); | 138 native_key_event.wParam, native_key_event.lParam, &handled); |
| 112 if (handled) | 139 if (handled) |
| 113 event->StopPropagation(); | 140 event->StopPropagation(); |
| 114 return; | 141 return; |
| 115 } | 142 } |
| 116 // Handles ctrl-shift key to change text direction and layout alignment. | 143 // Handles ctrl-shift key to change text direction and layout alignment. |
| 117 if (ui::IMM32Manager::IsRTLKeyboardLayoutInstalled() && | 144 if (ui::IMM32Manager::IsRTLKeyboardLayoutInstalled() && |
| 118 !IsTextInputTypeNone()) { | 145 !IsTextInputTypeNone()) { |
| 119 // TODO: shouldn't need to generate a KeyEvent here. | 146 // 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 && | 157 } else if (key.type() == ui::ET_KEY_RELEASED && |
| 131 (code == ui::VKEY_SHIFT || code == ui::VKEY_CONTROL) && | 158 (code == ui::VKEY_SHIFT || code == ui::VKEY_CONTROL) && |
| 132 pending_requested_direction_ != base::i18n::UNKNOWN_DIRECTION) { | 159 pending_requested_direction_ != base::i18n::UNKNOWN_DIRECTION) { |
| 133 GetTextInputClient()->ChangeTextDirectionAndLayoutAlignment( | 160 GetTextInputClient()->ChangeTextDirectionAndLayoutAlignment( |
| 134 pending_requested_direction_); | 161 pending_requested_direction_); |
| 135 pending_requested_direction_ = base::i18n::UNKNOWN_DIRECTION; | 162 pending_requested_direction_ = base::i18n::UNKNOWN_DIRECTION; |
| 136 } | 163 } |
| 137 } | 164 } |
| 138 | 165 |
| 139 ui::EventDispatchDetails details = DispatchKeyEventPostIME(event); | 166 ui::EventDispatchDetails details = DispatchKeyEventPostIME(event); |
| 140 if (!details.dispatcher_destroyed) | 167 if (details.dispatcher_destroyed || details.target_destroyed || |
| 141 suppress_next_char_ = event->stopped_propagation(); | 168 event->stopped_propagation()) { |
| 169 return; | |
| 170 } | |
| 171 | |
| 172 for (size_t i = 0; i < char_msgs.size(); ++i) { | |
| 173 msg = char_msgs[i]; | |
| 174 OnChar(msg.hwnd, msg.message, msg.wParam, msg.lParam, &handled); | |
| 175 } | |
| 142 } | 176 } |
| 143 | 177 |
| 144 void InputMethodWin::OnTextInputTypeChanged(const TextInputClient* client) { | 178 void InputMethodWin::OnTextInputTypeChanged(const TextInputClient* client) { |
| 145 if (!IsTextInputClientFocused(client) || !IsWindowFocused(client)) | 179 if (!IsTextInputClientFocused(client) || !IsWindowFocused(client)) |
| 146 return; | 180 return; |
| 147 imm32_manager_.CancelIME(toplevel_window_handle_); | 181 imm32_manager_.CancelIME(toplevel_window_handle_); |
| 148 UpdateIMEState(); | 182 UpdateIMEState(); |
| 149 } | 183 } |
| 150 | 184 |
| 151 void InputMethodWin::OnCaretBoundsChanged(const TextInputClient* client) { | 185 void InputMethodWin::OnCaretBoundsChanged(const TextInputClient* client) { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 217 UINT message, | 251 UINT message, |
| 218 WPARAM wparam, | 252 WPARAM wparam, |
| 219 LPARAM lparam, | 253 LPARAM lparam, |
| 220 BOOL* handled) { | 254 BOOL* handled) { |
| 221 // TODO(vadimt): Remove ScopedTracker below once crbug.com/440919 is fixed. | 255 // TODO(vadimt): Remove ScopedTracker below once crbug.com/440919 is fixed. |
| 222 tracked_objects::ScopedTracker tracking_profile( | 256 tracked_objects::ScopedTracker tracking_profile( |
| 223 FROM_HERE_WITH_EXPLICIT_FUNCTION("440919 InputMethodWin::OnChar")); | 257 FROM_HERE_WITH_EXPLICIT_FUNCTION("440919 InputMethodWin::OnChar")); |
| 224 | 258 |
| 225 *handled = TRUE; | 259 *handled = TRUE; |
| 226 | 260 |
| 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 | 261 // 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. | 262 // its text input type is ui::TEXT_INPUT_TYPE_NONE. |
| 234 if (GetTextInputClient()) { | 263 if (GetTextInputClient()) { |
| 235 const base::char16 kCarriageReturn = L'\r'; | 264 const base::char16 kCarriageReturn = L'\r'; |
| 236 const base::char16 ch = static_cast<base::char16>(wparam); | 265 const base::char16 ch = static_cast<base::char16>(wparam); |
| 237 // A mask to determine the previous key state from |lparam|. The value is 1 | 266 // 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 | 267 // if the key is down before the message is sent, or it is 0 if the key is |
| 239 // up. | 268 // up. |
| 240 const uint32 kPrevKeyDownBit = 0x40000000; | 269 const uint32 kPrevKeyDownBit = 0x40000000; |
| 241 if (ch == kCarriageReturn && !(lparam & kPrevKeyDownBit)) | 270 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 | 609 // 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 | 610 // 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 | 611 // even when the |attached_window_handle| becomes active but has not received |
| 583 // WM_FOCUS yet. | 612 // WM_FOCUS yet. |
| 584 return toplevel_window_handle_ && | 613 return toplevel_window_handle_ && |
| 585 GetActiveWindow() == toplevel_window_handle_; | 614 GetActiveWindow() == toplevel_window_handle_; |
| 586 } | 615 } |
| 587 | 616 |
| 588 void InputMethodWin::DispatchFabricatedKeyEvent(ui::KeyEvent* event) { | 617 void InputMethodWin::DispatchFabricatedKeyEvent(ui::KeyEvent* event) { |
| 589 if (event->is_char()) { | 618 if (event->is_char()) { |
| 590 if (suppress_next_char_) { | |
| 591 suppress_next_char_ = false; | |
| 592 return; | |
| 593 } | |
| 594 if (GetTextInputClient()) { | 619 if (GetTextInputClient()) { |
| 595 GetTextInputClient()->InsertChar( | 620 GetTextInputClient()->InsertChar( |
| 596 static_cast<base::char16>(event->key_code()), | 621 static_cast<base::char16>(event->key_code()), |
| 597 ui::GetModifiersFromKeyState()); | 622 ui::GetModifiersFromKeyState()); |
| 598 return; | 623 return; |
| 599 } | 624 } |
| 600 } | 625 } |
| 601 ignore_result(DispatchKeyEventPostIME(event)); | 626 ignore_result(DispatchKeyEventPostIME(event)); |
| 602 } | 627 } |
| 603 | 628 |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 631 enabled_ = true; | 656 enabled_ = true; |
| 632 break; | 657 break; |
| 633 } | 658 } |
| 634 | 659 |
| 635 imm32_manager_.SetTextInputMode(window_handle, text_input_mode); | 660 imm32_manager_.SetTextInputMode(window_handle, text_input_mode); |
| 636 tsf_inputscope::SetInputScopeForTsfUnawareWindow( | 661 tsf_inputscope::SetInputScopeForTsfUnawareWindow( |
| 637 window_handle, text_input_type, text_input_mode); | 662 window_handle, text_input_type, text_input_mode); |
| 638 } | 663 } |
| 639 | 664 |
| 640 } // namespace ui | 665 } // namespace ui |
| OLD | NEW |