?? vrexfiledetails.h
字號:
/*
* ============================================================================
* Name : CVideoFileDetails from VRexFileDetails.h
* Part of : Video Example
* Created : 30/08/2006 by Forum Nokia
* Implementation notes:
* Version : 2.0
* Copyright: Nokia Corporation, 2006
* ============================================================================
*/
#ifndef __VIDEOFILEDETAILS_H__
#define __VIDEOFILEDETAILS_H__
#include <e32base.h>
class CVideoPlayerAdapter;
class CVideoFileDetailsDialog;
/**
* CVideoFileDetails class
* Contains the video clip file detailed information.
*/
class CVideoFileDetails : public CBase
{
public: // Constructors and destructor
/**
* C++ default constructor.
*/
CVideoFileDetails();
/**
* Destructor.
*/
virtual ~CVideoFileDetails();
private: // Data
HBufC* iTitle;
HBufC* iFileName;
HBufC* iUrl;
HBufC* iFormat;
HBufC* iCopyright;
TInt iResolutionWidth;
TInt iResolutionHeight;
TInt iBitrate;
TInt iSize;
TTime iTime;
TInt64 iDurationInSeconds;
TBool iAudioTrack;
TBool iVideoTrack;
public: // Friend classes
friend class CVideoPlayerAdapter;
friend class CVideoFileDetailsDialog;
};
#endif // _VIDEO_FILEDETAILS_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -