?? bitmaptile.h
字號(hào):
////////////////////////////////////////////////////////////////////////
//
// BitmapTile.h
//
// Copyright (c) 2003 Nokia Mobile Phones Ltd. All rights reserved.
//
////////////////////////////////////////////////////////////////////////
#ifndef __BITMAPTILE_H
#define __BITMAPTILE_H
#include "RenderableFactory.h"
////////////////////////////////////////////////////////////////////////
class CBitmapTile : public CRenderable
{
public:
static CBitmapTile* NewL(CFbsBitmap& aImage);
~CBitmapTile();
public:
void Render(const TPoint& aOrigin,const TRect& aScreenRect,CFbsBitGc* aCallerGc) const;
private:
void ConstructL(CFbsBitmap& aImage);
private:
CFbsBitmap* iImage;
TRect iRect;
TSize iSize;
};
////////////////////////////////////////////////////////////////////////
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -