uiaccelerator_plat/alf_core_toolkit_api/inc/uiacceltk/huitk.rh
changeset 0 15bf7259bb7c
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     1 /*
       
     2 * Copyright (c) 2009 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 *
       
    16 */
       
    17 
       
    18 #include <uiacceltk/huitk.hrh>
       
    19 
       
    20 
       
    21 STRUCT BITMAP_LIST
       
    22     {
       
    23     STRUCT bitmaps[];
       
    24     }
       
    25     
       
    26     
       
    27 STRUCT BITMAP
       
    28     {
       
    29     LONG id;
       
    30     LTEXT filename;
       
    31     }    
       
    32 
       
    33 
       
    34 STRUCT CONTROL_GROUP
       
    35     {
       
    36     // Add group params here.
       
    37     
       
    38     // Member controls of this group.
       
    39     STRUCT members[];
       
    40     }
       
    41 
       
    42 
       
    43 STRUCT GROUP_MEMBER
       
    44     {
       
    45     WORD type;
       
    46     LONG id = 0;
       
    47     LONG itemflags = 0;
       
    48     LONG role = 0;
       
    49     LONG host = 0;
       
    50     STRUCT control;    
       
    51     }
       
    52     
       
    53     
       
    54 STRUCT CT_PANE
       
    55     {
       
    56     WORD layouttype = EHuiLoFlow;
       
    57     STRUCT layout;
       
    58     }
       
    59     
       
    60     
       
    61 STRUCT CT_BUTTON
       
    62     {
       
    63     LTEXT text = "";
       
    64     LONG image = 0;
       
    65     }
       
    66     
       
    67     
       
    68 STRUCT CT_LIST
       
    69     {
       
    70     }    
       
    71     
       
    72     
       
    73 STRUCT CT_GALLERY
       
    74     {
       
    75     }    
       
    76     
       
    77     
       
    78 STRUCT LAYOUT_FLOW
       
    79     {
       
    80     WORD outerborder = 0;
       
    81     WORD xborder = 0;
       
    82     WORD yborder = 0;
       
    83     }
       
    84     
       
    85     
       
    86 STRUCT LAYOUT_GRID
       
    87     {
       
    88     WORD columns = 1;
       
    89     WORD rows = 1;
       
    90     WORD outerborder = 0;
       
    91     WORD xborder = 0;
       
    92     WORD yborder = 0;
       
    93     }    
       
    94 
       
    95 
       
    96 STRUCT LAYOUT_APP
       
    97     {
       
    98     WORD outerborder = 0;
       
    99     WORD leftwidth = 30;
       
   100     WORD rightwidth = 30;
       
   101     }