inc/wvsettingsshareddatang.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2003 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:  Defines shared data constants for service settings UI
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef WVSETTINGSSHAREDDATANG_H
       
    21 #define WVSETTINGSSHAREDDATANG_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <E32STD.H>
       
    25 #include "ChatNGCommonUIDs.h"
       
    26 // CONSTANTS
       
    27 const TUid KWVSettingsViewUid = { 0x10282E14 };
       
    28 const TUid KUidChatNGClient = {KWVUIAVEEXEUIDS2};
       
    29 
       
    30 
       
    31 // DATA TYPES
       
    32 
       
    33 // Login values
       
    34 
       
    35 enum TWVSettingsChatLoginValues
       
    36     {
       
    37     EWVSettingsChatMinLoginType = 0, // This has to be the first value here
       
    38     EWVSettingsChatLoginManual,
       
    39     EWVSettingsChatLoginApplicationLaunch,
       
    40     EWVSettingsChatLoginAutoAlways,
       
    41     EWVSettingsChatLoginAutoInHomeNW,
       
    42     EWVSettingsChatMaxLoginType // This has to be the last value here
       
    43     };
       
    44 
       
    45 enum TWVSettingsSchedulingDays
       
    46     {
       
    47     EWVSettingsNone = 0,
       
    48     EWVSettingsMonday = 1,
       
    49     EWVSettingsTuesday = 2,
       
    50     EWVSettingsWednesday = 4,
       
    51     EWVSettingsThursday = 8,
       
    52     EWVSettingsFriday = 16,
       
    53     EWVSettingsSaturday = 32,
       
    54     EWVSettingsSunday = 64,
       
    55     EWVSettingsAll = 127
       
    56     };
       
    57 
       
    58 
       
    59 #endif      // WVSETTINGSSHAREDDATANG_H
       
    60 
       
    61 // End of File