videoplayback/hbvideoplaybackview/tsrc/teststatuspanecontrol/stub/inc/mpxvideoviewwrapper.h
changeset 35 3738fe97f027
parent 34 bbb98528c666
child 36 8aed59de29f9
equal deleted inserted replaced
34:bbb98528c666 35:3738fe97f027
     1 /*
       
     2 * Copyright (c) 2008 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:  MPX Video base playback view
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:  1 %
       
    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 
       
    32 
       
    33 #include "mpxvideoplaybackcontrol.hrh"
       
    34 
       
    35 //  Constants
       
    36 
       
    37 //  Forward Declarations
       
    38 class HbVideoBasePlaybackView;
       
    39 class QMPXVideoPlaybackViewFileDetails;
       
    40 
       
    41 
       
    42 //  Class Definitions
       
    43 
       
    44 class CMPXVideoViewWrapper : public CBase
       
    45 {
       
    46     public:
       
    47         static CMPXVideoViewWrapper* NewL( HbVideoBasePlaybackView* aView );
       
    48         virtual ~CMPXVideoViewWrapper();
       
    49 
       
    50         CMPXVideoViewWrapper( HbVideoBasePlaybackView* aView );        
       
    51         void ConstructL();
       
    52         
       
    53         void SetFileDetails(TBool aDefault);
       
    54 
       
    55     public:
       
    56         void HandleCommandL( TInt aCommand );
       
    57                              
       
    58         TBool IsLive();
       
    59         
       
    60         TBool IsPlaylist();
       
    61         
       
    62         TBool IsMultiItemPlaylist();
       
    63                
       
    64         void RequestMediaL();  
       
    65                         
       
    66         void ActivateClosePlayerActiveObject();
       
    67         
       
    68         void IssueVideoAppForegroundCmdL( TBool aForeground );
       
    69 
       
    70 
       
    71     public: // data
       
    72 
       
    73         HbVideoBasePlaybackView*             iView;
       
    74         TBool                                iMediaRequested;
       
    75         QMPXVideoPlaybackViewFileDetails*    iFileDetails;
       
    76         TBool                                iClosePlayerAO;
       
    77         TBool                                iForeground;
       
    78         
       
    79 };
       
    80 
       
    81 #endif  // __MPXVIDEOVIEWWRAPPER_H__
       
    82 
       
    83 // EOF