aboutsummaryrefslogtreecommitdiff
path: root/src/theme_builder/components/MainWindow.h
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-05-15 14:15:31 +0800
committercrupest <crupest@outlook.com>2022-05-15 14:15:31 +0800
commit34a64e6ffefaab007578932ddbab931a25f1d56e (patch)
tree541fdb8279e829a129df62288d09916bf23c9200 /src/theme_builder/components/MainWindow.h
parent8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 (diff)
downloadcru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.gz
cru-34a64e6ffefaab007578932ddbab931a25f1d56e.tar.bz2
cru-34a64e6ffefaab007578932ddbab931a25f1d56e.zip
...
Diffstat (limited to 'src/theme_builder/components/MainWindow.h')
-rw-r--r--src/theme_builder/components/MainWindow.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/theme_builder/components/MainWindow.h b/src/theme_builder/components/MainWindow.h
deleted file mode 100644
index ede1c38f..00000000
--- a/src/theme_builder/components/MainWindow.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-#include "StyleRuleSetEditor.h"
-#include "cru/ui/components/Component.h"
-#include "cru/ui/controls/Button.h"
-#include "cru/ui/controls/FlexLayout.h"
-#include "cru/ui/controls/StackLayout.h"
-#include "cru/ui/controls/TextBlock.h"
-#include "cru/ui/controls/Window.h"
-
-namespace cru::theme_builder::components {
-class MainWindow : public ui::components::Component {
- public:
- MainWindow();
-
- CRU_DELETE_COPY(MainWindow)
- CRU_DELETE_MOVE(MainWindow)
-
- ~MainWindow() override;
-
- ui::controls::Control* GetRootControl() override { return &window_; }
-
- void Show();
-
- private:
- ui::controls::Window window_;
- ui::controls::FlexLayout main_layout_;
- ui::controls::StackLayout preview_layout_;
- ui::controls::Button preview_button_;
- ui::controls::TextBlock preview_button_text_;
- StyleRuleSetEditor style_rule_set_editor_;
-};
-} // namespace cru::theme_builder::components