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

📄 settingslistcontainer.h

📁 series60 应用程序开发的源代码 series60 应用程序开发的源代码
💻 H
字号:
#ifndef SETTINGSLISTCONTAINER_H
#define SETTINGSLISTCONTAINER_H

// INCLUDES

// System includes
#include <coecntrl.h> // CCoeControl

// User includes
#include "SettingsList.hrh" // constants
#include "SettingsListSettings.h"

// FORWARD DECLARATIONS
class CSettingsListSettingItemList;

// CLASS DECLARATION

/**
*
* @class    CSettingsListContainer SettingsListContainer.h 
* @brief    This is the container class for a list example based on the
* standard Symbian OS architecture.  
*
* Copyright (c) EMCC Software Ltd 2003
* @version    1.0
* 
*/
class CSettingsListContainer : public CCoeControl
{
public: // Constructors and destructor

    static CSettingsListContainer* NewL(const TRect& aRect);
    static CSettingsListContainer* NewLC(const TRect& aRect);
    ~CSettingsListContainer();

public: // members
    void ChangeSelectedItemL();

private: // constructor

    void ConstructL(const TRect& aRect);


private: // from CoeControl

    TInt CountComponentControls() const;
    CCoeControl* ComponentControl(TInt aIndex) const;
    TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);

private: //data

    CSettingsListSettingItemList* iSettingItemList; // the saved games list
    TSettingsListSettings iSettings;
};

#endif    // #ifndef SETTINGSLISTCONTAINER_H

// End of File

⌨️ 快捷键说明

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