From 0f8f98b9005803ab154b43dcad0db1f292072a4d Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Mon, 17 Nov 2025 12:54:55 +0800 Subject: Refactor window host. --- include/cru/ui/controls/Popup.h | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 include/cru/ui/controls/Popup.h (limited to 'include/cru/ui/controls/Popup.h') diff --git a/include/cru/ui/controls/Popup.h b/include/cru/ui/controls/Popup.h deleted file mode 100644 index 7c57d257..00000000 --- a/include/cru/ui/controls/Popup.h +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once -#include "RootControl.h" - -#include "cru/platform/gui/Base.h" - -#include - -namespace cru::ui::controls { -class CRU_UI_API Popup : public RootControl { - public: - static constexpr std::string_view kControlType = "Popup"; - - explicit Popup(Control* attached_control = nullptr); - - CRU_DELETE_COPY(Popup) - CRU_DELETE_MOVE(Popup) - - ~Popup() override; - - std::string GetControlType() const override { return std::string(kControlType); } -}; -} // namespace cru::ui::controls -- cgit v1.2.3