taskswitcher/teleportui/inc/hggraphictab.h
changeset 4 4d54b72983ae
parent 3 fb3763350a08
child 5 c743ef5928ba
equal deleted inserted replaced
3:fb3763350a08 4:4d54b72983ae
     1 /*
       
     2 * ==============================================================================
       
     3 *  Name        : hggraphictab.h
       
     4 *  Part of     : Hg Graphics Loader
       
     5 *  Description : Header file with filename and skin id tables
       
     6 *  Version     : %version: 1 %
       
     7 *
       
     8 *  Copyright (c) 2007 Nokia Corporation.
       
     9 *  This material, including documentation and any related
       
    10 *  computer programs, is protected by copyright controlled by
       
    11 *  Nokia Corporation. All rights are reserved. Copying,
       
    12 *  including reproducing, storing, adapting or translating, any
       
    13 *  or all of this material requires the prior written consent of
       
    14 *  Nokia Corporation. This material also contains confidential
       
    15 *  information which may not be disclosed to others without the
       
    16 *  prior written consent of Nokia Corporation.
       
    17 * ==============================================================================
       
    18 */
       
    19 
       
    20 #ifndef __HGGRAPHICTAB_H__
       
    21 #define __HGGRAPHICTAB_H__
       
    22 
       
    23 #include <e32base.h>
       
    24 
       
    25 #include <AknUtils.h>
       
    26 #include <AknsUtils.h>          // skinned icons
       
    27 #include <AknsConstants.h>      // skinned icon ids
       
    28 
       
    29 
       
    30 /**
       
    31  * Name of image file in case icon is not available from the skin.
       
    32  * Path should not be included.
       
    33  * Use _S( "" ) if skin id should be used instead.
       
    34  * Order and count must match THgGraphicId. (except the last-marker)
       
    35  */
       
    36 static const TText* const KHgGraphicFiles[] =
       
    37     {
       
    38     _S( "" )
       
    39     };
       
    40 
       
    41 /**
       
    42  * Skin related IDs. Not in use yet.
       
    43  * Use all zeros if image file should be used instead.
       
    44  * Order and count must match THgGraphicId. (except the last-marker)
       
    45  */
       
    46 static const TAknsItemID KHgGraphicSkinIds[] =
       
    47     {
       
    48     KAknsIIDNone
       
    49     };
       
    50 
       
    51 #endif // __HGGRAPHICTAB_H__