audio2ui.h
来自「Symbian OS C++手机开发源码」· C头文件 代码 · 共 51 行
H
51 行
/* Copyright (c) 2004, Symbian Software Ltd. All rights reserved */
#ifndef __AUDIO2APPUI_H__
#define __AUDIO2APPUI_H__
#include <eikappui.h>
//#include <akndialog.h>
#include <MdaAudioSampleEditor.h>
class CAudio2View;
class CAudio2Engine;
class CAudio2Ui : public CEikAppUi
{
public:
void ConstructL();
CAudio2Ui();
~CAudio2Ui();
public: // from CEikAppUi
void HandleCommandL(TInt aCommand);
virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
void DynInitMenuPaneL(TInt aMenuId, CEikMenuPane* aMenuPane);
void UpdateViewL();
private:
void CommandHandlerL(TInt aCommand);
void ToneDialogL();
void PlayFileDialogL();
void TypesDialogL();
void FormatsDialogL();
void ConvertL();
private:
CAudio2View* iAppView;
CAudio2Engine *iEngine;
CDesCArrayFlat* iFileTypeArray;
//convert to types
RArray<TFourCC> iDataTypes;
RArray<TUint> iSampleRates;
RArray<TUint> iChannels;
TInt iFormatIndex;
TInt iCodecIndex;
TInt iSampleRatesIndex;
TInt iChannelsIndex;
};
#endif // __AUDIO2APPUI_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?