diff -r b5d63d5fc252 -r a469c0e6e7fb smf/smfsettingsui/SettingsConstants.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/smf/smfsettingsui/SettingsConstants.h Wed Jun 23 19:51:49 2010 +0530 @@ -0,0 +1,46 @@ +/* + * SettingsInternalCRKeys.h + * + * Created on: Mar 30, 2010 + * Author: kavadapu + */ + +#ifndef SETTINGSCONSTANTS_H_ +#define SETTINGSCONSTANTS_H_ + +//#define __FOR_SYMBIAN__ + +#ifdef __FOR_SYMBIAN__ + #include + //UID of the Setting Application + static const TUid KCRUidSettings = { 0xE6313AF5 }; + //Settings Key value to set/identify the Plugin Name + const TUint32 KSettingsUIPluginNameKey = 0x01; + //Settings Key value to set/identify the Plugin Status + const TUint32 KSettingsUIPluginStausKey = 0x02; + //Settings Key value used to set/identify the Authentication Expiry Limit + const TUint32 KSettingsUIAuthExpLimitKey = 0x03; + //Settings key value used to set/identify the Max. Data Transfer Limit value + const TUint32 KSettingsUIMaxDataTransferLimitKey = 0x04; + //Settings key value used to set/identify the Roaming status Value. + const TUint32 KSettingsUIRoamingStatusKey = 0x05; + //Settings key value used to set/identify the Upload file type value. + const TUint32 KSettingsUIUploadFileTypeKey = 0x06; +#else + #include "qsettings.h" + + //Settings Key value to set/identify the Plugin Name + const QString KSettingsUIPluginNameKey = "PluginName"; + //Settings Key value to set/identify the Plugin Status + const QString KSettingsUIPluginStausKey = "PluginStatus"; + //Settings Key value used to set/identify the Authentication Expiry Limit + const QString KSettingsUIAuthExpLimitKey = "AuthExpLmt"; + //Settings key value used to set/identify the Max. Data Transfer Limit value + const QString KSettingsUIMaxDataTransferLimitKey = "MaxDataTrLmt"; + //Settings key value used to set/identify the Roaming status Value. + const QString KSettingsUIRoamingStatusKey = "RoamingStatus"; + //Settings key value used to set/identify the Upload file type value. + const QString KSettingsUIUploadFileTypeKey = "UploadFileType"; +#endif + +#endif /* SETTINGSCONSTANTS_H_ */