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