OLD | NEW |
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 "chrome/browser/ui/window_sizer/window_sizer.h" | 5 #include "chrome/browser/ui/window_sizer/window_sizer.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/wm/window_cycle_controller.h" | 8 #include "ash/wm/window_cycle_controller.h" |
9 #include "ash/wm/window_util.h" | 9 #include "ash/wm/window_util.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 bounds_in_screen.set_x(work_area.x()); | 113 bounds_in_screen.set_x(work_area.x()); |
114 return true; | 114 return true; |
115 } | 115 } |
116 } | 116 } |
117 return false; | 117 return false; |
118 } | 118 } |
119 | 119 |
120 } // namespace | 120 } // namespace |
121 | 121 |
122 bool WindowSizer::GetBoundsOverrideAsh(const gfx::Rect& specified_bounds, | 122 bool WindowSizer::GetBoundsOverrideAsh(const gfx::Rect& specified_bounds, |
123 gfx::Rect* bounds_in_screen) const { | 123 gfx::Rect* bounds_in_screen, |
| 124 ui::WindowShowState& show_state) const { |
124 *bounds_in_screen = specified_bounds; | 125 *bounds_in_screen = specified_bounds; |
125 DCHECK(bounds_in_screen->IsEmpty()); | 126 DCHECK(bounds_in_screen->IsEmpty()); |
126 | 127 |
127 if (!GetSavedWindowBounds(bounds_in_screen)) | 128 ui::WindowShowState passed_show_state = show_state; |
| 129 if (!GetSavedWindowBounds(bounds_in_screen, show_state)) |
128 GetDefaultWindowBounds(bounds_in_screen); | 130 GetDefaultWindowBounds(bounds_in_screen); |
129 | 131 |
130 if (browser_ && browser_->is_type_tabbed()) { | 132 if (browser_ && browser_->is_type_tabbed()) { |
131 gfx::Rect work_area = | 133 gfx::Rect work_area = |
132 monitor_info_provider_->GetMonitorWorkAreaMatching(*bounds_in_screen); | 134 monitor_info_provider_->GetMonitorWorkAreaMatching(*bounds_in_screen); |
133 // This is a window / app. See if there is no window and try to place it. | 135 // This is a window / app. See if there is no window and try to place it. |
134 int count = GetNumberOfValidTopLevelBrowserWindows(work_area); | 136 int count = GetNumberOfValidTopLevelBrowserWindows(work_area); |
135 aura::Window* top_window = GetTopWindow(work_area); | 137 aura::Window* top_window = GetTopWindow(work_area); |
| 138 // The window should not be able to reflect on itself. |
| 139 if (browser_ && top_window == browser_->window()->GetNativeWindow()) |
| 140 return true; |
| 141 // If there is no valid other window we take the coordinates as is. |
| 142 if (!count || !top_window) |
| 143 return true; |
136 | 144 |
137 // If there is no valid other window we take the coordinates as is. | 145 bool maximized = ash::wm::IsWindowMaximized(top_window); |
138 if (!count || !top_window || ash::wm::IsWindowMaximized(top_window)) | 146 // We ignore the saved show state, but look instead for the top level |
| 147 // window's show state. |
| 148 if (passed_show_state == ui::SHOW_STATE_DEFAULT) { |
| 149 show_state = maximized ? ui::SHOW_STATE_MAXIMIZED : |
| 150 ui::SHOW_STATE_DEFAULT; |
| 151 } |
| 152 |
| 153 if (maximized) |
139 return true; | 154 return true; |
140 | 155 |
141 gfx::Rect other_bounds_in_screen = top_window->GetBoundsInScreen(); | 156 gfx::Rect other_bounds_in_screen = top_window->GetBoundsInScreen(); |
142 bool move_right = | 157 bool move_right = |
143 other_bounds_in_screen.CenterPoint().x() < work_area.CenterPoint().x(); | 158 other_bounds_in_screen.CenterPoint().x() < work_area.CenterPoint().x(); |
144 | 159 |
145 // In case we have only one window, we move the other window fully to the | 160 // In case we have only one window, we move the other window fully to the |
146 // "other side" - making room for this new window. | 161 // "other side" - making room for this new window. |
147 if (count == 1) { | 162 if (count == 1) { |
148 gfx::Display display = | 163 gfx::Display display = |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 if (default_width > kMaximumWindowWidth) { | 200 if (default_width > kMaximumWindowWidth) { |
186 // The window should get centered on the screen and not follow the grid. | 201 // The window should get centered on the screen and not follow the grid. |
187 offset_x = (work_area.width() - kMaximumWindowWidth) / 2; | 202 offset_x = (work_area.width() - kMaximumWindowWidth) / 2; |
188 default_width = kMaximumWindowWidth; | 203 default_width = kMaximumWindowWidth; |
189 } | 204 } |
190 default_bounds->SetRect(work_area.x() + offset_x, | 205 default_bounds->SetRect(work_area.x() + offset_x, |
191 work_area.y() + kDesktopBorderSize, | 206 work_area.y() + kDesktopBorderSize, |
192 default_width, | 207 default_width, |
193 default_height); | 208 default_height); |
194 } | 209 } |
OLD | NEW |