-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpointsindicator.hxx
48 lines (42 loc) · 1.87 KB
/
pointsindicator.hxx
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
#ifndef POINTSINDICATOR_HXX
#define POINTSINDICATOR_HXX
#include <QMap>
#include <QSvgWidget>
#include <QSoundEffect>
#include <QGuiApplication>
#include <QScreen>
#include <QTimer>
#include "global_params.hxx"
#include "framelever.hxx"
namespace EWRB
{
class PointsIndicator
{
private:
QWidget* _parent;
QSoundEffect* _indicator_sound = new QSoundEffect;
int y_interval_ = 0;
int _coords[2] = {0, 0};
const EWRB::PointsLever* _linked_lever = nullptr;
EWRB::PointsState _current_state = EWRB::PointsState::Normal;
QMap<EWRB::PointsState, QSvgWidget*> _svgs;
public:
PointsIndicator(EWRB::PointsLever* lever, QWidget* parent) : _linked_lever(lever), _parent(parent)
{
const Scaler* scaler_ = new Scaler;
y_interval_ = scaler_->scale_height(28);
_indicator_sound->setSource(QUrl::fromLocalFile(":/audio/audio/points_indicator.wav"));
_svgs[EWRB::PointsState::Normal] = new QSvgWidget(QString(":/svgs/svgs/PointIndicatorNorm.svg"), parent);
_svgs[EWRB::PointsState::Normal]->setFixedSize(scaler_->scale_width(15), scaler_->scale_height(15));
_svgs[EWRB::PointsState::Normal]->show();
_svgs[EWRB::PointsState::Reverse] = new QSvgWidget(QString(":/svgs/svgs/PointIndicatorReverse.svg"), parent);
_svgs[EWRB::PointsState::Reverse]->setFixedSize(scaler_->scale_width(15), scaler_->scale_height(15));
_svgs[EWRB::PointsState::Reverse]->hide();
}
void update(bool silent=false);
void PlaceAt(const int& x, const int& y);
void setState(EWRB::PointsState state){_current_state = state;}
EWRB::PointsState getState() const {return _current_state;}
};
};
#endif // POINTSINDICATOR_HXX