phoneapp/phoneui/srcdata/phoneui.rh
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2002 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: 
       
    15 *     This file contains declarations for resources of PhoneAppS60.
       
    16 *     The file can be included only in resource file.
       
    17 *     
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 #ifndef PHONEAPPS60_RH
       
    23 #define PHONEAPPS60_RH
       
    24 
       
    25 //  STRUCTURE DEFINITIONS
       
    26 
       
    27 // ---------------------------------------------------------
       
    28 //    SMALLEST_POSSIBLE_RESOURCE
       
    29 //    
       
    30 // ---------------------------------------------------------
       
    31 //
       
    32 STRUCT SMALLEST_POSSIBLE_RESOURCE
       
    33 	{
       
    34 	BYTE bytesize = 0;
       
    35 	}
       
    36 
       
    37 // ---------------------------------------------------------
       
    38 //    phone_link_apps
       
    39 //    It defines structure to contain information about apps 
       
    40 //    to be able to activate them.
       
    41 // ---------------------------------------------------------
       
    42 //
       
    43 STRUCT PHONE_LINK_APPS
       
    44     {
       
    45     STRUCT apps[];
       
    46     }
       
    47 
       
    48 // ---------------------------------------------------------
       
    49 //    phone_app
       
    50 //    It defines structure that contains information about 
       
    51 //    a single app.
       
    52 // ---------------------------------------------------------
       
    53 //
       
    54 STRUCT PHONE_APP
       
    55     {
       
    56     WORD id;          
       
    57     LTEXT txt="";     
       
    58     LONG view = -1;
       
    59     LONG app = -1;
       
    60     }
       
    61 
       
    62 // ---------------------------------------------------------
       
    63 //    phone_string_list
       
    64 //    It defines structure that contains array of strings.
       
    65 // ---------------------------------------------------------
       
    66 //
       
    67 STRUCT PHONE_STRING_LIST
       
    68     {
       
    69     STRUCT strings[];
       
    70     }
       
    71 
       
    72 // ---------------------------------------------------------
       
    73 //    phone_string
       
    74 //    It is link to the string resource (must be of type LBUF).
       
    75 // ---------------------------------------------------------
       
    76 //
       
    77 STRUCT PHONE_STRING
       
    78     {
       
    79     LLINK id;
       
    80     }
       
    81 
       
    82 // ---------------------------------------------------------------------------
       
    83 // phone_touch_button_configuration
       
    84 // ---------------------------------------------------------------------------
       
    85 //    
       
    86 STRUCT PHONE_TOUCH_BUTTON_CONFIGURATIONS
       
    87     {
       
    88     STRUCT configurations[]; // PHONE_TOUCH_BUTTON_CONFIGURATION
       
    89     }
       
    90     
       
    91 // ---------------------------------------------------------------------------
       
    92 // phone_touch_button_configuration
       
    93 // ---------------------------------------------------------------------------
       
    94 //
       
    95 STRUCT PHONE_TOUCH_BUTTON_CONFIGURATION
       
    96     {
       
    97     WORD  button_set_id;   // from TPhoneUIConfigurableButtons  
       
    98     LLINK button_sets[];   // button set resources
       
    99     }
       
   100 
       
   101 #endif
       
   102 
       
   103 // End of File