xref: /AOO41X/main/sd/source/ui/dlg/tabtempl.src (revision e33492276f639ebe26fc2b5c7b0b687b13d47e4b)
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#include "tabtempl.hrc"
25#include <svx/dialogs.hrc>
26TabDialog TAB_TEMPLATE
27{
28    OutputSize = TRUE ;
29    SVLook = TRUE ;
30    Size = MAP_APPFONT ( 289 , 176 ) ;
31    Text [ en-US ] = "Graphics Styles" ;
32    Moveable = TRUE ;
33     // Closeable = TRUE; // Dieser Dialog hat OK und/oder Cancel Button ! (KH)
34    TabControl 1
35    {
36        OutputSize = TRUE ;
37        Pos = MAP_APPFONT ( 3 , 3 ) ;
38        Size = MAP_APPFONT ( 260 , 135 ) ;
39        PageList =
40        {
41            PageItem
42            {
43                Identifier = RID_SVXPAGE_LINE ;
44                Text [ en-US ] = "Line" ;
45                PageResID = RID_SVXPAGE_LINE ;
46            };
47            PageItem
48            {
49                Identifier = RID_SVXPAGE_AREA ;
50                /* ### ACHTUNG: Neuer Text in Resource? Fl�che : Fl�che */
51                Text [ en-US ] = "Area" ;
52                PageResID = RID_SVXPAGE_AREA ;
53            };
54            PageItem
55            {
56                Identifier = RID_SVXPAGE_SHADOW ;
57                PageResID = RID_SVXPAGE_SHADOW ;
58                Text [ en-US ] = "Shadowing" ;
59            };
60            PageItem
61            {
62                Identifier = RID_SVXPAGE_TRANSPARENCE ;
63                Text [ en-US ] = "Transparency";
64            };
65            PageItem
66            {
67                Identifier = RID_SVXPAGE_CHAR_NAME;
68                Text [ en-US ] = "Font" ;
69                PageResID = RID_SVXPAGE_CHAR_NAME ;
70            };
71            PageItem
72            {
73                Identifier = RID_SVXPAGE_CHAR_EFFECTS ;
74                Text [ en-US ] = "Font Effect" ;
75                PageResID = RID_SVXPAGE_CHAR_EFFECTS ;
76            };
77            PageItem
78            {
79                Identifier = RID_SVXPAGE_STD_PARAGRAPH ;
80                /* ### ACHTUNG: Neuer Text in Resource? Einz�ge und Abst�nde : Einz�ge und Abst�nde */
81                Text [ en-US ] = "Indents & Spacing" ;
82                PageResID = RID_SVXPAGE_STD_PARAGRAPH ;
83            };
84            PageItem
85            {
86                Identifier = RID_SVXPAGE_TEXTATTR ;
87                PageResID = RID_SVXPAGE_TEXTATTR ;
88                Text [ en-US ] = "Text" ;
89            };
90            PageItem
91            {
92                Identifier = RID_SVXPAGE_TEXTANIMATION ;
93                PageResID = RID_SVXPAGE_TEXTANIMATION ;
94                Text [ en-US ] = "Text Animation" ;
95            };
96            PageItem
97            {
98                Identifier = RID_SVXPAGE_MEASURE ;
99                /* ### ACHTUNG: Neuer Text in Resource? Bema�ung : Bema�ung */
100                Text [ en-US ] = "Dimensioning" ;
101                PageResID = RID_SVXPAGE_MEASURE ;
102            };
103            PageItem
104            {
105                Identifier = RID_SVXPAGE_CONNECTION ;
106                Text [ en-US ] = "Connector" ;
107            };
108            PageItem
109            {
110                Identifier = RID_SVXPAGE_ALIGN_PARAGRAPH ;
111                PageResID = RID_SVXPAGE_ALIGN_PARAGRAPH ;
112                Text [ en-US ] = "Alignment" ;
113            };
114            PageItem
115            {
116                Identifier = RID_SVXPAGE_PARA_ASIAN ;
117                PageResID = RID_SVXPAGE_PARA_ASIAN ;
118                Text[ en-US ] = "Asian Typography";
119            };
120            PageItem
121            {
122                Identifier = RID_SVXPAGE_TABULATOR ;
123                Text [ en-US ] = "Tabs" ;
124                PageResID = RID_SVXPAGE_TABULATOR ;
125            };
126        };
127    };
128    OKButton 1
129    {
130        Pos = MAP_APPFONT ( 6 , 151 ) ;
131        Size = MAP_APPFONT ( 50 , 14 ) ;
132        TabStop = TRUE ;
133    };
134    CancelButton 1
135    {
136        Pos = MAP_APPFONT ( 60 , 151 ) ;
137        Size = MAP_APPFONT ( 50 , 14 ) ;
138        TabStop = TRUE ;
139    };
140    HelpButton 1
141    {
142        Pos = MAP_APPFONT ( 114 , 151 ) ;
143        Size = MAP_APPFONT ( 50 , 14 ) ;
144        TabStop = TRUE ;
145    };
146    PushButton 1
147    {
148        Pos = MAP_APPFONT ( 169 , 151 ) ;
149        Size = MAP_APPFONT ( 50 , 14 ) ;
150        /* ### ACHTUNG: Neuer Text in Resource? Zur�ck : Zur�ck */
151        Text [ en-US ] = "Back" ;
152        TabStop = TRUE ;
153    };
154};
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190