phonesrv_plat/phone_settings_notes_ui_api/inc/psuiconstants.h
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
equal deleted inserted replaced
48:78df25012fda 51:12bc758d6a02
     1 /*
       
     2 * Copyright (c) 2002-2007 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:  Constant values for the Phone Setting UI Notes
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CPSUICONSTANTS_H
       
    19 #define CPSUICONSTANTS_H
       
    20  
       
    21 const TInt KPSUIMaxBscNumber = 13;     //max. number of basic service groups
       
    22 const TInt KPSUIMaxPSUIItemLength = 32;//max. length of text in PSUI note
       
    23 // Status of Calling Identity.
       
    24 enum TPsuiCli
       
    25     {
       
    26     EPsuiClirOn = 1,
       
    27     EPsuiClirOff,
       
    28     EPsuiClipOn,
       
    29     EPsuiClipOff,
       
    30     EPsuiColrOn,
       
    31     EPsuiColrOff,
       
    32     EPsuiColpOn,
       
    33     EPsuiColpOff,
       
    34     EPsuiCliUnknown
       
    35     };
       
    36 
       
    37 #endif //CPSUICONSTANTS_H
       
    38 
       
    39