filehandling/htmltorichtextconverter/group/CHtmlToCrtConverter.rss
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include "CHtmlToCrtConverter.rls"
       
    17 NAME H2RT
       
    18 
       
    19 STRUCT CNV_SIGNATURE
       
    20 	{
       
    21     LONG cnv_signature   = 0;
       
    22     SRLINK cnv_selfreference;
       
    23 	}
       
    24   
       
    25 RESOURCE CNV_SIGNATURE {}
       
    26 
       
    27 STRUCT CNV_TEXT
       
    28 	{
       
    29 	LTEXT text;
       
    30 	}
       
    31  
       
    32 RESOURCE CNV_TEXT r_cnv_image_tag_default_text
       
    33 	{
       
    34 	text=STRING_r_cnv_image_tag_default_text1;
       
    35 	}
       
    36 
       
    37 RESOURCE CNV_TEXT r_cnv_default_character_set
       
    38 	{
       
    39 	text=STRING_r_cnv_default_character_set1;
       
    40 	}
       
    41 
       
    42 STRUCT CNV_COLOR
       
    43 	{
       
    44 	BYTE color_r = 0;
       
    45 	BYTE color_g = 0;
       
    46 	BYTE color_b = 0;
       
    47 	}
       
    48 
       
    49 RESOURCE CNV_COLOR r_cnv_colour_anchor_tag_href
       
    50 	{
       
    51 	//blue
       
    52     color_r = 0;
       
    53     color_g = 0;
       
    54     color_b = 0xFF;
       
    55 	}
       
    56 
       
    57 RESOURCE CNV_COLOR r_cnv_colour_image_tag_src
       
    58 	{
       
    59 	//blue
       
    60     color_r = 0;
       
    61     color_g = 0;
       
    62     color_b = 0xFF;
       
    63 	}