Class Cursor
D class that wraps SDL_Cursor
which sets cursor appearance
Constructors
Name | Description |
this
(sdlCursor, isOwner, userRef)
|
Constructs a dsdl.Cursor from a vanilla SDL_Cursor* from bindbc-sdl
|
this
(surface, hotPosition)
|
Constructs a dsdl.Cursor from a dsdl.Surface , which wraps SDL_CreateColorCursor
|
Fields
Name | Type | Description |
sdlCursor
|
sdl.mouse.SDL_Cursor* | Internal SDL_Cursor pointer
|
Methods
Name | Description |
opEquals
(rhs)
|
Equality operator overload
|
set
()
|
Wraps SDL_SetCursor which sets the dsdl.Cursor to be the cursor
|
toHash
()
|
Gets the hash of the dsdl.Cursor
|
toString
()
|
Formats the dsdl.Cursor into its construction representation: "dsdl.Cursor(<sdlCursor>)"
|
Aliases
Name | Description |
systemArrow
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemCrosshair
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemHand
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemIBeam
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemNo
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemSizeAll
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemSizeNESW
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemSizeNS
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemSizeNWSE
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemSizeWE
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemWait
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|
systemWaitArrow
|
Retrieves one of the dsdl.Cursor system cursor presets from SDL_SYSTEM_CURSOR_* enumeration constants
|