videoplayback/videoplaybackview/controlinc/videoplaybackprogressbar.h
changeset 44 518105d52e45
child 49 824471cb468a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videoplayback/videoplaybackview/controlinc/videoplaybackprogressbar.h	Thu Jul 08 13:05:19 2010 +0300
@@ -0,0 +1,77 @@
+/*
+* 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:  Implementation of VideoPlaybackProgressBar
+*
+*/
+
+// Version : %version: da1mmcf#15 %
+
+
+
+#ifndef VIDEOPLAYBACKPROGRESSBAR_H_
+#define VIDEOPLAYBACKPROGRESSBAR_H_
+
+#include <QObject>
+#include <mpxplaybackframeworkdefs.h>
+
+class QTimer;
+class HbProgressSlider;
+class VideoPlaybackViewFileDetails;
+class VideoPlaybackControlsController;
+
+class VideoPlaybackProgressBar : public QObject
+{
+    Q_OBJECT
+
+    public:
+        VideoPlaybackProgressBar( VideoPlaybackControlsController* controller );
+        virtual ~VideoPlaybackProgressBar();
+        void initialize();
+        void updateWithFileDetails( VideoPlaybackViewFileDetails* details );
+        void updateState( TMPXPlaybackState state );
+
+    public:
+        void durationChanged( int duration );
+        void positionChanged( int position );
+
+    private slots:
+        void handleSliderPressed();
+        void handleSliderMoved( int value );
+        void handleSliderReleased();
+        void handleSeekingTimeout();
+
+    private:
+        QString valueToReadableFormat( int value );
+        void updatePostion( int position );
+        void setEnableProgressSlider( bool enable );
+
+    private:
+        VideoPlaybackControlsController *mController;
+        HbProgressSlider                    *mProgressSlider;
+
+        int     mDuration;
+        int     mDraggingPosition;
+        int     mSetPosition;
+
+        bool    mNeedToResumeAfterSetPosition;
+        bool    mInitialized;
+        bool    mSliderDragging;
+        bool    mLongTimeFormat;
+        bool    mLiveStreaming;
+
+        QTimer *mSeekingTimer;
+};
+
+#endif /*VIDEOPLAYBACKPROGRESSBAR_H_*/
+