compoundcontrolview.h

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

H
56
字号
#ifndef __COMPOUNDCONTROLVIEW_H__
#define __COMPOUNDCONTROLVIEW_H__

//INCLUDES

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

// FORWARD DECLARATIONS

class CCompoundControl;

/**
*
* @class	CCompoundControlView CompoundControlView.h 
* @brief	This is a view class for a Hello World example based on the 
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
* 
*/
class CCompoundControlView: public CAknView
	{
public: // constructors and destructor
	
	static CCompoundControlView* NewL();
	static CCompoundControlView* NewLC();
	~CCompoundControlView();
	
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
	
	CCompoundControl* iContainer;
	TUid iId;
	};

#endif	// __COMPOUNDCONTROLVIEW_H__

// End of File

⌨️ 快捷键说明

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