videoplayback/inc/hbvideobaseplaybackview.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 23 Jun 2010 18:14:16 +0300
changeset 46 adbe7d5ba2f5
parent 28 c48470be1ba7
child 47 45e72b57a2fd
permissions -rw-r--r--
Revision: 201023 Kit: 2010125

/*
* 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:  MPX Video base playback view
*
*/

// Version : %version:  da1mmcf#17 %



// This file defines the API for .dll

#ifndef __HBVIDEOBASEPLAYBACKVIEW_H__
#define __HBVIDEOBASEPLAYBACKVIEW_H__

//  Include Files
#include <hbview.h>

//  Constants

//  Forward Declarations
class QTimer;
class RWindow;
class CMPXVideoViewWrapper;


//  Class Definitions

class HbVideoBasePlaybackView : public HbView
{
    Q_OBJECT

    public:
        HbVideoBasePlaybackView();
        virtual ~HbVideoBasePlaybackView();

    signals:
        void activatePreviousView();
        void tappedOnScreen();
        void pannedToRight();
        void pannedToLeft();

    public slots:
        virtual void closePlaybackView();

    protected slots:
        void handleClosePopupDialog();

    public:

        virtual void retrievePdlInformation();

        virtual void handleActivateView();

        virtual void handleDeactivateView();

        virtual void handlePluginError( int aError );

        /*
         *  Handle transition to the stopped state
         */
        virtual void handleStoppedState() = 0;

        virtual void doClosePlayer();

        //
        //  Function the derived classes must implement
        //
        virtual void handleSoftkeyBack() = 0;

        /*
         *  Handle Download State Change
         *  @param  aState  new state of the download
         */
        virtual void handlePdlStateChange( int aState ) = 0;

        virtual void handleBufferingState();

        virtual void issuePlayCommand();

        void initializeVideoPlaybackView();

        void showDialog( const QString& qString, bool closeView = true );

        virtual void handleClosePlaybackView();

        RWindow *getWindow();

        bool eventFilter( QObject *object, QEvent *event );

        void gestureEvent( QGestureEvent* event );

    protected: // data
        CMPXVideoViewWrapper                *mVideoMpxWrapper;

        QTimer                              *mTimerForClosingView;

        bool                                 mActivated;
        bool                                 mSyncClose;

    public:
        friend class CMPXVideoViewWrapper;
};

#endif  // __HBVIDEOBASEPLAYBACKVIEW_H__

// EOF