25#ifndef TGUI_BITMAP_BUTTON_HPP
26#define TGUI_BITMAP_BUTTON_HPP
28#include <TGUI/Widgets/Button.hpp>
32TGUI_MODULE_EXPORT
namespace tgui
37 class TGUI_API BitmapButton :
public Button
41 using Ptr = std::shared_ptr<BitmapButton>;
42 using ConstPtr = std::shared_ptr<const BitmapButton>;
53 BitmapButton(
const char* typeName =
StaticWidgetType,
bool initRenderer =
true);
68 BitmapButton& operator=(const BitmapButton&);
73 BitmapButton& operator=(BitmapButton&&) noexcept;
89 TGUI_NODISCARD static BitmapButton::
Ptr copy(const BitmapButton::
ConstPtr& button);
138 TGUI_NODISCARD std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers) const override;
143 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
148 void updateSize() override;
153 void initComponentsBitmapButton();
158 void updateTextPosition() override;
171 void recalculateGlyphSize();
176 priv::dev::StyleProperty<
Texture> icon;
179 std::shared_ptr<priv::dev::ImageComponent> m_imageComponent;
181 float m_relativeGlyphHeight = 0;
Class to store the position or size of a widget.
Definition Layout.hpp:323
Wrapper class to store strings.
Definition String.hpp:96
Texture wrapper that internally reuses resources when multiple Texture objects are loaded from the sa...
Definition Texture.hpp:57
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38