blob: ecb3ee95daa729ef804ffe230d964aa9bcf3add7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#pragma once
#include "cru/ui/components/Component.h"
#include "cru/ui/controls/Control.h"
#include "cru/ui/controls/FlexLayout.h"
namespace cru::theme_builder {
class StyleRuleSetEditor : public ui::components::Component {
public:
StyleRuleSetEditor();
CRU_DELETE_COPY(StyleRuleSetEditor)
CRU_DELETE_MOVE(StyleRuleSetEditor)
~StyleRuleSetEditor() override;
public:
ui::controls::Control* GetRootControl() override { return main_layout_; }
private:
ui::controls::FlexLayout* main_layout_;
};
} // namespace cru::theme_builder
|