os/ossrv/lowlevellibsandfws/apputils/tsrc/TRSC.RSS
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1997-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 // NB deliberately renamed to TRSC.RSS to avoid a name clash, once PVCSed,
    15 // with the file T_RSC.RSC
    16 // 
    17 //
    18 
    19 STRUCT TBUF
    20 	{
    21 	BUF buf; /* non-zero terminated text string */
    22 	}
    23 
    24 STRUCT LBUF
    25 	{
    26 	LTEXT txt; // leading-byte counted text string
    27 	}
    28 
    29 STRUCT ARRAY
    30 	{
    31 	STRUCT items[];
    32 	}
    33 
    34 STRUCT BUTTON
    35 	{
    36 	WORD id;
    37 	WORD flags;
    38 	LTEXT txt;
    39 	LTEXT txt2;
    40 	LTEXT bmp;
    41 	}
    42 
    43 STRUCT FLPTED
    44 	{
    45 	WORD maxlength;
    46 	DOUBLE min;
    47 	DOUBLE max;
    48 	}
    49 
    50 STRUCT MENU_BAR
    51 	{
    52 	STRUCT titles[]; // MENU_BAR_ITEMs
    53 	}
    54 
    55 STRUCT MENU_TITLE
    56 	{
    57 	LLINK menu_pane;
    58 	LTEXT txt;
    59 	}
    60 
    61 
    62 // NB, the T_RSC test code currently relies on these resources being
    63 // numbered 1 - 8
    64 
    65 
    66 RESOURCE TBUF sys_special_characters { buf="+-*/<,>."<0x1F>"NSWE"; }
    67 
    68 RESOURCE TBUF sys_string { buf="%s"; }
    69 RESOURCE TBUF sys_dimmed_msg {buf="This item is not available";}
    70 RESOURCE TBUF sys_locked_msg {buf="This item cannot be changed";}
    71 RESOURCE TBUF sys_busy { buf="Busy"; }
    72 RESOURCE TBUF sys_scanning { buf="Scanning"; }
    73 RESOURCE TBUF sys_printing_to { buf="Printing to %s";}
    74 RESOURCE TBUF sys_page_is { buf="(page %u)";}
    75 
    76 
    77 RESOURCE LBUF r_text_signature { txt = "Signature"; }
    78 
    79 
    80 
    81 RESOURCE ARRAY sys_array_one
    82 	{
    83 	items=
    84 		{
    85 		LBUF { txt="Esc"; },
    86 		LBUF { txt="Enter"; },
    87 		LBUF { txt="Tab"; },
    88 		LBUF { txt="Del"; },
    89 		LBUF { txt="Space"; }
    90 		};
    91 	}
    92 
    93 RESOURCE BUTTON sys_button_one
    94 	{
    95 	id=3;
    96 	flags=5;
    97 	txt="Text";
    98 	txt2="";
    99 	bmp="Bitmap placeholder";
   100 	}
   101 
   102 RESOURCE FLPTED sys_flpted_one
   103 	{
   104 	maxlength=18;
   105 	min=0.0;
   106 	max=9.9e99;
   107 	}
   108 
   109 RESOURCE MENU_BAR sys_menubar_one
   110 	{
   111 	titles=
   112 		{
   113 		MENU_TITLE { menu_pane=1; txt="a"; },
   114 		MENU_TITLE { menu_pane=2; txt="ab"; },
   115 		MENU_TITLE { menu_pane=3; txt="abc"; },
   116 		MENU_TITLE { menu_pane=4; txt="abcd"; },
   117 		MENU_TITLE { menu_pane=5; txt="abcde"; },
   118 		MENU_TITLE { menu_pane=6; txt="abcdef"; },
   119 		MENU_TITLE { menu_pane=7; txt="abcdefg"; },
   120 		MENU_TITLE { menu_pane=8; txt="abcdefgh"; }
   121 		};
   122 	}
   123 
   124 STRUCT HORROR
   125 	{
   126 	LTEXT8  txt8;
   127 	LTEXT16 txt16;
   128 	}
   129 
   130 RESOURCE HORROR sys_alignment_horror0
   131 	{
   132 	txt8="";
   133 	txt16="";
   134 	}
   135 
   136 RESOURCE HORROR sys_alignment_horror1
   137 	{
   138 	txt8="x";
   139 	txt16="x";
   140 	}
   141 
   142 RESOURCE HORROR sys_alignment_horror2
   143 	{
   144 	txt8="xy";
   145 	txt16="xy";
   146 	}
   147 
   148 RESOURCE HORROR sys_alignment_horror3
   149 	{
   150 	txt8="xyz";
   151 	txt16="xyz";
   152 	}
   153 
   154 RESOURCE ARRAY sys_alignment_horror_array
   155 	{
   156 	items=
   157 		{
   158 		HORROR { txt8="";       txt16="abcdef"; },
   159 		HORROR { txt8="a";      txt16="bcdef"; },
   160 		HORROR { txt8="ab";     txt16="cdef"; },
   161 		HORROR { txt8="abc";    txt16="def"; },
   162 		HORROR { txt8="abcd";   txt16="ef"; },
   163 		HORROR { txt8="abcde";  txt16="f"; },
   164 		HORROR { txt8="abcdef"; txt16=""; }
   165 		};
   166 	}
   167