homescreensrv_plat/idlefw_api/inc/aifwdefs.h
branchRCL_3
changeset 114 a5a39a295112
equal deleted inserted replaced
113:0efa10d348c0 114:a5a39a295112
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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:  AiFw definitions
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef _AIFWDEFS_H
       
    20 #define _AIFWDEFS_H
       
    21 
       
    22 // System inclides
       
    23 
       
    24 // User includes
       
    25 
       
    26 // Type definitions
       
    27 
       
    28 /**
       
    29  * AiFw State definitions.
       
    30  *
       
    31  * @since S60 5.2
       
    32  */
       
    33 enum TAiFwState
       
    34     {
       
    35     EAiFwBacklightOn = 1,
       
    36     EAiFwBacklightOff,
       
    37     EAiFwForeground,
       
    38     EAiFwBackground,
       
    39     EAiFwBackupRestoreStart,
       
    40     EAiFwBackupRestoreEnd,
       
    41     EAiFwGeneralThemeChange,    
       
    42     EAiFwUiStartup,
       
    43     EAiFwUiShutdown,
       
    44     EAiFwOnline,
       
    45     EAiFwOffline
       
    46     };
       
    47 
       
    48 /**
       
    49  * AiFw data plugin load reasons.
       
    50  *
       
    51  * @since S60 5.2
       
    52  */    
       
    53 enum TAiFwLoadReason
       
    54     {
       
    55     EAiFwSystemStartup = 1,
       
    56     EAiFwPageStartup,
       
    57     EAiFwPluginStartup
       
    58     };    
       
    59 
       
    60 /**
       
    61  * AiFw data plugin destroy reasons.
       
    62  *
       
    63  * @since S60 5.2
       
    64  */        
       
    65 enum TAiFwDestroyReason
       
    66     {
       
    67     EAiFwSystemShutdown = 1,
       
    68     EAiFwPageShutdown,
       
    69     EAiFwPluginShutdown
       
    70     };
       
    71 
       
    72 #endif // _AIFWDEFS_H
       
    73 
       
    74 // End of file