26#ifndef TGUI_BACKEND_GLFW_HPP
27#define TGUI_BACKEND_GLFW_HPP
29#include <TGUI/Backend/Window/Backend.hpp>
30#include <TGUI/Backend/Window/GLFW/BackendGuiGLFW.hpp>
31#include <unordered_map>
36using GLFWwindow =
struct GLFWwindow;
37using GLFWcursor =
struct GLFWcursor;
137 void updateMouseCursorStyle(
Cursor::Type type, GLFWcursor* cursor);
143 void updateShownMouseCursor(GLFWwindow* window,
Cursor::Type type);
149 GLFWwindow* getAnyWindow()
const;
157 GLFWwindow* window =
nullptr;
161 std::unordered_map<BackendGui*, GuiResources> m_guiResources;
162 std::unordered_map<Cursor::Type, GLFWcursor*> m_mouseCursors;
Definition: BackendGLFW.hpp:44
bool isKeyboardModifierPressed(Event::KeyModifier modifierKey) override
Checks the state for one of the modifier keys.
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.
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:45
Base class for the backend.
Definition: Backend.hpp:87
Type
List of available cursors.
Definition: Cursor.hpp:48
Wrapper class to store strings.
Definition: String.hpp:79
Namespace that contains all TGUI functions and classes.
Definition: AbsoluteOrRelativeValue.hpp:36
KeyModifier
Modifiers keys.
Definition: Event.hpp:156