merge the formfield patch from ooo-build
[ooovba.git] / sd / source / ui / dlg / navigatr.src
blobfd391ba4715b982d7686da19ca57ecc09220317f
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: navigatr.src,v $
10  * $Revision: 1.37 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #include "navigatr.hrc"
32 #include "helpids.h"
33 #include "res_bmp.hrc"
34 #define BUTTON_WIDTH 13
35 #define BUTTON_COUNT 7
36 #define BUTTON_SIZE MAP_APPFONT( BUTTON_WIDTH, BUTTON_WIDTH );
37 Window FLT_NAVIGATOR
39     HelpId = HID_SD_NAVIGATOR ;
40     Size = MAP_APPFONT ( 12 + BUTTON_WIDTH * BUTTON_COUNT , 105 ) ;
41     Text = "Navigator" ;
42     SVLook = TRUE ;
43     DialogControl = TRUE;
44     Control TLB_OBJECTS
45     {
46         HelpId = HID_SD_NAVIGATOR_TLB ;
47         Border = TRUE ;
48         Pos = MAP_APPFONT ( 3 , 20 ) ;
49         Size = MAP_APPFONT ( 6 + BUTTON_WIDTH * BUTTON_COUNT , 67 ) ;
50         TabStop = TRUE ;
51     };
52     ToolBox 1
53     {
54         HelpId = HID_SD_NAVIGATOR_TBX ;
55         SVLook = TRUE ;
56         Pos = MAP_APPFONT ( 3 , 3 ) ;
57         Size = MAP_APPFONT ( 6 + BUTTON_WIDTH , 15 ) ;
58         TabStop = TRUE ;
59         ItemList =
60         {
61             ToolBoxItem
62             {
63                 AutoCheck = TRUE ;
64                 Identifier = TBI_PEN ;
65                 HelpId = HID_SD_NAVIGATOR_TBI_PEN ;
66                 Text [ en-US ] = "Pointer" ;
67             };
68             ToolBoxItem
69             {
70                 Type = TOOLBOXITEM_SEPARATOR ;
71             };
72             ToolBoxItem
73             {
74                 Identifier = TBI_FIRST ;
75                 HelpId = HID_SD_NAVIGATOR_TBI_FIRST ;
76                  //Symbol = IMAGEBUTTON_FIRST ;
77                 Text [ en-US ] = "First Slide" ;
78             };
79             ToolBoxItem
80             {
81                 Identifier = TBI_PREVIOUS ;
82                 HelpId = HID_SD_NAVIGATOR_TBI_PREV ;
83                  //Symbol = IMAGEBUTTON_PREV ;
84                 Text [ en-US ] = "Previous Slide" ;
85             };
86             ToolBoxItem
87             {
88                 Identifier = TBI_NEXT ;
89                 HelpId = HID_SD_NAVIGATOR_TBI_NEXT ;
90                  //Symbol = IMAGEBUTTON_NEXT ;
91                 /* ### ACHTUNG: Neuer Text in Resource? Nächste Seite : Nõchste Seite */
92                 /* ### ACHTUNG: Neuer Text in Resource? Zur nächsten Seite springen : Zur nõchsten Seite springen */
93                 Text [ en-US ] = "Next Slide" ;
94             };
95             ToolBoxItem
96             {
97                 Identifier = TBI_LAST ;
98                 HelpId = HID_SD_NAVIGATOR_TBI_LAST ;
99                  //Symbol = IMAGEBUTTON_LAST ;
100                 Text [ en-US ] = "Last Slide" ;
101             };
102             ToolBoxItem
103             {
104                 Type = TOOLBOXITEM_SEPARATOR ;
105             };
106             ToolBoxItem
107             {
108                 Identifier = TBI_DRAGTYPE ;
109                 HelpId = HID_SD_NAVIGATOR_TBI_DRAGTYPE ;
110                 DropDown = TRUE ;
111                  //Left = FALSE;
112                 /* ### ACHTUNG: Neuer Text in Resource? Modus für Drag & Drop auswählen : Modus f³r Drag & Drop auswõhlen */
113                 Text [ en-US ] = "Drag Mode" ;
114             };
115             ToolBoxItem
116             {
117                 Identifier = TBI_SHAPE_FILTER ;
118                 HelpId = HID_SD_NAVIGATOR_TBI_SHAPE_FILTER ;
119                 DropDown = TRUE ;
120                 Text [ en-US ] = "Show Shapes" ;
121             };
122         };
123     };
124     ListBox LB_DOCS
125     {
126         HelpId = HID_SD_NAVIGATOR_LB ;
127         Border = TRUE ;
128         Pos = MAP_APPFONT ( 3 , 89 ) ;
129         Size = MAP_APPFONT ( 6 + BUTTON_WIDTH * BUTTON_COUNT , 90 ) ;
130         TabStop = TRUE ;
131         DropDown = TRUE ;
132         QuickHelpText [ en-US ] = "Documents" ;
133         /* ### ACHTUNG: Neuer Text in Resource? Geöffnete Dokumente : Ge÷ffnete Dokumente */
134     };
136     #define NAVIGATR_IDLIST \
137         IdList =            \
138         {                   \
139             TBI_PEN ;   \
140             TBI_FIRST ; \
141             TBI_PREVIOUS ;      \
142             TBI_NEXT ;  \
143             TBI_LAST ;  \
144             TBI_EMBEDDED ;      \
145             TBI_LINK ; \
146             TBI_HYPERLINK ; \
147         };                 \
148         IdCount = { 8 ; };
150     #define IMAGE_STDBTN_COLOR Color { Red = 0xff00; Green = 0x0000; Blue = 0xff00; }
152     ImageList IL_NAVIGATR
153     {
154         Prefix = "nv";
155         MaskColor = IMAGE_STDBTN_COLOR ;
156         NAVIGATR_IDLIST
157     };
158     ImageList ILH_NAVIGATR
159     {
160         Prefix = "nvh";                 
161         MaskColor = IMAGE_STDBTN_COLOR ;
162            NAVIGATR_IDLIST
163     };