X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;ds=sidebyside;f=groove.h;h=046508384ebda871da4a677eda10641c42de3651;hb=refs%2Fheads%2FTest;hp=9a473c847c9600a414ad76eb957cda385a119f21;hpb=4359db0c4594f697e955c3bcfa5c0f1523682781;p=groove diff --git a/groove.h b/groove.h index 9a473c8..0465083 100644 --- a/groove.h +++ b/groove.h @@ -3,8 +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 "pwin.h" class groove : public QWidget { @@ -19,12 +28,20 @@ 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(); + void togglePlaylist(); + void showSettings(); private: + void resizeEvent(QResizeEvent *); + //mpgplayer *mpg; + bottomBar *bBar; sPlayer *player; QMenuBar *mBar; QPushButton *sMethod; @@ -34,7 +51,12 @@ private: QPushButton *button; bool portrait; gscom *gs; + pWin *pwindow; + QStackedWidget *stack; +#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON) QMaemo5Rotator *rot; +#endif + playlist *pl; };