26#ifndef TGUI_BACKEND_GLFW_HPP
27#define TGUI_BACKEND_GLFW_HPP
29#include <TGUI/Backend/Window/GLFW/BackendGuiGLFW.hpp>
31#if TGUI_BUILD_AS_CXX_MODULE
34 #include <TGUI/Backend/Window/Backend.hpp>
37#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
38 #include <unordered_map>
44using GLFWwindow =
struct GLFWwindow;
45using GLFWcursor =
struct GLFWcursor;
49TGUI_MODULE_EXPORT
namespace tgui
139 TGUI_NODISCARD GLFWcursor* createSystemCursor(
Cursor::Type type);
145 void updateMouseCursorStyle(
Cursor::Type type, GLFWcursor* cursor);
151 void updateShownMouseCursor(GLFWwindow* window,
Cursor::Type type);
157 TGUI_NODISCARD GLFWwindow* getAnyWindow()
const;
165 GLFWwindow* window =
nullptr;
169 std::unordered_map<BackendGui*, GuiResources> m_guiResources;
170 std::unordered_map<Cursor::Type, GLFWcursor*> m_mouseCursors;
Definition BackendGLFW.hpp:52
TGUI_NODISCARD String getClipboard() const override
Returns the contents of the clipboard.
void setMouseCursor(BackendGui *gui, Cursor::Type type) override
Changes the mouse cursor when the mouse is on top of the window to which the gui is attached.
void setMouseCursorStyle(Cursor::Type type, const std::uint8_t *pixels, Vector2u size, Vector2u hotspot) override
Changes the look of a certain mouse cursor by using a bitmap.
void setClipboard(const String &contents) override
Changes the contents of the clipboard.
TGUI_NODISCARD bool isKeyboardModifierPressed(Event::KeyModifier modifierKey) override
Checks the state for one of the modifier keys.
void detatchGui(BackendGui *gui) override
Informs the backend that a gui object is being destroyed.
~BackendGLFW() override
Destructor.
void resetMouseCursorStyle(Cursor::Type type) override
Changes the look of a certain mouse cursor back to the system theme.
void setGuiWindow(BackendGui *gui, GLFWwindow *window)
Informs the backend which window belongs to the gui.
Base class for the Gui.
Definition BackendGui.hpp:48
Base class for the backend.
Definition Backend.hpp:91
Type
List of available cursors.
Definition Cursor.hpp:51
Wrapper class to store strings.
Definition String.hpp:101
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:39
KeyModifier
Modifiers keys.
Definition Event.hpp:158