blob: a3e0d5a1ff7d85adfd988066fa61890103f27b76 [file] [log] [blame]
// 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/avatar_base_controller.h"
#include "base/mac/foundation_util.h"
#include "base/macros.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile_avatar_icon_util.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/profiles/profile_metrics.h"
#include "chrome/browser/profiles/profile_window.h"
#include "chrome/browser/profiles/profiles_state.h"
#include "chrome/browser/signin/chrome_signin_helper.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_window.h"
#import "chrome/browser/ui/cocoa/base_bubble_controller.h"
#import "chrome/browser/ui/cocoa/browser_window_controller.h"
#include "chrome/browser/ui/cocoa/l10n_util.h"
#import "chrome/browser/ui/cocoa/profiles/profile_chooser_controller.h"
#include "components/signin/core/common/profile_management_switches.h"
#include "ui/base/cocoa/cocoa_base_utils.h"
// Space between the avatar icon and the avatar menu bubble.
const CGFloat kMenuYOffsetAdjust = 1.0;
// Offset needed to align the edge of the avatar bubble with the edge of the
// avatar button.
const CGFloat kMenuXOffsetAdjust = 1.0;
@interface AvatarBaseController (Private)
// Shows the avatar bubble.
- (IBAction)buttonClicked:(id)sender;
- (IBAction)buttonRightClicked:(id)sender;
- (void)bubbleWillClose:(NSNotification*)notif;
// Updates the profile name displayed by the avatar button. If |layoutParent| is
// yes, then the BrowserWindowController is notified to relayout the subviews,
// as the button needs to be repositioned.
- (void)updateAvatarButtonAndLayoutParent:(BOOL)layoutParent;
// Displays an error icon if any accounts associated with this profile have an
// auth error or sync error.
- (void)setErrorStatus:(BOOL)hasError;
@end
ProfileUpdateObserver::ProfileUpdateObserver(
Profile* profile,
AvatarBaseController* avatarController)
: errorController_(this, profile),
profile_(profile),
avatarController_(avatarController) {
g_browser_process->profile_manager()
->GetProfileAttributesStorage()
.AddObserver(this);
}
ProfileUpdateObserver::~ProfileUpdateObserver() {
g_browser_process->profile_manager()
->GetProfileAttributesStorage()
.RemoveObserver(this);
}
void ProfileUpdateObserver::OnProfileAdded(const base::FilePath& profile_path) {
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
void ProfileUpdateObserver::OnProfileWasRemoved(
const base::FilePath& profile_path,
const base::string16& profile_name) {
// If deleting the active profile, don't bother updating the avatar
// button, as the browser window is being closed anyway.
if (profile_->GetPath() != profile_path)
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
void ProfileUpdateObserver::OnProfileNameChanged(
const base::FilePath& profile_path,
const base::string16& old_profile_name) {
if (profile_->GetPath() == profile_path)
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
void ProfileUpdateObserver::OnProfileSupervisedUserIdChanged(
const base::FilePath& profile_path) {
if (profile_->GetPath() == profile_path)
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
void ProfileUpdateObserver::OnAvatarErrorChanged() {
[avatarController_ setErrorStatus:errorController_.HasAvatarError()];
}
bool ProfileUpdateObserver::HasAvatarError() {
return errorController_.HasAvatarError();
}
@implementation AvatarBaseController
- (id)initWithBrowser:(Browser*)browser {
if ((self = [super init])) {
browser_ = browser;
profileObserver_.reset(
new ProfileUpdateObserver(browser_->profile(), self));
}
return self;
}
- (void)dealloc {
[self browserWillBeDestroyed];
[super dealloc];
}
- (void)browserWillBeDestroyed {
[[NSNotificationCenter defaultCenter]
removeObserver:self
name:NSWindowWillCloseNotification
object:[menuController_ window]];
browser_ = nullptr;
}
- (NSButton*)buttonView {
CHECK(button_.get()); // Subclasses must set this.
return button_.get();
}
- (void)showAvatarBubbleAnchoredAt:(NSView*)anchor
withMode:(BrowserWindow::AvatarBubbleMode)mode
withServiceType:(signin::GAIAServiceType)serviceType
fromAccessPoint:(signin_metrics::AccessPoint)accessPoint {
if (menuController_) {
profiles::BubbleViewMode viewMode;
profiles::TutorialMode tutorialMode;
profiles::BubbleViewModeFromAvatarBubbleMode(
mode, &viewMode, &tutorialMode);
if (tutorialMode != profiles::TUTORIAL_MODE_NONE) {
ProfileChooserController* profileChooserController =
base::mac::ObjCCastStrict<ProfileChooserController>(
menuController_);
[profileChooserController setTutorialMode:tutorialMode];
[profileChooserController initMenuContentsWithView:viewMode];
}
return;
}
DCHECK(chrome::IsCommandEnabled(browser_, IDC_SHOW_AVATAR_MENU));
NSWindowController* wc =
[browser_->window()->GetNativeWindow() windowController];
if ([wc isKindOfClass:[BrowserWindowController class]]) {
[static_cast<BrowserWindowController*>(wc)
lockToolbarVisibilityForOwner:self
withAnimation:NO];
}
// The new avatar bubble does not have an arrow, and it should be anchored
// to the edge of the avatar button.
int anchorX = cocoa_l10n_util::ShouldFlipWindowControlsInRTL()
? NSMinX([anchor bounds]) + kMenuXOffsetAdjust
: NSMaxX([anchor bounds]) - kMenuXOffsetAdjust;
NSPoint point = NSMakePoint(anchorX,
NSMaxY([anchor bounds]) + kMenuYOffsetAdjust);
point = [anchor convertPoint:point toView:nil];
point = ui::ConvertPointFromWindowToScreen([anchor window], point);
// |menuController_| will automatically release itself on close.
profiles::BubbleViewMode viewMode;
profiles::TutorialMode tutorialMode;
profiles::BubbleViewModeFromAvatarBubbleMode(
mode, &viewMode, &tutorialMode);
menuController_ =
[[ProfileChooserController alloc] initWithBrowser:browser_
anchoredAt:point
viewMode:viewMode
tutorialMode:tutorialMode
serviceType:serviceType
accessPoint:accessPoint];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(bubbleWillClose:)
name:NSWindowWillCloseNotification
object:[menuController_ window]];
[menuController_ showWindow:self];
ProfileMetrics::LogProfileOpenMethod(ProfileMetrics::ICON_AVATAR_BUBBLE);
}
- (IBAction)buttonClicked:(id)sender {
[self showAvatarBubbleAnchoredAt:button_
withMode:BrowserWindow::AVATAR_BUBBLE_MODE_DEFAULT
withServiceType:signin::GAIA_SERVICE_TYPE_NONE
fromAccessPoint:signin_metrics::AccessPoint::
ACCESS_POINT_AVATAR_BUBBLE_SIGN_IN];
}
- (void)bubbleWillClose:(NSNotification*)notif {
NSWindowController* wc =
[browser_->window()->GetNativeWindow() windowController];
if ([wc isKindOfClass:[BrowserWindowController class]]) {
[static_cast<BrowserWindowController*>(wc)
releaseToolbarVisibilityForOwner:self
withAnimation:YES];
}
menuController_ = nil;
}
- (void)updateAvatarButtonAndLayoutParent:(BOOL)layoutParent {
NOTREACHED();
}
- (void)setErrorStatus:(BOOL)hasError {
}
- (BaseBubbleController*)menuController {
return menuController_;
}
@end