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

📄 basenameappui.h

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

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

// INCLUDES
#include <aknappui.h>
#include <aknviewappui.h>


// FORWARD DECLARATIONS
class C$(baseName)AppView;

// CLASS DECLARATION
/**
* C$(baseName)AppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class C$(baseName)AppUi : public CAknViewAppUi
	{
	public: // Constructors and destructor
		void ConstructL();
		C$(baseName)AppUi();
		virtual ~C$(baseName)AppUi();

	private:  // Functions from base classes
		void HandleCommandL( TInt aCommand );
		void HandleStatusPaneSizeChange();

	private: // Data
		C$(baseName)AppView* iAppView;		
		
	};

#endif // __$(baseNameUpper)APPUI_h__

// End of File

⌨️ 快捷键说明

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