📄 audiopkgappview.h
字号:
/*
============================================================================
Name : AudioPkgView.h
Author :
Version :
Copyright : Your copyright notice
Description : Application view
============================================================================
*/
#ifndef __AUDIOPKGAPPVIEW_H__
#define __AUDIOPKGAPPVIEW_H__
#include <coecntrl.h>
#include "AudioEngine.h"
class CAudioPkgAppView
: public CCoeControl
, public MAudioEngineObserver
{
public:
static CAudioPkgAppView* NewL( const TRect& aRect );
static CAudioPkgAppView* NewLC( const TRect& aRect );
virtual ~CAudioPkgAppView();
public:
void Draw( const TRect& aRect ) const;
virtual void SizeChanged();
public:
virtual void HandlePlayingStopedL();
public:
void PlayWavL();
private:
void ConstructL(const TRect& aRect);
CAudioPkgAppView();
private:
CAudioEngine* iAudioEng;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -