new file: Groove.pro
[groove] / groove.h
1 #ifndef GROOVE_H
2 #define GROOVE_H
3 #include <QtGui>
4 #include "gscom.h"
5 #include "splayer.h"
6 #include <QMenuBar>
7
8 class groove : public QWidget
9 {
10     Q_OBJECT;
11 public:
12     explicit groove(QWidget *parent = 0);
13
14 signals:
15
16 public slots:
17     void search();
18     void finishedS();
19     void changeS( QAction * action);
20     void play();
21     void startP();
22
23 private:
24     sPlayer *player;
25     QMenuBar *mBar;
26     QPushButton *sMethod;
27     QStandardItemModel *model;
28     QLineEdit *lineEdit;
29     QTableView *resultView;
30     QPushButton *button;
31     gscom *gs;
32
33 };
34
35 #endif // GROOVE_H