-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayercontrols.cpp
120 lines (95 loc) · 3 KB
/
playercontrols.cpp
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include "playercontrols.h"
#include "the_player.h"
#include <QPushButton>
#include <QWidget>
#include <QLayout>
#include <QSlider>
#include <QMediaPlayer>
PlayerControls::PlayerControls(QWidget *parent) :QWidget(parent) {
QHBoxLayout* controlLayout = new QHBoxLayout();
controlLayout->setMargin(0);
controlLayout->setSpacing(3);
playButton->setIcon(QIcon(":icons/play.png"));
playButton->connect(playButton, SIGNAL(released()), this, SLOT(StateChange()));
stopButton->setIcon(QIcon(":icons/stop.png"));
stopButton->connect(stopButton, SIGNAL(released()), this, SLOT(StateChange1()));
fullscreenbutton->setIcon(QIcon(":icons/fullscreen.png"));
fullscreenbutton->connect(fullscreenbutton, SIGNAL(released()),this, SLOT(SizeChange()));
volumebutton->setIcon(QIcon(":icons/vol_m.png"));
volumebutton->connect(volumebutton, SIGNAL(released()), this, SLOT(volumeChange()));
volumebar->setMaximumWidth(100);
volumebar->setRange(0, 100);
volumebar->connect(volumebar, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int)));
controlLayout->addWidget(playButton);
controlLayout->addWidget(stopButton);
controlLayout->addWidget(fullscreenbutton);
controlLayout->addWidget(volumebutton);
controlLayout->addWidget(volumebar);
controlLayout->addStretch(1);
setLayout(controlLayout);
}
void PlayerControls::setState(QMediaPlayer::State state) {
playerState = state;
switch (state) {
case QMediaPlayer::StoppedState:
playButton->setIcon(QIcon(":icons/play.png"));
break;
case QMediaPlayer::PlayingState:
playButton->setIcon(QIcon(":icons/pause.png"));
break;
case QMediaPlayer::PausedState:
playButton->setIcon(QIcon(":icons/play.png"));
break;
}
}
QMediaPlayer::State PlayerControls::state() const {
return playerState;
}
void PlayerControls::StateChange() {
switch (playerState) {
case QMediaPlayer::StoppedState:
emit play();
break;
case QMediaPlayer::PausedState:
emit play();
break;
case QMediaPlayer::PlayingState:
emit pause();
break;
}
}
//dedicated to stop function
void PlayerControls::StateChange1() {
switch (playerState) {
case QMediaPlayer::StoppedState:
case QMediaPlayer::PausedState:
emit stop();
emit pause();
break;
case QMediaPlayer::PlayingState:
emit stop();
emit pause();
break;
}
}
void PlayerControls::volumeChange() {
emit toggleVolume(0-volume);
}
void PlayerControls::SizeChange() {
emit size(true);
}
void PlayerControls::setVolume(int v) {
if (v > 50) {
// high volume icon
volumebutton->setIcon(QIcon(":icons/vol_f.png"));
}
else if (v > 0) {
// low volume icon
volumebutton->setIcon(QIcon(":icons/vol_l.png"));
}
else {
// muted volume icon
volumebutton->setIcon(QIcon(":icons/vol_m.png"));
}
volume = v;
}