aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/Popup.cpp
blob: 982aee38618fa8ddc1a827b19052363abb14b1eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "cru/ui/controls/Popup.hpp"

#include "cru/platform/gui/UiApplication.hpp"
#include "cru/ui/host/WindowHost.hpp"
#include "cru/ui/render/StackLayoutRenderObject.hpp"

#include <memory>

namespace cru::ui::controls {
Popup::Popup(Control* attached_control) : attached_control_(attached_control) {
  render_object_ = std::make_unique<render::StackLayoutRenderObject>();
  render_object_->SetAttachedControl(this);
  SetContainerRenderObject(render_object_.get());

  window_host_ = std::make_unique<host::WindowHost>(this);
}

Popup::~Popup() = default;
}  // namespace cru::ui::controls