diff options
Diffstat (limited to 'src/theme_builder/components/properties/FontPropertyEditor.h')
| -rw-r--r-- | src/theme_builder/components/properties/FontPropertyEditor.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/theme_builder/components/properties/FontPropertyEditor.h b/src/theme_builder/components/properties/FontPropertyEditor.h deleted file mode 100644 index d349f1f2..00000000 --- a/src/theme_builder/components/properties/FontPropertyEditor.h +++ /dev/null @@ -1,38 +0,0 @@ -#pragma once -#include "../Editor.h" -#include "cru/platform/graphics/Font.h" -#include "cru/ui/components/Input.h" -#include "cru/ui/controls/Control.h" -#include "cru/ui/controls/FlexLayout.h" -#include "cru/ui/controls/TextBlock.h" -#include "cru/ui/controls/TextBox.h" - -namespace cru::theme_builder::components::properties { -class FontPropertyEditor : public Editor { - public: - using PropertyType = std::shared_ptr<platform::graphics::IFont>; - - FontPropertyEditor(); - ~FontPropertyEditor() override; - - ui::controls::Control* GetRootControl() override; - - String GetLabelText() const { return label_.GetText(); } - void SetLabelText(String label) { label_.SetText(std::move(label)); } - - std::shared_ptr<platform::graphics::IFont> GetValue() const; - void SetValue(std::shared_ptr<platform::graphics::IFont> value, - bool trigger_change = true); - - private: - ui::controls::FlexLayout main_container_; - ui::controls::TextBlock label_; - ui::controls::FlexLayout right_container_; - ui::controls::FlexLayout font_family_container_; - ui::controls::TextBlock font_family_label_; - ui::controls::TextBox font_family_text_; - ui::controls::FlexLayout font_size_container_; - ui::controls::TextBlock font_size_label_; - ui::components::FloatInput font_size_input_; -}; -} // namespace cru::theme_builder::components::properties |
