diff options
Diffstat (limited to 'src/theme_builder/components/MainWindow.hpp')
-rw-r--r-- | src/theme_builder/components/MainWindow.hpp | 6 |
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 |