xref: /aoo41x/main/svtools/source/control/ctrlbox.src (revision e3349227)
1*3c07ef42SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*3c07ef42SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*3c07ef42SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*3c07ef42SAndrew Rist * distributed with this work for additional information
6*3c07ef42SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*3c07ef42SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*3c07ef42SAndrew Rist * "License"); you may not use this file except in compliance
9*3c07ef42SAndrew Rist * with the License.  You may obtain a copy of the License at
10*3c07ef42SAndrew Rist *
11*3c07ef42SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*3c07ef42SAndrew Rist *
13*3c07ef42SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*3c07ef42SAndrew Rist * software distributed under the License is distributed on an
15*3c07ef42SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*3c07ef42SAndrew Rist * KIND, either express or implied.  See the License for the
17*3c07ef42SAndrew Rist * specific language governing permissions and limitations
18*3c07ef42SAndrew Rist * under the License.
19*3c07ef42SAndrew Rist *
20*3c07ef42SAndrew Rist *************************************************************/
21*3c07ef42SAndrew Rist
22*3c07ef42SAndrew Rist
23cdf0e10cSrcweir#include <svtools/svtools.hrc>
24cdf0e10cSrcweir
25cdf0e10cSrcweir#ifndef IMAGE_STDBTN_COLOR
26cdf0e10cSrcweir#define IMAGE_STDBTN_COLOR Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; }
27cdf0e10cSrcweir#endif
28cdf0e10cSrcweir
29cdf0e10cSrcweir
30cdf0e10cSrcweirIMAGE RID_IMG_SCALABLEFONT
31cdf0e10cSrcweir{
32cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "scalfont.bmp" ; };
33cdf0e10cSrcweir	MaskColor = IMAGE_STDBTN_COLOR ;
34cdf0e10cSrcweir};
35cdf0e10cSrcweir
36cdf0e10cSrcweirIMAGE RID_IMG_SCALABLEFONT_HC
37cdf0e10cSrcweir{
38cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "scalfont_h.bmp" ; };
39cdf0e10cSrcweir	MaskColor = IMAGE_STDBTN_COLOR ;
40cdf0e10cSrcweir};
41cdf0e10cSrcweir
42cdf0e10cSrcweirIMAGE RID_IMG_PRINTERFONT
43cdf0e10cSrcweir{
44cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "prnfont.bmp" ; };
45cdf0e10cSrcweir	MaskColor = IMAGE_STDBTN_COLOR ;
46cdf0e10cSrcweir};
47cdf0e10cSrcweir
48cdf0e10cSrcweirIMAGE RID_IMG_PRINTERFONT_HC
49cdf0e10cSrcweir{
50cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "prnfont_h.bmp" ; };
51cdf0e10cSrcweir	MaskColor = IMAGE_STDBTN_COLOR ;
52cdf0e10cSrcweir};
53cdf0e10cSrcweir
54cdf0e10cSrcweirIMAGE RID_IMG_BITMAPFONT
55cdf0e10cSrcweir{
56cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "bmpfont.bmp" ; };
57cdf0e10cSrcweir	MaskColor = IMAGE_STDBTN_COLOR ;
58cdf0e10cSrcweir};
59cdf0e10cSrcweir
60cdf0e10cSrcweirIMAGE RID_IMG_BITMAPFONT_HC
61cdf0e10cSrcweir{
62cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "bmpfont_h.bmp" ; };
63cdf0e10cSrcweir	MaskColor = IMAGE_STDBTN_COLOR ;
64cdf0e10cSrcweir};
65cdf0e10cSrcweir
66cdf0e10cSrcweirString STR_SVT_AUTOMATIC_COLOR
67cdf0e10cSrcweir{
68cdf0e10cSrcweir	Text [ en-US ] = "Automatic";
69cdf0e10cSrcweir};
70cdf0e10cSrcweir
71cdf0e10cSrcweir/*
72cdf0e10cSrcweir * ressources for CollatorRessource / CollatorRessourceData resp.
73cdf0e10cSrcweir */
74cdf0e10cSrcweir
75cdf0e10cSrcweirString STR_SVT_COLLATE_ALPHANUMERIC
76cdf0e10cSrcweir{
77cdf0e10cSrcweir	/* alphanumeric sorting algorithm */
78cdf0e10cSrcweir	Text [ en-US ] = "Alphanumeric";
79cdf0e10cSrcweir};
80cdf0e10cSrcweir
81cdf0e10cSrcweirString STR_SVT_COLLATE_NORMAL
82cdf0e10cSrcweir{
83cdf0e10cSrcweir	/* default or normal sorting algorithm */
84cdf0e10cSrcweir	Text [ en-US ] = "Normal";
85cdf0e10cSrcweir};
86cdf0e10cSrcweir
87cdf0e10cSrcweirString STR_SVT_COLLATE_CHARSET
88cdf0e10cSrcweir{
89cdf0e10cSrcweir	/* default or normal sorting algorithm */
90cdf0e10cSrcweir	Text [ en-US ] = "Character set";
91cdf0e10cSrcweir};
92cdf0e10cSrcweir
93cdf0e10cSrcweirString STR_SVT_COLLATE_DICTIONARY
94cdf0e10cSrcweir{
95cdf0e10cSrcweir	/* german dictionary word order / sorting */
96cdf0e10cSrcweir	Text [ en-US ] = "Dictionary";
97cdf0e10cSrcweir};
98cdf0e10cSrcweir
99cdf0e10cSrcweirString STR_SVT_COLLATE_PINYIN
100cdf0e10cSrcweir{
101cdf0e10cSrcweir	/* chinese sorting algorithm */
102cdf0e10cSrcweir	Text [ en-US ] = "Pinyin";
103cdf0e10cSrcweir};
104cdf0e10cSrcweir
105cdf0e10cSrcweirString STR_SVT_COLLATE_STROKE
106cdf0e10cSrcweir{
107cdf0e10cSrcweir	/* chinese sorting algorithm */
108cdf0e10cSrcweir	Text [ en-US ] = "Stroke";
109cdf0e10cSrcweir};
110cdf0e10cSrcweir
111cdf0e10cSrcweirString STR_SVT_COLLATE_RADICAL
112cdf0e10cSrcweir{
113cdf0e10cSrcweir	/* chinese sorting algorithm */
114cdf0e10cSrcweir	Text [ en-US ] = "Radical";
115cdf0e10cSrcweir};
116cdf0e10cSrcweir
117cdf0e10cSrcweirString STR_SVT_COLLATE_UNICODE
118cdf0e10cSrcweir{
119cdf0e10cSrcweir	/* sorting according to the unicode code point of the character */
120cdf0e10cSrcweir	Text [ en-US ] = "Unicode";
121cdf0e10cSrcweir};
122cdf0e10cSrcweir
123cdf0e10cSrcweirString STR_SVT_COLLATE_ZHUYIN
124cdf0e10cSrcweir{
125cdf0e10cSrcweir	/* chinese sorting algorithm */
126cdf0e10cSrcweir	Text [ en-US ] = "Zhuyin";
127cdf0e10cSrcweir};
128cdf0e10cSrcweir
129cdf0e10cSrcweirString STR_SVT_COLLATE_PHONEBOOK
130cdf0e10cSrcweir{
131cdf0e10cSrcweir	/* phone book sorting algorithm. e.g. German */
132cdf0e10cSrcweir	Text [ en-US ] = "Phone book";
133cdf0e10cSrcweir};
134cdf0e10cSrcweir
135cdf0e10cSrcweirString STR_SVT_COLLATE_PHONETIC_F
136cdf0e10cSrcweir{
137cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric first)";
138cdf0e10cSrcweir};
139cdf0e10cSrcweir
140cdf0e10cSrcweirString STR_SVT_COLLATE_PHONETIC_L
141cdf0e10cSrcweir{
142cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric last)";
143cdf0e10cSrcweir};
144cdf0e10cSrcweir
145cdf0e10cSrcweirString STR_SVT_INDEXENTRY_ALPHANUMERIC
146cdf0e10cSrcweir{
147cdf0e10cSrcweir	/* alphanumeric indexentry algorithm */
148cdf0e10cSrcweir    Text [ en-US ] = "Alphanumeric";
149cdf0e10cSrcweir};
150cdf0e10cSrcweir
151cdf0e10cSrcweirString STR_SVT_INDEXENTRY_DICTIONARY
152cdf0e10cSrcweir{
153cdf0e10cSrcweir	/* korean dictionary indexentry algorithm */
154cdf0e10cSrcweir    Text [ en-US ] = "Dictionary";
155cdf0e10cSrcweir};
156cdf0e10cSrcweir
157cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PINYIN
158cdf0e10cSrcweir{
159cdf0e10cSrcweir	/* chinese sorting algorithm */
160cdf0e10cSrcweir    Text [ en-US ] = "Pinyin";
161cdf0e10cSrcweir};
162cdf0e10cSrcweir
163cdf0e10cSrcweirString STR_SVT_INDEXENTRY_RADICAL
164cdf0e10cSrcweir{
165cdf0e10cSrcweir	/* chinese indexentry algorithm */
166cdf0e10cSrcweir    Text [ en-US ] = "Radical";
167cdf0e10cSrcweir};
168cdf0e10cSrcweir
169cdf0e10cSrcweirString STR_SVT_INDEXENTRY_STROKE
170cdf0e10cSrcweir{
171cdf0e10cSrcweir	/* chinese indexentry algorithm */
172cdf0e10cSrcweir    Text [ en-US ] = "Stroke";
173cdf0e10cSrcweir};
174cdf0e10cSrcweir
175cdf0e10cSrcweirString STR_SVT_INDEXENTRY_ZHUYIN
176cdf0e10cSrcweir{
177cdf0e10cSrcweir	/* chinese indexentry algorithm */
178cdf0e10cSrcweir    Text [ en-US ] = "Zhuyin";
179cdf0e10cSrcweir};
180cdf0e10cSrcweir
181cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_FS
182cdf0e10cSrcweir{
183cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric first, grouped by syllables)";
184cdf0e10cSrcweir};
185cdf0e10cSrcweir
186cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_FC
187cdf0e10cSrcweir{
188cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric first, grouped by consonants)";
189cdf0e10cSrcweir};
190cdf0e10cSrcweir
191cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_LS
192cdf0e10cSrcweir{
193cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric last, grouped by syllables)";
194cdf0e10cSrcweir};
195cdf0e10cSrcweir
196cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_LC
197cdf0e10cSrcweir{
198cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric last, grouped by consonants)";
199cdf0e10cSrcweir};
200cdf0e10cSrcweir
201cdf0e10cSrcweir
202cdf0e10cSrcweir
203cdf0e10cSrcweir
204cdf0e10cSrcweir
205cdf0e10cSrcweir
206cdf0e10cSrcweir
207cdf0e10cSrcweir
208cdf0e10cSrcweir
209cdf0e10cSrcweir
210cdf0e10cSrcweir
211cdf0e10cSrcweir
212cdf0e10cSrcweir
213cdf0e10cSrcweir
214cdf0e10cSrcweir
215cdf0e10cSrcweir
216cdf0e10cSrcweir
217cdf0e10cSrcweir
218cdf0e10cSrcweir
219cdf0e10cSrcweir
220cdf0e10cSrcweir
221cdf0e10cSrcweir
222cdf0e10cSrcweir
223cdf0e10cSrcweir
224cdf0e10cSrcweir
225cdf0e10cSrcweir
226cdf0e10cSrcweir
227cdf0e10cSrcweir
228cdf0e10cSrcweir
229