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

📄 audioplayerappui.h

📁 series60 应用程序开发的源代码 series60 应用程序开发的源代码
💻 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 + -