xref: /trunk/main/sw/source/ui/uiview/pview.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include <svx/svxids.hrc>
29#include "pview.hrc"
30#include "helpid.h"
31#include "cmdid.h"
32
33ModalDialog DLG_PAGEPREVIEW_ZOOM
34{
35    HelpID = HID_PPREV_ZOOM ;
36    OutputSize = TRUE ;
37    SVLook = TRUE ;
38    Size = MAP_APPFONT ( 141 , 69 ) ;
39    Text [ en-US ] = "Multiple Pages" ;
40    Moveable = TRUE ;
41    FixedText FT_COL
42    {
43        Pos = MAP_APPFONT ( 12 , 34 ) ;
44        Size = MAP_APPFONT ( 27 , 10 ) ;
45        Text [ en-US ] = "~Columns" ;
46        Left = TRUE ;
47    };
48    FixedText FT_ROW
49    {
50        Pos = MAP_APPFONT ( 12 , 14 ) ;
51        Size = MAP_APPFONT ( 27 , 10 ) ;
52        Text [ en-US ] = "~Rows" ;
53        Left = TRUE ;
54    };
55    NumericField ED_COL
56    {
57        HelpID = "sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_COL";
58        Border = TRUE ;
59        Size = MAP_APPFONT ( 28 , 12 ) ;
60        Pos = MAP_APPFONT ( 48 , 34 ) ;
61        TabStop = TRUE ;
62        Left = TRUE ;
63        Repeat = TRUE ;
64        Spin = TRUE ;
65        Minimum = PVIEW_MIN_COL ;
66        Maximum = PVIEW_MAX_COL ;
67        Value = 1 ;
68        First = PVIEW_MIN_COL ;
69        Last = PVIEW_MAX_COL ;
70    };
71    NumericField ED_ROW
72    {
73        HelpID = "sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_ROW";
74        Border = TRUE ;
75        Pos = MAP_APPFONT ( 48 , 13 ) ;
76        Size = MAP_APPFONT ( 28 , 12 ) ;
77        TabStop = TRUE ;
78        Left = TRUE ;
79        Repeat = TRUE ;
80        Spin = TRUE ;
81        Minimum = PVIEW_MIN_ROW ;
82        Maximum = PVIEW_MAX_ROW ;
83        Value = 1 ;
84        First = PVIEW_MIN_ROW ;
85        Last = PVIEW_MAX_ROW ;
86    };
87    OKButton BT_OK
88    {
89        Pos = MAP_APPFONT ( 88 , 6 ) ;
90        Size = MAP_APPFONT ( 50 , 14 ) ;
91        TabStop = TRUE ;
92        DefButton = TRUE ;
93    };
94    CancelButton BT_CANCEL
95    {
96        Pos = MAP_APPFONT ( 88 , 23 ) ;
97        Size = MAP_APPFONT ( 50 , 14 ) ;
98        TabStop = TRUE ;
99    };
100    HelpButton BT_HELP
101    {
102        Pos = MAP_APPFONT ( 88 , 49 ) ;
103        Size = MAP_APPFONT ( 50 , 14 ) ;
104        TabStop = TRUE ;
105    };
106};
107String RID_PVIEW_TOOLBOX
108{
109    Text [ en-US ] = "Page Preview" ;
110};
111
112