audioplayerappui.h

来自「在手机上开发音频播放器软件需要参考的程序」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef __AUDIOPLAYERAPPUI_H__
#define __AUDIOPLAYERAPPUI_H__

// System includes
#include <aknappui.h> // CAknAppUi

// FORWARD DECLARATION
class CAudioPlayerView;

// CLASS DECLARATION
/**
 *
 * @class	CAudioPlayerAppUi AudioPlayerAppUi.h
 * @brief	This is the main application UI class of the AudioPlayer example
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 *
 */
class CAudioPlayerAppUi	:	public CAknAppUi
    {
	public:
		~CAudioPlayerAppUi();
		void ConstructL();

	public:			// CEikAppUi
                // routes menu commands to application
		virtual void HandleCommandL(TInt aCommand);
                // allows for menu to display only relevant items
		virtual void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);

	private:
		CAudioPlayerView*	iView; // application view
	};

#endif

⌨️ 快捷键说明

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