25#ifndef TGUI_CURSOR_HPP
26#define TGUI_CURSOR_HPP
28#include <TGUI/Config.hpp>
29#include <TGUI/Vector2.hpp>
31#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
37TGUI_MODULE_EXPORT
namespace tgui
80 static void setStyle(
Type type,
const std::uint8_t* pixels, Vector2u size, Vector2u hotspot);
Class that allows the cursor to be changed.
Definition Cursor.hpp:43
Type
List of available cursors.
Definition Cursor.hpp:50
@ SizeVertical
Vertical double arrow cursor.
Definition Cursor.hpp:63
@ Crosshair
Crosshair cursor.
Definition Cursor.hpp:64
@ Arrow
Arrow cursor (default)
Definition Cursor.hpp:51
@ SizeHorizontal
Horizontal double arrow cursor.
Definition Cursor.hpp:62
@ SizeLeft
Left arrow on Linux, horizontal double arrow cursor on Windows and macOS.
Definition Cursor.hpp:54
@ SizeBottom
Down arrow on Linux, vertical double arrow cursor on Windows and macOS.
Definition Cursor.hpp:57
@ SizeTopLeft
Top-left arrow on Linux, double arrow cursor going from top-left to bottom-right on Windows and macOS...
Definition Cursor.hpp:58
@ SizeBottomRight
Bottom-right arrow on Linux, double arrow cursor going from top-left to bottom-right on Windows and.
Definition Cursor.hpp:59
@ Help
Help cursor.
Definition Cursor.hpp:65
@ SizeTopRight
Top-right arrow on Linux, double arrow cursor going from bottom-left to top-right on Windows and macO...
Definition Cursor.hpp:61
@ Text
I-beam, cursor when hovering over a text field.
Definition Cursor.hpp:52
@ Hand
Pointing hand cursor.
Definition Cursor.hpp:53
@ SizeTop
Up arrow on Linux, vertical double arrow cursor on Windows and macOS.
Definition Cursor.hpp:56
@ SizeBottomLeft
Bottom-left arrow on Linux, double arrow cursor going from bottom-left to top-right on Windows and ma...
Definition Cursor.hpp:60
@ SizeRight
Right arrow on Linux, horizontal double arrow cursor on Windows and macOS.
Definition Cursor.hpp:55
@ NotAllowed
Action not allowed cursor.
Definition Cursor.hpp:66
static void resetStyle(Type type)
Changes the look of the cursor back to the default system cursors.
static void setStyle(Type type, const std::uint8_t *pixels, Vector2u size, Vector2u hotspot)
Changes how a specific cursor should look like.
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38