From 091c0419a254a28f80963193b36bf0a7f30d6590 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 14 Feb 2022 00:28:51 +0800 Subject: ... --- .../components/properties/ColorPropertyEditor.h | 2 + .../properties/CornerRadiusPropertyEditor.h | 2 + .../components/properties/OptionalPropertyEditor.h | 28 ++++++ .../components/styler/BorderStylerEditor.cpp | 100 +++++++++++++++++++++ .../components/styler/BorderStylerEditor.h | 43 +++++++++ 5 files changed, 175 insertions(+) create mode 100644 src/theme_builder/components/properties/OptionalPropertyEditor.h create mode 100644 src/theme_builder/components/styler/BorderStylerEditor.cpp create mode 100644 src/theme_builder/components/styler/BorderStylerEditor.h (limited to 'src') diff --git a/src/theme_builder/components/properties/ColorPropertyEditor.h b/src/theme_builder/components/properties/ColorPropertyEditor.h index 7c7155ab..3ee0933b 100644 --- a/src/theme_builder/components/properties/ColorPropertyEditor.h +++ b/src/theme_builder/components/properties/ColorPropertyEditor.h @@ -13,6 +13,8 @@ class ColorPropertyEditor : public ui::components::Component { ~ColorPropertyEditor() override; public: + ui::controls::Control* GetRootControl() override { return &container_; } + String GetLabel() const { return label_.GetText(); } void SetLabel(String label) { label_.SetText(std::move(label)); } diff --git a/src/theme_builder/components/properties/CornerRadiusPropertyEditor.h b/src/theme_builder/components/properties/CornerRadiusPropertyEditor.h index de55cdd4..04de2adf 100644 --- a/src/theme_builder/components/properties/CornerRadiusPropertyEditor.h +++ b/src/theme_builder/components/properties/CornerRadiusPropertyEditor.h @@ -9,6 +9,8 @@ class CornerRadiusPropertyEditor : public ui::components::Component { CornerRadiusPropertyEditor(); ~CornerRadiusPropertyEditor() override; + ui::controls::Control* GetRootControl() override { return &container_; } + ui::CornerRadius GetCornerRadius() const { return corner_radius_; } void SetCornerRadius(const ui::CornerRadius& corner_radius); diff --git a/src/theme_builder/components/properties/OptionalPropertyEditor.h b/src/theme_builder/components/properties/OptionalPropertyEditor.h new file mode 100644 index 00000000..e343727f --- /dev/null +++ b/src/theme_builder/components/properties/OptionalPropertyEditor.h @@ -0,0 +1,28 @@ +#pragma once +#include "cru/ui/components/Component.h" +#include "cru/ui/controls/CheckBox.h" +#include "cru/ui/controls/FlexLayout.h" + +namespace cru::theme_builder::components::properties { +template +class OptionalPropertyEditor : public ui::components::Component { + public: + OptionalPropertyEditor() { + container_.AddChild(&check_box_); + container_.AddChild(editor_->GetRootControl()); + } + ~OptionalPropertyEditor() override { container_.RemoveFromParent(); } + + ui::controls::Control* GetRootControl() override { return &container_; } + + bool IsEnabled() const { return check_box_.IsChecked(); } + void SetEnabled(bool enabled) { check_box_.SetChecked(enabled); } + + TEditor* GetEditor() { return &editor_; } + + private: + ui::controls::FlexLayout container_; + ui::controls::CheckBox check_box_; + TEditor editor_; +}; +} // namespace cru::theme_builder::components::properties diff --git a/src/theme_builder/components/styler/BorderStylerEditor.cpp b/src/theme_builder/components/styler/BorderStylerEditor.cpp new file mode 100644 index 00000000..6c87ad32 --- /dev/null +++ b/src/theme_builder/components/styler/BorderStylerEditor.cpp @@ -0,0 +1,100 @@ +#include "BorderStylerEditor.h" +#include +#include "cru/common/ClonablePtr.h" +#include "cru/platform/graphics/Brush.h" +#include "cru/platform/graphics/Factory.h" +#include "cru/platform/gui/UiApplication.h" +#include "cru/ui/style/ApplyBorderStyleInfo.h" +#include "cru/ui/style/Styler.h" + +namespace cru::theme_builder::components::styler { +BorderStylerEditor::BorderStylerEditor() { + container_.AddChild(corner_radius_editor_.GetRootControl()); + container_.AddChild(thickness_editor_.GetRootControl()); + container_.AddChild(brush_editor_.GetRootControl()); + container_.AddChild(foreground_brush_editor_.GetRootControl()); + container_.AddChild(background_brush_editor_.GetRootControl()); + + // TODO: Add change listener. +} + +BorderStylerEditor::~BorderStylerEditor() { container_.RemoveFromParent(); } + +ClonablePtr BorderStylerEditor::GetStyler() { + auto graphics_factory = + platform::gui::IUiApplication::GetInstance()->GetGraphicsFactory(); + + ui::style::ApplyBorderStyleInfo border_style; + if (corner_radius_editor_.IsEnabled()) { + border_style.border_radius = + corner_radius_editor_.GetEditor()->GetCornerRadius(); + } + + if (thickness_editor_.IsEnabled()) { + border_style.border_thickness = + thickness_editor_.GetEditor()->GetThickness(); + } + + if (brush_editor_.IsEnabled()) { + border_style.border_brush = graphics_factory->CreateSolidColorBrush( + brush_editor_.GetEditor()->GetColor()); + } + + if (foreground_brush_editor_.IsEnabled()) { + border_style.foreground_brush = graphics_factory->CreateSolidColorBrush( + foreground_brush_editor_.GetEditor()->GetColor()); + } + + if (background_brush_editor_.IsEnabled()) { + border_style.background_brush = graphics_factory->CreateSolidColorBrush( + background_brush_editor_.GetEditor()->GetColor()); + } + + return ui::style::BorderStyler::Create(border_style); +} + +void BorderStylerEditor::SetStyler( + const ClonablePtr &styler) { + Expects(styler); + + auto border_style = styler->GetBorderStyle(); + corner_radius_editor_.SetEnabled(border_style.border_radius.has_value()); + if (border_style.border_radius.has_value()) { + corner_radius_editor_.GetEditor()->SetCornerRadius( + *border_style.border_radius); + } + + thickness_editor_.SetEnabled(border_style.border_thickness.has_value()); + if (border_style.border_thickness.has_value()) { + thickness_editor_.GetEditor()->SetThickness(*border_style.border_thickness); + } + + brush_editor_.SetEnabled(border_style.border_brush.has_value()); + if (border_style.border_brush.has_value()) { + brush_editor_.GetEditor()->SetColor( + std::dynamic_pointer_cast( + border_style.border_brush.value()) + ->GetColor()); + } + + foreground_brush_editor_.SetEnabled( + border_style.foreground_brush.has_value()); + if (border_style.foreground_brush.has_value()) { + foreground_brush_editor_.GetEditor()->SetColor( + std::dynamic_pointer_cast( + border_style.foreground_brush.value()) + ->GetColor()); + } + + background_brush_editor_.SetEnabled( + border_style.background_brush.has_value()); + + if (border_style.background_brush.has_value()) { + background_brush_editor_.GetEditor()->SetColor( + std::dynamic_pointer_cast( + border_style.background_brush.value()) + ->GetColor()); + } +} + +} // namespace cru::theme_builder::components::styler diff --git a/src/theme_builder/components/styler/BorderStylerEditor.h b/src/theme_builder/components/styler/BorderStylerEditor.h new file mode 100644 index 00000000..16ae64fb --- /dev/null +++ b/src/theme_builder/components/styler/BorderStylerEditor.h @@ -0,0 +1,43 @@ +#pragma once +#include "../properties/ColorPropertyEditor.h" +#include "../properties/CornerRadiusPropertyEditor.h" +#include "../properties/OptionalPropertyEditor.h" +#include "../properties/ThicknessPropertyEditor.h" +#include "cru/common/ClonablePtr.h" +#include "cru/common/Event.h" +#include "cru/ui/components/Component.h" +#include "cru/ui/controls/CheckBox.h" +#include "cru/ui/controls/FlexLayout.h" +#include "cru/ui/style/Styler.h" + +namespace cru::theme_builder::components::styler { +class BorderStylerEditor : public ui::components::Component { + public: + BorderStylerEditor(); + ~BorderStylerEditor() override; + + ui::controls::Control* GetRootControl() override { return nullptr; } + + ClonablePtr GetStyler(); + void SetStyler(const ClonablePtr& styler); + + IEvent>* ChangeEvent() { + return &change_event_; + } + + private: + ui::controls::FlexLayout container_; + properties::OptionalPropertyEditor + corner_radius_editor_; + properties::OptionalPropertyEditor + thickness_editor_; + properties::OptionalPropertyEditor + brush_editor_; + properties::OptionalPropertyEditor + foreground_brush_editor_; + properties::OptionalPropertyEditor + background_brush_editor_; + + Event> change_event_; +}; +} // namespace cru::theme_builder::components::styler -- cgit v1.2.3