diff options
author | crupest <crupest@outlook.com> | 2020-12-25 14:43:19 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-12-25 14:43:19 +0800 |
commit | a14704fbd9b9fb377b7009a9fbe641a9b8d0fdfb (patch) | |
tree | 7ee33e1d51f15841ee908ec16b937985f7d9be96 /src/ui/style/Styler.cpp | |
parent | d23cdd9c6f2fbec1329c704bde7e183b5ef07e2e (diff) | |
download | cru-a14704fbd9b9fb377b7009a9fbe641a9b8d0fdfb.tar.gz cru-a14704fbd9b9fb377b7009a9fbe641a9b8d0fdfb.tar.bz2 cru-a14704fbd9b9fb377b7009a9fbe641a9b8d0fdfb.zip |
...
Diffstat (limited to 'src/ui/style/Styler.cpp')
-rw-r--r-- | src/ui/style/Styler.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ui/style/Styler.cpp b/src/ui/style/Styler.cpp index 823ac718..da3a2247 100644 --- a/src/ui/style/Styler.cpp +++ b/src/ui/style/Styler.cpp @@ -1,4 +1,9 @@ #include "cru/ui/style/Styler.hpp" + +#include "../Helper.hpp" +#include "cru/common/ClonablePtr.hpp" +#include "cru/platform/gui/Cursor.hpp" +#include "cru/platform/gui/UiApplication.hpp" #include "cru/ui/controls/Control.hpp" #include "cru/ui/controls/IBorderControl.hpp" #include "cru/ui/style/ApplyBorderStyleInfo.hpp" @@ -12,4 +17,13 @@ void BorderStyler::Apply(controls::Control *control) const { border_control->ApplyBorderStyle(style_); } } + +ClonablePtr<CursorStyler> CursorStyler::Create( + platform::gui::SystemCursorType type) { + return Create(GetUiApplication()->GetCursorManager()->GetSystemCursor(type)); +} + +void CursorStyler::Apply(controls::Control *control) const { + control->SetCursor(cursor_); +} } // namespace cru::ui::style |