multimediafappview.h

来自「最新官方例子,图形,描述副,基本控件,通讯协议,等等,」· C头文件 代码 · 共 50 行

H
50
字号
#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 + =
减小字号Ctrl + -
显示快捷键?