?? bitmapdrawcontainer.h
字號:
#ifndef __BITMAP_DRAWCONTAINER_H__
#define __BITMAP_DRAWCONTAINER_H__
// INCLUDES
#include <coecntrl.h> // CCoeControl
// FORWARD DECLARATIONS
class CFbsBitmap;
// CLASS DECLARATION
/**
*
* @class CBitmapDrawContainer BitmapDrawContainer.h
* @brief This is a container class for illustrating the DrawBitmap function for the Bitmap
* example application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CBitmapDrawContainer : public CCoeControl
{
public: // constructors and destructor
static CBitmapDrawContainer* NewL(const TRect& aRect);
static CBitmapDrawContainer* NewLC(const TRect& aRect);
~CBitmapDrawContainer();
private: // constructor (2nd phase)
void ConstructL(const TRect& aRect);
private: // from CoeControl
void Draw(const TRect& aRect) const;
private: // data
CFbsBitmap* iBitmap;
};
#endif // __BITMAP_DRAWCONTAINER_H__
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -