📄 bitmapbitbltmaskcontainer.h
字号:
#ifndef __BITMAP_BITBLTMASKCONTAINER_H__
#define __BITMAP_BITBLTMASKCONTAINER_H__
// INCLUDES
#include <coecntrl.h> // CCoeControl
// FORWARD DECLARATIONS
// CLASS DECLARATION
class CFbsBitmap;
/**
*
* @class CBitmapBitBltMaskContainer BitmapBitBltMaskContainer.h
* @brief This is a container class for illustrating the BitBltMask function for the Bitmap
* example application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CBitmapBitBltMaskContainer : public CCoeControl
{
public: // constructors and destructor
static CBitmapBitBltMaskContainer* NewL(const TRect& aRect);
static CBitmapBitBltMaskContainer* NewLC(const TRect& aRect);
~CBitmapBitBltMaskContainer();
private: // constructor (2nd phase)
void ConstructL(const TRect& aRect);
private: // from CoeControl
void Draw(const TRect& aRect) const;
private: // data
CFbsBitmap* iBackground;
CFbsBitmap* iBitmap;
CFbsBitmap* iMask;
};
#endif // __BITMAP_BITBLTMASKCONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -