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

📄 oggtremortest.h

📁 symbian智能手机音乐播放器完整代码
💻 H
字号:

#include <OggOs.h>
#include <e32std.h>
#include <e32base.h>
#include <ivorbiscodec.h>
#include <ivorbisfile.h>

#include <MdaAudioSamplePlayer.h>
#include "OggPluginAdaptor.h"


class CIvorbisTest: public CBase, public MKeyPressObserver, public MPlaybackObserver
	{
public:   
	static CIvorbisTest * NewL(CConsoleBase *aConsole);
	~CIvorbisTest();

	virtual void NotifyPlayComplete();
	virtual void NotifyUpdate();
	virtual void NotifyPlayInterrupted();

private:
	void ConstructL(CConsoleBase *aConsole);
	TInt ProcessKeyPress(TChar aChar);

private:     
	CConsoleBase* iConsole;
	TInt iVolume;
	TFileName iFilename;
	TInt iFilenameIdx;
	COggPluginAdaptor* iPlayer;
    };

⌨️ 快捷键说明

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