28#include <TGUI/Loading/ThemeLoader.hpp>
29#include <TGUI/Renderers/WidgetRenderer.hpp>
33TGUI_MODULE_EXPORT
namespace tgui
43 using Ptr = std::shared_ptr<Theme>;
270 static std::map<
String,
String> m_rendererInheritanceParents;
272 static std::map<
String, std::map<
String,
String>> m_rendererInheritedGlobalProperties;
273 static std::shared_ptr<
Theme> m_defaultTheme;
Base class for theme loader implementations.
Definition ThemeLoader.hpp:47
Implicit converter for settable properties.
Definition ObjectConverter.hpp:46
Wrapper class to store strings.
Definition String.hpp:96
std::shared_ptr< const Theme > ConstPtr
Shared constant widget pointer.
Definition Theme.hpp:44
static std::shared_ptr< BaseThemeLoader > m_themeLoader
Theme loader which will do the actual loading.
Definition Theme.hpp:274
static std::map< String, String > getRendererDefaultSubwidgets(const String &widgetType)
Returns the defaulted subwidgets that a renderer has.
static std::shared_ptr< Theme > getDefault()
Returns a pointer to the theme class that widgets use by default.
std::map< String, std::shared_ptr< RendererData > > m_renderers
Maps ids to renderer datas.
Definition Theme.hpp:276
ObjectConverter getGlobalProperty(const String &property)
Returns the value of a global property in the theme.
static void addRendererInheritedGlobalProperty(const String &widgetType, const String &property, const String &globalProperty)
Inform the theme that a custom renderer has properties that can use a default value from the global p...
void replace(const Theme &otherTheme)
Replaced this theme with another one, while updating all connected widgets to the new renderers.
void load(const String &primary)
Changes the primary theme loader parameter.
std::map< String, ObjectConverter > m_globalProperties
Maps id to value.
Definition Theme.hpp:277
std::shared_ptr< Theme > Ptr
Shared widget pointer.
Definition Theme.hpp:43
std::shared_ptr< RendererData > getRenderer(const String &id)
Gets data for the renderers.
static void setDefault(const String &primary="")
Sets the theme class that widgets use by default.
void addRenderer(const String &id, std::shared_ptr< RendererData > renderer)
Manually adds a renderer data to the theme.
static void setThemeLoader(std::shared_ptr< BaseThemeLoader > themeLoader)
Changes the function that will load the widget theme data.
static std::shared_ptr< BaseThemeLoader > getThemeLoader()
Returns the function that is currently being used to load the widget theme data.
const String & getPrimary() const
Returns the primary theme loader parameter.
Theme(Theme &&) noexcept
Move constructor.
static Theme::Ptr create(const String &primary="")
Constructs a new theme, with an optional theme file to load.
static void addRendererInheritanceParent(const String &widgetType, const String &parentType)
Inform the theme that a custom renderer class inherits its properties from an existing renderer.
std::shared_ptr< RendererData > getRendererNoThrow(const String &id)
Gets data for the renderers.
static void addRendererDefaultSubwidget(const String &widgetType, const String &property, const String &propertyWidgetType)
Inform the theme that a custom renderer has subwidgets that need a default value.
bool removeRenderer(const String &id)
Manually removes a renderer to the theme.
static std::map< String, String > getRendererInheritedGlobalProperties(const String &widgetType)
Returns the properties which a renderer inherits from the global theme properties.
Theme(const String &primary="")
Constructs the theme class, with an optional theme file to load.
static String getRendererInheritanceParent(const String &widgetType)
Returns the parent type of a widget.
Theme(const Theme &)
Copy constructor.
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
Shared data used in renderer classes.
Definition WidgetRenderer.hpp:48