OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_CHROMEOS_LOGIN_USER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 public: | 31 public: |
32 class Delegate { | 32 class Delegate { |
33 public: | 33 public: |
34 virtual ~Delegate() {} | 34 virtual ~Delegate() {} |
35 | 35 |
36 // Notifies that user pressed signout button on screen locker. | 36 // Notifies that user pressed signout button on screen locker. |
37 virtual void OnSignout() {} | 37 virtual void OnSignout() {} |
38 | 38 |
39 // Notifies that user would like to remove this user from login screen. | 39 // Notifies that user would like to remove this user from login screen. |
40 virtual void OnRemoveUser() {} | 40 virtual void OnRemoveUser() {} |
| 41 |
| 42 // Returns true if current user is selected. |
| 43 virtual bool IsUserSelected() const = 0; |
41 }; | 44 }; |
42 | 45 |
43 // Creates UserView for login screen (|is_login| == true) or screen locker. | 46 // Creates UserView for login screen (|is_login| == true) or screen locker. |
44 // On login screen this will have remove button. | 47 // On login screen this will have remove button. |
45 // On screen locker it will have sign out button. |need_background| is needed | 48 // On screen locker it will have sign out button. |need_background| is needed |
46 // to show image with transparent areas. | 49 // to show image with transparent areas. |
47 UserView(Delegate* delegate, bool is_login, bool need_background); | 50 UserView(Delegate* delegate, bool is_login, bool need_background); |
48 | 51 |
49 // view::View overrides. | 52 // view::View overrides. |
50 virtual gfx::Size GetPreferredSize(); | 53 virtual gfx::Size GetPreferredSize(); |
(...skipping 27 matching lines...) Expand all Loading... |
78 PodImageView* image_view_; | 81 PodImageView* image_view_; |
79 | 82 |
80 views::TextButton* remove_button_; | 83 views::TextButton* remove_button_; |
81 | 84 |
82 DISALLOW_COPY_AND_ASSIGN(UserView); | 85 DISALLOW_COPY_AND_ASSIGN(UserView); |
83 }; | 86 }; |
84 | 87 |
85 } // chromeos | 88 } // chromeos |
86 | 89 |
87 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ | 90 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ |
OLD | NEW |