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 #include "ash/system/overview/overview_button_tray.h" | 5 #include "ash/system/overview/overview_button_tray.h" |
6 | 6 |
7 #include "ash/shelf/shelf_types.h" | 7 #include "ash/shelf/shelf_types.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ash/system/tray/system_tray_delegate.h" | |
9 #include "ash/system/tray/tray_utils.h" | 10 #include "ash/system/tray/tray_utils.h" |
10 #include "ash/wm/overview/window_selector_controller.h" | 11 #include "ash/wm/overview/window_selector_controller.h" |
11 #include "grit/ash_resources.h" | 12 #include "grit/ash_resources.h" |
12 #include "grit/ash_strings.h" | 13 #include "grit/ash_strings.h" |
13 #include "ui/base/l10n/l10n_util.h" | 14 #include "ui/base/l10n/l10n_util.h" |
14 #include "ui/base/resource/resource_bundle.h" | 15 #include "ui/base/resource/resource_bundle.h" |
15 #include "ui/views/border.h" | 16 #include "ui/views/border.h" |
16 #include "ui/views/controls/image_view.h" | 17 #include "ui/views/controls/image_view.h" |
17 | 18 |
18 namespace { | 19 namespace { |
(...skipping 15 matching lines...) Expand all Loading... | |
34 icon_(NULL) { | 35 icon_(NULL) { |
35 SetContentsBackground(); | 36 SetContentsBackground(); |
36 | 37 |
37 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); | 38 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); |
38 icon_ = new views::ImageView(); | 39 icon_ = new views::ImageView(); |
39 icon_->SetImage( | 40 icon_->SetImage( |
40 bundle.GetImageNamed(IDR_AURA_UBER_TRAY_OVERVIEW_MODE).ToImageSkia()); | 41 bundle.GetImageNamed(IDR_AURA_UBER_TRAY_OVERVIEW_MODE).ToImageSkia()); |
41 SetIconBorderForShelfAlignment(); | 42 SetIconBorderForShelfAlignment(); |
42 tray_container()->AddChildView(icon_); | 43 tray_container()->AddChildView(icon_); |
43 | 44 |
44 SetVisible(Shell::GetInstance()->IsMaximizeModeWindowManagerEnabled()); | 45 SetVisible(false); |
flackr
2014/03/26 21:00:12
Won't this fail when a display is added while in m
| |
45 | 46 |
46 Shell::GetInstance()->AddShellObserver(this); | 47 Shell::GetInstance()->AddShellObserver(this); |
47 } | 48 } |
48 | 49 |
49 OverviewButtonTray::~OverviewButtonTray() { | 50 OverviewButtonTray::~OverviewButtonTray() { |
50 Shell::GetInstance()->RemoveShellObserver(this); | 51 Shell::GetInstance()->RemoveShellObserver(this); |
51 } | 52 } |
52 | 53 |
53 bool OverviewButtonTray::PerformAction(const ui::Event& event) { | 54 bool OverviewButtonTray::PerformAction(const ui::Event& event) { |
54 Shell::GetInstance()->window_selector_controller()->ToggleOverview(); | 55 Shell::GetInstance()->window_selector_controller()->ToggleOverview(); |
55 return true; | 56 return true; |
56 } | 57 } |
57 | 58 |
58 void OverviewButtonTray::OnMaximizeModeStarted() { | 59 void OverviewButtonTray::OnMaximizeModeStarted() { |
59 SetVisible(true); | 60 SetVisible(ShouldBeVisibleForLoginStatus(Shell::GetInstance()-> |
61 system_tray_delegate()->GetUserLoginStatus())); | |
60 } | 62 } |
61 | 63 |
62 void OverviewButtonTray::OnMaximizeModeEnded() { | 64 void OverviewButtonTray::OnMaximizeModeEnded() { |
63 SetVisible(false); | 65 SetVisible(false); |
64 } | 66 } |
65 | 67 |
66 bool OverviewButtonTray::ClickedOutsideBubble() { | 68 bool OverviewButtonTray::ClickedOutsideBubble() { |
67 // This class has no bubbles dismiss, but acknowledge that the message was | 69 // This class has no bubbles dismiss, but acknowledge that the message was |
68 // handled. | 70 // handled. |
69 return true; | 71 return true; |
(...skipping 26 matching lines...) Expand all Loading... | |
96 kHorizontalShelfHorizontalPadding)); | 98 kHorizontalShelfHorizontalPadding)); |
97 } else { | 99 } else { |
98 icon_->SetBorder(views::Border::CreateEmptyBorder( | 100 icon_->SetBorder(views::Border::CreateEmptyBorder( |
99 kVerticalShelfVerticalPadding, | 101 kVerticalShelfVerticalPadding, |
100 kVerticalShelfHorizontalPadding, | 102 kVerticalShelfHorizontalPadding, |
101 kVerticalShelfVerticalPadding, | 103 kVerticalShelfVerticalPadding, |
102 kVerticalShelfHorizontalPadding)); | 104 kVerticalShelfHorizontalPadding)); |
103 } | 105 } |
104 } | 106 } |
105 | 107 |
108 void OverviewButtonTray::UpdateAfterLoginStatusChange( | |
109 user::LoginStatus status) { | |
110 SetVisible(Shell::GetInstance()->IsMaximizeModeWindowManagerEnabled() && | |
111 ShouldBeVisibleForLoginStatus(status)); | |
flackr
2014/03/26 21:00:12
Try to avoid repeating logic like this, it makes i
jonross
2014/03/28 16:47:04
Done.
| |
112 } | |
113 | |
114 bool OverviewButtonTray::ShouldBeVisibleForLoginStatus( | |
115 user::LoginStatus status) { | |
116 return status == user::LOGGED_IN_USER || | |
117 status == user::LOGGED_IN_OWNER || | |
118 status == user::LOGGED_IN_GUEST || | |
119 status == user::LOGGED_IN_PUBLIC || | |
120 status == user::LOGGED_IN_LOCALLY_MANAGED; | |
flackr
2014/03/26 21:00:12
Can you try to unify this with https://code.google
jonross
2014/03/28 16:47:04
Done.
| |
121 } | |
122 | |
106 } // namespace ash | 123 } // namespace ash |
OLD | NEW |