videoplayback/videoplaybackview/tsrc/testcontrolscontroller/stub/inc/mpxvideoviewwrapper.h
changeset 52 e3cecb93e76a
child 66 adb51f74b890
equal deleted inserted replaced
47:45e72b57a2fd 52:e3cecb93e76a
       
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Stub MPX Video Wrapper
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:  4 %
       
    19 
       
    20 
       
    21 
       
    22 // This file defines the API for .dll
       
    23 
       
    24 #ifndef __MPXVIDEOVIEWWRAPPER_H__
       
    25 #define __MPXVIDEOVIEWWRAPPER_H__
       
    26 
       
    27 //  Include Files
       
    28 
       
    29 #include <e32base.h>	// CBase
       
    30 #include <e32std.h>	 // TBuf
       
    31 #include <mpxplaybackframeworkdefs.h>
       
    32 
       
    33 #include "videoplaybackcontrol.hrh"
       
    34 
       
    35 //  Constants
       
    36 
       
    37 //  Forward Declarations
       
    38 class VideoBasePlaybackView;
       
    39 class VideoPlaybackViewFileDetails;
       
    40 
       
    41 
       
    42 //  Class Definitions
       
    43 
       
    44 class CMPXVideoViewWrapper : public CBase
       
    45 {
       
    46     public:
       
    47         static CMPXVideoViewWrapper* NewL( VideoBasePlaybackView* aView );
       
    48         virtual ~CMPXVideoViewWrapper();
       
    49 
       
    50         CMPXVideoViewWrapper( VideoBasePlaybackView* aView );        
       
    51         void ConstructL();
       
    52 
       
    53     public:
       
    54         void HandleCommandL( TInt aCommand );
       
    55                              
       
    56         void SetPropertyL( TMPXPlaybackProperty aProperty, TInt aValue );
       
    57 
       
    58         void UpdateVideoRect( TInt aX, TInt aY, TInt aWidth, TInt aHeight, TBool transitionEffect );
       
    59 
       
    60         TBool IsResumingPlaybackAfterTermination();
       
    61 
       
    62         
       
    63     public: // data
       
    64 
       
    65         VideoBasePlaybackView*         mView;
       
    66         TBool                            mMediaRequested;
       
    67         VideoPlaybackViewFileDetails*    mFileDetails;
       
    68         TBool                            mClosePlayerAO;
       
    69         TBool                            mForeground;
       
    70         int                              mProperty;
       
    71         int                              mCommandId;
       
    72 };
       
    73 
       
    74 #endif  // __MPXVIDEOVIEWWRAPPER_H__
       
    75 
       
    76 // EOF