Adding instrumentation to locate the source of jankiness
[chromium-blink-merge.git] / chrome / browser / ui / views / profiles / avatar_menu_button.h
blobd6b335e7aeafd11c3f6b54f483c7e3207ed1bcea
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_
6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_
8 #include <string>
10 #include "base/compiler_specific.h"
11 #include "ui/base/models/simple_menu_model.h"
12 #include "ui/views/controls/button/menu_button.h"
13 #include "ui/views/controls/button/menu_button_listener.h"
14 #include "ui/views/view_targeter_delegate.h"
16 namespace gfx {
17 class Canvas;
18 class Image;
20 class Browser;
22 // AvatarMenuButton
24 // A button used to show either the incognito avatar or the profile avatar.
25 // The button can optionally have a menu attached to it.
27 class AvatarMenuButton : public views::MenuButton,
28 public views::MenuButtonListener,
29 public views::ViewTargeterDelegate {
30 public:
31 // Internal class name.
32 static const char kViewClassName[];
34 // Creates a new button. Unless |disabled| is true, clicking on the button
35 // will cause the profile menu to be displayed.
36 AvatarMenuButton(Browser* browser, bool disabled);
38 virtual ~AvatarMenuButton();
40 // views::MenuButton:
41 virtual const char* GetClassName() const override;
42 virtual void OnPaint(gfx::Canvas* canvas) override;
44 // Sets the image for the avatar button. Rectangular images, as opposed
45 // to Chrome avatar icons, will be resized and modified for the title bar.
46 virtual void SetAvatarIcon(const gfx::Image& icon, bool is_rectangle);
48 void set_button_on_right(bool button_on_right) {
49 button_on_right_ = button_on_right;
51 bool button_on_right() { return button_on_right_; }
53 private:
54 // views::ViewTargeterDelegate:
55 virtual bool DoesIntersectRect(const views::View* target,
56 const gfx::Rect& rect) const override;
58 // views::MenuButtonListener:
59 virtual void OnMenuButtonClicked(views::View* source,
60 const gfx::Point& point) override;
62 Browser* browser_;
63 bool disabled_;
64 scoped_ptr<ui::MenuModel> menu_model_;
66 // Use a scoped ptr because gfx::Image doesn't have a default constructor.
67 scoped_ptr<gfx::Image> icon_;
68 gfx::ImageSkia button_icon_;
69 bool is_rectangle_;
70 int old_height_;
71 // True if the avatar button is on the right side of the browser window.
72 bool button_on_right_;
74 DISALLOW_COPY_AND_ASSIGN(AvatarMenuButton);
77 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_