#pragma once #include "../properties/SelectPropertyEditor.h" #include "StylerEditor.h" namespace cru::theme_builder::components::stylers { class CursorStylerEditor : public StylerEditor { public: CursorStylerEditor(); ~CursorStylerEditor() override; public: ClonablePtr GetValue(); void SetValue(ui::style::CursorStyler* styler, bool trigger_change = true); void SetValue(const ClonablePtr& styler, bool trigger_change = true) { SetValue(styler.get(), trigger_change); } ClonablePtr GetStyler() override { return GetValue(); } private: properties::SelectPropertyEditor cursor_select_; }; } // namespace cru::theme_builder::components::stylers