OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 "views/examples/box_layout.h" |
| 6 |
| 7 namespace examples { |
| 8 |
| 9 BoxLayout::BoxLayout(Orientation orientation, int margin) |
| 10 : orientation_(orientation), |
| 11 margin_(margin) { |
| 12 } |
| 13 |
| 14 void BoxLayout::Layout(views::View* host) { |
| 15 int height = host->height(); |
| 16 int width = host->width(); |
| 17 int count = host->GetChildViewCount(); |
| 18 |
| 19 int z = 0; |
| 20 for (int i = 0; i < count; ++i) { |
| 21 views::View* child = host->GetChildViewAt(i); |
| 22 |
| 23 if (orientation_ == kVertical) { |
| 24 child->SetBounds(0, z, width, height / count); |
| 25 z = (height + margin_) * (i + 1) / count; |
| 26 } else if (orientation_ == kHorizontal) { |
| 27 child->SetBounds(z, 0, width / count, height); |
| 28 z = (width + margin_) * (i + 1) / count; |
| 29 } |
| 30 } |
| 31 } |
| 32 |
| 33 gfx::Size BoxLayout::GetPreferredSize(views::View* host) { |
| 34 return gfx::Size(); |
| 35 } |
| 36 |
| 37 } // namespace examples |
OLD | NEW |