Changed vkb window title
[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
15 class groove : public QWidget
16 {
17     Q_OBJECT;
18 public:
19     explicit groove(QWidget *parent = 0);
20
21 signals:
22
23 public slots:
24     void search();
25     void finishedS();
26     void changeS( QAction * action);
27     void play();
28     void stop();
29     void moreB();
30     void orientationChanged();
31     void performSearch(QString);
32 private slots:
33     void progressUpdate(int,qint64,qint64);
34     void addSongPlaylist();
35     void showOthers();
36 private:
37     sPlayer *player;
38     QMenuBar *mBar;
39     QPushButton *sMethod;
40     QStandardItemModel *model;
41     QLineEdit *lineEdit;
42     QTableView *resultView;
43     QPushButton *button;
44     bool portrait;
45     gscom *gs;
46 #if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
47     QMaemo5Rotator *rot;
48 #endif
49     playlist *pl;
50     grooveProgressBar *pd;
51
52 };
53
54 #endif // GROOVE_H