inc/screensaver.hrh
changeset 14 8a173132b0aa
parent 2 058b1fc1663a
equal deleted inserted replaced
2:058b1fc1663a 14:8a173132b0aa
     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:     The enumeration for screensaver
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef SCREENSAVER_HRH
       
    24 #define SCREENSAVER_HRH
       
    25 
       
    26 #include <avkon.hrh>
       
    27 
       
    28 //
       
    29 // Screensaver indicator id's.
       
    30 //
       
    31 enum TScreensaverIndicatorId
       
    32     {
       
    33     ESsNewMessagesInd,
       
    34     ESsMissedCallsInd,
       
    35     ESsKeyLockInd,
       
    36     ESsProfileInd,
       
    37     ESsImInd,           // Instant message (chat)
       
    38     ESsMailInd,         // New email
       
    39     ESsVoicemailInd,    // New voice mail
       
    40     ESsAmPmInd          // AM / PM indicator
       
    41     };
       
    42 
       
    43 //
       
    44 // Indicator types.
       
    45 //
       
    46 enum TScreensaverIndicatorType
       
    47     {
       
    48     ESsNumericIndicator,
       
    49     ESsIconIndicator,
       
    50     ESsTextIndicator,
       
    51     ESsNumberAndIconIndicator
       
    52     };
       
    53 
       
    54 //
       
    55 // Indicator aligments.
       
    56 //
       
    57 enum TScreensaverAlignment
       
    58     {
       
    59     ESsAlignLeft,
       
    60     ESsAlignRight
       
    61     };
       
    62 
       
    63 
       
    64 //
       
    65 // Indicator drawing priorities.
       
    66 //
       
    67 enum TScreensaverDrawType
       
    68     {
       
    69     ESsDrawTypeNotDrawn,
       
    70     ESsDrawTypeSecondary,
       
    71     ESsDrawTypePrimary
       
    72     };
       
    73 
       
    74 
       
    75 //
       
    76 // Default screensaver bar color modes.
       
    77 //
       
    78 enum TScreensaverBarColorModel
       
    79     {
       
    80     ESsColorModel3BitMode,
       
    81     ESsColorModelHighColor
       
    82     };
       
    83 
       
    84 //
       
    85 // Factory for display objects
       
    86 //
       
    87 enum TDisplayObjectType
       
    88     {
       
    89     EDisplayText = 0,
       
    90     EDisplayTime,
       
    91     EDisplayBitmap,
       
    92     EDisplayPlugin,
       
    93     EDisplayNone
       
    94     };
       
    95 
       
    96 enum TDisplayState
       
    97     {
       
    98     EDisplayOff = 0,
       
    99     EDisplayOn
       
   100     };
       
   101 #endif //SCREENSAVER_HRH
       
   102 
       
   103 // End of file.