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

📄 ndgrid.h

📁 symbian 二版本的自定义控件
💻 H
字号:
#ifndef _NDGRID_H_
#define _NDGRID_H_
#include <fbs.h>
#include <e32base.h>
#include <coedef.h>
#include <w32std.h>
#include <badesca.h>
class CNDGrid:public CBase
{
public:
	//构造函数
	CNDGrid();
	void ConstructL(CDesC16ArrayFlat* aTextArray,RPointerArray<CFbsBitmap>* aIconArray);
	//析构函数
	~CNDGrid();
	//绘制Grid在指定GC上
	void Draw(CWindowGc &aGc);
	//获取当前选中索引
	TInt Selected();
	//按键处理
	TKeyResponse OfferKeyEventL(const TKeyEvent &aKeyEvent, TEventCode aType);
private:
	CDesC16ArrayFlat*				iTextArray;
	RPointerArray<CFbsBitmap>*		iIconArray;
	TInt							iX;
	TInt							iY;
};
#endif

⌨️ 快捷键说明

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