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