animationappui.h

来自「a Animation control of symbian」· C头文件 代码 · 共 47 行

H
47
字号
/*
============================================================================
 Name		: AnimationAppUi.h
 Author	  : 
 Copyright   : Your copyright notice
 Description : Declares UI class for application.
============================================================================
*/

#ifndef __ANIMATIONAPPUI_h__
#define __ANIMATIONAPPUI_h__

// INCLUDES
#include <aknappui.h>


// FORWARD DECLARATIONS
class CAnimationAppView;


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

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

	private: // Data
		CAnimationAppView* iAppView;
		
		
	};

#endif // __ANIMATIONAPPUI_h__

// End of File

⌨️ 快捷键说明

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