-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathProgressBar.hpp
49 lines (40 loc) · 1.21 KB
/
ProgressBar.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
47
48
49
#ifndef GUI_PROGRESS_BAR_HPP
#define GUI_PROGRESS_BAR_HPP
#include "Widget.hpp"
#include "Utils/Box.hpp"
#include "Enums/Enums.hpp"
namespace gui
{
enum LabelPlacement
{
LabelNone, // Do no display the label
LabelOver, // Display the label over the progress bar
LabelOutside // Display the label outside the progress bar
};
/**
* This widget provides a horizontal progress bar.
* Passive widget: cannot be focused or trigger event
*/
class ProgressBar: public Widget
{
public:
/**
* @param length: bar length bar in pixels (Horizontal or Vertical, according to orientation)
* @param orientation: orientation of the progress bar (Horizontal or Vertical)
* @param labelPlacement: where to place the label (XXX%)
*/
ProgressBar(float length = 200.f, Orientation orientation = Horizontal, LabelPlacement labelPlacement = LabelOver);
/// [0..100]
void setValue(float value);
float getValue() const;
private:
void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
Box m_box;
Orientation m_orientation;
sf::Vertex m_bar[4];
sf::Text m_label;
LabelPlacement m_labelPlacement;
float m_value;
};
}
#endif // GUI_PROGRESS_BAR_HPP