basenameappui.h

来自「symbian学习案例」· C头文件 代码 · 共 46 行

H
46
字号
/*
============================================================================
 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 + =
减小字号Ctrl + -
显示快捷键?