this will break all functionality for now
[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 #include "playlist.h"
9
10 class groove : public QWidget
11 {
12     Q_OBJECT;
13 public:
14     explicit groove(QWidget *parent = 0);
15
16 signals:
17
18 public slots:
19     void search();
20     void finishedS();
21     void changeS( QAction * action);
22     void play();
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     playlist *pl;
39
40 };
41
42 #endif // GROOVE_H