⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vrexfiledetails.h

📁 symbian s60 有关音频的代码实例,供参考
💻 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 + -