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

📄 aknexsettinglistitemdata.h

📁 symbian下的settinglist 适合初学者
💻 H
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


#ifndef __AKNEXSETTINGLISTITEMDATA_H__
#define __AKNEXSETTINGLISTITEMDATA_H__



// INCLUDES
#include <e32base.h>


// CONSTANTS
const TInt KSettingAppMaxSettingTextSize = 50;
const TInt KSettingAppMaxPasswordTextSize  = 20;
const TInt KMinFldVal = 20;


// FORWARD DECLARATIONS
class CSharedDataI;



// CLASS DECLARATION

/**
* CAknExSettingListItemData 
*/
class CAknExSettingListItemData : public CBase
    {

    public: // Constructors and destructor

        /**
        * NewL.
        * Two-phased constructor.
        * Using two phase construction,and return a pointer to the created object
        * @return a pointer to the created instance of CAknExSettingListItemData
        */
        static CAknExSettingListItemData* NewL();

        /**
        * ~CAknExSettingListItemData.
        * Virtual Destructor.
        */
        virtual ~CAknExSettingListItemData();


    private:    // Constructors and destructor

        /**
        * CAknExSettingListItemData.
        * C++ default constructor.
        */
        CAknExSettingListItemData();

        /**
        * ConstructL.
        * 2nd phase constructor.
        */
        void ConstructL();

    public: // Data

        // Integer type members 
        TInt iVolume;
        TInt iSliderValue;
        TInt iLanguageCode;
        TInt iFepLanguageCode;

        TTime iDate;
        TTime iTime;

        TInetAddr iIpAddress;

        // Boolean type members 
        TBool iFepEnabled;
        TBool iBinary;

        // Descriptor type members 
        TBuf<KSettingAppMaxSettingTextSize> iTextBuf;
        TBuf<KSettingAppMaxPasswordTextSize> iPw;
        TBuf<KSettingAppMaxPasswordTextSize> iPin;
    };


#endif  //__AKNEXSETTINGLISTITEMDATA_H__

// End of File

⌨️ 快捷键说明

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