videoplayback/videoplaybackview/controlinc/videoplaybackfullscreencontrol.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 17 Sep 2010 08:30:05 +0300
changeset 62 0e1e938beb1a
parent 52 e3cecb93e76a
child 63 4707a0db12f6
permissions -rw-r--r--
Revision: 201035 Kit: 201037

/*
* 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#10 %



#ifndef VIDEOPLAYBACKFULLSCREENCONTROL_H_
#define VIDEOPLAYBACKFULLSCREENCONTROL_H_

#include <QObject>

#include <videoplaybackcontrol.hrh>
#include <mpxplaybackframeworkdefs.h>

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 );

        void resetControl();

    protected:
        VideoPlaybackControlsController* mController;
        HbWidget                 *mControl;
        TVideoPlaybackControls    mControlIndex;
        TUint                     mProperties;
};

#endif /*VIDEOPLAYBACKFULLSCREENCONTROL_H_*/