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