• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4 
5 #ifndef ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_
6 #define ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_
7 
8 #include <map>
9 #include <string>
10 
11 #include "ash/system/tray/tray_details_view.h"
12 #include "ash/system/tray/view_click_listener.h"
13 #include "ash/system/user/login_status.h"
14 #include "ash/system/user/user_accounts_delegate.h"
15 #include "ash/system/user/user_view.h"
16 #include "base/macros.h"
17 #include "ui/views/controls/button/button.h"
18 #include "ui/views/controls/label.h"
19 
20 namespace ash {
21 
22 class TrayUser;
23 
24 namespace tray {
25 
26 // This detailed view appears after a click on the primary user's card when the
27 // new account managment is enabled.
28 class AccountsDetailedView : public TrayDetailsView,
29                              public ViewClickListener,
30                              public views::ButtonListener,
31                              public ash::tray::UserAccountsDelegate::Observer {
32  public:
33   AccountsDetailedView(TrayUser* owner, user::LoginStatus login_status);
34   virtual ~AccountsDetailedView();
35 
36  private:
37   // Overridden from ViewClickListener.
38   virtual void OnViewClicked(views::View* sender) OVERRIDE;
39 
40   // Overridden from views::ButtonListener.
41   virtual void ButtonPressed(views::Button* sender,
42                              const ui::Event& event) OVERRIDE;
43 
44   // Overridden from ash::tray::UserAccountsDelegate::Observer.
45   virtual void AccountListChanged() OVERRIDE;
46 
47   void AddHeader(user::LoginStatus login_status);
48   void AddAccountList();
49   void AddAddAccountButton();
50   void AddFooter();
51 
52   void UpdateAccountList();
53 
54   views::View* CreateDeleteButton();
55 
56   ash::tray::UserAccountsDelegate* delegate_;
57   views::View* account_list_;
58   views::View* add_account_button_;
59   views::View* add_user_button_;
60   std::map<views::View*, std::string> delete_button_to_account_id_;
61 
62   DISALLOW_COPY_AND_ASSIGN(AccountsDetailedView);
63 };
64 
65 }  // namespace tray
66 }  // namespace ash
67 
68 #endif  // ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_
69