1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_CONTROLS_RICH_CONTROLS_CONTAINER_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_CONTROLS_RICH_CONTROLS_CONTAINER_VIEW_H_
#include <string_view>
#include "base/memory/raw_ptr.h"
#include "components/content_settings/core/common/cookie_controls_enforcement.h"
#include "ui/base/interaction/element_identifier.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/base/models/image_model.h"
#include "ui/views/layout/flex_layout_types.h"
#include "ui/views/layout/flex_layout_view.h"
#include "ui/views/view_class_properties.h"
namespace views {
class ImageView;
class Label;
class StyledLabel;
} // namespace views
// A view that contains basic layout for a container with controls.
// *-------------------------------------------------------------------------*
// | Icon | Title | Controls (buttons, icons) |
// |-------------------------------------------------------------------------|
// | | Secondary label(s) | |
// *-------------------------------------------------------------------------*
class RichControlsContainerView : public views::FlexLayoutView {
METADATA_HEADER(RichControlsContainerView, views::FlexLayoutView)
public:
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kIcon);
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kEnforcedIcon);
RichControlsContainerView();
void SetIcon(const ui::ImageModel image);
void SetEnforcedIcon(CookieControlsEnforcement enforcement);
void SetTitle(std::u16string title);
views::Label* AddSecondaryLabel(std::u16string text);
views::StyledLabel* AddSecondaryStyledLabel(std::u16string text);
template <typename T>
T* AddControl(std::unique_ptr<T> control_view) {
control_view->SetProperty(views::kInternalPaddingKey,
control_view->GetInsets());
controls_width_ += control_view->GetPreferredSize().width();
return AddChildView(std::move(control_view));
}
int GetFirstLineHeight();
gfx::Size FlexRule(const views::View* view,
const views::SizeBounds& maximum_size) const;
// views::View:
gfx::Size CalculatePreferredSize(
const views::SizeBounds& available_size) const override;
// TODO(crbug.com/40281048): Remove; at least color, and possibly both of
// these, should instead be computed automatically from a single context value
// on the button.
void SetTitleTextStyleAndColor(int style, ui::ColorId color_id);
void SetIconImageSizeAndMargins(gfx::Size size, gfx::Insets margin);
std::u16string_view GetTitleForTesting() const;
const ui::ImageModel GetIconForTesting();
const ui::ImageModel GetEnforcedIconForTesting();
private:
virtual int GetMinBubbleWidth() const;
raw_ptr<views::ImageView> icon_ = nullptr;
raw_ptr<views::ImageView> enforced_icon_ = nullptr;
raw_ptr<views::Label> title_ = nullptr;
raw_ptr<views::View> labels_wrapper_ = nullptr;
// The sum of width of all control views in the right side of the row.
int controls_width_ = 0;
};
#endif // CHROME_BROWSER_UI_VIEWS_CONTROLS_RICH_CONTROLS_CONTAINER_VIEW_H_
|