merge the formfield patch from ooo-build
[ooovba.git] / sd / source / ui / dlg / printdialog.src
blob86bf170bd693bf8ddeab363a8496e24ec27857d0
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: printdialog.src,v $
10  * $Revision: 1.3 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #include "app.hrc"
32 #include "printdialog.hrc"
34 ModalDialog DLG_PRINTDIALOG
36     Size = MAP_APPFONT ( 260, 77 ) ;
38     FixedLine FL_PRINTCONTENT
39     {
40         Pos = MAP_APPFONT ( 6 , 0 ) ;
41         Size = MAP_APPFONT ( 248 , 8 ) ;
42         Text [ en-US ] = "Print content" ;
43     };
44     FixedText FT_CONTENT
45     {
46         Pos = MAP_APPFONT ( 12 , 12 ) ;
47         Size = MAP_APPFONT ( 45 , 10 ) ;
48         Text [ en-US ] = "Content" ;
49     };
50     ListBox CB_CONTENT
51     {
52         Border = TRUE ;
53         Pos = MAP_APPFONT ( 60 , 10 ) ;
54         Size = MAP_APPFONT ( 108 , 80 ) ;
55         TabStop = TRUE ;
56         DropDown = TRUE ;
57         StringList [ en-US ] =
58         {
59             < "Slides" ; > ;
60             < "Handouts" ; > ;
61             < "Notes" ; > ;
62             < "Outline" ; > ;
63         };              
64     };
65     FixedText FT_SLIDESPERPAGE
66     {
67         Pos = MAP_APPFONT ( 12 , 30 ) ;
68         Size = MAP_APPFONT ( 45 , 8 ) ;
69         Text [ en-US ] = "Slides per page" ;
70     };
71     ListBox CB_SLIDESPERPAGE
72     {
73         Border = TRUE ;
74         Pos = MAP_APPFONT ( 60 , 28 ) ;
75         Size = MAP_APPFONT ( 24 , 80 ) ;
76         TabStop = TRUE ;
77         DropDown = TRUE ;
78         StringList [ en-US ] =
79         {
80             < "1" ; > ;
81             < "2" ; > ;
82             < "3" ; > ;
83             < "4" ; > ;
84             < "6" ; > ;
85             < "9" ; > ;
86         };              
87     };
88     FixedText FT_ORDER
89     {
90         Pos = MAP_APPFONT ( 12 , 47 ) ;
91         Size = MAP_APPFONT ( 45 , 8 ) ;
92         Text [ en-US ] = "Order" ;
93     };
94     RadioButton RBT_HORIZONTAL
95     {
96         Pos = MAP_APPFONT ( 60 , 45 ) ;
97         Size = MAP_APPFONT ( 60 , 10 ) ;
98         TabStop = TRUE ;
99         Text [ en-US ] = "Horizontal" ;
100     };
101     RadioButton RBT_VERTICAL
102     {
103         Pos = MAP_APPFONT ( 60 , 58 ) ;
104         Size = MAP_APPFONT ( 60 , 10 ) ;
105         TabStop = TRUE ;
106         Text [ en-US ] = "Vertical" ;
107     };
108     FixedImage IMG_PREVIEW
109     {
110         Pos = MAP_APPFONT ( 168 , 28 ) ;
111     };