gsprofilesrv_plat/settings_framework_api/inc/GSCommon.rh
branchRCL_3
changeset 54 7e0eff37aedb
parent 0 8c5d936e5675
equal deleted inserted replaced
53:8ee96d21d9bf 54:7e0eff37aedb
       
     1 /*
       
     2 * Copyright (c) 2003-2005 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:   Contains common declarations for resources of GS.
       
    15 *                 The file can be included only in resource file.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef GSCOMMON_RH
       
    21 #define GSCOMMON_RH
       
    22 
       
    23 #include <gscommon.hrh>
       
    24 
       
    25 // Global definitions
       
    26 
       
    27 //  STRUCTURE DEFINITIONS
       
    28 
       
    29 // ---------------------------------------------------------
       
    30 //    gs_link_apps
       
    31 //    It defines structure to contain information about apps 
       
    32 //    to be able to included in the softkey list.
       
    33 // ---------------------------------------------------------
       
    34 //
       
    35 STRUCT GS_LINK_APPS
       
    36     {
       
    37     STRUCT apps[];
       
    38     }
       
    39 
       
    40 // ---------------------------------------------------------
       
    41 //    gs_app
       
    42 //    It defines structure that contains information about 
       
    43 //    a single app.
       
    44 // ---------------------------------------------------------
       
    45 //
       
    46 STRUCT GS_APP
       
    47     {
       
    48     WORD id;    
       
    49     LONG app = -1;
       
    50     }
       
    51 
       
    52 // ---------------------------------------------------------
       
    53 //    gs_feature_array
       
    54 //    It defines structure to contain information about items 
       
    55 //    to be able to included in the listbox.
       
    56 // ---------------------------------------------------------
       
    57 //
       
    58 STRUCT GS_FEATURE_ARRAY
       
    59     {
       
    60     STRUCT items[];
       
    61     }
       
    62 
       
    63 // ---------------------------------------------------------
       
    64 //    gs_feature
       
    65 //    It defines structure that contains information about 
       
    66 //    a single listbox item.
       
    67 // ---------------------------------------------------------
       
    68 //
       
    69 STRUCT GS_FEATURE
       
    70     {
       
    71     LTEXT txt = "";    
       
    72     WORD item = -1;
       
    73     BYTE type = EGSListBoxItemTypeIsAlwaysVisible;
       
    74     }
       
    75 
       
    76 #endif // GSCOMMON_RH
       
    77 // End of File