XDMSettingsUI/inc/XDMPlugin.hrh
changeset 0 c8caa15ef882
child 14 e53c01f160bc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/XDMSettingsUI/inc/XDMPlugin.hrh	Tue Feb 02 01:05:17 2010 +0200
@@ -0,0 +1,87 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  XDM Settings enumerations
+*
+*/
+
+
+#ifndef XDM_PLUGIN_HRH
+#define XDM_PLUGIN_HRH
+
+/**
+ * TSettingItems - identifiers for individual setting items
+ */
+enum TSettingItems
+    {
+    ESettingItemSettingName = 1,
+    ESettingItemAccessPoint,
+    ESettingItemServerAddress,
+    ESettingItemSipURL,
+    ESettingItemUserID,
+    ESettingItemPassword  
+    };
+    
+/**
+ * TGSXDMPluginCommandIds - GSXDMPlugin menu commands
+ */
+enum TGSXDMPluginCommandIds
+    {
+    EGSXDMPluginCmdChange = 0x06000,
+    EGSXDMPluginCmdEdit,
+    EGSXDMPluginCmdNewSettings,
+    EGSXDMPluginCmdNewExisting,
+    EGSXDMPluginCmdNewDefault,
+    EGSXDMPluginCmdDelete,
+    EGSXDMPluginCmdExitFromSL
+    };
+    
+/**
+ * TXDMSettingsViewType - Used inside UI to differentiate
+ * different kinds of editing
+ */ 
+enum TXDMSettingsViewType
+    {
+    EEditExisting,
+    ENewDefault,
+    ENewFromExisting        
+    };
+
+/**
+ * Constants used in application
+ */
+enum TXDMSettingsIndex
+    {
+    ESettingNameIndex = 0,
+    EAccessPointIndex,    
+    EServerAddressIndex,
+    ESipURLIndex,
+    EUserIDIndex,
+    EPasswordIndex
+    };
+    
+/**
+ * Constants used in resources and in application
+ */
+#define KMaxSettingSetNameLength 30
+#define KMaxSettingSetNameArrayGran 10
+#define KMaxUserIDLength 100
+#define KMaxServerAddressLength 100
+#define KMaxPasswordLength 100
+#define KMaxSIPURLLength 100
+#define KMaxAccessPointNameLength 30
+#define KMaxAccessPointDesLength 30
+#define KMaxMessageToDisplayLength 100
+
+
+#endif // XDM_PLUGIN_HRH