Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Side by Side Diff: ash/shelf/shelf_layout_manager.cc

Issue 24108003: [Cleanup] Rename WindowSettings to WindowState (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/shelf/shelf_layout_manager.h" 5 #include "ash/shelf/shelf_layout_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <cstring> 9 #include <cstring>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "ash/ash_switches.h" 13 #include "ash/ash_switches.h"
14 #include "ash/launcher/launcher.h" 14 #include "ash/launcher/launcher.h"
15 #include "ash/launcher/launcher_types.h" 15 #include "ash/launcher/launcher_types.h"
16 #include "ash/root_window_controller.h" 16 #include "ash/root_window_controller.h"
17 #include "ash/screen_ash.h" 17 #include "ash/screen_ash.h"
18 #include "ash/session_state_delegate.h" 18 #include "ash/session_state_delegate.h"
19 #include "ash/shelf/shelf_bezel_event_filter.h" 19 #include "ash/shelf/shelf_bezel_event_filter.h"
20 #include "ash/shelf/shelf_layout_manager_observer.h" 20 #include "ash/shelf/shelf_layout_manager_observer.h"
21 #include "ash/shelf/shelf_widget.h" 21 #include "ash/shelf/shelf_widget.h"
22 #include "ash/shell.h" 22 #include "ash/shell.h"
23 #include "ash/shell_window_ids.h" 23 #include "ash/shell_window_ids.h"
24 #include "ash/system/status_area_widget.h" 24 #include "ash/system/status_area_widget.h"
25 #include "ash/wm/gestures/shelf_gesture_handler.h" 25 #include "ash/wm/gestures/shelf_gesture_handler.h"
26 #include "ash/wm/lock_state_controller.h" 26 #include "ash/wm/lock_state_controller.h"
27 #include "ash/wm/mru_window_tracker.h" 27 #include "ash/wm/mru_window_tracker.h"
28 #include "ash/wm/window_animations.h" 28 #include "ash/wm/window_animations.h"
29 #include "ash/wm/window_properties.h" 29 #include "ash/wm/window_properties.h"
30 #include "ash/wm/window_state.h"
30 #include "ash/wm/window_util.h" 31 #include "ash/wm/window_util.h"
31 #include "ash/wm/workspace_controller.h" 32 #include "ash/wm/workspace_controller.h"
32 #include "base/auto_reset.h" 33 #include "base/auto_reset.h"
33 #include "base/command_line.h" 34 #include "base/command_line.h"
34 #include "base/command_line.h" 35 #include "base/command_line.h"
35 #include "base/i18n/rtl.h" 36 #include "base/i18n/rtl.h"
36 #include "base/strings/string_number_conversions.h" 37 #include "base/strings/string_number_conversions.h"
37 #include "base/strings/string_util.h" 38 #include "base/strings/string_util.h"
38 #include "ui/aura/client/activation_client.h" 39 #include "ui/aura/client/activation_client.h"
39 #include "ui/aura/client/cursor_client.h" 40 #include "ui/aura/client/cursor_client.h"
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 if (shelf_->IsActive() || shelf_->status_area_widget()->IsActive()) 999 if (shelf_->IsActive() || shelf_->status_area_widget()->IsActive())
999 return SHELF_AUTO_HIDE_SHOWN; 1000 return SHELF_AUTO_HIDE_SHOWN;
1000 1001
1001 const std::vector<aura::Window*> windows = 1002 const std::vector<aura::Window*> windows =
1002 ash::MruWindowTracker::BuildWindowList(false); 1003 ash::MruWindowTracker::BuildWindowList(false);
1003 1004
1004 // Process the window list and check if there are any visible windows. 1005 // Process the window list and check if there are any visible windows.
1005 bool visible_window = false; 1006 bool visible_window = false;
1006 for (size_t i = 0; i < windows.size(); ++i) { 1007 for (size_t i = 0; i < windows.size(); ++i) {
1007 if (windows[i] && windows[i]->IsVisible() && 1008 if (windows[i] && windows[i]->IsVisible() &&
1008 !ash::wm::IsWindowMinimized(windows[i]) && 1009 !wm::GetWindowState(windows[i])->IsMinimized() &&
1009 root_window_ == windows[i]->GetRootWindow()) { 1010 root_window_ == windows[i]->GetRootWindow()) {
1010 visible_window = true; 1011 visible_window = true;
1011 break; 1012 break;
1012 } 1013 }
1013 } 1014 }
1014 // If there are no visible windows do not hide the shelf. 1015 // If there are no visible windows do not hide the shelf.
1015 if (!visible_window) 1016 if (!visible_window)
1016 return SHELF_AUTO_HIDE_SHOWN; 1017 return SHELF_AUTO_HIDE_SHOWN;
1017 1018
1018 if (gesture_drag_status_ == GESTURE_DRAG_COMPLETE_IN_PROGRESS) 1019 if (gesture_drag_status_ == GESTURE_DRAG_COMPLETE_IN_PROGRESS)
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 return gfx::Insets(0, distance, 0, 0); 1150 return gfx::Insets(0, distance, 0, 0);
1150 case SHELF_ALIGNMENT_TOP: 1151 case SHELF_ALIGNMENT_TOP:
1151 return gfx::Insets(0, 0, distance, 0); 1152 return gfx::Insets(0, 0, distance, 0);
1152 } 1153 }
1153 NOTREACHED(); 1154 NOTREACHED();
1154 return gfx::Insets(); 1155 return gfx::Insets();
1155 } 1156 }
1156 1157
1157 } // namespace internal 1158 } // namespace internal
1158 } // namespace ash 1159 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698