aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/Container.h
blob: 926e395e9b0fcf30fea5a089fb0d002897c2216a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once
#include "ContentControl.h"

#include "cru/ui/render/BorderRenderObject.h"

namespace cru::ui::controls {
class CRU_UI_API Container : public ContentControl {
  static constexpr StringView control_type = u"Container";

 protected:
  Container();

 public:
  CRU_DELETE_COPY(Container)
  CRU_DELETE_MOVE(Container)

  ~Container() override;

 public:
  String GetControlType() const final { return control_type.ToString(); }

  render::RenderObject* GetRenderObject() const override;

 private:
  std::unique_ptr<render::BorderRenderObject> render_object_;
};
}  // namespace cru::ui::controls