aboutsummaryrefslogtreecommitdiff
path: root/src/ui/layout_control.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/layout_control.hpp')
-rw-r--r--src/ui/layout_control.hpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/ui/layout_control.hpp b/src/ui/layout_control.hpp
deleted file mode 100644
index 53f53186..00000000
--- a/src/ui/layout_control.hpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#pragma once
-#include "pre.hpp"
-
-#include "control.hpp"
-
-namespace cru::ui {
-class LayoutControl : public Control {
- protected:
- LayoutControl() = default;
-
- public:
- LayoutControl(const LayoutControl& other) = delete;
- LayoutControl(LayoutControl&& other) = delete;
- LayoutControl& operator=(const LayoutControl& other) = delete;
- LayoutControl& operator=(LayoutControl&& other) = delete;
- ~LayoutControl() override;
-
- const std::vector<Control*>& GetChildren() const override final {
- return children_;
- }
-
- void AddChild(Control* control, int position);
-
- void RemoveChild(int position);
-
- protected:
- virtual void OnAddChild(Control* child, int position);
- virtual void OnRemoveChild(Control* child, int position);
-
- private:
- std::vector<Control*> children_;
-};
-} // namespace cru::ui