xref: /trunk/main/sw/source/ui/ribbar/workctrl.src (revision 7950f2af818787db817abe90d4dbb3d6d8409899)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#ifndef _SVXIDS_HRC
25#include <svx/svxids.hrc>
26#endif
27#ifndef _GLOBLMN_HRC
28#include <svx/globlmn.hrc>
29#endif
30#include "workctrl.hrc"
31#include "helpid.h"
32#include "cmdid.h"
33
34Menu RID_INSERT_FIELD_CTRL
35{
36    ItemList =
37    {
38        MenuItem
39        {
40            Identifier = FN_INSERT_FLD_DATE ;
41            HelpId = CMD_FN_INSERT_FLD_DATE ;
42            Text [ en-US ] = "Date" ;
43        };
44        MenuItem
45        {
46            Identifier = FN_INSERT_FLD_TIME ;
47            HelpId = CMD_FN_INSERT_FLD_TIME ;
48            Text [ en-US ] = "Time" ;
49        };
50        //#ifndef MN_SW_WEB
51        MenuItem
52        {
53            Identifier = FN_INSERT_FLD_PGNUMBER ;
54            HelpId = CMD_FN_INSERT_FLD_PGNUMBER ;
55            Text [ en-US ] = "Page Number" ;
56        };
57        MenuItem
58        {
59            Identifier = FN_INSERT_FLD_PGCOUNT ;
60            HelpId = CMD_FN_INSERT_FLD_PGCOUNT ;
61            Text [ en-US ] = "Page Count" ;
62        };
63        MenuItem
64        {
65            Identifier = FN_INSERT_FLD_TOPIC ;
66            HelpId = CMD_FN_INSERT_FLD_TOPIC ;
67            Text [ en-US ] = "Subject" ;
68        };
69        MenuItem
70        {
71            Identifier = FN_INSERT_FLD_TITLE ;
72            HelpId = CMD_FN_INSERT_FLD_TITLE ;
73            Text [ en-US ] = "Title" ;
74        };
75        //#endif
76        MenuItem
77        {
78            Identifier = FN_INSERT_FLD_AUTHOR ;
79            HelpId = CMD_FN_INSERT_FLD_AUTHOR ;
80            Text [ en-US ] = "Author" ;
81        };
82        MenuItem
83        {
84            Separator = TRUE ;
85        };
86        MenuItem
87        {
88            Identifier = FN_INSERT_FIELD ;
89            HelpId = CMD_FN_INSERT_FIELD ;
90            Text [ en-US ] = "Other..." ;
91        };
92    };
93};
94#define SCROLL_IMAGE_IDLIST             \
95        IdList =                        \
96        {                               \
97            NID_NEXT ;                  \
98            NID_PREV ;                  \
99            NID_TBL ;                   \
100            NID_FRM ;                   \
101            NID_PGE ;                   \
102            NID_DRW ;                   \
103            NID_CTRL ;                  \
104            NID_REG ;                   \
105            NID_BKM ;                   \
106            NID_GRF ;                   \
107            NID_OLE ;                   \
108            NID_OUTL ;                  \
109            NID_SEL ;                   \
110            NID_FTN ;                   \
111            NID_MARK ;                  \
112            NID_POSTIT ;                \
113            NID_SRCH_REP ;              \
114            NID_INDEX_ENTRY ;           \
115            NID_TABLE_FORMULA ;         \
116            NID_TABLE_FORMULA_ERROR ;   \
117        };                              \
118        IdCount = { 20 ; };
119
120FloatingWindow RID_SCROLL_NAVIGATION_WIN
121{
122    Moveable = TRUE ;
123    Closeable = TRUE ;
124    Hide = TRUE ;
125    SVLook = TRUE ;
126    HelpID = HID_INSERT_CTRL ;
127    ImageList IL_VALUES
128    {
129        Prefix = "sr" ;
130        MaskColor = IMAGE_MASK_COLOR ;
131        SCROLL_IMAGE_IDLIST
132    };
133    ImageList ILH_VALUES
134    {
135        Prefix = "srh" ;
136        MaskColor = IMAGE_MASK_COLOR ;
137        SCROLL_IMAGE_IDLIST
138    };
139    FixedLine FL_SEP
140    {
141        // no position, no text
142        Size = MAP_APPFONT ( 20, 4 ) ;
143    };
144    FixedText FI_INFO
145    {
146        // no position, no text
147        Size = MAP_APPFONT ( 20, 8 ) ;
148        Center = TRUE ;
149    };
150    String ST_TBL
151    {
152        Text [ en-US ] = "Table" ;
153    };
154    String ST_FRM
155    {
156        Text [ en-US ] = "Text Frame" ;
157    };
158    String ST_PGE
159    {
160        Text [ en-US ] = "Page" ;
161    };
162    String ST_DRW
163    {
164        Text [ en-US ] = "Drawing" ;
165    };
166    String ST_CTRL
167    {
168        Text [ en-US ] = "Control" ;
169    };
170    String ST_REG
171    {
172        Text [ en-US ] = "Section" ;
173    };
174    String ST_BKM
175    {
176        Text [ en-US ] = "Bookmark" ;
177    };
178    String ST_GRF
179    {
180        Text [ en-US ] = "Graphics" ;
181    };
182    String ST_OLE
183    {
184        Text [ en-US ] = "OLE object" ;
185    };
186    String ST_OUTL
187    {
188        Text [ en-US ] = "Headings" ;
189    };
190    String ST_SEL
191    {
192        Text [ en-US ] = "Selection" ;
193    };
194    String ST_FTN
195    {
196        Text [ en-US ] = "Footnote" ;
197    };
198    String ST_MARK
199    {
200        Text [ en-US ] = "Reminder" ;
201    };
202    String ST_POSTIT
203    {
204        Text [ en-US ] = "Comment" ;
205    };
206    String ST_SRCH_REP
207    {
208        Text [ en-US ] = "Repeat search" ;
209    };
210    String ST_INDEX_ENTRY
211    {
212        Text [ en-US ] = "Index entry" ;
213    };
214    String ST_TABLE_FORMULA
215    {
216        Text [ en-US ] = "Table formula" ;
217    };
218    String ST_TABLE_FORMULA_ERROR
219    {
220        Text [ en-US ] = "Wrong table formula" ;
221    };
222    Text [ en-US ] = "Navigation" ;
223};
224/*
225Noch ein paar Reserven
226            ToolBoxItem
227            {
228                Identifier = NID_NEXT;
229                Text = "Vorwärts" ;
230                        };
231            ToolBoxItem
232            {
233                Identifier = NID_PREV;
234                Text = "Rückwärts" ;
235                        };
236            ToolBoxItem
237            {
238                Identifier = NID_CTRL;
239                Text = "Control" ;
240                        };
241            ToolBoxItem
242            {
243                Identifier = NID_DRW;
244                Text = "Zeichenobjekt" ;
245                        };
246
247
248*/
249/***************************************************************
250    Quickhelp strings for View-Up/Down buttons
251***************************************************************/
252String STR_IMGBTN_NEXT_DOWN
253{
254    Text = "" ;
255};
256String STR_IMGBTN_PREV_DOWN
257{
258    Text = "" ;
259};
260String STR_IMGBTN_TBL_DOWN
261{
262    Text [ en-US ] = "Next table" ;
263};
264String STR_IMGBTN_FRM_DOWN
265{
266    Text [ en-US ] = "Next text frame" ;
267};
268String STR_IMGBTN_PGE_DOWN
269{
270    Text [ en-US ] = "Next page" ;
271};
272String STR_IMGBTN_DRW_DOWN
273{
274    Text [ en-US ] = "Next drawing" ;
275};
276String STR_IMGBTN_CTRL_DOWN
277{
278    Text [ en-US ] = "Next control" ;
279};
280String STR_IMGBTN_REG_DOWN
281{
282    Text [ en-US ] = "Next section" ;
283};
284String STR_IMGBTN_BKM_DOWN
285{
286    Text [ en-US ] = "Next bookmark" ;
287};
288String STR_IMGBTN_GRF_DOWN
289{
290    Text [ en-US ] = "Next graphic" ;
291};
292String STR_IMGBTN_OLE_DOWN
293{
294    Text [ en-US ] = "Next OLE object" ;
295};
296String STR_IMGBTN_OUTL_DOWN
297{
298    Text [ en-US ] = "Next heading" ;
299};
300String STR_IMGBTN_SEL_DOWN
301{
302    Text [ en-US ] = "Next selection" ;
303};
304String STR_IMGBTN_FTN_DOWN
305{
306    Text [ en-US ] = "Next footnote" ;
307};
308String STR_IMGBTN_MARK_DOWN
309{
310    Text [ en-US ] = "Next reminder" ;
311};
312String STR_IMGBTN_POSTIT_DOWN
313{
314    Text [ en-US ] = "Next comment" ;
315};
316String STR_IMGBTN_SRCH_REP_DOWN
317{
318    Text [ en-US ] = "Continue search forward" ;
319};
320String STR_IMGBTN_INDEX_ENTRY_DOWN
321{
322    Text [ en-US ] = "Next index entry" ;
323};
324String STR_IMGBTN_NEXT_UP
325{
326    Text = "" ;
327};
328String STR_IMGBTN_PREV_UP
329{
330    Text = "" ;
331};
332String STR_IMGBTN_TBL_UP
333{
334    Text [ en-US ] = "Previous table" ;
335};
336String STR_IMGBTN_FRM_UP
337{
338    Text [ en-US ] = "Previous text frame" ;
339};
340String STR_IMGBTN_PGE_UP
341{
342    Text [ en-US ] = "Previous page" ;
343};
344String STR_IMGBTN_DRW_UP
345{
346    Text [ en-US ] = "Previous drawing" ;
347};
348String STR_IMGBTN_CTRL_UP
349{
350    Text [ en-US ] = "Previous control" ;
351};
352String STR_IMGBTN_REG_UP
353{
354    Text [ en-US ] = "Previous section" ;
355};
356String STR_IMGBTN_BKM_UP
357{
358    Text [ en-US ] = "Previous bookmark" ;
359};
360String STR_IMGBTN_GRF_UP
361{
362    Text [ en-US ] = "Previous graphic" ;
363};
364String STR_IMGBTN_OLE_UP
365{
366    Text [ en-US ] = "Previous OLE object" ;
367};
368String STR_IMGBTN_OUTL_UP
369{
370    Text [ en-US ] = "Previous heading" ;
371};
372String STR_IMGBTN_SEL_UP
373{
374    Text [ en-US ] = "Previous selection" ;
375};
376String STR_IMGBTN_FTN_UP
377{
378    Text [ en-US ] = "Previous footnote" ;
379};
380String STR_IMGBTN_MARK_UP
381{
382    Text [ en-US ] = "Previous reminder" ;
383};
384String STR_IMGBTN_POSTIT_UP
385{
386    Text [ en-US ] = "Previous comment" ;
387};
388String STR_IMGBTN_SRCH_REP_UP
389{
390    Text [ en-US ] = "Continue search backwards" ;
391};
392String STR_IMGBTN_INDEX_ENTRY_UP
393{
394    Text [ en-US ] = "Previous index entry" ;
395};
396String STR_IMGBTN_TBLFML_UP
397{
398    Text [ en-US ] = "Previous table formula" ;
399};
400String STR_IMGBTN_TBLFML_DOWN
401{
402    Text [ en-US ] = "Next table formula" ;
403};
404String STR_IMGBTN_TBLFML_ERR_UP
405{
406    Text [ en-US ] = "Previous faulty table formula" ;
407};
408String STR_IMGBTN_TBLFML_ERR_DOWN
409{
410    Text [ en-US ] = "Next faulty table formula" ;
411};
412ImageButton BTN_NAVI
413{
414    HelpID = HID_NAVIGATION_IMGBTN ;
415    SVLOOK = TRUE ;
416    HIDE = TRUE ;
417    RectStyle = TRUE ;
418    SmallStyle = TRUE ;
419    Image IMG_BTN
420    {
421        ImageBitmap = Bitmap { File = "point.png" ; } ;
422    };
423    Image IMG_BTN_H
424    {
425        ImageBitmap = Bitmap { File = "point_h.png" ; } ;
426    };
427    String ST_QUICK
428    {
429        Text [ en-US ] = "Navigation" ;
430    };
431};
432ComboBox RID_PVIEW_ZOOM_LB
433{
434    HelpId = HID_PVIEW_ZOOM_LB ;
435    Size = MAP_APPFONT ( 30, 86 ) ;
436    DropDown = TRUE ;
437    AutoHScroll = TRUE ;
438    DDExtraWidth = TRUE ;
439    Border = TRUE ;
440    Hide = TRUE ;
441};
442
443// ********************************************************************** EOF
444