From 74bb9cd27242b9320f99ff4d2b50c3051576cc14 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 8 Feb 2022 16:53:51 +0800 Subject: ... --- include/cru/ui/controls/ScrollView.hpp | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 include/cru/ui/controls/ScrollView.hpp (limited to 'include/cru/ui/controls/ScrollView.hpp') diff --git a/include/cru/ui/controls/ScrollView.hpp b/include/cru/ui/controls/ScrollView.hpp deleted file mode 100644 index 18a9bf97..00000000 --- a/include/cru/ui/controls/ScrollView.hpp +++ /dev/null @@ -1,32 +0,0 @@ -#pragma once -#include "ContentControl.hpp" -#include "cru/common/Base.hpp" -#include "cru/ui/render/RenderObject.hpp" -#include "cru/ui/render/ScrollRenderObject.hpp" - -#include -#include - -namespace cru::ui::controls { -class CRU_UI_API ScrollView : public ContentControl { - public: - static ScrollView* Create() { return new ScrollView(); } - - static constexpr StringView control_type = u"ScrollView"; - - ScrollView(); - - CRU_DELETE_COPY(ScrollView) - CRU_DELETE_MOVE(ScrollView) - - ~ScrollView() override = default; - - public: - String GetControlType() const override { return control_type.ToString(); } - - render::RenderObject* GetRenderObject() const override; - - private: - std::unique_ptr scroll_render_object_; -}; -} // namespace cru::ui::controls -- cgit v1.2.3