diff options
author | crupest <crupest@outlook.com> | 2021-03-13 17:40:18 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-03-13 17:40:18 +0800 |
commit | 7703063a5816b089483e78ccd74bb9902ccfbea8 (patch) | |
tree | b4b0fd45eb6a89831921d6b78c322e6aa882c239 /include/cru/ui/render | |
parent | 49dfb2bc9f965b398aa12e711148696d28443eaf (diff) | |
download | cru-7703063a5816b089483e78ccd74bb9902ccfbea8.tar.gz cru-7703063a5816b089483e78ccd74bb9902ccfbea8.tar.bz2 cru-7703063a5816b089483e78ccd74bb9902ccfbea8.zip |
...
Diffstat (limited to 'include/cru/ui/render')
-rw-r--r-- | include/cru/ui/render/ScrollBar.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/cru/ui/render/ScrollBar.hpp b/include/cru/ui/render/ScrollBar.hpp index 7cfd2576..3293e9d0 100644 --- a/include/cru/ui/render/ScrollBar.hpp +++ b/include/cru/ui/render/ScrollBar.hpp @@ -3,6 +3,7 @@ #include "cru/common/Base.hpp" #include "cru/common/Event.hpp" #include "cru/platform/graphics/Base.hpp" +#include "cru/platform/graphics/Geometry.hpp" #include "cru/platform/graphics/Painter.hpp" #include "cru/platform/gui/Cursor.hpp" #include "cru/platform/gui/UiApplication.hpp" @@ -102,6 +103,8 @@ class ScrollBar : public Object { protected: gsl::not_null<ScrollRenderObject*> render_object_; + std::unique_ptr<platform::graphics::IGeometry> arrow_geometry_; + private: Direction direction_; |