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

📄 imagemanipappview.h

📁 鲜为人知的symbian s60 2rd图形图像处理源代码
💻 H
字号:
#ifndef IMAGEMANIPAPPVIEW_H
#define IMAGEMANIPAPPVIEW_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	CImageManipView ImageManipAppView.h
* @brief	This class acts as a view for displaying an image manipulated
* by the Series 60 Multimedia Server classes.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
*
*/
class CImageManipAppView : public CCoeControl
	{
public:	// Construction/destruction.
	static CImageManipAppView* NewL(const TRect& aRect, MImageModel& aImageModel);
	static CImageManipAppView* NewLC(const TRect& aRect, MImageModel& aImageModel);
	virtual ~CImageManipAppView();

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

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

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

private:	// Data.
	MImageModel& iImageModel;
};



#endif

⌨️ 快捷键说明

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