shapessplashview.h

来自「最新官方例子,图形,描述副,基本控件,通讯协议,等等,」· C头文件 代码 · 共 58 行

H
58
字号
#ifndef SHAPESSPLASHVIEW_H
#define SHAPESSPLASHVIEW_H

// System includes
#include <aknview.h>	// CAknView

// CONSTANTS

// UID of view
const TUid KSplashViewId = { 1 };

// FORWARD DECLARATIONS

class CShapesSplashContainer;

// CLASS DECLARATION

/**
 *
 * @class	CShapesSplashView ShapesSplashView.h 
 * @brief	This is a view class which holds the Container (which is derived from CCoeControl
 * and which will perform the drawing of the splash screen)
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 * 
 */

class CShapesSplashView : public CAknView
	{
public:	// Construction and destruction.
	static CShapesSplashView* NewL();
	static CShapesSplashView* NewLC();
	~CShapesSplashView();    

private:	// from CAknView	
	TUid Id() const;
	void HandleCommandL(TInt aCommand);

	void DoActivateL(
		const TVwsViewId& aPrevViewId,
		TUid aCustomMessageId,
		const TDesC8& aCustomMessage);

	void DoDeactivate();

private:	// Construction
	CShapesSplashView();
	void ConstructL();

private:	// Data
	CShapesSplashContainer* iContainer;
	};

#endif	// SHAPESSPLASHVIEW_H

// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?