| Index: chrome/browser/ui/views/avatar_menu_button.h
|
| ===================================================================
|
| --- chrome/browser/ui/views/avatar_menu_button.h (revision 88024)
|
| +++ chrome/browser/ui/views/avatar_menu_button.h (working copy)
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_UI_VIEWS_PROFILE_MENU_BUTTON_H_
|
| -#define CHROME_BROWSER_UI_VIEWS_PROFILE_MENU_BUTTON_H_
|
| +#ifndef CHROME_BROWSER_UI_VIEWS_AVATAR_MENU_BUTTON_H_
|
| +#define CHROME_BROWSER_UI_VIEWS_AVATAR_MENU_BUTTON_H_
|
| #pragma once
|
|
|
| #include <string>
|
| @@ -13,49 +13,35 @@
|
| #include "views/controls/button/menu_button.h"
|
| #include "views/controls/menu/view_menu_delegate.h"
|
|
|
| -class Profile;
|
| -class ProfileMenuModel;
|
| -
|
| namespace gfx {
|
| class Canvas;
|
| }
|
|
|
| -namespace ui {
|
| -class Accelerator;
|
| -}
|
| -
|
| -// ProfileMenuButton
|
| +// AvatarMenuButton
|
| //
|
| -// Shows the button for the multiprofile menu with an image layered
|
| -// underneath that displays the profile tag.
|
| +// A button used to show either the incognito avatar or the profile avatar.
|
| +// The button can optionally have a menu attached to it.
|
|
|
| -class ProfileMenuButton : public views::MenuButton,
|
| - public views::ViewMenuDelegate {
|
| +class AvatarMenuButton : public views::MenuButton,
|
| + public views::ViewMenuDelegate {
|
| public:
|
| - // DefaultActiveTextShadow is a darkened blue color that works with Windows
|
| - // default theme background coloring.
|
| - static const SkColor kDefaultActiveTextShadow = 0xFF708DB3;
|
| - // InactiveTextShadow is a light gray for inactive default themed buttons.
|
| - static const SkColor kDefaultInactiveTextShadow = SK_ColorLTGRAY;
|
| - // DarkTextShadow is used to shadow names on themed browser frames.
|
| - static const SkColor kDarkTextShadow = SK_ColorGRAY;
|
| - // Space between window controls and end of profile tag.
|
| - static const int kProfileTagHorizontalSpacing = 5;
|
| + // Creates a new button. The object will take ownership of the menu model.
|
| + AvatarMenuButton(const std::wstring& text, ui::MenuModel* menu_model);
|
|
|
| - ProfileMenuButton(const std::wstring& text, Profile* profile);
|
| + virtual ~AvatarMenuButton();
|
|
|
| - virtual ~ProfileMenuButton();
|
| + // views::MenuButton
|
| + virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
|
|
|
| - // Override MenuButton to clamp text at kMaxTextWidth.
|
| - virtual void SetText(const std::wstring& text) OVERRIDE;
|
| + static gfx::Size GetPreferredAvatarSize();
|
|
|
| private:
|
| - // Overridden from views::ViewMenuDelegate:
|
| + // views::ViewMenuDelegate
|
| virtual void RunMenu(views::View* source, const gfx::Point& pt) OVERRIDE;
|
|
|
| - scoped_ptr<ProfileMenuModel> profile_menu_model_;
|
| + scoped_ptr<ui::MenuModel> menu_model_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(ProfileMenuButton);
|
| + DISALLOW_COPY_AND_ASSIGN(AvatarMenuButton);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_UI_VIEWS_PROFILE_MENU_BUTTON_H_
|
| +#endif // CHROME_BROWSER_UI_VIEWS_AVATAR_MENU_BUTTON_H_
|
|
|