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

Side by Side Diff: ui/app_list/app_list_menu.cc

Issue 20656002: Add profile selector menu to app list. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rework Created 7 years, 3 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/app_list/app_list_menu.h" 5 #include "ui/app_list/app_list_menu.h"
6 6
7 #include "grit/ui_resources.h"
7 #include "grit/ui_strings.h" 8 #include "grit/ui_strings.h"
8 #include "ui/app_list/app_list_view_delegate.h" 9 #include "ui/app_list/app_list_view_delegate.h"
9 #include "ui/base/l10n/l10n_util.h" 10 #include "ui/base/l10n/l10n_util.h"
10 #include "ui/base/models/menu_separator_types.h" 11 #include "ui/base/models/menu_separator_types.h"
11 #include "ui/base/resource/resource_bundle.h" 12 #include "ui/base/resource/resource_bundle.h"
12 13
13 namespace app_list { 14 namespace app_list {
14 15
15 AppListMenu::AppListMenu(AppListViewDelegate* delegate) 16 AppListMenu::AppListMenu(AppListViewDelegate* delegate,
17 const AppListModel::Users& users)
16 : menu_model_(this), 18 : menu_model_(this),
17 delegate_(delegate) { 19 delegate_(delegate),
20 users_(users) {
18 InitMenu(); 21 InitMenu();
19 } 22 }
20 23
21 AppListMenu::~AppListMenu() {} 24 AppListMenu::~AppListMenu() {}
22 25
23 void AppListMenu::InitMenu() { 26 void AppListMenu::InitMenu() {
24 menu_model_.AddItem(CURRENT_USER, base::string16()); 27 // User selector menu section. We don't show the user selector if there is
25 menu_model_.AddSeparator(ui::NORMAL_SEPARATOR); 28 // only 1 user.
29 if (users_.size() > 1) {
30 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
31 for (size_t i = 0; i < users_.size(); ++i) {
32 menu_model_.AddItem(SELECT_PROFILE + i, users_[i].name);
33 int menu_index = menu_model_.GetIndexOfCommandId(SELECT_PROFILE + i);
34 menu_model_.SetSublabel(menu_index, users_[i].email);
35 // Use custom check mark.
36 if (users_[i].active) {
37 menu_model_.SetIcon(i, gfx::Image(*rb.GetImageSkiaNamed(
38 IDR_APP_LIST_CURRENT_USER_INDICATOR)));
39 }
40 }
41 menu_model_.AddSeparator(ui::NORMAL_SEPARATOR);
42 }
26 43
27 menu_model_.AddItem(SHOW_SETTINGS, l10n_util::GetStringUTF16( 44 menu_model_.AddItem(SHOW_SETTINGS, l10n_util::GetStringUTF16(
28 IDS_APP_LIST_OPEN_SETTINGS)); 45 IDS_APP_LIST_OPEN_SETTINGS));
29 46
30 menu_model_.AddItem(SHOW_HELP, l10n_util::GetStringUTF16( 47 menu_model_.AddItem(SHOW_HELP, l10n_util::GetStringUTF16(
31 IDS_APP_LIST_HELP)); 48 IDS_APP_LIST_HELP));
32 49
33 menu_model_.AddItem(SHOW_FEEDBACK, l10n_util::GetStringUTF16( 50 menu_model_.AddItem(SHOW_FEEDBACK, l10n_util::GetStringUTF16(
34 IDS_APP_LIST_OPEN_FEEDBACK)); 51 IDS_APP_LIST_OPEN_FEEDBACK));
35 } 52 }
36 53
37 bool AppListMenu::IsCommandIdChecked(int command_id) const { 54 bool AppListMenu::IsCommandIdChecked(int command_id) const {
38 return false; 55 return false;
39 } 56 }
40 57
41 bool AppListMenu::IsCommandIdEnabled(int command_id) const { 58 bool AppListMenu::IsCommandIdEnabled(int command_id) const {
42 return true; 59 return true;
43 } 60 }
44 61
45 bool AppListMenu::GetAcceleratorForCommandId(int command_id, 62 bool AppListMenu::GetAcceleratorForCommandId(int command_id,
46 ui::Accelerator* accelerator) { 63 ui::Accelerator* accelerator) {
47 return false; 64 return false;
48 } 65 }
49 66
50 void AppListMenu::ExecuteCommand(int command_id, int event_flags) { 67 void AppListMenu::ExecuteCommand(int command_id, int event_flags) {
68 if (command_id >= SELECT_PROFILE) {
69 delegate_->ShowForProfileByPath(
70 users_[command_id - SELECT_PROFILE].profile_path);
71 return;
72 }
51 switch (command_id) { 73 switch (command_id) {
52 case CURRENT_USER: 74 case CURRENT_USER:
53 break; // Do nothing. 75 break; // Do nothing.
54 case SHOW_SETTINGS: 76 case SHOW_SETTINGS:
55 delegate_->OpenSettings(); 77 delegate_->OpenSettings();
56 break; 78 break;
57 case SHOW_HELP: 79 case SHOW_HELP:
58 delegate_->OpenHelp(); 80 delegate_->OpenHelp();
59 break; 81 break;
60 case SHOW_FEEDBACK: 82 case SHOW_FEEDBACK:
61 delegate_->OpenFeedback(); 83 delegate_->OpenFeedback();
62 break; 84 break;
63 default: 85 default:
64 NOTREACHED(); 86 NOTREACHED();
65 } 87 }
66 } 88 }
67 89
68 } // namespace app_list 90 } // namespace app_list
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698