aboutsummaryrefslogtreecommitdiff
path: root/src/theme_builder/components/MainWindow.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-01-29 22:09:29 +0800
committercrupest <crupest@outlook.com>2022-01-29 22:09:29 +0800
commit592f3f3f25f00232234399f4c5f51318a3fa49d2 (patch)
tree9ff928062aab8598bbbd00aa243d234e80aa6406 /src/theme_builder/components/MainWindow.hpp
parenta2c2089c8d97b4910d4287c14c82e20d33366c24 (diff)
downloadcru-592f3f3f25f00232234399f4c5f51318a3fa49d2.tar.gz
cru-592f3f3f25f00232234399f4c5f51318a3fa49d2.tar.bz2
cru-592f3f3f25f00232234399f4c5f51318a3fa49d2.zip
...
Diffstat (limited to 'src/theme_builder/components/MainWindow.hpp')
-rw-r--r--src/theme_builder/components/MainWindow.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/theme_builder/components/MainWindow.hpp b/src/theme_builder/components/MainWindow.hpp
index fd7f7996..ef37b7a2 100644
--- a/src/theme_builder/components/MainWindow.hpp
+++ b/src/theme_builder/components/MainWindow.hpp
@@ -1,5 +1,8 @@
#pragma once
#include "cru/ui/components/Component.hpp"
+#include "cru/ui/controls/Button.hpp"
+#include "cru/ui/controls/FlexLayout.hpp"
+#include "cru/ui/controls/StackLayout.hpp"
#include "cru/ui/controls/Window.hpp"
namespace cru::theme_builder {
@@ -18,5 +21,8 @@ class MainWindow : public ui::components::Component {
private:
ui::controls::Window* window_;
+ ui::controls::FlexLayout* main_layout_;
+ ui::controls::StackLayout* preview_layout_;
+ ui::controls::Button* preview_button_;
};
} // namespace cru::theme_builder