emailservices/emailframework/inc/MailBrandManager.rh
changeset 72 64e38f08e49c
parent 65 478bc57ad291
child 75 47d84de1c893
equal deleted inserted replaced
65:478bc57ad291 72:64e38f08e49c
     1 /*
       
     2 * Copyright (c) 2007 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:  ES Protocol Framework brand manager 
       
    15 *                resource structure definitions 
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 STRUCT BRANDABLE_GRAPHIC
       
    21 	{
       
    22 	LONG id;	// enum TFSBrandElement
       
    23 	LONG icon_id;
       
    24 	LONG mask_id;
       
    25 	}
       
    26 	
       
    27 STRUCT BRANDABLE_TEXT
       
    28 	{
       
    29 	LONG id;	// enum TFSBrandElement
       
    30 	LTEXT text;
       
    31 	}
       
    32 
       
    33 STRUCT BRAND_MATCH_STRING
       
    34     {
       
    35     LTEXT text; // branding match string 
       
    36     }
       
    37 	
       
    38 STRUCT BRANDABLE_COLOR
       
    39 	{
       
    40 	LONG id;	// enum TFSBrandElement
       
    41 	WORD red;
       
    42 	WORD green;
       
    43 	WORD blue;
       
    44 	WORD alpha;
       
    45 	}
       
    46 	
       
    47 STRUCT BRAND
       
    48 	{
       
    49     LTEXT  graphics_file_path;
       
    50 	STRUCT brand_id_match_strings[];   // list of match strings
       
    51 	STRUCT graphics[];				   // of type BRANDABLE_GRAPHIC
       
    52 	STRUCT texts[];					   // of type BRANDABLE_TEXT
       
    53 	STRUCT colors[];				   // of type BRANDABLE_COLOR
       
    54 	}
       
    55 	
       
    56 STRUCT BRANDING_DATA
       
    57 	{
       
    58 	STRUCT list_of_brands[];		// of type BRAND
       
    59 	}
       
    60 	
       
    61