idlefw/inc/common/aiwspluginanimdef.h
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 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:  Defines constants shared between this subsystem and 
       
    15 *                clients of this subsystem.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef AIWSPLUGINANIMDEF_H
       
    21 #define AIWSPLUGINANIMDEF_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32std.h>
       
    25 #include <e32keys.h>
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 _LIT( KAiWsPluginAnimDllName, "aiwsplugin.dll" );
       
    30 
       
    31 // DATA TYPES
       
    32 
       
    33 /** 
       
    34 * Animation services
       
    35 *
       
    36 * EAnimKeyForward - Key forwarding to call handling application
       
    37 */
       
    38 enum TAiWsPluginAnimType
       
    39     {
       
    40     EAnimKeyForward
       
    41     };
       
    42 
       
    43 /**
       
    44 * Active Idle anim plugin initialisation data.
       
    45 */
       
    46 struct TAiWsPluginAnimInitData
       
    47     {
       
    48     // Idle window group id
       
    49     TInt iAiWgId;
       
    50     // Window group to activate 
       
    51     TInt iTargetWgId;
       
    52     };
       
    53 
       
    54 #endif // AIWSPLUGINANIMDEF_H
       
    55