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

📄 audio3ui.h

📁 Symbian OS C++ 手机应用开发(第一卷)部分事例代码
💻 H
字号:
/* Copyright (c) 2004, Symbian Software Ltd. All rights reserved */

#ifndef __AUDIO3APPUI_H__
#define __AUDIO3APPUI_H__

#include <aknappui.h>
#include <akndialog.h>

class CAudio3View;
class CAudio3Engine;

class CAudio3Ui : public CAknAppUi
    {
public:
    void ConstructL();
    CAudio3Ui();
    ~CAudio3Ui();
public: // from CEikAppUi
    void HandleCommandL(TInt aCommand);
	//virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
	void DynInitMenuPaneL(TInt aMenuId, CEikMenuPane* aMenuPane);
	void UpdateViewL(TInt aState);
private:
	enum {ENoStream, ESynchronous, EAsynchronous};
	void CommandHandlerL(TInt aCommand);
	void ToneDialogL();
	void PlayFileDialogL();
private:
    CAudio3View* iAppView;
	CAudio3Engine *iEngine;
    };


#endif // __AUDIO3APPUI_H__

⌨️ 快捷键说明

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