📄 taskmanagersettingsitemlist.h
字号:
/*
* ============================================================================
* Name : CTaskManagerSettingsItemList from TaskManagerSettingsItemList.h
* Part of : TaskManager
* Created : 03/13/2005 by Forum Nokia
* Version : 1.2
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __TASKMANAGERSETTINGSITEMLIST_H_
#define __TASKMANAGERSETTINGSITEMLIST_H_
// INCLUDE FILES
#include "TaskManagerConnInfo.h"
#include <aknsettingitemlist.h>
// CLASS DECLARATION
/**
* A class for handling settingitemlist
*/
class CTaskManagerSettingsItemList : public CAknSettingItemList
{
public: // New functions
/**
* Used for setting the values for the settingitemlist.
* @param aData contains the values.
*/
void SetData(const TTaskManagerConnInfo& aData);
/**
* Used for getting the modified values.
* @param aData variable where the values are set.
*/
void GetData(TTaskManagerConnInfo& aData);
private: // Functions from base classes
/**
* From CAknSettingItemList
*/
CAknSettingItem* CreateSettingItemL( TInt aIdentifier );
private: // Data members
TBuf<KMaxServerNameLength> iServer;
TBool iPhp;
TBuf<KMaxUsernameLength> iUsername;
TBuf<KMaxPasswordLength> iPassword;
};
#endif
// End of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -