X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=groove.h;h=d407c69532d9243976eef139af41984b00a15443;hb=c061ca406042df41ce1a9f640c218144fb1b2c5d;hp=2761070704177f0813ff96dc00fd83e8ba12df91;hpb=2023a504eae2a6023e99f4782a501b71455cdc7d;p=groove diff --git a/groove.h b/groove.h index 2761070..d407c69 100644 --- a/groove.h +++ b/groove.h @@ -3,7 +3,17 @@ #include #include "gscom.h" #include "splayer.h" +#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON) +#include "qmaemo5rotator.h" +#endif #include +#include "playlist.h" +#include "grooveprogressbar.h" +#include "topbar.h" +#include "vkb.h" +#include "bottombar.h" +//#include "mpgplayer.h" +#include "plistwin.h" class groove : public QWidget { @@ -18,9 +28,17 @@ 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: + //mpgplayer *mpg; + bottomBar *bBar; sPlayer *player; QMenuBar *mBar; QPushButton *sMethod; @@ -28,7 +46,13 @@ private: QLineEdit *lineEdit; QTableView *resultView; QPushButton *button; + bool portrait; gscom *gs; + pListWin *pwindow; +#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON) + QMaemo5Rotator *rot; +#endif + playlist *pl; };