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

📄 settingdata.h

📁 Simple Jabber Client for Symbian Platform
💻 H
字号:
/*
* ============================================================================
*  Name     : CSettingData from SettingData.h
*  Part of  : Sabber
*  Created  : 2004-12-9 by Xie Tian Lu
*  Description:
*     Setting data.
*  Version  : 0.1
*  Copyright: (c) Xie Tian Lu Http://sabber.jabberstudio.org/
* ============================================================================
*/


#ifndef __SETTINGDATA_H__
#define __SETTINGDATA_H__

// INCLUDES
#include <e32base.h>


#define KSettingAppMaxSettingTextSize	50
#define KSettingAppMaxPasswordTextSize	20

// FORWARD DECLARATIONS
class CSharedDataI;
class CIAPSettingItem;
// CLASS DECLARATION

/**
* CAknExSettingListItemData 
*/
class CSettingData
    {
    public:
        static CSettingData* NewL();
        ~CSettingData();

	private:
        CSettingData();

	public:
		void DefaultValues();
		TInt OnlineStatus();
        void ConstructL();
		TBool Load();
		TBool Save();		

    public:        
		TBuf<64>	iUserID;
		TBuf<32>	iUserPassword;
		TInt		iPort;
		TUint32		iIapId;
		TBool		iAutoConnect;
		TBool		iAutoPlay;
		TBool		iIdleTimeout;
		TInt		iTimeoutPeriod;
    };


#endif

// End of File

⌨️ 快捷键说明

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