blob: 2b11e0c633b4bd6d2ab666ef4fd77b6cdd51a8de (
plain)
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
|
/*
* Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef OverlayWidget_h
#define OverlayWidget_h
#include "PlayerButton.h"
#include "PlayerLabel.h"
#include <QSlider>
class OverlayWidget : public QWidget {
Q_OBJECT
public:
OverlayWidget(QWidget* parent = 0);
~OverlayWidget();
void setDuration(int);
void setPosition(int);
void setVolume(int);
void mousePressEvent(QMouseEvent*);
void onPlayerStopped();
void onPlayerError();
void onEndOfMedia();
void onBufferingMedia();
void onBufferedMedia();
private:
QString timeToString(int);
void applyStyleSheet();
private slots:
void onControlClicked();
void onSliderMoved(int);
void onSoundClicked();
void onCloseClicked();
void onVolumeSliderReleased();
void onVolumeSliderMoved(int);
void onTimerTimeout();
public slots:
void showFullScreen();
signals:
void controlClicked(bool);
void sliderMoved(int);
void closeClicked();
void muted(bool);
void volumeChanged(int);
private:
PlayerButton* m_controlButton;
bool m_isPaused;
QSlider* m_progressSlider;
QLabel* m_positionLabel;
QLabel* m_durationLabel;
PlayerButton* m_soundButton;
PlayerButton* m_closeButton;
QSlider* m_volumeSlider;
bool m_isMuted;
QIcon m_playIcon;
QIcon m_pauseIcon;
QIcon m_soundOnIcon;
QIcon m_soundOffIcon;
QTimer* m_hideWidgetTimer;
PlayerLabel* m_playerLabel;
};
#endif /* OverlayWidget_h */
|