New UI, Vkbd and unicode support
[groove] / groove.h
index 9a473c8..f29f337 100644 (file)
--- a/groove.h
+++ b/groove.h
@@ -3,8 +3,14 @@
 #include <QtGui>
 #include "gscom.h"
 #include "splayer.h"
+#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
 #include "qmaemo5rotator.h"
+#endif
 #include <QMenuBar>
+#include "playlist.h"
+#include "grooveprogressbar.h"
+#include "topbar.h"
+#include "vkb.h"
 
 class groove : public QWidget
 {
@@ -19,11 +25,14 @@ public slots:
     void finishedS();
     void changeS( QAction * action);
     void play();
-    void startP();
     void stop();
     void moreB();
     void orientationChanged();
-
+    void performSearch(QString);
+private slots:
+    void progressUpdate(int,qint64,qint64);
+    void addSongPlaylist();
+    void showOthers();
 private:
     sPlayer *player;
     QMenuBar *mBar;
@@ -34,7 +43,11 @@ private:
     QPushButton *button;
     bool portrait;
     gscom *gs;
+#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
     QMaemo5Rotator *rot;
+#endif
+    playlist *pl;
+    grooveProgressBar *pd;
 
 };