Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Side by Side Diff: views/controls/menu/menu_controller.cc

Issue 3044043: Remove a deprecated wstring ToLower function. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: views Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/spellcheck_host.cc ('k') | views/controls/menu/menu_item_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "views/controls/menu/menu_controller.h" 5 #include "views/controls/menu/menu_controller.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/os_exchange_data.h" 8 #include "app/os_exchange_data.h"
9 #include "base/i18n/rtl.h" 9 #include "base/i18n/rtl.h"
10 #include "base/keyboard_codes.h" 10 #include "base/keyboard_codes.h"
11 #include "base/time.h" 11 #include "base/time.h"
12 #include "base/utf_string_conversions.h"
12 #include "gfx/canvas_skia.h" 13 #include "gfx/canvas_skia.h"
13 #include "views/controls/button/menu_button.h" 14 #include "views/controls/button/menu_button.h"
14 #include "views/controls/menu/menu_scroll_view_container.h" 15 #include "views/controls/menu/menu_scroll_view_container.h"
15 #include "views/controls/menu/submenu_view.h" 16 #include "views/controls/menu/submenu_view.h"
16 #include "views/drag_utils.h" 17 #include "views/drag_utils.h"
17 #include "views/screen.h" 18 #include "views/screen.h"
18 #include "views/view_constants.h" 19 #include "views/view_constants.h"
19 #include "views/views_delegate.h" 20 #include "views/views_delegate.h"
20 #include "views/widget/root_view.h" 21 #include "views/widget/root_view.h"
21 #include "views/widget/widget.h" 22 #include "views/widget/widget.h"
(...skipping 1508 matching lines...) Expand 10 before | Expand all | Expand 10 after
1530 return; 1531 return;
1531 if (item->HasSubmenu() && item->GetSubmenu()->IsShowing()) { 1532 if (item->HasSubmenu() && item->GetSubmenu()->IsShowing()) {
1532 SetSelection(item, false, true); 1533 SetSelection(item, false, true);
1533 } else if (item->GetParentMenuItem()->GetParentMenuItem()) { 1534 } else if (item->GetParentMenuItem()->GetParentMenuItem()) {
1534 SetSelection(item->GetParentMenuItem(), false, true); 1535 SetSelection(item->GetParentMenuItem(), false, true);
1535 } 1536 }
1536 } 1537 }
1537 1538
1538 bool MenuController::SelectByChar(wchar_t character) { 1539 bool MenuController::SelectByChar(wchar_t character) {
1539 wchar_t char_array[1] = { character }; 1540 wchar_t char_array[1] = { character };
1540 wchar_t key = l10n_util::ToLower(char_array)[0]; 1541 wchar_t key = UTF16ToWide(l10n_util::ToLower(WideToUTF16(char_array)))[0];
1541 MenuItemView* item = pending_state_.item; 1542 MenuItemView* item = pending_state_.item;
1542 if (!item->HasSubmenu() || !item->GetSubmenu()->IsShowing()) 1543 if (!item->HasSubmenu() || !item->GetSubmenu()->IsShowing())
1543 item = item->GetParentMenuItem(); 1544 item = item->GetParentMenuItem();
1544 DCHECK(item); 1545 DCHECK(item);
1545 DCHECK(item->HasSubmenu()); 1546 DCHECK(item->HasSubmenu());
1546 SubmenuView* submenu = item->GetSubmenu(); 1547 SubmenuView* submenu = item->GetSubmenu();
1547 DCHECK(submenu); 1548 DCHECK(submenu);
1548 int menu_item_count = submenu->GetMenuItemCount(); 1549 int menu_item_count = submenu->GetMenuItemCount();
1549 if (!menu_item_count) 1550 if (!menu_item_count)
1550 return false; 1551 return false;
(...skipping 12 matching lines...) Expand all
1563 1564
1564 // No matching mnemonic, search through items that don't have mnemonic 1565 // No matching mnemonic, search through items that don't have mnemonic
1565 // based on first character of the title. 1566 // based on first character of the title.
1566 int first_match = -1; 1567 int first_match = -1;
1567 bool has_multiple = false; 1568 bool has_multiple = false;
1568 int next_match = -1; 1569 int next_match = -1;
1569 int index_of_item = -1; 1570 int index_of_item = -1;
1570 for (int i = 0; i < menu_item_count; ++i) { 1571 for (int i = 0; i < menu_item_count; ++i) {
1571 MenuItemView* child = submenu->GetMenuItemAt(i); 1572 MenuItemView* child = submenu->GetMenuItemAt(i);
1572 if (!child->GetMnemonic() && child->IsEnabled()) { 1573 if (!child->GetMnemonic() && child->IsEnabled()) {
1573 std::wstring lower_title = l10n_util::ToLower(child->GetTitle()); 1574 std::wstring lower_title = UTF16ToWide(
1575 l10n_util::ToLower(WideToUTF16(child->GetTitle())));
1574 if (child == pending_state_.item) 1576 if (child == pending_state_.item)
1575 index_of_item = i; 1577 index_of_item = i;
1576 if (lower_title.length() && lower_title[0] == key) { 1578 if (lower_title.length() && lower_title[0] == key) {
1577 if (first_match == -1) 1579 if (first_match == -1)
1578 first_match = i; 1580 first_match = i;
1579 else 1581 else
1580 has_multiple = true; 1582 has_multiple = true;
1581 if (next_match == -1 && index_of_item != -1 && i > index_of_item) 1583 if (next_match == -1 && index_of_item != -1 && i > index_of_item)
1582 next_match = i; 1584 next_match = i;
1583 } 1585 }
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1771 1773
1772 MouseEvent release_event(Event::ET_MOUSE_RELEASED, -1, -1, 0); 1774 MouseEvent release_event(Event::ET_MOUSE_RELEASED, -1, -1, 0);
1773 // Reset the active_mouse_view_ before sending mouse released. That way if if 1775 // Reset the active_mouse_view_ before sending mouse released. That way if if
1774 // calls back to use we aren't in a weird state. 1776 // calls back to use we aren't in a weird state.
1775 View* active_view = active_mouse_view_; 1777 View* active_view = active_mouse_view_;
1776 active_mouse_view_ = NULL; 1778 active_mouse_view_ = NULL;
1777 active_view->OnMouseReleased(release_event, true); 1779 active_view->OnMouseReleased(release_event, true);
1778 } 1780 }
1779 1781
1780 } // namespace views 1782 } // namespace views
OLDNEW
« no previous file with comments | « chrome/browser/spellcheck_host.cc ('k') | views/controls/menu/menu_item_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698