⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 alarmorganisersecondview.h

📁 s60源码
💻 H
字号:
#ifndef __ALARMORGANISER_SECOND_VIEW_H__
#define __ALARMORGANISER_SECOND_VIEW_H__

//INCLUDES

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

// FORWARD DECLARATIONS

class CAlarmOrganiserSecondContainer;

/**
*
* @class	CAlarmOrganiserSecondView AlarmOrganiserView1.h 
* @brief	This is a view class for an agenda model example based on the 
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
* 
*/
class CAlarmOrganiserSecondView: public CAknView
	{
public: // constructors and destructor
	static CAlarmOrganiserSecondView* NewL();
	static CAlarmOrganiserSecondView* NewLC();
	~CAlarmOrganiserSecondView();
	
public: // from CAknView
	TUid Id() const;

private: // from CAknView
	void HandleCommandL(TInt aCommand);
	void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);

	void DoActivateL(
		const TVwsViewId& aPrevViewId, 
		TUid aCustomMessageId, 
		const TDesC8& aCustomMessage);
	
	void DoDeactivate();
	
private: // constructors
	void ConstructL();
	
private: // data
	CAlarmOrganiserSecondContainer*		iContainer; // what this view will display
	TUid								iId;
	};

#endif	// __ALARMORGANISER_SECOND_VIEW_H__

// End of File

⌨️ 快捷键说明

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