OLD | NEW |
| (Empty) |
1 // Copyright 2013 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 #include "ash/common/accelerators/accelerator_commands.h" | |
6 | |
7 #include "ash/common/wm/mru_window_tracker.h" | |
8 #include "ash/common/wm/window_state.h" | |
9 #include "ash/common/wm/wm_event.h" | |
10 #include "ash/common/wm_shell.h" | |
11 #include "ash/common/wm_window.h" | |
12 #include "base/metrics/user_metrics.h" | |
13 | |
14 namespace ash { | |
15 namespace accelerators { | |
16 | |
17 bool ToggleMinimized() { | |
18 WmWindow* window = WmShell::Get()->GetActiveWindow(); | |
19 // Attempt to restore the window that would be cycled through next from | |
20 // the launcher when there is no active window. | |
21 if (!window) { | |
22 MruWindowTracker::WindowList mru_windows( | |
23 WmShell::Get()->mru_window_tracker()->BuildMruWindowList()); | |
24 if (!mru_windows.empty()) | |
25 mru_windows.front()->GetWindowState()->Activate(); | |
26 return true; | |
27 } | |
28 wm::WindowState* window_state = window->GetWindowState(); | |
29 if (!window_state->CanMinimize()) | |
30 return false; | |
31 window_state->Minimize(); | |
32 return true; | |
33 } | |
34 | |
35 void ToggleMaximized() { | |
36 WmWindow* active_window = WmShell::Get()->GetActiveWindow(); | |
37 if (!active_window) | |
38 return; | |
39 base::RecordAction(base::UserMetricsAction("Accel_Toggle_Maximized")); | |
40 wm::WMEvent event(wm::WM_EVENT_TOGGLE_MAXIMIZE); | |
41 active_window->GetWindowState()->OnWMEvent(&event); | |
42 } | |
43 | |
44 void ToggleFullscreen() { | |
45 WmWindow* active_window = WmShell::Get()->GetActiveWindow(); | |
46 if (!active_window) | |
47 return; | |
48 const wm::WMEvent event(wm::WM_EVENT_TOGGLE_FULLSCREEN); | |
49 active_window->GetWindowState()->OnWMEvent(&event); | |
50 } | |
51 | |
52 } // namespace accelerators | |
53 } // namespace ash | |
OLD | NEW |