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

📄 dynamicsettinglistappui.h

📁 symbian平台上一个比较好的动态设置列表
💻 H
字号:
/*
* ============================================================================
*  Name     : CDynamicSettingListAppUi from DynamicSettingListAppUi.h
*  Part of  : Dynamic Setting List
*  Created  : 09/21/2005 by Forum Nokia
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef __DYNAMICSETTINGLIST_APPUI_H__
#define __DYNAMICSETTINGLIST_APPUI_H__

// INCLUDE FILES
#include <aknappui.h>

// FORWARD DECLARATIONS
class CDynamicSettingListAppView;

// CLASS DECLARATION

/**
* Application UI class.
* Provides support for the following features:
* - EIKON control architecture
* 
*/
class CDynamicSettingListAppUi : public CAknAppUi
    {
public: // Constructors and destructor

    /**
    * Symbian OS default constructor.
    */      
    void ConstructL();

    /**
    * Constructor
    */      
    CDynamicSettingListAppUi();


    /**
    * Destructor.
    */      
    ~CDynamicSettingListAppUi();


public: // Functions from base classes
 
    /**
    * From CEikAppUi, takes care of command handling.
    * @param aCommand command to be handled
    */
    void HandleCommandL(TInt aCommand);

private: // Data members

    CDynamicSettingListAppView* iAppView;
    };


#endif // __DYNAMICSETTINGLIST_APPUI_H__

// End of file

⌨️ 快捷键说明

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