TGUI  0.10-beta
BackendSFML.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2022 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
26#ifndef TGUI_BACKEND_SFML_HPP
27#define TGUI_BACKEND_SFML_HPP
28
29#include <TGUI/Backend/Window/Backend.hpp>
30#include <TGUI/Backend/Window/SFML/BackendGuiSFML.hpp>
31#include <SFML/Window.hpp>
32#include <unordered_map>
33#include <map>
34
36
37namespace tgui
38{
39 class TGUI_API BackendSFML : public Backend
40 {
41 public:
42
51 void setGuiWindow(BackendGui* gui, sf::Window* window);
52
53
58 void attachGui(BackendGui* gui) override;
59
60
65 void detatchGui(BackendGui* gui) override;
66
67
76 void setMouseCursorStyle(Cursor::Type type, const std::uint8_t* pixels, Vector2u size, Vector2u hotspot) override;
77
78
85
86
93 void setMouseCursor(BackendGui* gui, Cursor::Type type) override;
94
95
100 void openVirtualKeyboard(const FloatRect& inputRect) override;
101
102
106 void closeVirtualKeyboard() override;
107
108
117
118
124 void setClipboard(const String& contents) override;
125
126
132 String getClipboard() const override;
133
134#ifdef TGUI_SYSTEM_ANDROID
143 std::unique_ptr<std::uint8_t[]> readFileFromAndroidAssets(const String& filename, std::size_t& fileSize) const override;
144#endif
145
147 protected:
148
150 // Helper function to create a system cursor
152 std::unique_ptr<sf::Cursor> createSystemCursor(Cursor::Type type);
153
154
156 // Helper function to update the mouse cursors on all attached guis
158 void updateMouseCursor(Cursor::Type type, std::unique_ptr<sf::Cursor> cursor);
159
160
162 // Helper function to update the mouse cursor on a window
164 void updateMouseCursor(sf::Window* window, Cursor::Type type);
165
166
168 protected:
169
170 struct GuiResources
171 {
172 sf::Window* window = nullptr;
173 Cursor::Type mouseCursor = Cursor::Type::Arrow;
174 };
175
176 std::unordered_map<BackendGui*, GuiResources> m_guis;
177 std::map<Cursor::Type, std::unique_ptr<sf::Cursor>> m_mouseCursors;
178 };
179
181}
182
184
185#endif // TGUI_BACKEND_SFML_HPP
Base class for the Gui.
Definition: BackendGui.hpp:45
Definition: BackendSFML.hpp:40
void setClipboard(const String &contents) override
Changes the contents of the clipboard.
bool isKeyboardModifierPressed(Event::KeyModifier modifierKey) override
Checks the state for one of the modifier keys.
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 setGuiWindow(BackendGui *gui, sf::Window *window)
Informs the backend which window belongs to the gui.
void resetMouseCursorStyle(Cursor::Type type) override
Changes the look of a certain mouse cursor back to the system theme.
String getClipboard() const override
Returns the contents of the clipboard.
void detatchGui(BackendGui *gui) override
Informs the backend that a gui object is being destroyed.
void openVirtualKeyboard(const FloatRect &inputRect) override
Opens the virtual keyboard on Android and iOS.
void attachGui(BackendGui *gui) override
Informs the backend that a new gui object has been created.
void closeVirtualKeyboard() override
Closes the virtual keyboard on Android and iOS.
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.
Base class for the backend.
Definition: Backend.hpp:86
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