cellular/psetnotesui/inc/psuiinternalconstants.h
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
equal deleted inserted replaced
48:78df25012fda 51:12bc758d6a02
     1 /*
       
     2 * Copyright (c) 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 CPSUIINTERNALCONSTANTS_H
       
    19 #define CPSUIINTERNALCONSTANTS_H
       
    20 
       
    21 // INCLUDES
       
    22 
       
    23 //CONSTANTS
       
    24 const TInt KPSUINoBscGroup = 255;      //unknown basic service group
       
    25 const TInt KPSUIDetailsText = 64;      //max. length of text in detailed note
       
    26 const TText KLRMarker = 0x200E;        //LRM marker
       
    27 
       
    28 // Phone Setting Notes UI's Note Controller Singleton UID
       
    29 static const TUid KUidNoteControllerSingleton = { 0x0C };
       
    30 
       
    31 _LIT( KPSUIListDivider, "\n" );        //list row divisor
       
    32 
       
    33 // Type of Call Forwarding request.
       
    34 //   EPsuiNoCF - not a call forwarding request
       
    35 //   EPsuiCFNry - call forwarding with number and timeout information
       
    36 //   EPsuiCFOther - call forwarding with number information
       
    37 enum TCFType
       
    38     {
       
    39     EPsuiNoCF = 1,
       
    40     EPsuiCFNry, 
       
    41     EPsuiCFOther
       
    42     };
       
    43 
       
    44 // Note types.
       
    45 enum TPsuiNoteTypes
       
    46     {
       
    47     EPsuiConfirmationNote,
       
    48     EPsuiWaitingNote,
       
    49     EPsuiErrorNote,
       
    50     EPsuiInformationNote
       
    51     };
       
    52 
       
    53 #endif //CPSUIINTERNALCONSTANTS_H