videoplayback/videoplaybackview/tsrc/testvideodisplayhandler/stub/inc/videoplaybackviewfiledetails.h
changeset 44 518105d52e45
child 66 adb51f74b890
equal deleted inserted replaced
42:17f382c040b1 44:518105d52e45
       
     1 /*
       
     2 * Copyright (c) 2009 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:  Video File Details (QT)
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version: 4 %
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef __VIDEOPLAYBACKVIEWFILEDETAILS__
       
    24 #define __VIDEOPLAYBACKVIEWFILEDETAILS__
       
    25 
       
    26 #include <qobject.h>
       
    27 #include "mpxhelixplaybackplugindefs.h"
       
    28 
       
    29 
       
    30 // 
       
    31 //  CLASS DECLARATION
       
    32 //
       
    33 class VideoPlaybackViewFileDetails : public QObject
       
    34 {
       
    35     public:  
       
    36         //
       
    37         //  Constructor
       
    38         //
       
    39         VideoPlaybackViewFileDetails();
       
    40         
       
    41         //
       
    42         //  Destructor.
       
    43         //
       
    44         virtual ~VideoPlaybackViewFileDetails();
       
    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          mDrmProtected;
       
    74         bool          mMultiItemPlaylist;
       
    75 
       
    76         int           mVideoHeight;
       
    77         int           mVideoWidth;
       
    78         int           mBitRate;
       
    79         int           mDuration;
       
    80 };
       
    81 
       
    82 #endif      // __VIDEOPLAYBACKVIEWFILEDETAILS__  
       
    83             
       
    84 // EOF