mpviewplugins/mpplaybackviewplugin/tsrc/unittest_mpplaybackview/stub/inc/mpplaybackwidget.h
changeset 48 af3740e3753f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mpviewplugins/mpplaybackviewplugin/tsrc/unittest_mpplaybackview/stub/inc/mpplaybackwidget.h	Wed Aug 18 09:46:20 2010 +0300
@@ -0,0 +1,65 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: Playback widget for Music Player playback view.
+*
+*/
+
+#ifndef MPPLAYBACKWIDGET_H
+#define MPPLAYBACKWIDGET_H
+
+#include <hbwidget.h>
+
+class MpPlaybackData;
+class HbStackedLayout;
+class QString;
+class HbTextItem;
+class HbProgressSlider;
+class HbLabel;
+class MpPlaybackDocumentLoader;
+class MpAlbumCoverWidget;
+
+class MpPlaybackWidget : public HbWidget
+{
+    Q_OBJECT
+
+public:
+
+    MpPlaybackWidget( MpPlaybackData *data, QGraphicsItem *parent=0 );
+    virtual ~MpPlaybackWidget();
+    void repeatChanged( bool);
+
+signals:
+
+    void setPlaybackPosition( int value );
+
+private:
+
+    MpPlaybackData           *mPlaybackData;        // Not own
+    MpPlaybackDocumentLoader *mDocumentLoader;      // Own
+
+    HbStackedLayout          *mLayout;              // Not own
+    HbLabel                  *mSongTitle;           // Not own
+    HbLabel                  *mArtistName;          // Not own
+    HbLabel                  *mAlbumName;           // Not own
+    MpAlbumCoverWidget       *mAlbumArt;            // Not own
+    HbProgressSlider         *mProgressBar;         // Not own
+    HbLabel                  *mRealAudioIndicator;  // Not own
+    HbLabel                  *mRepeatIndicator;     // Not own
+    bool                     mProgreesBarDragging;
+    int                      mDuration;
+
+    Q_DISABLE_COPY(MpPlaybackWidget)
+};
+
+#endif  // MPPLAYBACKWIDGET_H