?? doublebufferedarea.h
字號:
#ifndef DOUBLEBUFFEREDAREA_H
#define DOUBLEBUFFEREDAREA_H
#include <e32base.h>
#include <gdi.h>
//Forward Declarations
class CFbsBitmap;
class CFbsBitmapDevice;
class CFbsBitGc;
/**
*
* @class CDoubleBufferedArea DoubleBufferedArea.h
* @brief This class provides all the components for creating offscreen areas for
* double buffered drawing.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CDoubleBufferedArea : public CBase
{
public:
static CDoubleBufferedArea* NewL(TSize aSize, TDisplayMode aDisplayMode);
static CDoubleBufferedArea* NewLC(TSize aSize, TDisplayMode aDisplayMode);
~CDoubleBufferedArea();
const CFbsBitmap& GetDoubleBufferedAreaBitmap() const;
CFbsBitGc& GetDoubleBufferedAreaContext() const;
void ClearBufferedArea();
private:
CDoubleBufferedArea();
void ConstructL(TSize aSize, TDisplayMode aDisplayMode);
CFbsBitmap* iAreaBitmap;
CFbsBitmapDevice* iAreaBitmapDevice;
CFbsBitGc* iAreaBitmapContext;
};
#endif //DOUBLEBUFFEREDAREA_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -