xref: /trunk/main/svx/source/dialog/ctredlin.src (revision 61dff127b6698e0bae836c8aedd6ec62111483d1)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "ctredlin.hrc"
29#include "helpid.hrc"
30
31#define MASKCOLOR   MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; } ;
32
33TabPage SID_REDLIN_FILTER_PAGE
34{
35    String STR_FILTER
36    {
37        Text [ en-US ] = "Filter" ;
38    };
39    HelpId = HID_REDLINING_FILTER_PAGE ;
40    OutputSize = TRUE ;
41    SVLook = TRUE ;
42    Size = MAP_APPFONT ( 261 , 86 ) ;
43    Hide = TRUE ;
44    CheckBox CB_DATE
45    {
46        Pos = MAP_APPFONT ( 6 , 8 ) ;
47        Size = MAP_APPFONT ( 50 , 10 ) ;
48        TabStop = TRUE ;
49        HelpId = HID_REDLINING_FILTER_CB_DATE ;
50        Text [ en-US ] = "~Date" ;
51    };
52    ListBox LB_DATE
53    {
54        HelpId = HID_REDLINING_FILTER_LB_DATE ;
55        Border = TRUE ;
56        Disable = TRUE ;
57        Pos = MAP_APPFONT ( 60 , 6 ) ;
58        Size = MAP_APPFONT ( 78 , 99 ) ;
59        TabStop = TRUE ;
60        DropDown = TRUE ;
61        StringList [ en-US ] =
62        {
63            < "earlier than" ; Default ; > ;
64            < "since" ; Default ; > ;
65            < "equal to " ; Default ; > ;
66            < "not equal to" ; Default ; > ;
67            < "between" ; Default ; > ;
68            < "since saving" ; Default ; > ;
69        };
70    };
71    DateField DF_DATE
72    {
73        HelpId = HID_REDLINING_FILTER_DF_DATE ;
74        Disable = TRUE ;
75        Border = TRUE ;
76        Pos = MAP_APPFONT ( 144 , 6 ) ;
77        Size = MAP_APPFONT ( 57 , 12 ) ;
78        TabStop = TRUE ;
79        Spin = TRUE ;
80        Repeat = TRUE ;
81        Minimum = Date
82        {
83            Year = 1985 ;
84            Month = 12 ;
85            Day = 31 ;
86        };
87        Maximum = Date
88        {
89            Year = 2050 ;
90            Month = 12 ;
91            Day = 31 ;
92        };
93    };
94    TimeField TF_DATE
95    {
96        HelpId = HID_REDLINING_FILTER_TF_DATE ;
97        Disable = TRUE ;
98        Border = TRUE ;
99        Pos = MAP_APPFONT ( 203 , 6 ) ;
100        Size = MAP_APPFONT ( 35 , 12 ) ;
101        TabStop = TRUE ;
102        Repeat = TRUE ;
103        Spin = TRUE ;
104    };
105    ImageButton IB_CLOCK
106    {
107        HelpId = HID_REDLINING_FILTER_IB_CLOCK ;
108        Disable = TRUE ;
109        Pos = MAP_APPFONT ( 240 , 5 ) ;
110        Size = MAP_APPFONT ( 13 , 15 ) ;
111        TabStop = TRUE ;
112        ButtonImage = Image
113        {
114            ImageBitmap = Bitmap { File = "time.bmp" ; };
115            MASKCOLOR
116        };
117        // IAccessibility2 implementation 2009. ------
118        //QuickHelpText [ en-US ] = "Set Date/Time" ;
119        QuickHelpText [ en-US ] = "Set Start Date/Time" ;
120        // ------ IAccessibility2 implementation 2009.
121    };
122    FixedText FT_DATE2
123    {
124        Pos = MAP_APPFONT ( 60 , 24 ) ;
125        Size = MAP_APPFONT ( 78 , 8 ) ;
126        Right = TRUE ;
127        Disable = TRUE ;
128        Text [ en-US ] = "and" ;
129    };
130    DateField DF_DATE2
131    {
132        HelpId = HID_REDLINING_FILTER_DF_DATE2 ;
133        Border = TRUE ;
134        Disable = TRUE ;
135        Pos = MAP_APPFONT ( 144 , 22 ) ;
136        Size = MAP_APPFONT ( 57 , 12 ) ;
137        TabStop = TRUE ;
138        Spin = TRUE ;
139        Repeat = TRUE ;
140        Minimum = Date
141        {
142            Year = 1985 ;
143            Month = 12 ;
144            Day = 31 ;
145        };
146        Maximum = Date
147        {
148            Year = 2050 ;
149            Month = 12 ;
150            Day = 31 ;
151        };
152    };
153    TimeField TF_DATE2
154    {
155        HelpId = HID_REDLINING_FILTER_TF_DATE2 ;
156        Border = TRUE ;
157        Disable = TRUE ;
158        Pos = MAP_APPFONT ( 203 , 22 ) ;
159        Size = MAP_APPFONT ( 35 , 12 ) ;
160        TabStop = TRUE ;
161        Spin = TRUE ;
162        Repeat = TRUE ;
163    };
164    ImageButton IB_CLOCK2
165    {
166        HelpId = HID_REDLINING_FILTER_IB_CLOCK2 ;
167        Disable = TRUE ;
168        Pos = MAP_APPFONT ( 240 , 21 ) ;
169        Size = MAP_APPFONT ( 13 , 15 ) ;
170        TabStop = TRUE ;
171        ButtonImage = Image
172        {
173            ImageBitmap = Bitmap { File = "time.bmp" ; };
174            MASKCOLOR
175        };
176        // IAccessibility2 implementation 2009. ------
177        //QuickHelpText [ en-US ] = "Set Date/Time" ;
178        QuickHelpText [ en-US ] = "Set End Date/Time" ;
179        // ------ IAccessibility2 implementation 2009.
180    };
181    CheckBox CB_AUTOR
182    {
183        HelpId = HID_REDLINING_FILTER_CB_AUTOR ;
184        Pos = MAP_APPFONT ( 6 , 40 ) ;
185        Size = MAP_APPFONT ( 50 , 10 ) ;
186        TabStop = TRUE ;
187        Text [ en-US ] = "~Author" ;
188    };
189    ListBox LB_AUTOR
190    {
191        HelpId = HID_REDLINING_FILTER_LB_AUTOR ;
192        Border = TRUE ;
193        Pos = MAP_APPFONT ( 60 , 38 ) ;
194        Size = MAP_APPFONT ( 178 , 100 ) ;
195        TabStop = TRUE ;
196        Disable = TRUE ;
197        DropDown = TRUE ;
198    };
199    CheckBox CB_RANGE
200    {
201        HelpId = HID_REDLINING_FILTER_CB_RANGE ;
202        Pos = MAP_APPFONT ( 6 , 56 ) ;
203        Size = MAP_APPFONT ( 50 , 10 ) ;
204        TabStop = TRUE ;
205        Text [ en-US ] = "~Range" ;
206    };
207    Edit ED_RANGE
208    {
209        HelpId = HID_REDLINING_FILTER_ED_RANGE ;
210        Disable = TRUE ;
211        Border = TRUE ;
212        Pos = MAP_APPFONT ( 60 , 54 ) ;
213        Size = MAP_APPFONT ( 178 , 12 ) ;
214        TabStop = TRUE ;
215    };
216    String STR_ACTION
217    {
218        Text [ en-US ] = "A~ction" ;
219    };
220    ListBox LB_ACTION
221    {
222        HelpId = HID_REDLINING_FILTER_LB_ACTION ;
223        Border = TRUE ;
224        Hide = TRUE ;
225        Disable = TRUE ;
226        Pos = MAP_APPFONT ( 60 , 54 ) ;
227        Size = MAP_APPFONT ( 178 , 100 ) ;
228        TabStop = TRUE ;
229        DropDown = TRUE ;
230    };
231    PushButton BTN_REF
232    {
233        HelpId = HID_REDLINING_FILTER_BTN_REF ;
234        Pos = MAP_APPFONT ( 240 , 54 ) ;
235        Size = MAP_APPFONT ( 12 , 12 ) ;
236        Disable = TRUE ;
237        TabStop = TRUE ;
238        QuickHelpText [ en-US ] = "Set Reference" ;
239        Text [ en-US ] = "..." ;
240    };
241    CheckBox CB_COMMENT
242    {
243        HelpId = HID_REDLINING_FILTER_CB_COMMENT ;
244        Pos = MAP_APPFONT ( 6 , 72 ) ;
245        Size = MAP_APPFONT ( 50 , 10 ) ;
246        TabStop = TRUE ;
247        Text [ en-US ] = "Comment";
248    };
249    Edit ED_COMMENT
250    {
251        HelpId = HID_REDLINING_FILTER_ED_COMMENT ;
252        Disable = TRUE ;
253        Border = TRUE ;
254        Pos = MAP_APPFONT ( 60 , 70 ) ;
255        Size = MAP_APPFONT ( 178 , 12 ) ;
256        TabStop = TRUE ;
257    };
258    Image IMG_TIME_H
259    {
260        ImageBitmap = Bitmap { File = "time_h.bmp" ; };
261        MASKCOLOR
262    };
263        /*IAccessibility2 Implementation 2009-----*/
264    String STR_DATE_COMBOX
265    {
266        Text [ en-US ] = "Date Condition" ;
267    };
268    String STR_DATE_SPIN
269    {
270        Text [ en-US ] = "Start Date" ;
271    };
272    String STR_DATE_SPIN1
273    {
274        Text [ en-US ] = "End Date" ;
275    };
276    String STR_DATE_TIME_SPIN
277    {
278        Text [ en-US ] = "Start Time" ;
279    };
280    String STR_DATE_TIME_SPIN1
281    {
282        Text [ en-US ] = "End Time" ;
283    };
284    /*-----IAccessibility2 Implementation 2009*/
285};
286TabPage SID_REDLIN_VIEW_PAGE
287{
288    HelpId = HID_REDLINING_VIEW_PAGE ;
289    OutputSize = TRUE ;
290    SVLook = TRUE ;
291    Size = MAP_APPFONT ( 270 , 126 ) ;
292    Hide = TRUE ;
293    String STR_VIEW
294    {
295        Text [ en-US ] = "List" ;
296    };
297    Control DG_VIEW
298    {
299        HelpId = HID_REDLINING_VIEW_DG_VIEW ;
300        Pos = MAP_APPFONT ( 3 , 1 ) ;
301        Size = MAP_APPFONT ( 221 , 65 ) ;
302        Border = TRUE ;
303    };
304    PushButton PB_ACCEPT
305    {
306        HelpId = HID_REDLINING_VIEW_PB_ACCEPT ;
307        Pos = MAP_APPFONT ( 3 , 69 ) ;
308        Size = MAP_APPFONT ( 60 , 14 ) ;
309        Text [ en-US ] = "~Accept" ;
310    };
311    PushButton PB_REJECT
312    {
313        HelpId = HID_REDLINING_VIEW_PB_REJECT ;
314        Pos = MAP_APPFONT ( 69 , 69 ) ;
315        Size = MAP_APPFONT ( 60 , 14 ) ;
316        Text [ en-US ] = "~Reject" ;
317    };
318    PushButton PB_ACCEPTALL
319    {
320        HelpId = HID_REDLINING_VIEW_PB_ACCEPTALL ;
321        Pos = MAP_APPFONT ( 141 , 69 ) ;
322        Size = MAP_APPFONT ( 60 , 14 ) ;
323        Text [ en-US ] = "A~ccept All" ;
324    };
325    PushButton PB_REJECTALL
326    {
327        HelpId = HID_REDLINING_VIEW_PB_REJECTALL ;
328        Pos = MAP_APPFONT ( 207 , 69 ) ;
329        Size = MAP_APPFONT ( 60 , 14 ) ;
330        Text [ en-US ] = "R~eject All" ;
331    };
332
333    PushButton PB_UNDO
334    {
335        HelpId = HID_REDLINING_VIEW_PB_UNDO ;
336        Hide = TRUE;
337        Pos  = MAP_APPFONT ( 279 , 69 ) ;
338        Size = MAP_APPFONT ( 60 , 14 ) ;
339        Text [ en-US ] = "Undo";
340    };
341    String STR_TITLE1
342    {
343        Text [ en-US ] = "Action" ;
344    };
345    String STR_TITLE2
346    {
347        Text [ en-US ] = "Position" ;
348    };
349    String STR_TITLE3
350    {
351        Text [ en-US ] = "Author" ;
352    };
353    String STR_TITLE4
354    {
355        Text [ en-US ] = "Date" ;
356    };
357    String STR_TITLE5
358    {
359        Text [ en-US ] = "Comment" ;
360    };
361    String STR_TREE
362    {
363        Text [ en-US ] = "Changes" ;
364    };
365};
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398