| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "mash/wm/shelf_layout.h" | 5 #include "mash/wm/shelf_layout.h" |
| 6 | 6 |
| 7 #include "components/mus/public/cpp/property_type_converters.h" | 7 #include "components/mus/public/cpp/property_type_converters.h" |
| 8 #include "components/mus/public/cpp/window.h" | 8 #include "components/mus/public/cpp/window.h" |
| 9 #include "components/mus/public/cpp/window_property.h" | 9 #include "components/mus/public/cpp/window_property.h" |
| 10 #include "mash/wm/property_util.h" | 10 #include "mash/wm/property_util.h" |
| 11 #include "ui/gfx/geometry/rect.h" | 11 #include "ui/gfx/geometry/rect.h" |
| 12 | 12 |
| 13 namespace mash { | 13 namespace mash { |
| 14 namespace wm { | 14 namespace wm { |
| 15 | 15 |
| 16 ShelfLayout::ShelfLayout(mus::Window* owner) : LayoutManager(owner) { | 16 ShelfLayout::ShelfLayout(mus::Window* owner) : LayoutManager(owner) { |
| 17 AddLayoutProperty(mus::mojom::WindowManager::kPreferredSize_Property); | 17 AddLayoutProperty(mus::mojom::WindowManager::kPreferredSize_Property); |
| 18 } | 18 } |
| 19 ShelfLayout::~ShelfLayout() {} | 19 ShelfLayout::~ShelfLayout() {} |
| 20 | 20 |
| 21 void ShelfLayout::WindowAdded(mus::Window* window) { | 21 // We explicitly don't make assertions about the number of children in this |
| 22 DCHECK_EQ(owner()->children().size(), 1U); | 22 // layout as the number of children can vary when the application providing the |
| 23 } | 23 // shelf restarts. |
| 24 | 24 |
| 25 void ShelfLayout::LayoutWindow(mus::Window* window) { | 25 void ShelfLayout::LayoutWindow(mus::Window* window) { |
| 26 gfx::Size preferred_size = GetWindowPreferredSize(window); | 26 gfx::Size preferred_size = GetWindowPreferredSize(window); |
| 27 | 27 |
| 28 gfx::Rect container_bounds = owner()->bounds(); | 28 gfx::Rect container_bounds = owner()->bounds(); |
| 29 container_bounds.set_origin( | 29 container_bounds.set_origin( |
| 30 gfx::Point(0, container_bounds.height() - preferred_size.height())); | 30 gfx::Point(0, container_bounds.height() - preferred_size.height())); |
| 31 window->SetBounds(container_bounds); | 31 window->SetBounds(container_bounds); |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace wm | 34 } // namespace wm |
| 35 } // namespace mash | 35 } // namespace mash |
| OLD | NEW |