forked from gaworekkk/projekt-c-pwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Button.h
30 lines (22 loc) · 1003 Bytes
/
Button.h
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
#ifndef BUTTON_H
#define BUTTON_H
#include <SFML/Graphics.hpp>
class Button {
public:
Button(const sf::Vector2f& size, const sf::Vector2f& position, const sf::String& text, const sf::Font& font);
void draw(sf::RenderWindow& window);
void update(const sf::Vector2i& mousePos);
void setTexture(const std::string& textureFile, const std::string& hoverTextureFile); // Metoda ustawiania tekstury
bool isClicked(const sf::Vector2i& mousePos, const sf::Event::MouseButtonEvent& mouseEvent) const;
std::string getText() const; // Pobranie tekstu z przycisku
private:
sf::RectangleShape button; // Kształt przycisku
sf::Text buttonText; // Tekst wyświetlany na przycisku
sf::Color normalColor; // Kolor przycisku w normalnym stanie
sf::Color hoverColor; // Kolor przycisku w stanie "hover"
sf::Texture buttonTexture; // Pole tekstury
sf::Sprite buttonSprite; // Pole sprite
sf::Texture hoverTexture;
bool isHovered;
};
#endif