videoplayback/hbvideoplaybackview/tsrc/testmpxvideoplaybackcontrolbar/stub/inc/mpxvideoplaybackviewfiledetails.h
changeset 35 3738fe97f027
child 24 7d93ee07fb27
equal deleted inserted replaced
34:bbb98528c666 35:3738fe97f027
       
     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:  MPX Video File Details (QT)
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:   1 %
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef __MPXVIDEOPLAYBACKVIEWFILEDETAILS__
       
    24 #define __MPXVIDEOPLAYBACKVIEWFILEDETAILS__
       
    25 
       
    26 #include <qobject.h>
       
    27 #include "mpxhelixplaybackplugindefs.h"
       
    28 
       
    29 
       
    30 // 
       
    31 //  CLASS DECLARATION
       
    32 //
       
    33 class QMPXVideoPlaybackViewFileDetails : public QObject
       
    34 {
       
    35     public:  
       
    36         //
       
    37         //  Constructor
       
    38         //
       
    39         QMPXVideoPlaybackViewFileDetails();
       
    40         
       
    41         //
       
    42         //  Destructor.
       
    43         //
       
    44         virtual ~QMPXVideoPlaybackViewFileDetails();
       
    45         
       
    46         //
       
    47         //  Clear all file details
       
    48         //
       
    49         void clearFileDetails();
       
    50 
       
    51     public:    
       
    52         //
       
    53         // Data
       
    54         //
       
    55         QString   mClipName;
       
    56         QString   mTitle;
       
    57         QString   mArtist;
       
    58         QString   mMimeType;
       
    59         QString   mDescription;
       
    60         QString   mLocation;
       
    61         QString   mCopyright;
       
    62         QString   mLanguage;
       
    63         QString   mKeywords;        
       
    64 
       
    65         TMPXVideoMode mPlaybackMode;
       
    66         bool          mSeekable;
       
    67         bool          mPausableStream;
       
    68         bool          mAudioEnabled;
       
    69         bool          mVideoEnabled;
       
    70         bool          mPartialPlayback;
       
    71         bool          mRNFormat;
       
    72         bool          mTvOutConnected;
       
    73         bool          mTvOutPlayAllowed;
       
    74         bool          mDrmProtected;
       
    75         bool          mMultiItemPlaylist;
       
    76 
       
    77         int           mVideoHeight;
       
    78         int           mVideoWidth;
       
    79         int           mBitRate;
       
    80         int           mDuration;
       
    81 };
       
    82 
       
    83 #endif      // __MPXVIDEOPLAYBACKVIEWFILEDETAILS__  
       
    84             
       
    85 // EOF