26#ifndef TGUI_PICTURE_HPP
27#define TGUI_PICTURE_HPP
30#include <TGUI/Widgets/ClickableWidget.hpp>
31#include <TGUI/Renderers/PictureRenderer.hpp>
44 typedef std::shared_ptr<Picture>
Ptr;
45 typedef std::shared_ptr<const Picture>
ConstPtr;
55 Picture(
const char* typeName =
"Picture",
bool initRenderer =
true);
124 using Widget::setSize;
166 void leftMouseReleased(
Vector2f pos)
override;
215 std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers)
const override;
221 void load(
const std::unique_ptr<DataIO::Node>& node,
const LoadingRenderersMap& renderers)
override;
227 bool updateTime(
Duration elapsedTime)
override;
235 return std::make_shared<Picture>(*
this);
244 bool m_ignoringMouseEvents =
false;
247 bool m_possibleDoubleClick =
false;
Base class for render targets.
Definition BackendRenderTarget.hpp:48
Wrapper for durations.
Definition Duration.hpp:52
Class to store the position or size of a widget.
Definition Layout.hpp:262
Definition PictureRenderer.hpp:37
Picture widget.
Definition Picture.hpp:41
bool canGainFocus() const override
Returns whether the widget can gain focus.
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
std::shared_ptr< const Picture > ConstPtr
Shared constant widget pointer.
Definition Picture.hpp:45
bool isIgnoringMouseEvents() const
Returns whether the widget is ignoring mouse events and letting them pass to the widgets behind it.
std::shared_ptr< Picture > Ptr
Shared widget pointer.
Definition Picture.hpp:44
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
PictureRenderer * getRenderer()
Returns the renderer, which gives access to functions that determine how the widget is displayed.
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
void draw(BackendRenderTargetBase &target, RenderStates states) const override
Draw the widget to a render target.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
Definition Picture.hpp:233
void setSize(const Layout2d &size) override
Changes the size of the picture.
static Picture::Ptr create(const Texture &texture, bool transparentTexture=false)
Creates a new picture widget.
PictureRenderer * getSharedRenderer()
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void ignoreMouseEvents(bool ignore=true)
Sets whether the widget should completely ignore mouse events and let them pass to the widgets behind...
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
static Picture::Ptr create()
Creates a new empty picture widget.
static Picture::Ptr copy(Picture::ConstPtr picture)
Makes a copy of another picture.
std::unique_ptr< DataIO::Node > save(SavingRenderersMap &renderers) const override
Saves the widget as a tree node in order to save it to a file.
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:58
Wrapper class to store strings.
Definition String.hpp:79
Definition Texture.hpp:49
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:36
States used for drawing.
Definition RenderStates.hpp:39