xref: /aoo4110/main/sc/source/ui/styleui/styledlg.src (revision b1cdbd2c)
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 "sc.hrc"
25#include "styledlg.hrc" // -> TP_xxx
26TabDialog RID_SCDLG_STYLES_PAR
27{
28	OutputSize = TRUE ;
29	SVLook = TRUE ;
30	Size = MAP_APPFONT ( 289 , 176 ) ;
31	Text [ en-US ] = "Cell Style" ;
32	Moveable = TRUE ;
33	Closeable = FALSE ;
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 = TP_NUMBER ;
44				Text [ en-US ] = "Numbers" ;
45			};
46			PageItem
47			{
48				Identifier = TP_FONT ;
49				/* ### ACHTUNG: Neuer Text in Resource? Schrift : Zeichen */
50				Text [ en-US ] = "Font" ;
51			};
52			PageItem
53			{
54				Identifier = TP_FONTEFF ;
55				Text [ en-US ] = "Font Effects";
56			};
57			PageItem
58			{
59				Identifier = TP_ALIGNMENT ;
60				Text [ en-US ] = "Alignment" ;
61			};
62			PageItem
63			{
64				Identifier = TP_ASIAN ;
65				Text [ en-US ] = "Asian Typography";
66			};
67			PageItem
68			{
69				Identifier = TP_BORDER ;
70				Text [ en-US ] = "Borders" ;
71			};
72			PageItem
73			{
74				Identifier = TP_BACKGROUND ;
75				Text [ en-US ] = "Background" ;
76			};
77			PageItem
78			{
79				Identifier = TP_PROTECTION ;
80				Text [ en-US ] = "Cell Protection" ;
81			};
82		};
83	};
84};
85TabDialog RID_SCDLG_STYLES_PAGE
86{
87	OutputSize = TRUE ;
88	SVLook = TRUE ;
89	Size = MAP_APPFONT ( 280 , 165 ) ;
90	Text [ en-US ] = "Page Style" ;
91	Moveable = TRUE ;
92	Closeable = FALSE ;
93	TabControl 1
94	{
95		OutputSize = TRUE ;
96		Pos = MAP_APPFONT ( 3 , 6 ) ;
97		Size = MAP_APPFONT ( 260 , 135 ) ;
98		PageList =
99		{
100			PageItem
101			{
102				Identifier = TP_PAGE_STD ;
103				Text [ en-US ] = "Page" ;
104			};
105			PageItem
106			{
107				Identifier = TP_BORDER ;
108				Text [ en-US ] = "Borders" ;
109			};
110			PageItem
111			{
112				Identifier = TP_BACKGROUND ;
113				Text [ en-US ] = "Background" ;
114			};
115			PageItem
116			{
117				Identifier = TP_PAGE_HEADER ;
118				Text [ en-US ] = "Header" ;
119			};
120			PageItem
121			{
122				Identifier = TP_PAGE_FOOTER ;
123				Text [ en-US ] = "Footer" ;
124			};
125			PageItem
126			{
127				Identifier = TP_TABLE ;
128				Text [ en-US ] = "Sheet" ;
129			};
130		};
131	};
132};
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169