diff options
author | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
commit | 74bb9cd27242b9320f99ff4d2b50c3051576cc14 (patch) | |
tree | 744bac5799c593d1d6f81e7b09581bea626f2cde /src/theme_builder/components/StyleRuleSetEditor.hpp | |
parent | b90c398de829d1ba5329651d75bae82f5e4085fe (diff) | |
download | cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.gz cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.bz2 cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.zip |
...
Diffstat (limited to 'src/theme_builder/components/StyleRuleSetEditor.hpp')
-rw-r--r-- | src/theme_builder/components/StyleRuleSetEditor.hpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/theme_builder/components/StyleRuleSetEditor.hpp b/src/theme_builder/components/StyleRuleSetEditor.hpp deleted file mode 100644 index 8bf55229..00000000 --- a/src/theme_builder/components/StyleRuleSetEditor.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once -#include "cru/ui/components/Component.hpp" -#include "cru/ui/controls/Control.hpp" -#include "cru/ui/controls/FlexLayout.hpp" - -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 |