aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/render/flex_layout_render_object.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-05-24 01:40:02 +0800
committercrupest <crupest@outlook.com>2020-05-24 01:40:02 +0800
commitd86a71f79afe0e4dac768f61d6bff690567aca5b (patch)
tree4957e9a64c77680deb07201fbd879bf036616dae /include/cru/ui/render/flex_layout_render_object.hpp
parentf3a8fd608a9776ef0a5f547da918a32cf6074060 (diff)
downloadcru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.gz
cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.bz2
cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.zip
...
Diffstat (limited to 'include/cru/ui/render/flex_layout_render_object.hpp')
-rw-r--r--include/cru/ui/render/flex_layout_render_object.hpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/include/cru/ui/render/flex_layout_render_object.hpp b/include/cru/ui/render/flex_layout_render_object.hpp
deleted file mode 100644
index 849c1a0d..00000000
--- a/include/cru/ui/render/flex_layout_render_object.hpp
+++ /dev/null
@@ -1,42 +0,0 @@
-#pragma once
-#include "layout_render_object.hpp"
-
-namespace cru::ui::render {
-class FlexLayoutRenderObject : public LayoutRenderObject<FlexChildLayoutData> {
- public:
- FlexLayoutRenderObject() = default;
- FlexLayoutRenderObject(const FlexLayoutRenderObject& other) = delete;
- FlexLayoutRenderObject& operator=(const FlexLayoutRenderObject& other) =
- delete;
- FlexLayoutRenderObject(FlexLayoutRenderObject&& other) = delete;
- FlexLayoutRenderObject& operator=(FlexLayoutRenderObject&& other) = delete;
- ~FlexLayoutRenderObject() override = default;
-
- FlexDirection GetFlexDirection() const { return direction_; }
- void SetFlexDirection(FlexDirection direction) {
- direction_ = direction;
- InvalidateLayout();
- }
-
- FlexMainAlignment GetContentMainAlign() const { return content_main_align_; }
- void SetContentMainAlign(FlexMainAlignment align) {
- content_main_align_ = align;
- InvalidateLayout();
- }
-
- FlexCrossAlignment GetItemCrossAlign() const { return item_cross_align_; }
- void SetItemCrossAlign(FlexCrossAlignment align) {
- item_cross_align_ = align;
- InvalidateLayout();
- }
-
- protected:
- Size OnMeasureContent(const Size& available_size) override;
- void OnLayoutContent(const Rect& content_rect) override;
-
- private:
- FlexDirection direction_ = FlexDirection::Horizontal;
- FlexMainAlignment content_main_align_ = FlexMainAlignment::Start;
- FlexCrossAlignment item_cross_align_ = FlexCrossAlignment::Center;
-};
-} // namespace cru::ui::render