sipplugins/sippsipsettingsui/inc/gssipsettingsplugin.hrh
changeset 0 307788aac0a8
child 15 8248b03a2669
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 *     Contains definitions SIP Settings Plugin.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef GSSIPSETTINGSPLUGIN_HRH
       
    21 #define GSSIPSETTINGSPLUGIN_HRH
       
    22 
       
    23 // Data query max length
       
    24 #define KGSMaxDataLength 21
       
    25 
       
    26 // Compression choices
       
    27 enum TGSCompressionsIDs
       
    28     {
       
    29     EGSComprNo = 0,
       
    30     EGSComprYes
       
    31     };
       
    32 
       
    33 // Registration mode choices
       
    34 enum TGSRegistrationMode
       
    35     {
       
    36     EGSWhenNeeded = 0,
       
    37     EGSAlwaysOn
       
    38     };
       
    39 
       
    40 // Security negotiation choices
       
    41 enum TGSSecurityNegotiation
       
    42     {
       
    43     EGSSecurityOff = 0,
       
    44     EGSSecurityOn    
       
    45     };
       
    46 
       
    47 // Loose routing choices
       
    48 enum TGSLooseRouting
       
    49     {
       
    50     EGSLooseRoutingOff = 0,
       
    51     EGSLooseRoutingOn    
       
    52     };
       
    53 
       
    54 // Transport protocols
       
    55 enum TGSTransportProtocol
       
    56     {
       
    57     EGSTranspProtocolAuto = 0,
       
    58     EGSTranspProtocolUDP,
       
    59     EGSTranspProtocolTCP
       
    60     };
       
    61     
       
    62 enum TGSSIPSettingsMenuCommands
       
    63 	{
       
    64 	EGSCmdAppNew = 0,
       
    65 	EGSCmdAppEdit,
       
    66 	EGSCmdAppDelete,
       
    67 	EGSCmdAppDefault,
       
    68 	EGSCmdAppNewDefault,
       
    69 	EGSCmdAppNewExist,
       
    70 	EGSCmdAppChange,
       
    71 	EGSCmdUpdateList,
       
    72 	EGSCmdProfileDeleted,
       
    73 	EGSCmdAppShutterExit,
       
    74 	EGSMSKCmdAppChange
       
    75 	};
       
    76 
       
    77 // List items of SIP profile setting view
       
    78 enum TGSProfileSettingItemListItems
       
    79     {
       
    80     EGSItemProviderName = 0,
       
    81     EGSItemServiceProfile,
       
    82     EGSItemDefaultDest,
       
    83     EGSItemDefaultAP,
       
    84     EGSItemUsername,
       
    85     EGSItemCompression,
       
    86     EGSItemRegistration,
       
    87     EGSItemSecurity,
       
    88     EGSItemProxyServer,
       
    89     EGSItemRegistrarServer
       
    90     };
       
    91 
       
    92 // List items of proxy & registrar server setting views
       
    93 enum TGSServerSettingItemListItems
       
    94     {
       
    95     EGSServerItemAddr = 0,
       
    96     EGSServerItemRealm,
       
    97     EGSServerItemUsername,
       
    98     EGSServerItemPassword,
       
    99     EGSServerItemRouting,
       
   100     EGSServerItemTransportProtocol,    
       
   101     EGSServerItemPort,
       
   102     EGSRegisterServerItemPort = 5
       
   103     };
       
   104 
       
   105 
       
   106 #endif      //GSPDATAPLUGIN_HRH
       
   107 //End of File