diff -r 17f382c040b1 -r 518105d52e45 videoplayback/videoplaybackview/controlinc/videoplaybackfullscreencontrol.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videoplayback/videoplaybackview/controlinc/videoplaybackfullscreencontrol.h Thu Jul 08 13:05:19 2010 +0300 @@ -0,0 +1,108 @@ +/* +* 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 VideoPlaybackFullScreenControl +* +*/ + +// Version : %version: da1mmcf#9 % + + + +#ifndef VIDEOPLAYBACKFULLSCREENCONTROL_H_ +#define VIDEOPLAYBACKFULLSCREENCONTROL_H_ + +#include + +#include +#include + +class HbWidget; +class VideoPlaybackViewFileDetails; +class VideoPlaybackControlsController; + +class VideoPlaybackFullScreenControl : public QObject +{ + Q_OBJECT + + public: + VideoPlaybackFullScreenControl( VideoPlaybackControlsController* controller, + TVideoPlaybackControls index, + HbWidget* widget, + TUint controlproperties ); + + virtual ~VideoPlaybackFullScreenControl(); + + public: + + /** + * Set visibility of each control + */ + virtual void setVisibility( TMPXPlaybackState aState ); + + /** + * return control index + */ + TVideoPlaybackControls controlIndex(); + + /** + * set changed duration + */ + bool durationChanged( int duration ); + + /** + * set changed volume + */ + bool positionChanged( int position ); + + /** + * Set changed position + */ + bool aspectRatioChanged( int aspectRatio ); + + /** + * set changed volume + */ + bool setDownloadSize( int size ); + + /** + * set changed state + */ + void updateState( TMPXPlaybackState state ); + + /* + * UpdateDownloadPosition + * updates the download ratio on the progress bar + */ + bool updateDownloadPosition( int size ); + + /* + * Update the controls with the file details + */ + virtual void updateControlsWithFileDetails( VideoPlaybackViewFileDetails *details ); + + virtual void setVisible( bool visible ); + + virtual bool isVisible(); + + virtual void updateControlProperties( TUint properties ); + + protected: + VideoPlaybackControlsController* mController; + HbWidget *mControl; + TVideoPlaybackControls mControlIndex; + TUint mProperties; +}; + +#endif /*VIDEOPLAYBACKFULLSCREENCONTROL_H_*/ +