OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "chrome/browser/autocomplete/autocomplete_edit_view_win.h" | 5 #include "chrome/browser/autocomplete/autocomplete_edit_view_win.h" |
6 | 6 |
7 #include <locale> | 7 #include <locale> |
8 | 8 |
9 #include "base/base_drag_source.h" | 9 #include "base/base_drag_source.h" |
10 #include "base/base_drop_target.h" | 10 #include "base/base_drop_target.h" |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 SetWindowTextAndCaretPos(display_text, display_text.length()); | 641 SetWindowTextAndCaretPos(display_text, display_text.length()); |
642 if (update_popup) | 642 if (update_popup) |
643 UpdatePopup(); | 643 UpdatePopup(); |
644 TextChanged(); | 644 TextChanged(); |
645 } | 645 } |
646 | 646 |
647 void AutocompleteEditViewWin::SetWindowTextAndCaretPos(const std::wstring& text, | 647 void AutocompleteEditViewWin::SetWindowTextAndCaretPos(const std::wstring& text, |
648 size_t caret_pos) { | 648 size_t caret_pos) { |
649 HIMC imm_context = ImmGetContext(m_hWnd); | 649 HIMC imm_context = ImmGetContext(m_hWnd); |
650 if (imm_context) { | 650 if (imm_context) { |
651 // In Windows Vista, SetWindowText() automatically completes any ongoing | 651 // In Windows Vista, SetWindowText() automatically cancels any ongoing |
652 // IME composition, and updates the text of the underlying edit control. | 652 // IME composition, and updates the text of the underlying edit control. |
653 // In Windows XP, however, SetWindowText() gets applied to the IME | 653 // In Windows XP, however, SetWindowText() gets applied to the IME |
654 // composition string if it exists, and doesn't update the underlying edit | 654 // composition string if it exists, and doesn't update the underlying edit |
655 // control. To avoid this, we force the IME to complete any outstanding | 655 // control. To avoid this, we force the IME to cancel any outstanding |
656 // compositions here. This is harmless in Vista and in cases where the IME | 656 // compositions here. This is harmless in Vista and in cases where the IME |
657 // isn't composing. | 657 // isn't composing. |
658 ImmNotifyIME(imm_context, NI_COMPOSITIONSTR, CPS_COMPLETE, 0); | 658 ImmNotifyIME(imm_context, NI_COMPOSITIONSTR, CPS_CANCEL, 0); |
659 ImmReleaseContext(m_hWnd, imm_context); | 659 ImmReleaseContext(m_hWnd, imm_context); |
660 } | 660 } |
661 | 661 |
662 SetWindowText(text.c_str()); | 662 SetWindowText(text.c_str()); |
663 PlaceCaretAt(caret_pos); | 663 PlaceCaretAt(caret_pos); |
664 } | 664 } |
665 | 665 |
666 bool AutocompleteEditViewWin::IsSelectAll() { | 666 bool AutocompleteEditViewWin::IsSelectAll() { |
667 CHARRANGE selection; | 667 CHARRANGE selection; |
668 GetSel(selection); | 668 GetSel(selection); |
(...skipping 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2204 } | 2204 } |
2205 | 2205 |
2206 void AutocompleteEditViewWin::RepaintDropHighlight(int position) { | 2206 void AutocompleteEditViewWin::RepaintDropHighlight(int position) { |
2207 if ((position != -1) && (position <= GetTextLength())) { | 2207 if ((position != -1) && (position <= GetTextLength())) { |
2208 const POINT min_loc(PosFromChar(position)); | 2208 const POINT min_loc(PosFromChar(position)); |
2209 const RECT highlight_bounds = {min_loc.x - 1, font_y_adjustment_, | 2209 const RECT highlight_bounds = {min_loc.x - 1, font_y_adjustment_, |
2210 min_loc.x + 2, font_ascent_ + font_descent_ + font_y_adjustment_}; | 2210 min_loc.x + 2, font_ascent_ + font_descent_ + font_y_adjustment_}; |
2211 InvalidateRect(&highlight_bounds, false); | 2211 InvalidateRect(&highlight_bounds, false); |
2212 } | 2212 } |
2213 } | 2213 } |
OLD | NEW |