OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 // | 22 // |
23 // A button used to show either the incognito avatar or the profile avatar. | 23 // A button used to show either the incognito avatar or the profile avatar. |
24 // The button can optionally have a menu attached to it. | 24 // The button can optionally have a menu attached to it. |
25 | 25 |
26 class AvatarMenuButton : public views::MenuButton, | 26 class AvatarMenuButton : public views::MenuButton, |
27 public views::MenuButtonListener { | 27 public views::MenuButtonListener { |
28 public: | 28 public: |
29 // Internal class name. | 29 // Internal class name. |
30 static const char kViewClassName[]; | 30 static const char kViewClassName[]; |
31 | 31 |
32 // Creates a new button. If |disabled| is true and we're not in managed mode, | 32 // Creates a new button. Unless |disabled| is true, clicking on the button |
33 // clicking on the button will cause the profile menu to be displayed. | 33 // will cause the profile menu to be displayed. |
34 AvatarMenuButton(Browser* browser, bool disabled); | 34 AvatarMenuButton(Browser* browser, bool disabled); |
35 | 35 |
36 virtual ~AvatarMenuButton(); | 36 virtual ~AvatarMenuButton(); |
37 | 37 |
38 // views::MenuButton: | 38 // views::MenuButton: |
39 virtual const char* GetClassName() const OVERRIDE; | 39 virtual const char* GetClassName() const OVERRIDE; |
40 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 40 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
41 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; | 41 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; |
42 | 42 |
43 // Sets the image for the avatar button. Rectangular images, as opposed | 43 // Sets the image for the avatar button. Rectangular images, as opposed |
(...skipping 19 matching lines...) Expand all Loading... |
63 gfx::ImageSkia button_icon_; | 63 gfx::ImageSkia button_icon_; |
64 bool is_rectangle_; | 64 bool is_rectangle_; |
65 int old_height_; | 65 int old_height_; |
66 // True if the avatar button is on the right side of the browser window. | 66 // True if the avatar button is on the right side of the browser window. |
67 bool button_on_right_; | 67 bool button_on_right_; |
68 | 68 |
69 DISALLOW_COPY_AND_ASSIGN(AvatarMenuButton); | 69 DISALLOW_COPY_AND_ASSIGN(AvatarMenuButton); |
70 }; | 70 }; |
71 | 71 |
72 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_ | 72 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_MENU_BUTTON_H_ |
OLD | NEW |