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

📄 basicdrawingcontainer.h

📁 最新官方例子,图形,描述副,基本控件,通讯协议,等等,
💻 H
字号:
#ifndef BASICDRAWINGCONTAINER_H
#define BASICDRAWINGCONTAINER_H

// INCLUDES
#include <coecntrl.h>	// CCoeControl

/**
 *
 * @class	CBasicDrawingContainer BasicDrawingContainer1.h 
 * @brief	This is a container class for the BasicDrawing example application.
 * Through its Draw function some horizontal lines are rendered on the screen. They 
 * have different colors and widths. The example illustrates some of the key core concepts
 * to understanding graphics on Series 60.
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 * 
 */
class CBasicDrawingContainer : public CCoeControl
	{
public: // Construction and destruction
	static CBasicDrawingContainer* NewL(const TRect& aRect);
	static CBasicDrawingContainer* NewLC(const TRect& aRect);
	~CBasicDrawingContainer();

private:	// Functions from CCoeControl        
	void Draw(const TRect& aRect) const;
	
private:	// Construction
	void ConstructL(const TRect& aRect);        
	};

#endif	// BASICDRAWINGCONTAINER_H

// End of File

⌨️ 快捷键说明

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