blob: 83001dc6902359528d2b6b81ef40525784e8cf1a [file] [log] [blame]
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/layout/fill_layout.h"
#include <algorithm>
#include "ui/views/view_class_properties.h"
namespace views {
FillLayout::FillLayout() = default;
FillLayout::~FillLayout() = default;
FillLayout& FillLayout::SetMinimumSizeEnabled(bool minimum_size_enabled) {
if (minimum_size_enabled != minimum_size_enabled_) {
minimum_size_enabled_ = minimum_size_enabled;
InvalidateHost(true);
}
return *this;
}
FillLayout& FillLayout::SetIncludeInsets(bool include_insets) {
if (include_insets != include_insets_) {
include_insets_ = include_insets;
InvalidateHost(true);
}
return *this;
}
ProposedLayout FillLayout::CalculateProposedLayout(
const SizeBounds& size_bounds) const {
// Because we explicitly override GetPreferredSize and
// GetPreferredHeightForWidth(), we should always call this method with well-
// defined bounds.
DCHECK(size_bounds.is_fully_bounded());
ProposedLayout layout;
layout.host_size = host_view()->size();
const gfx::Rect contents_bounds = host_view()->GetContentsBounds();
for (View* child : host_view()->children()) {
if (!child->GetProperty(kViewIgnoredByLayoutKey)) {
layout.child_layouts.push_back(
ChildLayout{child, child->GetVisible(), contents_bounds,
SizeBounds(contents_bounds.size())});
}
}
return layout;
}
gfx::Size FillLayout::GetPreferredSize(const View* host) const {
DCHECK_EQ(host_view(), host);
gfx::Size result;
bool has_child = false;
for (const View* child : host->children()) {
if (!child->GetProperty(kViewIgnoredByLayoutKey)) {
has_child = true;
result.SetToMax(child->GetPreferredSize(GetContentsSizeBounds(host)));
}
}
// For backwards compatibility, do not include insets if there are no
// children.
if (has_child && include_insets_) {
const gfx::Insets insets = host->GetInsets();
result.Enlarge(insets.width(), insets.height());
}
return result;
}
gfx::Size FillLayout::GetPreferredSize(const View* host,
const SizeBounds& available_size) const {
DCHECK_EQ(host_view(), host);
gfx::Size result;
bool has_child = false;
const SizeBounds new_available_size =
include_insets_ ? available_size.Inset(host->GetInsets())
: available_size;
for (const View* child : host->children()) {
if (!child->GetProperty(kViewIgnoredByLayoutKey)) {
has_child = true;
result.SetToMax(child->GetPreferredSize(new_available_size));
}
}
// For backwards compatibility, do not include insets if there are no
// children.
if (has_child && include_insets_) {
const gfx::Insets insets = host->GetInsets();
result.Enlarge(insets.width(), insets.height());
}
return result;
}
gfx::Size FillLayout::GetMinimumSize(const View* host) const {
DCHECK_EQ(host_view(), host);
if (!minimum_size_enabled_) {
return host->GetPreferredSize(GetContentsSizeBounds(host));
}
gfx::Size result;
bool has_child = false;
for (const View* child : host->children()) {
if (!child->GetProperty(kViewIgnoredByLayoutKey)) {
has_child = true;
result.SetToMax(child->GetMinimumSize());
}
}
// For backwards compatibility, do not include insets if there are no
// children.
if (has_child && include_insets_) {
const gfx::Insets insets = host->GetInsets();
result.Enlarge(insets.width(), insets.height());
}
return result;
}
int FillLayout::GetPreferredHeightForWidth(const View* host, int width) const {
DCHECK_EQ(host_view(), host);
const gfx::Insets insets = host->GetInsets();
width -= insets.width();
int height = 0;
for (const View* child : host->children()) {
if (!child->GetProperty(kViewIgnoredByLayoutKey)) {
height =
std::max(height, insets.height() + child->GetHeightForWidth(width));
}
}
return height;
}
SizeBounds FillLayout::GetContentsSizeBounds(const View* host) const {
return host->bounds().IsEmpty()
? SizeBounds()
: SizeBounds(host->GetContentsBounds().size());
}
} // namespace views