📄 map.h
字号:
// Map.h: interface for the CMap class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MAP_H__CBD440F2_4B36_4D74_ABFD_17421718D47B__INCLUDED_)
#define AFX_MAP_H__CBD440F2_4B36_4D74_ABFD_17421718D47B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "e32base.h"
#include "fbs.h"
#include "W32STD.H"
#include "Data.H"
#include "bitdev.h"
#include "bitstd.h"
class CMap : public CBase
{
public:
CMap(CData* aData,TInt aW,TInt aH,TDesC& aFileName,TInt aNum,TInt aLen);
virtual ~CMap();
void UpdateGc();
void InitMap();
void SetData(CData* aData);
private:
CFbsBitmap** iFace;
CFbsBitmapDevice* iDevice;
CFbsBitGc* iGc;
TInt iMapNum;
CData* iData;
TInt iW;
TInt iH;
TInt iLen;
TDes* iFileName;
public:
CFbsBitmap* iMap;
};
#endif // !defined(AFX_MAP_H__CBD440F2_4B36_4D74_ABFD_17421718D47B__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -