blob: 362172ca4aa47ecd36be372a70b34bddd7a5c6b1 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/bubble/footnote_container_view.h"
#include "cc/paint/paint_flags.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/native_theme/native_theme.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
#include "ui/views/layout/box_layout.h"
namespace views {
namespace {
// A solid color background where the bottom two corners are rounded.
class HalfRoundedRectBackground : public Background {
public:
explicit HalfRoundedRectBackground(SkColor color, float radius)
: radius_(radius) {
SetNativeControlColor(color);
}
~HalfRoundedRectBackground() override = default;
// Background:
void Paint(gfx::Canvas* canvas, View* view) const override {
cc::PaintFlags flags;
flags.setAntiAlias(true);
flags.setStyle(cc::PaintFlags::kFill_Style);
flags.setColor(get_color());
// Draw a rounded rect that spills outside of the clipping area, so that the
// rounded corners only show in the bottom 2 corners.
gfx::RectF spilling_rect(view->GetLocalBounds());
spilling_rect.set_y(spilling_rect.x() - radius_);
spilling_rect.set_height(spilling_rect.height() + radius_);
canvas->DrawRoundRect(spilling_rect, radius_, flags);
}
private:
float radius_;
DISALLOW_IMPLICIT_CONSTRUCTORS(HalfRoundedRectBackground);
};
} // namespace
FootnoteContainerView::FootnoteContainerView(const gfx::Insets& margins,
std::unique_ptr<View> child_view,
float corner_radius) {
SetLayoutManager(std::make_unique<BoxLayout>(
BoxLayout::Orientation::kVertical, margins, 0));
SetCornerRadius(corner_radius);
ResetBorder();
auto* child_view_ptr = AddChildView(std::move(child_view));
SetVisible(child_view_ptr->GetVisible());
}
FootnoteContainerView::~FootnoteContainerView() = default;
void FootnoteContainerView::SetCornerRadius(float corner_radius) {
corner_radius_ = corner_radius;
ResetBackground();
}
void FootnoteContainerView::OnThemeChanged() {
View::OnThemeChanged();
ResetBorder();
ResetBackground();
}
void FootnoteContainerView::ChildVisibilityChanged(View* child) {
DCHECK_EQ(1u, children().size());
SetVisible(child->GetVisible());
}
void FootnoteContainerView::ResetBackground() {
SkColor background_color = GetNativeTheme()->GetSystemColor(
ui::NativeTheme::kColorId_BubbleFooterBackground);
SetBackground(std::make_unique<HalfRoundedRectBackground>(background_color,
corner_radius_));
}
void FootnoteContainerView::ResetBorder() {
SetBorder(CreateSolidSidedBorder(1, 0, 0, 0,
GetNativeTheme()->ShouldUseDarkColors()
? gfx::kGoogleGrey900
: gfx::kGoogleGrey200));
}
BEGIN_METADATA(FootnoteContainerView)
METADATA_PARENT_CLASS(View)
END_METADATA()
} // namespace views