TGUI 1.8
Loading...
Searching...
No Matches
Cursor.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2025 Bruno Van de Velde (vdv_b@tgui.eu)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#ifndef TGUI_CURSOR_HPP
26#define TGUI_CURSOR_HPP
27
28#include <TGUI/Config.hpp>
29#include <TGUI/Vector2.hpp>
30
31#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
32 #include <cstdint>
33#endif
34
36
37TGUI_MODULE_EXPORT namespace tgui
38{
42 class TGUI_API Cursor
43 {
44 public:
45
68
80 static void setStyle(Type type, const std::uint8_t* pixels, Vector2u size, Vector2u hotspot);
81
87 static void resetStyle(Type type);
88 };
89
91}
92
94
95#endif // TGUI_CURSOR_HPP
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