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>
36typedef struct GLFWwindow GLFWwindow;
37typedef struct GLFWcursor GLFWcursor;
144 void updateMouseCursorStyle(
Cursor::Type type, GLFWcursor* cursor);
150 void updateShownMouseCursor(GLFWwindow* window,
Cursor::Type type);
156 GLFWwindow* getAnyWindow()
const;
164 GLFWwindow* window =
nullptr;
168 std::unordered_map<BackendGui*, GuiResources> m_guis;
169 std::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.
void resetMouseCursorStyle(Cursor::Type type) override
Changes the look of a certain mouse cursor back to the system theme.
~BackendGLFW()
Destructor.
void attachGui(BackendGui *gui) override
Informs the backend that a new gui object has been created.
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:85
Type
List of available cursors.
Definition: Cursor.hpp:48
@ Arrow
Arrow cursor (default)
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