-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathSpriteButton.hpp
46 lines (34 loc) · 1.06 KB
/
SpriteButton.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef GUI_SPRITEBUTTON_HPP
#define GUI_SPRITEBUTTON_HPP
#include "Widget.hpp"
namespace gui
{
/**
* Push button linked to a sprite sheet
*/
class SpriteButton: public Widget
{
public:
SpriteButton(const sf::Texture& texture, const sf::String& label = "");
void setString(const sf::String& string);
const sf::String& getString() const;
void setFont(const sf::Font& font);
const sf::Font& getFont() const;
void setTextSize(size_t size);
void setTexture(const sf::Texture& texture);
void onStateChanged(State state) override;
void onMouseMoved(float x, float y) override;
void onMousePressed(float x, float y) override;
void onMouseReleased(float x, float y) override;
void onKeyPressed(const sf::Event::KeyEvent& key) override;
void onKeyReleased(const sf::Event::KeyEvent& key) override;
private:
void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
void press();
void release();
sf::Text m_text;
sf::Sprite m_background;
bool m_pressed;
};
}
#endif // GUI_SPRITEBUTTON_HPP