xref: /trunk/main/cui/source/tabpages/page.src (revision 635e0213207530aa4afd22a26b395eac0f6ec05a)
10e2af6afSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
30e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
40e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
50e2af6afSAndrew Rist * distributed with this work for additional information
60e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
70e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
80e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
90e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
130e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
140e2af6afSAndrew Rist * software distributed under the License is distributed on an
150e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
170e2af6afSAndrew Rist * specific language governing permissions and limitations
180e2af6afSAndrew Rist * under the License.
19cdf0e10cSrcweir *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
220e2af6afSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir// include ---------------------------------------------------------------
25cdf0e10cSrcweir
26cdf0e10cSrcweir#include <cuires.hrc>
27cdf0e10cSrcweir#include "helpid.hrc"
28cdf0e10cSrcweir#include "page.hrc"
29cdf0e10cSrcweir#include "page.h"
30cdf0e10cSrcweir#include <svx/dialogs.hrc>
31cdf0e10cSrcweir
32cdf0e10cSrcweir// RID_SVXPAGE_PAGE ------------------------------------------------------
33cdf0e10cSrcweir
34cdf0e10cSrcweirTabPage RID_SVXPAGE_PAGE
35cdf0e10cSrcweir{
36cdf0e10cSrcweir    HelpId = HID_FORMAT_PAGE ;
37cdf0e10cSrcweir    Hide = TRUE ;
38cdf0e10cSrcweir    Size = MAP_APPFONT ( 260, 185 ) ;
39cdf0e10cSrcweir    FixedLine FL_PAPER_SIZE
40cdf0e10cSrcweir    {
41cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 3 ) ;
42cdf0e10cSrcweir        Size = MAP_APPFONT ( 164, 8 ) ;
43cdf0e10cSrcweir        Text [ en-US ] = "Paper format" ;
44cdf0e10cSrcweir    };
45cdf0e10cSrcweir    FixedText FT_PAPER_FORMAT
46cdf0e10cSrcweir    {
47cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 16 ) ;
48cdf0e10cSrcweir        Size = MAP_APPFONT ( 35, 8 ) ;
49cdf0e10cSrcweir        Text [ en-US ] = "~Format" ;
50cdf0e10cSrcweir    };
51cdf0e10cSrcweir    ListBox LB_PAPER_SIZE
52cdf0e10cSrcweir    {
53cdf0e10cSrcweir        HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_SIZE" ;
54cdf0e10cSrcweir        Pos = MAP_APPFONT ( 50, 14 ) ;
5535936439SMatthias Seidel        Size = MAP_APPFONT ( 75, 64 ) ;
56cdf0e10cSrcweir        DropDown = TRUE ;
57cdf0e10cSrcweir        DDExtraWidth = TRUE ;
58cdf0e10cSrcweir    };
59cdf0e10cSrcweir    FixedText FT_PAPER_WIDTH
60cdf0e10cSrcweir    {
61cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 32 ) ;
62cdf0e10cSrcweir        Size = MAP_APPFONT ( 35, 8 ) ;
63cdf0e10cSrcweir        Text [ en-US ] = "~Width" ;
64cdf0e10cSrcweir        Left = TRUE ;
65cdf0e10cSrcweir    };
66cdf0e10cSrcweir    MetricField ED_PAPER_WIDTH
67cdf0e10cSrcweir    {
68cdf0e10cSrcweir        HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_WIDTH" ;
69cdf0e10cSrcweir        Border = TRUE ;
70cdf0e10cSrcweir        Pos = MAP_APPFONT ( 50, 30 ) ;
71cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 12 ) ;
72cdf0e10cSrcweir        Left = TRUE ;
73cdf0e10cSrcweir        Repeat = TRUE ;
74cdf0e10cSrcweir        Spin = TRUE ;
7560ef6715SMatthias Seidel        // #i4219# taken from configuration now Maximum = 11900 ;
76cdf0e10cSrcweir        DecimalDigits = 2 ;
77cdf0e10cSrcweir        Unit = FUNIT_CM ;
78cdf0e10cSrcweir        // #i4219# Last = 11900 ;
79cdf0e10cSrcweir        SpinSize = 10 ;
80cdf0e10cSrcweir    };
81cdf0e10cSrcweir    FixedText FT_PAPER_HEIGHT
82cdf0e10cSrcweir    {
83cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 48 ) ;
84cdf0e10cSrcweir        Size = MAP_APPFONT ( 35, 8 ) ;
85cdf0e10cSrcweir        Text [ en-US ] = "~Height" ;
86cdf0e10cSrcweir        Left = TRUE ;
87cdf0e10cSrcweir    };
88cdf0e10cSrcweir    MetricField ED_PAPER_HEIGHT
89cdf0e10cSrcweir    {
90cdf0e10cSrcweir        HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_HEIGHT" ;
91cdf0e10cSrcweir        Border = TRUE ;
92cdf0e10cSrcweir        Pos = MAP_APPFONT ( 50, 46 ) ;
93cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 12 ) ;
94cdf0e10cSrcweir        Left = TRUE ;
95cdf0e10cSrcweir        Repeat = TRUE ;
96cdf0e10cSrcweir        Spin = TRUE ;
9760ef6715SMatthias Seidel        // #i4219# taken from configuration now Maximum = 11900 ;
98cdf0e10cSrcweir        DecimalDigits = 2 ;
99cdf0e10cSrcweir        Unit = FUNIT_CM ;
100cdf0e10cSrcweir        // #i4219# Last = 11900 ;
101cdf0e10cSrcweir        SpinSize = 10 ;
102cdf0e10cSrcweir    };
103cdf0e10cSrcweir    FixedText FT_ORIENTATION
104cdf0e10cSrcweir    {
105cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 62 ) ;
106cdf0e10cSrcweir        Size = MAP_APPFONT ( 35, 8 ) ;
107cdf0e10cSrcweir        Text [ en-US ] = "Orientation" ;
108cdf0e10cSrcweir    };
109cdf0e10cSrcweir    RadioButton RB_PORTRAIT
110cdf0e10cSrcweir    {
111cdf0e10cSrcweir        HelpID = "cui:RadioButton:RID_SVXPAGE_PAGE:RB_PORTRAIT" ;
112cdf0e10cSrcweir        Pos = MAP_APPFONT ( 50, 62 ) ;
113cdf0e10cSrcweir        Size = MAP_APPFONT ( 53, 10 ) ;
114cdf0e10cSrcweir        Check = TRUE ;
115cdf0e10cSrcweir        Text [ en-US ] = "~Portrait" ;
116cdf0e10cSrcweir    };
117cdf0e10cSrcweir    RadioButton RB_LANDSCAPE
118cdf0e10cSrcweir    {
119cdf0e10cSrcweir        HelpID = "cui:RadioButton:RID_SVXPAGE_PAGE:RB_LANDSCAPE" ;
120cdf0e10cSrcweir        Pos = MAP_APPFONT ( 50, 74 ) ;
121cdf0e10cSrcweir        Size = MAP_APPFONT ( 53, 10 ) ;
122cdf0e10cSrcweir        Text [ en-US ] = "L~andscape" ;
123cdf0e10cSrcweir    };
124cdf0e10cSrcweir    Window WN_BSP
125cdf0e10cSrcweir    {
126cdf0e10cSrcweir        Pos = MAP_APPFONT ( 176, 6 ) ;
127cdf0e10cSrcweir        Size = MAP_APPFONT ( 75, 46 ) ;
128cdf0e10cSrcweir    };
129cdf0e10cSrcweir
130cdf0e10cSrcweir    FixedText FT_TEXT_FLOW
131cdf0e10cSrcweir    {
132cdf0e10cSrcweir        Pos = MAP_APPFONT ( 113, 60 ) ;
133cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 8 ) ;
134cdf0e10cSrcweir        Left = TRUE ;
135cdf0e10cSrcweir        Hide = TRUE ;
136cdf0e10cSrcweir        Text [ en-US ] = "~Text direction" ;
137cdf0e10cSrcweir    };
138cdf0e10cSrcweir    ListBox LB_TEXT_FLOW
139cdf0e10cSrcweir    {
140cdf0e10cSrcweir        HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_TEXT_FLOW" ;
141cdf0e10cSrcweir        Border = TRUE ;
142cdf0e10cSrcweir        Pos = MAP_APPFONT ( 165, 58 ) ;
143cdf0e10cSrcweir        Size = MAP_APPFONT ( 83, 50 ) ;
144cdf0e10cSrcweir        DropDown = TRUE ;
145cdf0e10cSrcweir        Hide = TRUE ;
146cdf0e10cSrcweir    };
147cdf0e10cSrcweir
148cdf0e10cSrcweir    FixedText FT_PAPER_TRAY
149cdf0e10cSrcweir    {
150cdf0e10cSrcweir        Pos = MAP_APPFONT ( 113, 74 ) ;
151cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 8 ) ;
152cdf0e10cSrcweir        Left = TRUE ;
153cdf0e10cSrcweir        Text [ en-US ] = "Paper ~tray" ;
154cdf0e10cSrcweir    };
155cdf0e10cSrcweir    ListBox LB_PAPER_TRAY
156cdf0e10cSrcweir    {
157cdf0e10cSrcweir        HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_TRAY" ;
158cdf0e10cSrcweir        Pos = MAP_APPFONT ( 165, 72 ) ;
159cdf0e10cSrcweir        Size = MAP_APPFONT ( 83, 50 ) ;
160cdf0e10cSrcweir        DropDown = TRUE ;
161cdf0e10cSrcweir        DDExtraWidth = TRUE ;
162cdf0e10cSrcweir    };
163cdf0e10cSrcweir    FixedLine FL_MARGIN
164cdf0e10cSrcweir    {
165cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 90 ) ;
166cdf0e10cSrcweir        Size = MAP_APPFONT ( 95, 8 ) ;
167cdf0e10cSrcweir        Text [ en-US ] = "Margins" ;
168cdf0e10cSrcweir    };
169cdf0e10cSrcweir    FixedText FT_LEFT_MARGIN
170cdf0e10cSrcweir    {
171cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 103 ) ;
172cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 8 ) ;
173cdf0e10cSrcweir        Text [ en-US ] = "~Left" ;
174cdf0e10cSrcweir        Left = TRUE ;
175cdf0e10cSrcweir    };
176cdf0e10cSrcweir    MetricField ED_LEFT_MARGIN
177cdf0e10cSrcweir    {
178cdf0e10cSrcweir        HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_LEFT_MARGIN" ;
179cdf0e10cSrcweir        Border = TRUE ;
180cdf0e10cSrcweir        Pos = MAP_APPFONT ( 55, 101 ) ;
181cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 12 ) ;
182cdf0e10cSrcweir        Left = TRUE ;
183cdf0e10cSrcweir        Repeat = TRUE ;
184cdf0e10cSrcweir        Spin = TRUE ;
18560ef6715SMatthias Seidel        // #i4219# taken from configuration now Maximum = 9999 ;
186cdf0e10cSrcweir        DecimalDigits = 2 ;
187cdf0e10cSrcweir        Unit = FUNIT_CM ;
188cdf0e10cSrcweir        // #i4219# Last = 9999 ;
189cdf0e10cSrcweir        SpinSize = 10 ;
190cdf0e10cSrcweir    };
191cdf0e10cSrcweir    FixedText FT_RIGHT_MARGIN
192cdf0e10cSrcweir    {
193cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 119 ) ;
194cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 8 ) ;
195cdf0e10cSrcweir        Text [ en-US ] = "~Right" ;
196cdf0e10cSrcweir        Left = TRUE ;
197cdf0e10cSrcweir    };
198cdf0e10cSrcweir    MetricField ED_RIGHT_MARGIN
199cdf0e10cSrcweir    {
200cdf0e10cSrcweir        HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_RIGHT_MARGIN" ;
201cdf0e10cSrcweir        Border = TRUE ;
202cdf0e10cSrcweir        Pos = MAP_APPFONT ( 55, 117 ) ;
203cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 12 ) ;
204cdf0e10cSrcweir        Left = TRUE ;
205cdf0e10cSrcweir        Repeat = TRUE ;
206cdf0e10cSrcweir        Spin = TRUE ;
20760ef6715SMatthias Seidel        // #i4219# taken from configuration now Maximum = 9999 ;
208cdf0e10cSrcweir        DecimalDigits = 2 ;
209cdf0e10cSrcweir        Unit = FUNIT_CM ;
210cdf0e10cSrcweir        // #i4219# Last = 9999 ;
211cdf0e10cSrcweir        SpinSize = 10 ;
212cdf0e10cSrcweir    };
213cdf0e10cSrcweir    FixedText FT_TOP_MARGIN
214cdf0e10cSrcweir    {
215cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 135 ) ;
216cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 8 ) ;
217cdf0e10cSrcweir        Text [ en-US ] = "~Top" ;
218cdf0e10cSrcweir        Left = TRUE ;
219cdf0e10cSrcweir    };
220cdf0e10cSrcweir    MetricField ED_TOP_MARGIN
221cdf0e10cSrcweir    {
222cdf0e10cSrcweir        HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_TOP_MARGIN" ;
223cdf0e10cSrcweir        Border = TRUE ;
224cdf0e10cSrcweir        Pos = MAP_APPFONT ( 55, 133 ) ;
225cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 12 ) ;
226cdf0e10cSrcweir        Left = TRUE ;
227cdf0e10cSrcweir        Repeat = TRUE ;
228cdf0e10cSrcweir        Spin = TRUE ;
22960ef6715SMatthias Seidel        // #i4219# taken from configuration now Maximum = 9999 ;
230cdf0e10cSrcweir        DecimalDigits = 2 ;
231cdf0e10cSrcweir        Unit = FUNIT_CM ;
232cdf0e10cSrcweir        // #i4219# Last = 9999 ;
233cdf0e10cSrcweir        SpinSize = 10 ;
234cdf0e10cSrcweir    };
235cdf0e10cSrcweir    FixedText FT_BOTTOM_MARGIN
236cdf0e10cSrcweir    {
237cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 151 ) ;
238cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 8 ) ;
239cdf0e10cSrcweir        Text [ en-US ] = "~Bottom" ;
240cdf0e10cSrcweir        Left = TRUE ;
241cdf0e10cSrcweir    };
242cdf0e10cSrcweir    MetricField ED_BOTTOM_MARGIN
243cdf0e10cSrcweir    {
244cdf0e10cSrcweir        HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_BOTTOM_MARGIN" ;
245cdf0e10cSrcweir        Border = TRUE ;
246cdf0e10cSrcweir        Pos = MAP_APPFONT ( 55, 149 ) ;
247cdf0e10cSrcweir        Size = MAP_APPFONT ( 40, 12 ) ;
248cdf0e10cSrcweir        Left = TRUE ;
249cdf0e10cSrcweir        Repeat = TRUE ;
250cdf0e10cSrcweir        Spin = TRUE ;
25160ef6715SMatthias Seidel        // #i4219# taken from configuration now Maximum = 9999 ;
252cdf0e10cSrcweir        DecimalDigits = 2 ;
253cdf0e10cSrcweir        Unit = FUNIT_CM ;
254cdf0e10cSrcweir        // #i4219# Last = 9999 ;
255cdf0e10cSrcweir        SpinSize = 10 ;
256cdf0e10cSrcweir    };
257cdf0e10cSrcweir    FixedLine FL_BOTTOM_SEP
258cdf0e10cSrcweir    {
259cdf0e10cSrcweir        Pos = MAP_APPFONT ( 102, 101 ) ;
260cdf0e10cSrcweir        Size = MAP_APPFONT ( 4, 68 ) ;
261cdf0e10cSrcweir        Vert = TRUE ;
262cdf0e10cSrcweir    };
263cdf0e10cSrcweir    FixedLine FL_LAYOUT
264cdf0e10cSrcweir    {
265cdf0e10cSrcweir        Pos = MAP_APPFONT ( 107, 90 ) ;
266cdf0e10cSrcweir        Size = MAP_APPFONT ( 147, 8 ) ;
267cdf0e10cSrcweir        Text [ en-US ] = "Layout settings" ;
268cdf0e10cSrcweir    };
269cdf0e10cSrcweir    FixedText FT_PAGELAYOUT
270cdf0e10cSrcweir    {
271cdf0e10cSrcweir        Pos = MAP_APPFONT ( 113, 103 ) ;
272cdf0e10cSrcweir        Size = MAP_APPFONT ( 54, 8 ) ;
273cdf0e10cSrcweir        Text [ en-US ] = "Page layout" ;
274cdf0e10cSrcweir    };
275cdf0e10cSrcweir    ListBox LB_LAYOUT
276cdf0e10cSrcweir    {
277cdf0e10cSrcweir        HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_LAYOUT" ;
278cdf0e10cSrcweir        Border = TRUE ;
279cdf0e10cSrcweir        Pos = MAP_APPFONT ( 170, 101 ) ;
280cdf0e10cSrcweir        Size = MAP_APPFONT ( 78, 44 ) ;
281cdf0e10cSrcweir        DropDown = TRUE ;
282cdf0e10cSrcweir        StringList [ en-US ] =
283cdf0e10cSrcweir        {
284cdf0e10cSrcweir            < "Right and left" ; Default ; > ;
285cdf0e10cSrcweir            < "Mirrored" ; Default ; > ;
286cdf0e10cSrcweir            < "Only right" ; Default ; > ;
287cdf0e10cSrcweir            < "Only left" ; Default ; > ;
288cdf0e10cSrcweir        };
289cdf0e10cSrcweir    };
290cdf0e10cSrcweir    FixedText FT_NUMBER_FORMAT
291cdf0e10cSrcweir    {
292cdf0e10cSrcweir        Pos = MAP_APPFONT ( 113, 119 ) ;
293cdf0e10cSrcweir        Size = MAP_APPFONT ( 54, 8 ) ;
294cdf0e10cSrcweir        Text [ en-US ] = "For~mat" ;
295cdf0e10cSrcweir    };
296cdf0e10cSrcweir    ListBox LB_NUMBER_FORMAT
297cdf0e10cSrcweir    {
298cdf0e10cSrcweir        HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_NUMBER_FORMAT" ;
299cdf0e10cSrcweir        Border = TRUE ;
300cdf0e10cSrcweir        Pos = MAP_APPFONT ( 170, 117 ) ;
301cdf0e10cSrcweir        Size = MAP_APPFONT ( 78, 64 ) ;
302cdf0e10cSrcweir        DropDown = TRUE ;
303cdf0e10cSrcweir        StringList [ en-US ] =
304cdf0e10cSrcweir        {
305cdf0e10cSrcweir            < "A, B, C, ..." ; Default ; > ;
306cdf0e10cSrcweir            < "a, b, c, ..." ; Default ; > ;
307cdf0e10cSrcweir            < "I, II, III, ..." ; Default ; > ;
308cdf0e10cSrcweir            < "i, ii, iii, ..." ; Default ; > ;
309cdf0e10cSrcweir            < "1, 2, 3, ..." ; Default ; > ;
310cdf0e10cSrcweir            < "None" ; Default ; > ;
311cdf0e10cSrcweir        };
312cdf0e10cSrcweir    };
313cdf0e10cSrcweir    FixedText FT_TBL_ALIGN
314cdf0e10cSrcweir    {
315cdf0e10cSrcweir        Hide = TRUE ;
316cdf0e10cSrcweir        Pos = MAP_APPFONT ( 113, 133 ) ;
317cdf0e10cSrcweir        Size = MAP_APPFONT ( 60, 8 ) ;
318cdf0e10cSrcweir        Text [ en-US ] = "Table alignment" ;
319cdf0e10cSrcweir    };
320cdf0e10cSrcweir    CheckBox CB_HORZ
321cdf0e10cSrcweir    {
322cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_HORZ" ;
323cdf0e10cSrcweir        Hide = TRUE ;
324cdf0e10cSrcweir        Pos = MAP_APPFONT ( 175, 133 ) ;
325cdf0e10cSrcweir        Size = MAP_APPFONT ( 73, 10 ) ;
326cdf0e10cSrcweir        Text [ en-US ] = "Hori~zontal" ;
327cdf0e10cSrcweir    };
328cdf0e10cSrcweir    CheckBox CB_VERT
329cdf0e10cSrcweir    {
330cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_VERT" ;
331cdf0e10cSrcweir        Hide = TRUE ;
332cdf0e10cSrcweir        Pos = MAP_APPFONT ( 175, 147 ) ;
333cdf0e10cSrcweir        Size = MAP_APPFONT ( 73, 10 ) ;
334cdf0e10cSrcweir        Text [ en-US ] = "~Vertical" ;
335cdf0e10cSrcweir    };
336cdf0e10cSrcweir    CheckBox CB_ADAPT
337cdf0e10cSrcweir    {
338cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_ADAPT" ;
339cdf0e10cSrcweir        Hide = TRUE ;
340cdf0e10cSrcweir        Pos = MAP_APPFONT ( 113, 133 ) ;
341cdf0e10cSrcweir        Size = MAP_APPFONT ( 135, 10 ) ;
342cdf0e10cSrcweir        Text [ en-US ] = "~Fit object to paper format" ;
343cdf0e10cSrcweir    };
344b9c0b7e4SMatthias Seidel    /* Register-true (for Writer) */
345cdf0e10cSrcweir    CheckBox CB_REGISTER
346cdf0e10cSrcweir    {
347cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_REGISTER" ;
348cdf0e10cSrcweir        Pos = MAP_APPFONT ( 113, 133 ) ;
349cdf0e10cSrcweir        Size = MAP_APPFONT ( 135, 10 ) ;
350cdf0e10cSrcweir        Hide = TRUE ;
351cdf0e10cSrcweir        Text [ en-US ] = "Register-true" ;
352cdf0e10cSrcweir    };
353cdf0e10cSrcweir    FixedText FT_REGISTER
354cdf0e10cSrcweir    {
355cdf0e10cSrcweir        Pos = MAP_APPFONT ( 122, 147 ) ;
356cdf0e10cSrcweir        Size = MAP_APPFONT ( 126, 8 ) ;
357cdf0e10cSrcweir        Text [ en-US ] = "Reference ~Style" ;
358cdf0e10cSrcweir        Hide = TRUE ;
359cdf0e10cSrcweir    };
360cdf0e10cSrcweir    ListBox LB_REGISTER
361cdf0e10cSrcweir    {
362cdf0e10cSrcweir        HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_REGISTER" ;
363cdf0e10cSrcweir        Pos = MAP_APPFONT ( 122, 157 ) ;
364cdf0e10cSrcweir        Size = MAP_APPFONT ( 126, 50 ) ;
365cdf0e10cSrcweir        DropDown = TRUE ;
366cdf0e10cSrcweir        Hide = TRUE ;
367cdf0e10cSrcweir        Sort = TRUE ;
368cdf0e10cSrcweir        HScroll = TRUE ;
369cdf0e10cSrcweir        DDExtraWidth = TRUE ;
370cdf0e10cSrcweir    };
371cdf0e10cSrcweir    String STR_INSIDE
372cdf0e10cSrcweir    {
373cdf0e10cSrcweir        Text [ en-US ] = "I~nner" ;
374cdf0e10cSrcweir    };
375cdf0e10cSrcweir    String STR_OUTSIDE
376cdf0e10cSrcweir    {
377cdf0e10cSrcweir        Text [ en-US ] = "O~uter" ;
378cdf0e10cSrcweir    };
379cdf0e10cSrcweir    String STR_QUERY_PRINTRANGE
380cdf0e10cSrcweir    {
381cdf0e10cSrcweir        Text [ en-US ] = "The margin settings are out of print range.\n\nDo you still want to apply these settings?" ;
382cdf0e10cSrcweir    };
383cdf0e10cSrcweir};
384cdf0e10cSrcweirStringArray RID_SVXSTRARY_PAPERSIZE_STD
385cdf0e10cSrcweir{
386cdf0e10cSrcweir    ItemList [ en-US ] =
387cdf0e10cSrcweir    {
388cdf0e10cSrcweir        < "A6" ; PAPERSIZE_A6 ; > ;
389cdf0e10cSrcweir        < "A5" ; PAPERSIZE_A5 ; > ;
390cdf0e10cSrcweir        < "A4" ; PAPERSIZE_A4 ; > ;
391cdf0e10cSrcweir        < "A3" ; PAPERSIZE_A3 ; > ;
392cdf0e10cSrcweir        < "B6 (ISO)" ; PAPERSIZE_B6_ISO ; > ;
393cdf0e10cSrcweir        < "B5 (ISO)" ; PAPERSIZE_B5_ISO ; > ;
394cdf0e10cSrcweir        < "B4 (ISO)" ; PAPERSIZE_B4_ISO ; > ;
395cdf0e10cSrcweir        < "Letter" ; PAPERSIZE_LETTER ; > ;
396cdf0e10cSrcweir        < "Legal" ; PAPERSIZE_LEGAL ; > ;
397cdf0e10cSrcweir        < "Long Bond" ; PAPERSIZE_LEGAL2 ; > ;
398cdf0e10cSrcweir        < "Tabloid" ; PAPERSIZE_TABLOID ; > ;
399cdf0e10cSrcweir        < "B6 (JIS)" ; PAPERSIZE_B6_JIS ; > ;
400cdf0e10cSrcweir        < "B5 (JIS)" ; PAPERSIZE_B5_JIS ; > ;
401cdf0e10cSrcweir        < "B4 (JIS)" ; PAPERSIZE_B4_JIS ; > ;
402cdf0e10cSrcweir        < "16 Kai" ; PAPERSIZE_KAI16 ; > ;
403cdf0e10cSrcweir        < "32 Kai" ; PAPERSIZE_KAI32 ; > ;
404cdf0e10cSrcweir        < "Big 32 Kai" ; PAPERSIZE_KAI32BIG ; > ;
405cdf0e10cSrcweir        < "User" ; PAPERSIZE_USER ; > ;
406cdf0e10cSrcweir        < "DL Envelope" ; PAPERSIZE_DL ; > ;
407cdf0e10cSrcweir        < "C6 Envelope" ; PAPERSIZE_C6 ; > ;
408cdf0e10cSrcweir        < "C6/5 Envelope" ; PAPERSIZE_C65 ; > ;
409cdf0e10cSrcweir        < "C5 Envelope" ; PAPERSIZE_C5 ; > ;
410cdf0e10cSrcweir        < "C4 Envelope" ; PAPERSIZE_C4 ; > ;
411cdf0e10cSrcweir        < "#6 3/4 (Personal) Envelope" ; PAPERSIZE_COM675 ; > ;
412cdf0e10cSrcweir        < "#8 (Monarch) Envelope" ; PAPERSIZE_MONARCH ; > ;
413cdf0e10cSrcweir        < "#9 Envelope" ; PAPERSIZE_COM9 ; > ;
414cdf0e10cSrcweir        < "#10 Envelope" ; PAPERSIZE_COM10 ; > ;
415cdf0e10cSrcweir        < "#11 Envelope" ; PAPERSIZE_COM11 ; > ;
416cdf0e10cSrcweir        < "#12 Envelope" ; PAPERSIZE_COM12 ; > ;
417cdf0e10cSrcweir    };
418cdf0e10cSrcweir};
419cdf0e10cSrcweirStringArray RID_SVXSTRARY_PAPERSIZE_DRAW
420cdf0e10cSrcweir{
421cdf0e10cSrcweir    ItemList [ en-US ] =
422cdf0e10cSrcweir    {
423cdf0e10cSrcweir        < "A6" ; PAPERSIZE_A6 ; > ;
424cdf0e10cSrcweir        < "A5" ; PAPERSIZE_A5 ; > ;
425cdf0e10cSrcweir        < "A4" ; PAPERSIZE_A4 ; > ;
426cdf0e10cSrcweir        < "A3" ; PAPERSIZE_A3 ; > ;
427cdf0e10cSrcweir        < "A2" ; PAPERSIZE_A2 ; > ;
428cdf0e10cSrcweir        < "A1" ; PAPERSIZE_A1 ; > ;
429cdf0e10cSrcweir        < "A0" ; PAPERSIZE_A0 ; > ;
430cdf0e10cSrcweir        < "B6 (ISO)" ; PAPERSIZE_B6_ISO ; > ;
431cdf0e10cSrcweir        < "B5 (ISO)" ; PAPERSIZE_B5_ISO ; > ;
432cdf0e10cSrcweir        < "B4 (ISO)" ; PAPERSIZE_B4_ISO ; > ;
433cdf0e10cSrcweir        < "Letter" ; PAPERSIZE_LETTER ; > ;
434cdf0e10cSrcweir        < "Legal" ; PAPERSIZE_LEGAL ; > ;
435cdf0e10cSrcweir        < "Long Bond" ; PAPERSIZE_LEGAL2 ; > ;
436cdf0e10cSrcweir        < "Tabloid" ; PAPERSIZE_TABLOID ; > ;
437cdf0e10cSrcweir        < "B6 (JIS)" ; PAPERSIZE_B6_JIS ; > ;
438cdf0e10cSrcweir        < "B5 (JIS)" ; PAPERSIZE_B5_JIS ; > ;
439cdf0e10cSrcweir        < "B4 (JIS)" ; PAPERSIZE_B4_JIS ; > ;
440cdf0e10cSrcweir        < "16 Kai" ; PAPERSIZE_KAI16 ; > ;
441cdf0e10cSrcweir        < "32 Kai" ; PAPERSIZE_KAI32 ; > ;
442cdf0e10cSrcweir        < "Big 32 Kai" ; PAPERSIZE_KAI32BIG ; > ;
443cdf0e10cSrcweir        < "User" ; PAPERSIZE_USER ; > ;
444cdf0e10cSrcweir        < "DL Envelope" ; PAPERSIZE_DL ; > ;
445cdf0e10cSrcweir        < "C6 Envelope" ; PAPERSIZE_C6 ; > ;
446cdf0e10cSrcweir        < "C6/5 Envelope" ; PAPERSIZE_C65 ; > ;
447cdf0e10cSrcweir        < "C5 Envelope" ; PAPERSIZE_C5 ; > ;
448cdf0e10cSrcweir        < "C4 Envelope" ; PAPERSIZE_C4 ; > ;
449cdf0e10cSrcweir        < "Dia Slide" ; PAPERSIZE_DIA ; > ;
450*635e0213SMatthias Seidel        < "Screen (4:3)" ; PAPERSIZE_SCREEN_4_BY_3 ; > ;
451*635e0213SMatthias Seidel        < "Screen (16:9)" ; PAPERSIZE_SCREEN_16_BY_9 ; > ;
452*635e0213SMatthias Seidel        < "Screen (16:10)" ; PAPERSIZE_SCREEN_16_BY_10 ; > ;
453cdf0e10cSrcweir    };
454cdf0e10cSrcweir};
455b9c0b7e4SMatthias Seidel
456cdf0e10cSrcweir// ********************************************************************** EOF
457