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

📄 animationappui.h

📁 a Animation control of symbian
💻 H
字号:
/*
============================================================================
 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -