?? taskmanagersettingsitemlist.h
字號:
/*
* ============================================================================
* Name : CTaskManagerSettingsItemList from TaskManagerSettingsItemList.h
* Part of : TaskManager
* Created : 08/31/2005 by Forum Nokia
* Version : 1.1
* 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 + -