filemanager/View/inc/FileManagerView.rh
changeset 0 6a9f87576119
equal deleted inserted replaced
-1:000000000000 0:6a9f87576119
       
     1 /*
       
     2 * Copyright (c) 2002-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:  Resource headers for project FileManagerEngine
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef FILEMANAGERVIEW_RH
       
    20 #define FILEMANAGERVIEW_RH
       
    21 
       
    22 //  STRUCTURE DEFINITIONS
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // FILEMANAGER_ICON
       
    26 // -----------------------------------------------------------------------------
       
    27 //
       
    28 
       
    29 STRUCT FILEMANAGER_ICON
       
    30     {
       
    31     BYTE iconId;        // unique filemanager icon id
       
    32     LTEXT mbmFile;      // Mbm file name
       
    33     WORD iconBmpId;     // icon bitmap
       
    34     WORD maskBmpId;     // mask bitmap
       
    35     LONG majorSkinId = EAknsMajorNone;   // most significant part of icon skin ID
       
    36     LONG minorSkinId = EAknsMinorNone;  // least significant part of icon skin ID
       
    37     BYTE iconType = EFileManagerIconStdIcon; // icon type info
       
    38     }
       
    39 
       
    40 // -----------------------------------------------------------------------------
       
    41 // MG_FOLDER_INDICATOR
       
    42 // Array of MG_FOLDER_INDICATOR_DATA.
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 STRUCT FILEMANAGER_FOLDER_NAVIGATION_PANE
       
    46     {
       
    47     LTEXT bmpfile;
       
    48     WORD foldericonid = 0;
       
    49     WORD foldermaskid = 0;
       
    50     LONG majorSkinId = EAknsMajorNone;   // most significant part of icon skin ID
       
    51     LONG minorSkinId = EAknsMinorNone;  // least significant part of icon skin ID
       
    52     LTEXT separator;
       
    53     LTEXT endchar;
       
    54     STRUCT folderindicators []; // FILEMANAGER_FOLDER_NAVIGATION_PANE_DATA
       
    55     }
       
    56 
       
    57 // -----------------------------------------------------------------------------
       
    58 // MG_FOLDER_INDICATOR_DATA
       
    59 // Folder indicator for single drive
       
    60 // -----------------------------------------------------------------------------
       
    61 //
       
    62 STRUCT FILEMANAGER_FOLDER_NAVIGATION_PANE_DATA
       
    63     {
       
    64     WORD id = 0;
       
    65     LTEXT bmpfile;
       
    66     WORD rooticonid = 0;
       
    67     WORD rootmaskid = 0;
       
    68     LONG majorSkinId = EAknsMajorNone;   // most significant part of icon skin ID
       
    69     LONG minorSkinId = EAknsMinorNone;  // least significant part of icon skin ID
       
    70     }
       
    71 
       
    72 #endif // FILEMANAGERVIEW_RH
       
    73 
       
    74 // End of File