UI bugfixes
[groove] / groove.h
index 3bb0000..325708d 100644 (file)
--- a/groove.h
+++ b/groove.h
@@ -3,10 +3,15 @@
 #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"
+#include "bottombar.h"
 
 class groove : public QWidget
 {
@@ -24,10 +29,13 @@ public slots:
     void stop();
     void moreB();
     void orientationChanged();
+    void performSearch(QString);
 private slots:
     void progressUpdate(int,qint64,qint64);
     void addSongPlaylist();
+    void showOthers();
 private:
+    bottomBar *bBar;
     sPlayer *player;
     QMenuBar *mBar;
     QPushButton *sMethod;
@@ -37,9 +45,10 @@ private:
     QPushButton *button;
     bool portrait;
     gscom *gs;
+#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
     QMaemo5Rotator *rot;
+#endif
     playlist *pl;
-    grooveProgressBar *pd;
 
 };