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

📄 multimediafappview.h

📁 一个详细记录symbian媒体播放的源代码
💻 H
字号:
#ifndef MULTIMEDIAFAPPVIEW_H
#define MULTIMEDIAFAPPVIEW_H

// INCLUDES

// System includes
#include <coecntrl.h> // CCoeControl

// FORWARD DECLARATIONS
class MImageModel; // used to gain access to image stored in engine/adapter

// CLASS DECLARATION

/**
*
* @class	CMultiMediaFView MultiMediaFAppView.h
* @brief	This class acts as a view for displaying an image manipulated
* by the Series 60 Multimedia Framework classes.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
*
*/


class CMultiMediaFAppView : public CCoeControl
    {
    public:	// Construction/Destruction
		static CMultiMediaFAppView* NewL(const TRect& aRect, MImageModel& aImageModel);
		static CMultiMediaFAppView* NewLC(const TRect& aRect, MImageModel& aImageModel);
		virtual ~CMultiMediaFAppView();

    public:
		void RedrawAppView() const; // called by AppUi to inform view to redraw

    protected:	// From CCoeControl
		void Draw(const TRect& aRect) const;

    private:	// Construction
		CMultiMediaFAppView(MImageModel& aImageModel);
		void ConstructL(const TRect& aRect);

    private:	// Data
		MImageModel& iImageModel;
    };



#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -