deleted: Makefile
[groove] / groove.h
1 #ifndef GROOVE_H
2 #define GROOVE_H
3 #include <QtGui>
4 #include "gscom.h"
5 #include "splayer.h"
6 #if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
7 #include "qmaemo5rotator.h"
8 #endif
9 #include <QMenuBar>
10 #include "playlist.h"
11 #include "grooveprogressbar.h"
12 #include "topbar.h"
13 #include "vkb.h"
14 #include "bottombar.h"
15 //#include "mpgplayer.h"
16 #include "plistwin.h"
17
18 class groove : public QWidget
19 {
20     Q_OBJECT;
21 public:
22     explicit groove(QWidget *parent = 0);
23
24 signals:
25
26 public slots:
27     void search();
28     void finishedS();
29     void changeS( QAction * action);
30     void play();
31     void stop();
32     void moreB();
33     void orientationChanged();
34     void performSearch(QString);
35 private slots:
36     void progressUpdate(int,qint64,qint64);
37     void addSongPlaylist();
38     void showOthers();
39 private:
40     //mpgplayer *mpg;
41     bottomBar *bBar;
42     sPlayer *player;
43     QMenuBar *mBar;
44     QPushButton *sMethod;
45     QStandardItemModel *model;
46     QLineEdit *lineEdit;
47     QTableView *resultView;
48     QPushButton *button;
49     bool portrait;
50     gscom *gs;
51     pListWin *pwindow;
52 #if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
53     QMaemo5Rotator *rot;
54 #endif
55     playlist *pl;
56
57 };
58
59 #endif // GROOVE_H