smf/smfsettingsui/SettingsConstants.h
changeset 14 a469c0e6e7fb
child 18 013a02bf2bb0
equal deleted inserted replaced
13:b5d63d5fc252 14:a469c0e6e7fb
       
     1 /*
       
     2  * SettingsInternalCRKeys.h
       
     3  *
       
     4  *  Created on: Mar 30, 2010
       
     5  *      Author: kavadapu
       
     6  */
       
     7 
       
     8 #ifndef SETTINGSCONSTANTS_H_
       
     9 #define SETTINGSCONSTANTS_H_
       
    10 
       
    11 //#define __FOR_SYMBIAN__
       
    12 
       
    13 #ifdef __FOR_SYMBIAN__
       
    14 	#include <e32base.h>
       
    15 	//UID of the Setting Application
       
    16 	static const TUid KCRUidSettings = { 0xE6313AF5 };
       
    17 	//Settings Key value to set/identify the Plugin Name
       
    18 	const TUint32 KSettingsUIPluginNameKey = 0x01;
       
    19 	//Settings Key value to set/identify the Plugin Status
       
    20 	const TUint32 KSettingsUIPluginStausKey = 0x02;
       
    21 	//Settings Key value used to set/identify the Authentication Expiry Limit
       
    22 	const TUint32 KSettingsUIAuthExpLimitKey = 0x03;
       
    23 	//Settings key value used to set/identify the Max. Data Transfer Limit value
       
    24 	const TUint32 KSettingsUIMaxDataTransferLimitKey = 0x04;
       
    25 	//Settings key value used to set/identify the Roaming status Value.
       
    26 	const TUint32 KSettingsUIRoamingStatusKey = 0x05;
       
    27 	//Settings key value used to set/identify the Upload file type value.
       
    28 	const TUint32 KSettingsUIUploadFileTypeKey = 0x06;
       
    29 #else
       
    30 	#include "qsettings.h"
       
    31 	
       
    32 	//Settings Key value to set/identify the Plugin Name
       
    33 	const QString KSettingsUIPluginNameKey = "PluginName";
       
    34 	//Settings Key value to set/identify the Plugin Status
       
    35 	const QString KSettingsUIPluginStausKey = "PluginStatus";
       
    36 	//Settings Key value used to set/identify the Authentication Expiry Limit
       
    37 	const QString KSettingsUIAuthExpLimitKey = "AuthExpLmt";
       
    38 	//Settings key value used to set/identify the Max. Data Transfer Limit value
       
    39 	const QString KSettingsUIMaxDataTransferLimitKey = "MaxDataTrLmt";
       
    40 	//Settings key value used to set/identify the Roaming status Value.
       
    41 	const QString KSettingsUIRoamingStatusKey = "RoamingStatus";
       
    42 	//Settings key value used to set/identify the Upload file type value.
       
    43 	const QString KSettingsUIUploadFileTypeKey = "UploadFileType";
       
    44 #endif
       
    45 
       
    46 #endif /* SETTINGSCONSTANTS_H_ */