dynamicsettinglistappui.h

来自「Symbian 中动态生成SettingList」· C头文件 代码 · 共 65 行

H
65
字号
/*
* ============================================================================
*  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 + =
减小字号Ctrl + -
显示快捷键?