?? bitmapbitbltview.h
字號:
#ifndef __BITMAP_BITBLTVIEW_H__
#define __BITMAP_BITBLTVIEW_H__
//INCLUDES
// System includes
#include <aknview.h> // CAknView
// FORWARD DECLARATIONS
class CBitmapBitBltContainer;
/**
*
* @class CBitmapBitBltView BitmapBitBltView.h
* @brief This is a view class used to contain the BitmapBitBltContainer control which
* is used to illustrate blitting bitmaps
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CBitmapBitBltView: public CAknView
{
public: // constructors and destructor
static CBitmapBitBltView* NewL();
static CBitmapBitBltView* NewLC();
~CBitmapBitBltView();
private: // from CAknView
TUid Id() const;
void HandleCommandL(TInt aCommand);
void DoActivateL(
const TVwsViewId& aPrevViewId,
TUid aCustomMessageId,
const TDesC8& aCustomMessage);
void DoDeactivate();
private: // constructors
void ConstructL();
private: // data
CBitmapBitBltContainer* iContainer; // what this view will display
TUid iId;
};
#endif // __BITMAP_BITBLTVIEW_H__
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -