📄 audioplayerappui.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -