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

📄 basenameappview.h

📁 symbian学习案例
💻 H
字号:
/*
============================================================================
 Name		: $(baseName)AppView.h
 Author	  : $(author)
 Copyright   : $(copyright)
 Description : Declares view class for application.
============================================================================
*/

#ifndef __$(baseNameUpper)APPVIEW_h__
#define __$(baseNameUpper)APPVIEW_h__

// INCLUDES
#include <e32std.h>
#include <e32base.h>
#include <aknview.h>
#include <avkon.hrh>
#include <f32file.h>

#include "$(baseName)AppContainer.h"

// CLASS DECLARATION
class C$(baseName)AppView : public CAknView
{
public: // Constructors and destructor
	~C$(baseName)AppView();
	static C$(baseName)AppView* NewL();
	static C$(baseName)AppView* NewLC();
	
public:
	TUid Id() const;
	void HandleCommandL( TInt aCommand );
	void HandleStatusPaneSizeChange();
	
private:
	C$(baseName)AppView();
	void ConstructL();
	
protected:
	void DoActivateL(const TVwsViewId& aPrevViewId,	TUid aCustomMessageId,	const TDesC8& aCustomMessage );
	void DoDeactivate();
	
private:
	C$(baseName)AppContainer * iContainer;
};

#endif // __$(baseNameUpper)APPVIEW_h__

// End of File

⌨️ 快捷键说明

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