xref: /aoo4110/main/sw/source/ui/uiview/pview.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 <svx/svxids.hrc>
25#include "pview.hrc"
26#include "helpid.h"
27#include "cmdid.h"
28
29ModalDialog DLG_PAGEPREVIEW_ZOOM
30{
31	HelpID = HID_PPREV_ZOOM ;
32	OutputSize = TRUE ;
33	SVLook = TRUE ;
34	Size = MAP_APPFONT ( 141 , 69 ) ;
35    Text [ en-US ] = "Multiple Pages" ;
36	Moveable = TRUE ;
37	FixedText FT_COL
38	{
39		Pos = MAP_APPFONT ( 12 , 34 ) ;
40		Size = MAP_APPFONT ( 27 , 10 ) ;
41		Text [ en-US ] = "~Columns" ;
42		Left = TRUE ;
43	};
44	FixedText FT_ROW
45	{
46		Pos = MAP_APPFONT ( 12 , 14 ) ;
47		Size = MAP_APPFONT ( 27 , 10 ) ;
48		Text [ en-US ] = "~Rows" ;
49		Left = TRUE ;
50	};
51	NumericField ED_COL
52	{
53	    HelpID = "sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_COL";
54		Border = TRUE ;
55		Size = MAP_APPFONT ( 28 , 12 ) ;
56		Pos = MAP_APPFONT ( 48 , 34 ) ;
57		TabStop = TRUE ;
58		Left = TRUE ;
59		Repeat = TRUE ;
60		Spin = TRUE ;
61		Minimum = PVIEW_MIN_COL ;
62		Maximum = PVIEW_MAX_COL ;
63		Value = 1 ;
64		First = PVIEW_MIN_COL ;
65		Last = PVIEW_MAX_COL ;
66	};
67	NumericField ED_ROW
68	{
69	    HelpID = "sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_ROW";
70		Border = TRUE ;
71		Pos = MAP_APPFONT ( 48 , 13 ) ;
72		Size = MAP_APPFONT ( 28 , 12 ) ;
73		TabStop = TRUE ;
74		Left = TRUE ;
75		Repeat = TRUE ;
76		Spin = TRUE ;
77		Minimum = PVIEW_MIN_ROW ;
78		Maximum = PVIEW_MAX_ROW ;
79		Value = 1 ;
80		First = PVIEW_MIN_ROW ;
81		Last = PVIEW_MAX_ROW ;
82	};
83	OKButton BT_OK
84	{
85		Pos = MAP_APPFONT ( 88 , 6 ) ;
86		Size = MAP_APPFONT ( 50 , 14 ) ;
87		TabStop = TRUE ;
88		DefButton = TRUE ;
89	};
90	CancelButton BT_CANCEL
91	{
92		Pos = MAP_APPFONT ( 88 , 23 ) ;
93		Size = MAP_APPFONT ( 50 , 14 ) ;
94		TabStop = TRUE ;
95	};
96	HelpButton BT_HELP
97	{
98		Pos = MAP_APPFONT ( 88 , 49 ) ;
99		Size = MAP_APPFONT ( 50 , 14 ) ;
100		TabStop = TRUE ;
101	};
102};
103String RID_PVIEW_TOOLBOX
104{
105	Text [ en-US ] = "Page Preview" ;
106};
107
108