1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/TRSC.RSS Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,167 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// NB deliberately renamed to TRSC.RSS to avoid a name clash, once PVCSed,
1.18 +// with the file T_RSC.RSC
1.19 +//
1.20 +//
1.21 +
1.22 +STRUCT TBUF
1.23 + {
1.24 + BUF buf; /* non-zero terminated text string */
1.25 + }
1.26 +
1.27 +STRUCT LBUF
1.28 + {
1.29 + LTEXT txt; // leading-byte counted text string
1.30 + }
1.31 +
1.32 +STRUCT ARRAY
1.33 + {
1.34 + STRUCT items[];
1.35 + }
1.36 +
1.37 +STRUCT BUTTON
1.38 + {
1.39 + WORD id;
1.40 + WORD flags;
1.41 + LTEXT txt;
1.42 + LTEXT txt2;
1.43 + LTEXT bmp;
1.44 + }
1.45 +
1.46 +STRUCT FLPTED
1.47 + {
1.48 + WORD maxlength;
1.49 + DOUBLE min;
1.50 + DOUBLE max;
1.51 + }
1.52 +
1.53 +STRUCT MENU_BAR
1.54 + {
1.55 + STRUCT titles[]; // MENU_BAR_ITEMs
1.56 + }
1.57 +
1.58 +STRUCT MENU_TITLE
1.59 + {
1.60 + LLINK menu_pane;
1.61 + LTEXT txt;
1.62 + }
1.63 +
1.64 +
1.65 +// NB, the T_RSC test code currently relies on these resources being
1.66 +// numbered 1 - 8
1.67 +
1.68 +
1.69 +RESOURCE TBUF sys_special_characters { buf="+-*/<,>."<0x1F>"NSWE"; }
1.70 +
1.71 +RESOURCE TBUF sys_string { buf="%s"; }
1.72 +RESOURCE TBUF sys_dimmed_msg {buf="This item is not available";}
1.73 +RESOURCE TBUF sys_locked_msg {buf="This item cannot be changed";}
1.74 +RESOURCE TBUF sys_busy { buf="Busy"; }
1.75 +RESOURCE TBUF sys_scanning { buf="Scanning"; }
1.76 +RESOURCE TBUF sys_printing_to { buf="Printing to %s";}
1.77 +RESOURCE TBUF sys_page_is { buf="(page %u)";}
1.78 +
1.79 +
1.80 +RESOURCE LBUF r_text_signature { txt = "Signature"; }
1.81 +
1.82 +
1.83 +
1.84 +RESOURCE ARRAY sys_array_one
1.85 + {
1.86 + items=
1.87 + {
1.88 + LBUF { txt="Esc"; },
1.89 + LBUF { txt="Enter"; },
1.90 + LBUF { txt="Tab"; },
1.91 + LBUF { txt="Del"; },
1.92 + LBUF { txt="Space"; }
1.93 + };
1.94 + }
1.95 +
1.96 +RESOURCE BUTTON sys_button_one
1.97 + {
1.98 + id=3;
1.99 + flags=5;
1.100 + txt="Text";
1.101 + txt2="";
1.102 + bmp="Bitmap placeholder";
1.103 + }
1.104 +
1.105 +RESOURCE FLPTED sys_flpted_one
1.106 + {
1.107 + maxlength=18;
1.108 + min=0.0;
1.109 + max=9.9e99;
1.110 + }
1.111 +
1.112 +RESOURCE MENU_BAR sys_menubar_one
1.113 + {
1.114 + titles=
1.115 + {
1.116 + MENU_TITLE { menu_pane=1; txt="a"; },
1.117 + MENU_TITLE { menu_pane=2; txt="ab"; },
1.118 + MENU_TITLE { menu_pane=3; txt="abc"; },
1.119 + MENU_TITLE { menu_pane=4; txt="abcd"; },
1.120 + MENU_TITLE { menu_pane=5; txt="abcde"; },
1.121 + MENU_TITLE { menu_pane=6; txt="abcdef"; },
1.122 + MENU_TITLE { menu_pane=7; txt="abcdefg"; },
1.123 + MENU_TITLE { menu_pane=8; txt="abcdefgh"; }
1.124 + };
1.125 + }
1.126 +
1.127 +STRUCT HORROR
1.128 + {
1.129 + LTEXT8 txt8;
1.130 + LTEXT16 txt16;
1.131 + }
1.132 +
1.133 +RESOURCE HORROR sys_alignment_horror0
1.134 + {
1.135 + txt8="";
1.136 + txt16="";
1.137 + }
1.138 +
1.139 +RESOURCE HORROR sys_alignment_horror1
1.140 + {
1.141 + txt8="x";
1.142 + txt16="x";
1.143 + }
1.144 +
1.145 +RESOURCE HORROR sys_alignment_horror2
1.146 + {
1.147 + txt8="xy";
1.148 + txt16="xy";
1.149 + }
1.150 +
1.151 +RESOURCE HORROR sys_alignment_horror3
1.152 + {
1.153 + txt8="xyz";
1.154 + txt16="xyz";
1.155 + }
1.156 +
1.157 +RESOURCE ARRAY sys_alignment_horror_array
1.158 + {
1.159 + items=
1.160 + {
1.161 + HORROR { txt8=""; txt16="abcdef"; },
1.162 + HORROR { txt8="a"; txt16="bcdef"; },
1.163 + HORROR { txt8="ab"; txt16="cdef"; },
1.164 + HORROR { txt8="abc"; txt16="def"; },
1.165 + HORROR { txt8="abcd"; txt16="ef"; },
1.166 + HORROR { txt8="abcde"; txt16="f"; },
1.167 + HORROR { txt8="abcdef"; txt16=""; }
1.168 + };
1.169 + }
1.170 +