videoplayback/inc/mpxvideoplaybackviewfiledetails.h
changeset 0 96612d01cf9f
child 1 6711b85517b7
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     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:  Container for MPX Video File Details
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version: 9 %
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef __MPXVIDEOPLAYBACKVIEWFILEDETAILS__
       
    24 #define __MPXVIDEOPLAYBACKVIEWFILEDETAILS__
       
    25 
       
    26 #include "mpxhelixplaybackplugindefs.h"
       
    27 // 
       
    28 //  CLASS DECLARATION
       
    29 //
       
    30 NONSHARABLE_CLASS( CMPXVideoPlaybackViewFileDetails ) : public CBase
       
    31 {
       
    32     public:  
       
    33         //
       
    34         //  Constructors and destructor
       
    35         //
       
    36         static CMPXVideoPlaybackViewFileDetails* NewL();
       
    37         
       
    38         //
       
    39         //  Destructor.
       
    40         //
       
    41         virtual ~CMPXVideoPlaybackViewFileDetails();
       
    42         
       
    43         //
       
    44         //  Clear all file details
       
    45         //
       
    46         void ClearFileDetails();
       
    47 
       
    48     private:
       
    49         //
       
    50         //  By default Symbian 2nd phase constructor is private.
       
    51         //
       
    52         void ConstructL();
       
    53 
       
    54     public:    
       
    55         //
       
    56         // Data
       
    57         //
       
    58         HBufC*   iClipName;
       
    59         HBufC*   iTitle;
       
    60         HBufC*   iArtist;
       
    61         HBufC*   iMimeType;
       
    62 
       
    63         TMPXVideoMode  iPlaybackMode;
       
    64         TBool          iSeekable;
       
    65         TBool          iPausableStream;
       
    66         TBool          iAudioEnabled;
       
    67         TBool          iVideoEnabled;
       
    68         TBool          iPartialPlayback;
       
    69         TBool          iRNFormat;
       
    70         TBool          iTvOutConnected;
       
    71         TBool          iTvOutPlayAllowed;
       
    72         TBool          iDrmProtected;
       
    73 
       
    74         TInt           iVideoHeight;
       
    75         TInt           iVideoWidth;
       
    76         TInt           iBitRate;
       
    77         TUint32        iFourCCCode;
       
    78 
       
    79         TInt           iDuration;
       
    80 };
       
    81 
       
    82 #endif      // __MPXVIDEOPLAYBACKVIEWFILEDETAILS__  
       
    83 
       
    84             
       
    85 // EOF