-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwidget.h
More file actions
41 lines (27 loc) · 702 Bytes
/
widget.h
File metadata and controls
41 lines (27 loc) · 702 Bytes
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
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QStandardItemModel>
#include <QMediaPlayer>
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
public:
explicit Widget(QWidget *parent = 0);
~Widget();
private slots:
void on_volumedial_valueChanged(int value);
void on_kissButton_clicked();
void on_rathumakaraButton_clicked();
void on_siyathaButton_clicked();
void on_nethButton_clicked();
void on_rhythmworldButton_clicked();
void on_lakhandaButton_clicked();
private:
Ui::Widget *ui;
QMediaPlayer *m_player; // Track player
};
#endif // WIDGET_H