1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/ui/cocoa/profiles/profile_menu_controller.h"
#include "base/mac/scoped_nsobject.h"
#include "base/strings/sys_string_conversions.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/avatar_menu.h"
#include "chrome/browser/profiles/avatar_menu_observer.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_avatar_icon_util.h"
#include "chrome/browser/profiles/profile_info_cache.h"
#include "chrome/browser/profiles/profile_info_interface.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/profiles/profile_metrics.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_list_observer.h"
#include "chrome/browser/ui/cocoa/last_active_browser_cocoa.h"
#include "chrome/grit/generated_resources.h"
#include "components/signin/core/common/profile_management_switches.h"
#include "ui/base/l10n/l10n_util_mac.h"
#include "ui/gfx/image/image.h"
@interface ProfileMenuController (Private)
- (void)initializeMenu;
@end
namespace ProfileMenuControllerInternal {
class Observer : public chrome::BrowserListObserver,
public AvatarMenuObserver {
public:
Observer(ProfileMenuController* controller) : controller_(controller) {
BrowserList::AddObserver(this);
}
~Observer() override { BrowserList::RemoveObserver(this); }
// chrome::BrowserListObserver:
void OnBrowserAdded(Browser* browser) override {}
void OnBrowserRemoved(Browser* browser) override {
[controller_ activeBrowserChangedTo:chrome::GetLastActiveBrowser()];
}
void OnBrowserSetLastActive(Browser* browser) override {
[controller_ activeBrowserChangedTo:browser];
}
// AvatarMenuObserver:
void OnAvatarMenuChanged(AvatarMenu* menu) override {
[controller_ rebuildMenu];
}
private:
ProfileMenuController* controller_; // Weak; owns this.
};
} // namespace ProfileMenuControllerInternal
////////////////////////////////////////////////////////////////////////////////
@implementation ProfileMenuController
- (id)initWithMainMenuItem:(NSMenuItem*)item {
if ((self = [super init])) {
mainMenuItem_ = item;
base::scoped_nsobject<NSMenu> menu([[NSMenu alloc] initWithTitle:
l10n_util::GetNSStringWithFixup(IDS_PROFILES_OPTIONS_GROUP_NAME)]);
[mainMenuItem_ setSubmenu:menu];
// This object will be constructed as part of nib loading, which happens
// before the message loop starts and g_browser_process is available.
// Schedule this on the loop to do work when the browser is ready.
[self performSelector:@selector(initializeMenu)
withObject:nil
afterDelay:0];
}
return self;
}
- (IBAction)switchToProfileFromMenu:(id)sender {
avatarMenu_->SwitchToProfile([sender tag], false,
ProfileMetrics::SWITCH_PROFILE_MENU);
}
- (IBAction)switchToProfileFromDock:(id)sender {
// Explicitly bring to the foreground when taking action from the dock.
[NSApp activateIgnoringOtherApps:YES];
avatarMenu_->SwitchToProfile([sender tag], false,
ProfileMetrics::SWITCH_PROFILE_DOCK);
}
- (IBAction)editProfile:(id)sender {
avatarMenu_->EditProfile(avatarMenu_->GetActiveProfileIndex());
}
- (IBAction)newProfile:(id)sender {
avatarMenu_->AddNewProfile(ProfileMetrics::ADD_NEW_USER_MENU);
}
- (BOOL)insertItemsIntoMenu:(NSMenu*)menu
atOffset:(NSInteger)offset
fromDock:(BOOL)dock {
if (!avatarMenu_ || !avatarMenu_->ShouldShowAvatarMenu())
return NO;
// Don't show the list of profiles in the dock if only one profile exists.
if (dock && avatarMenu_->GetNumberOfItems() <= 1)
return NO;
if (dock) {
NSString* headerName =
l10n_util::GetNSStringWithFixup(IDS_PROFILES_OPTIONS_GROUP_NAME);
base::scoped_nsobject<NSMenuItem> header(
[[NSMenuItem alloc] initWithTitle:headerName
action:NULL
keyEquivalent:@""]);
[header setEnabled:NO];
[menu insertItem:header atIndex:offset++];
}
for (size_t i = 0; i < avatarMenu_->GetNumberOfItems(); ++i) {
const AvatarMenu::Item& itemData = avatarMenu_->GetItemAt(i);
NSString* name = base::SysUTF16ToNSString(itemData.name);
SEL action = dock ? @selector(switchToProfileFromDock:)
: @selector(switchToProfileFromMenu:);
NSMenuItem* item = [self createItemWithTitle:name
action:action];
[item setTag:itemData.menu_index];
if (dock) {
[item setIndentationLevel:1];
} else {
gfx::Image itemIcon = itemData.icon;
// The image might be too large and need to be resized (i.e. if this is
// a signed-in user using the GAIA profile photo).
if (itemIcon.Width() > profiles::kAvatarIconWidth ||
itemIcon.Height() > profiles::kAvatarIconHeight) {
itemIcon = profiles::GetAvatarIconForWebUI(itemIcon, true);
}
DCHECK(itemIcon.Width() <= profiles::kAvatarIconWidth);
DCHECK(itemIcon.Height() <= profiles::kAvatarIconHeight);
[item setImage:itemIcon.ToNSImage()];
[item setState:itemData.active ? NSOnState : NSOffState];
}
[menu insertItem:item atIndex:i + offset];
}
return YES;
}
- (BOOL)validateMenuItem:(NSMenuItem*)menuItem {
// In guest mode, chrome://settings isn't available, so disallow creating
// or editing a profile.
Profile* activeProfile = ProfileManager::GetLastUsedProfile();
if (activeProfile->IsGuestSession()) {
return [menuItem action] != @selector(newProfile:) &&
[menuItem action] != @selector(editProfile:);
}
const AvatarMenu::Item& itemData = avatarMenu_->GetItemAt(
avatarMenu_->GetActiveProfileIndex());
if ([menuItem action] == @selector(switchToProfileFromDock:) ||
[menuItem action] == @selector(switchToProfileFromMenu:)) {
if (!itemData.supervised)
return YES;
return [menuItem tag] == static_cast<NSInteger>(itemData.menu_index);
}
if ([menuItem action] == @selector(newProfile:))
return !itemData.supervised;
return YES;
}
// Private /////////////////////////////////////////////////////////////////////
- (NSMenu*)menu {
return [mainMenuItem_ submenu];
}
- (void)initializeMenu {
observer_.reset(new ProfileMenuControllerInternal::Observer(self));
avatarMenu_.reset(new AvatarMenu(
&g_browser_process->profile_manager()->GetProfileInfoCache(),
observer_.get(),
NULL));
avatarMenu_->RebuildMenu();
[[self menu] addItem:[NSMenuItem separatorItem]];
NSMenuItem* item = [self createItemWithTitle:
l10n_util::GetNSStringWithFixup(IDS_PROFILES_MANAGE_BUTTON_LABEL)
action:@selector(editProfile:)];
[[self menu] addItem:item];
[[self menu] addItem:[NSMenuItem separatorItem]];
item = [self createItemWithTitle:l10n_util::GetNSStringWithFixup(
IDS_PROFILES_CREATE_NEW_PROFILE_OPTION)
action:@selector(newProfile:)];
[[self menu] addItem:item];
[self rebuildMenu];
}
// Notifies the controller that the active browser has changed and that the
// menu item and menu need to be updated to reflect that.
- (void)activeBrowserChangedTo:(Browser*)browser {
// Tell the menu that the browser has changed.
avatarMenu_->ActiveBrowserChanged(browser);
// If |browser| is NULL, it may be because the current profile was deleted
// and there are no other loaded profiles. In this case, calling
// |avatarMenu_->GetActiveProfileIndex()| may result in a profile being
// loaded, which is inappropriate to do on the UI thread.
//
// An early return provides the desired behavior:
// a) If the profile was deleted, the menu would have been rebuilt and no
// profile will have a check mark.
// b) If the profile was not deleted, but there is no active browser, then
// the previous profile will remain checked.
if (!browser)
return;
// Update the avatar menu to get the active item states. Don't call
// avatarMenu_->GetActiveProfileIndex() as the index might be
// incorrect if -activeBrowserChangedTo: is called while we deleting the
// active profile and closing all its browser windows.
avatarMenu_->RebuildMenu();
// Update the state for the menu items.
for (size_t i = 0; i < avatarMenu_->GetNumberOfItems(); ++i) {
const AvatarMenu::Item& itemData = avatarMenu_->GetItemAt(i);
[[[self menu] itemWithTag:itemData.menu_index]
setState:itemData.active ? NSOnState : NSOffState];
}
}
- (void)rebuildMenu {
NSMenu* menu = [self menu];
for (NSMenuItem* item = [menu itemAtIndex:0];
![item isSeparatorItem];
item = [menu itemAtIndex:0]) {
[menu removeItemAtIndex:0];
}
BOOL hasContent = [self insertItemsIntoMenu:menu atOffset:0 fromDock:NO];
[mainMenuItem_ setHidden:!hasContent];
}
- (NSMenuItem*)createItemWithTitle:(NSString*)title action:(SEL)sel {
base::scoped_nsobject<NSMenuItem> item(
[[NSMenuItem alloc] initWithTitle:title action:sel keyEquivalent:@""]);
[item setTarget:self];
return [item.release() autorelease];
}
@end
|