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 UpdateIconVisibility(Shell::GetInstance()-> |
| 46 IsMaximizeModeWindowManagerEnabled()); |
45 | 47 |
46 Shell::GetInstance()->AddShellObserver(this); | 48 Shell::GetInstance()->AddShellObserver(this); |
47 } | 49 } |
48 | 50 |
49 OverviewButtonTray::~OverviewButtonTray() { | 51 OverviewButtonTray::~OverviewButtonTray() { |
50 Shell::GetInstance()->RemoveShellObserver(this); | 52 Shell::GetInstance()->RemoveShellObserver(this); |
51 } | 53 } |
52 | 54 |
| 55 void OverviewButtonTray::UpdateAfterLoginStatusChange( |
| 56 user::LoginStatus status) { |
| 57 UpdateIconVisibility(Shell::GetInstance()-> |
| 58 IsMaximizeModeWindowManagerEnabled()); |
| 59 } |
| 60 |
53 bool OverviewButtonTray::PerformAction(const ui::Event& event) { | 61 bool OverviewButtonTray::PerformAction(const ui::Event& event) { |
54 Shell::GetInstance()->window_selector_controller()->ToggleOverview(); | 62 Shell::GetInstance()->window_selector_controller()->ToggleOverview(); |
55 return true; | 63 return true; |
56 } | 64 } |
57 | 65 |
58 void OverviewButtonTray::OnMaximizeModeStarted() { | 66 void OverviewButtonTray::OnMaximizeModeStarted() { |
59 SetVisible(true); | 67 // TODO(flackr): once maximize mode has been refactored remove this so that |
| 68 // UpdateIconVisibility polls Shell for the status directly |
| 69 UpdateIconVisibility(/* maximize_mode_enabled */ true); |
60 } | 70 } |
61 | 71 |
62 void OverviewButtonTray::OnMaximizeModeEnded() { | 72 void OverviewButtonTray::OnMaximizeModeEnded() { |
63 SetVisible(false); | 73 UpdateIconVisibility(/* maximize_mode_enabled */ false); |
64 } | 74 } |
65 | 75 |
66 bool OverviewButtonTray::ClickedOutsideBubble() { | 76 bool OverviewButtonTray::ClickedOutsideBubble() { |
67 // This class has no bubbles dismiss, but acknowledge that the message was | 77 // This class has no bubbles dismiss, but acknowledge that the message was |
68 // handled. | 78 // handled. |
69 return true; | 79 return true; |
70 } | 80 } |
71 | 81 |
72 base::string16 OverviewButtonTray::GetAccessibleNameForTray() { | 82 base::string16 OverviewButtonTray::GetAccessibleNameForTray() { |
73 return l10n_util::GetStringUTF16(IDS_ASH_OVERVIEW_BUTTON_ACCESSIBLE_NAME); | 83 return l10n_util::GetStringUTF16(IDS_ASH_OVERVIEW_BUTTON_ACCESSIBLE_NAME); |
(...skipping 22 matching lines...) Expand all Loading... |
96 kHorizontalShelfHorizontalPadding)); | 106 kHorizontalShelfHorizontalPadding)); |
97 } else { | 107 } else { |
98 icon_->SetBorder(views::Border::CreateEmptyBorder( | 108 icon_->SetBorder(views::Border::CreateEmptyBorder( |
99 kVerticalShelfVerticalPadding, | 109 kVerticalShelfVerticalPadding, |
100 kVerticalShelfHorizontalPadding, | 110 kVerticalShelfHorizontalPadding, |
101 kVerticalShelfVerticalPadding, | 111 kVerticalShelfVerticalPadding, |
102 kVerticalShelfHorizontalPadding)); | 112 kVerticalShelfHorizontalPadding)); |
103 } | 113 } |
104 } | 114 } |
105 | 115 |
| 116 void OverviewButtonTray::UpdateIconVisibility(bool maximize_mode_enabled) { |
| 117 SetVisible(maximize_mode_enabled && |
| 118 Shell::GetInstance()->window_selector_controller()->CanSelect()); |
| 119 } |
| 120 |
106 } // namespace ash | 121 } // namespace ash |
OLD | NEW |