xref: /aoo42x/main/vcl/source/src/print.src (revision 635e0213)
17bbdf254SAndrew Rist/**************************************************************
2*635e0213SMatthias Seidel *
37bbdf254SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
47bbdf254SAndrew Rist * or more contributor license agreements.  See the NOTICE file
57bbdf254SAndrew Rist * distributed with this work for additional information
67bbdf254SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
77bbdf254SAndrew Rist * to you under the Apache License, Version 2.0 (the
87bbdf254SAndrew Rist * "License"); you may not use this file except in compliance
97bbdf254SAndrew Rist * with the License.  You may obtain a copy of the License at
10*635e0213SMatthias Seidel *
117bbdf254SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*635e0213SMatthias Seidel *
137bbdf254SAndrew Rist * Unless required by applicable law or agreed to in writing,
147bbdf254SAndrew Rist * software distributed under the License is distributed on an
157bbdf254SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167bbdf254SAndrew Rist * KIND, either express or implied.  See the License for the
177bbdf254SAndrew Rist * specific language governing permissions and limitations
187bbdf254SAndrew Rist * under the License.
19*635e0213SMatthias Seidel *
207bbdf254SAndrew Rist *************************************************************/
217bbdf254SAndrew Rist
227bbdf254SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "svids.hrc"
25cdf0e10cSrcweir
26cdf0e10cSrcweirModalDialog SV_DLG_PRINT
27cdf0e10cSrcweir{
28*635e0213SMatthias Seidel	HelpID = ".HelpID:vcl:PrintDialog:Dialog" ;
29*635e0213SMatthias Seidel	Text [en-US] = "Print" ;
30*635e0213SMatthias Seidel	Closeable = TRUE ;
31*635e0213SMatthias Seidel	Sizeable = TRUE ;
32*635e0213SMatthias Seidel	Moveable = TRUE ;
33*635e0213SMatthias Seidel	Maxable = TRUE ;
34*635e0213SMatthias Seidel	SVLook = TRUE ;
35cdf0e10cSrcweir
36*635e0213SMatthias Seidel	Size = MAP_APPFONT ( 350, 215 ) ;
37cdf0e10cSrcweir
3851287027SMatthias Seidel	OKButton SV_PRINT_OK
3951287027SMatthias Seidel	{
40*635e0213SMatthias Seidel		DefButton = TRUE ;
41*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 240, 195 ) ;
42*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 50, 15 ) ;
43*635e0213SMatthias Seidel		Text [en-US] = "~Print" ;
44*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:OK" ;
4551287027SMatthias Seidel	};
4651287027SMatthias Seidel	CancelButton SV_PRINT_CANCEL
4751287027SMatthias Seidel	{
48*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 295, 195 ) ;
49*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 50, 15 ) ;
50*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:Cancel" ;
5151287027SMatthias Seidel	};
5251287027SMatthias Seidel	HelpButton SV_PRINT_HELP
5351287027SMatthias Seidel	{
54*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 5, 5 ) ;
55*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 50, 15 ) ;
56*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:Help" ;
5751287027SMatthias Seidel	};
58cdf0e10cSrcweir
5951287027SMatthias Seidel	Window SV_PRINT_PAGE_PREVIEW
6051287027SMatthias Seidel	{
61*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 5, 5 ) ;
62*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 130, 130 ) ;
63*635e0213SMatthias Seidel		Border = FALSE ;
64*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:Preview" ;
6551287027SMatthias Seidel	};
6651287027SMatthias Seidel	NumericField SV_PRINT_PAGE_EDIT
6751287027SMatthias Seidel	{
68*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 5, 140 ) ;
69*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 30, 12 ) ;
70*635e0213SMatthias Seidel		SVLook = TRUE ;
71*635e0213SMatthias Seidel		Spin = FALSE ;
72*635e0213SMatthias Seidel		Border = TRUE ;
73*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:PageEdit" ;
7451287027SMatthias Seidel	};
7551287027SMatthias Seidel	FixedText SV_PRINT_PAGE_TXT
7651287027SMatthias Seidel	{
77*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 40,142 ) ;
78*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 30, 12 ) ;
79*635e0213SMatthias Seidel		Text [ en-US ] = "/ %n" ;
80*635e0213SMatthias Seidel		VCenter = TRUE ;
81*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:NumPagesText" ;
8251287027SMatthias Seidel	};
8351287027SMatthias Seidel	PushButton SV_PRINT_PAGE_FORWARD
8451287027SMatthias Seidel	{
85*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 95, 140 ) ;
86*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 15, 12 ) ;
87*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:ForwardBtn" ;
8851287027SMatthias Seidel	};
8951287027SMatthias Seidel	PushButton SV_PRINT_PAGE_BACKWARD
9051287027SMatthias Seidel	{
91*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 80, 140 ) ;
92*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 15, 12 ) ;
93*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:BackwardBtn" ;
9451287027SMatthias Seidel	};
9551287027SMatthias Seidel	TabControl SV_PRINT_TABCTRL
9651287027SMatthias Seidel	{
97*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 140, 5 ) ;
98*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 205, 175 ) ;
99*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:TabPages" ;
10051287027SMatthias Seidel	};
10151287027SMatthias Seidel	FixedLine SV_PRINT_BUTTONLINE
10251287027SMatthias Seidel	{
103*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 0, 185 ) ;
104*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 350, 8 ) ;
10551287027SMatthias Seidel	};
10651287027SMatthias Seidel	String SV_PRINT_NOPAGES
10751287027SMatthias Seidel	{
108*635e0213SMatthias Seidel		Text [en-US] = "No pages" ;
10951287027SMatthias Seidel	};
110cdf0e10cSrcweir
11151287027SMatthias Seidel	String SV_PRINT_TOFILE_TXT
11251287027SMatthias Seidel	{
113*635e0213SMatthias Seidel		Text [en-US] = "Print to File..." ;
11451287027SMatthias Seidel	};
115cdf0e10cSrcweir
11651287027SMatthias Seidel	String SV_PRINT_DEFPRT_TXT
11751287027SMatthias Seidel	{
118*635e0213SMatthias Seidel		Text [en-US] = "Default printer" ;
11951287027SMatthias Seidel	};
120cdf0e10cSrcweir
121cdf0e10cSrcweir
12251287027SMatthias Seidel	String SV_PRINT_PRINTPREVIEW_TXT
12351287027SMatthias Seidel	{
124*635e0213SMatthias Seidel		Text [en-US] = "Print preview" ;
12551287027SMatthias Seidel	};
12651287027SMatthias Seidel
12751287027SMatthias Seidel	TabPage SV_PRINT_TAB_NUP
12851287027SMatthias Seidel	{
129*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:NUpPage" ;
130*635e0213SMatthias Seidel		Text [en-US] = "Page Layout" ;
131*635e0213SMatthias Seidel		Hide = TRUE ;
13251287027SMatthias Seidel
13351287027SMatthias Seidel		FixedLine SV_PRINT_PRT_NUP_LAYOUT_FL
13451287027SMatthias Seidel		{
135*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
136*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 150, 10 ) ;
137*635e0213SMatthias Seidel			Text [en-US] = "Layout" ;
13851287027SMatthias Seidel		};
13951287027SMatthias Seidel		RadioButton SV_PRINT_PRT_NUP_BROCHURE_BTN
14051287027SMatthias Seidel		{
141*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:Brochure" ;
142*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
143*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 10 ) ;
144*635e0213SMatthias Seidel			Text = "" ;
14551287027SMatthias Seidel		};
14651287027SMatthias Seidel		RadioButton SV_PRINT_PRT_NUP_PAGES_BTN
14751287027SMatthias Seidel		{
148*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:PagesPerSheet" ;
149*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
150*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 10 ) ;
151*635e0213SMatthias Seidel			Text [en-US] = "Pa~ges per sheet" ;
15251287027SMatthias Seidel		};
15351287027SMatthias Seidel		ListBox SV_PRINT_PRT_NUP_PAGES_BOX
15451287027SMatthias Seidel		{
155*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:PagesPerSheetBox" ;
156*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
157*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 80 ) ;
158*635e0213SMatthias Seidel			Border = TRUE ;
159*635e0213SMatthias Seidel			DropDown = TRUE ;
160*635e0213SMatthias Seidel			CurPos = 0 ;
16151287027SMatthias Seidel			StringList [en-US] =
16251287027SMatthias Seidel			{
163*635e0213SMatthias Seidel				< "1" ; 1; > ;
164*635e0213SMatthias Seidel				< "2" ; 2; > ;
165*635e0213SMatthias Seidel				< "4" ; 4; > ;
166*635e0213SMatthias Seidel				< "6" ; 6; > ;
167*635e0213SMatthias Seidel				< "9" ; 9; > ;
168*635e0213SMatthias Seidel				< "16" ; 16; > ;
169*635e0213SMatthias Seidel				< "Custom" ; 0xffff; > ;
17051287027SMatthias Seidel			};
17151287027SMatthias Seidel		};
17251287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_NUM_PAGES_TXT
17351287027SMatthias Seidel		{
174*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
175*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 10 ) ;
176*635e0213SMatthias Seidel			Text [en-US] = "P~ages" ;
177*635e0213SMatthias Seidel			VCenter = TRUE ;
17851287027SMatthias Seidel		};
17951287027SMatthias Seidel		NumericField SV_PRINT_PRT_NUP_COLS_EDT
18051287027SMatthias Seidel		{
181*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:ColumnsBox" ;
182*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 55, 20 ) ;
183*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 12 ) ;
184*635e0213SMatthias Seidel			Border = TRUE ;
185*635e0213SMatthias Seidel			Spin = TRUE ;
186*635e0213SMatthias Seidel			Minimum = 1 ;
187*635e0213SMatthias Seidel			Maximum = 32 ;
188*635e0213SMatthias Seidel			Value = 1 ;
18951287027SMatthias Seidel		};
19051287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_TIMES_TXT
19151287027SMatthias Seidel		{
192*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 35 ) ;
193*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 10 ) ;
194*635e0213SMatthias Seidel			Text [en-US] = "b~y" ;
195*635e0213SMatthias Seidel			VCenter = TRUE ;
19651287027SMatthias Seidel		};
19751287027SMatthias Seidel		NumericField SV_PRINT_PRT_NUP_ROWS_EDT
19851287027SMatthias Seidel		{
199*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:RowsBox" ;
200*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 55, 35 ) ;
201*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 12 ) ;
202*635e0213SMatthias Seidel			Border = TRUE ;
203*635e0213SMatthias Seidel			Spin = TRUE ;
204*635e0213SMatthias Seidel			Minimum = 1 ;
205*635e0213SMatthias Seidel			Maximum = 32 ;
206*635e0213SMatthias Seidel			Value = 1 ;
20751287027SMatthias Seidel		};
20851287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_MARGINS_PAGES_1_TXT
20951287027SMatthias Seidel		{
210*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 95 ) ;
211*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 10 ) ;
212*635e0213SMatthias Seidel			Text [en-US] = "~Distance" ;
21351287027SMatthias Seidel		};
21451287027SMatthias Seidel		MetricField SV_PRINT_PRT_NUP_MARGINS_PAGES_EDT
21551287027SMatthias Seidel		{
216*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:PageMarginBox" ;
217*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 55, 95 ) ;
218*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 12 ) ;
219*635e0213SMatthias Seidel			Spin = TRUE ;
220*635e0213SMatthias Seidel			Border = TRUE ;
221*635e0213SMatthias Seidel			Value = 0 ;
222*635e0213SMatthias Seidel			Unit = FUNIT_MM ;
22351287027SMatthias Seidel		};
22451287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_MARGINS_PAGES_2_TXT
22551287027SMatthias Seidel		{
226*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 95 ) ;
227*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 10 ) ;
228*635e0213SMatthias Seidel			Text [en-US] = "between pages" ;
22951287027SMatthias Seidel		};
23051287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_MARGINS_SHEET_1_TXT
23151287027SMatthias Seidel		{
232*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 110, 95 ) ;
233*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 10 ) ;
234*635e0213SMatthias Seidel			Text [en-US] = "~Margin" ;
23551287027SMatthias Seidel		};
23651287027SMatthias Seidel		MetricField SV_PRINT_PRT_NUP_MARGINS_SHEET_EDT
23751287027SMatthias Seidel		{
238*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:SheetMarginBox" ;
239*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 155, 95 ) ;
240*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 12 ) ;
241*635e0213SMatthias Seidel			Spin = TRUE ;
242*635e0213SMatthias Seidel			Border = TRUE ;
243*635e0213SMatthias Seidel			Value = 0 ;
244*635e0213SMatthias Seidel			Unit = FUNIT_MM ;
24551287027SMatthias Seidel		};
24651287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_MARGINS_SHEET_2_TXT
24751287027SMatthias Seidel		{
248*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 110, 95 ) ;
249*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 10 ) ;
250*635e0213SMatthias Seidel			Text [en-US] = "to sheet border" ;
25151287027SMatthias Seidel		};
25251287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_ORIENTATION_TXT
25351287027SMatthias Seidel		{
254*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
255*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 10 ) ;
256*635e0213SMatthias Seidel			Text [en-US] = "~Orientation" ;
25751287027SMatthias Seidel		};
25851287027SMatthias Seidel		ListBox SV_PRINT_PRT_NUP_ORIENTATION_BOX
25951287027SMatthias Seidel		{
260*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:OrientationBox" ;
261*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
262*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 40 ) ;
263*635e0213SMatthias Seidel			Border = TRUE ;
264*635e0213SMatthias Seidel			DropDown = TRUE ;
265*635e0213SMatthias Seidel			CurPos = 0 ;
26651287027SMatthias Seidel			StringList [en-US] =
26751287027SMatthias Seidel			{
268*635e0213SMatthias Seidel				< "Automatic" ; SV_PRINT_PRT_NUP_ORIENTATION_AUTOMATIC; > ;
269*635e0213SMatthias Seidel				< "Portrait" ; SV_PRINT_PRT_NUP_ORIENTATION_PORTRAIT; > ;
270*635e0213SMatthias Seidel				< "Landscape" ; SV_PRINT_PRT_NUP_ORIENTATION_LANDSCAPE; > ;
27151287027SMatthias Seidel			};
27251287027SMatthias Seidel		};
27351287027SMatthias Seidel		FixedText SV_PRINT_PRT_NUP_ORDER_TXT
27451287027SMatthias Seidel		{
275*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
276*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 10 ) ;
277*635e0213SMatthias Seidel			Text [en-US] = "Order" ;
27851287027SMatthias Seidel		};
27951287027SMatthias Seidel		ListBox SV_PRINT_PRT_NUP_ORDER_BOX
28051287027SMatthias Seidel		{
281*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:OrderBox" ;
282*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 0, 0 ) ;
283*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 10, 50 ) ;
284*635e0213SMatthias Seidel			DropDown = TRUE ;
285*635e0213SMatthias Seidel			Border = TRUE ;
286*635e0213SMatthias Seidel			CurPos = 0 ;
28751287027SMatthias Seidel			StringList [en-US] =
28851287027SMatthias Seidel			{
289*635e0213SMatthias Seidel				< "left to right, then down" ; SV_PRINT_PRT_NUP_ORDER_LRTB; > ;
290*635e0213SMatthias Seidel				< "top to bottom, then right" ; SV_PRINT_PRT_NUP_ORDER_TBLR; > ;
291*635e0213SMatthias Seidel				< "top to bottom, then left" ; SV_PRINT_PRT_NUP_ORDER_TBRL; > ;
292*635e0213SMatthias Seidel				< "right to left, then down" ; SV_PRINT_PRT_NUP_ORDER_RLTB; > ;
29351287027SMatthias Seidel			};
29451287027SMatthias Seidel		};
29551287027SMatthias Seidel		CheckBox SV_PRINT_PRT_NUP_BORDER_CB
29651287027SMatthias Seidel		{
297*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:NUpPage:BorderBox" ;
298*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 65 ) ;
299*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 150, 12 ) ;
300*635e0213SMatthias Seidel			Text [en-US] = "Draw a border around each page" ;
30151287027SMatthias Seidel		};
30251287027SMatthias Seidel	};
30351287027SMatthias Seidel
30451287027SMatthias Seidel	TabPage SV_PRINT_TAB_JOB
30551287027SMatthias Seidel	{
306*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:JobPage" ;
307*635e0213SMatthias Seidel		Text [en-US] = "General" ;
308*635e0213SMatthias Seidel		Hide = TRUE ;
30951287027SMatthias Seidel
31051287027SMatthias Seidel		FixedLine SV_PRINT_PRINTERS_FL
31151287027SMatthias Seidel		{
312*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
313*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 100, 10 ) ;
314*635e0213SMatthias Seidel			Text [ en-US ] = "Prin~ter" ;
31551287027SMatthias Seidel		};
31651287027SMatthias Seidel		ListBox SV_PRINT_PRINTERS
31751287027SMatthias Seidel		{
318*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:JobPage:PrinterList" ;
319*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
320*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 100, 80 ) ;
321*635e0213SMatthias Seidel			Border = TRUE ;
322*635e0213SMatthias Seidel			Sort = TRUE ;
32351287027SMatthias Seidel		};
32451287027SMatthias Seidel		CheckBox SV_PRINT_DETAILS_BTN
32551287027SMatthias Seidel		{
326*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:JobPage:DetailsBtn" ;
327*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
328*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 5, 5 ) ;
329*635e0213SMatthias Seidel			Text [en-US] = "Details" ;
33051287027SMatthias Seidel		};
33151287027SMatthias Seidel		FixedText SV_PRINT_STATUS_TXT
33251287027SMatthias Seidel		{
333*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
334*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 100, 10 ) ;
335*635e0213SMatthias Seidel			Text [en-US] = "Status:" ;
33651287027SMatthias Seidel		};
33751287027SMatthias Seidel		FixedText SV_PRINT_LOCATION_TXT
33851287027SMatthias Seidel		{
339*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
340*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 100, 10 ) ;
341*635e0213SMatthias Seidel			Text [en-US] = "Location:" ;
34251287027SMatthias Seidel		};
34351287027SMatthias Seidel		FixedText SV_PRINT_COMMENT_TXT
34451287027SMatthias Seidel		{
345*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
346*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 100, 10 ) ;
347*635e0213SMatthias Seidel			Text [en-US] = "Comment:" ;
34851287027SMatthias Seidel		};
34951287027SMatthias Seidel		PushButton SV_PRINT_PRT_SETUP
35051287027SMatthias Seidel		{
351*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:JobPage:Properties" ;
352*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 115, 5 ) ;
353*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 50, 15 ) ;
354*635e0213SMatthias Seidel			Text [en-US] = "Properties..." ;
35551287027SMatthias Seidel		};
35651287027SMatthias Seidel		FixedLine SV_PRINT_COPIES
35751287027SMatthias Seidel		{
358*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 35 ) ;
359*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 150, 10 ) ;
360*635e0213SMatthias Seidel			Text [en-US] = "Range and copies" ;
36151287027SMatthias Seidel		};
36251287027SMatthias Seidel		FixedText SV_PRINT_COPYCOUNT
36351287027SMatthias Seidel		{
364*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 45 ) ;
365*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 80, 10 ) ;
366*635e0213SMatthias Seidel			Text [en-US] = "Number of copies" ;
36751287027SMatthias Seidel		};
36851287027SMatthias Seidel		NumericField SV_PRINT_COPYCOUNT_FIELD
36951287027SMatthias Seidel		{
370*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:JobPage:Copies" ;
371*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 56 ) ;
372*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 40, 12 ) ;
373*635e0213SMatthias Seidel			Border = TRUE ;
374*635e0213SMatthias Seidel			Spin = TRUE ;
375*635e0213SMatthias Seidel			Minimum = 1 ;
376*635e0213SMatthias Seidel			Maximum = 16384 ;
377*635e0213SMatthias Seidel			Value = 1 ;
37851287027SMatthias Seidel		};
37951287027SMatthias Seidel		FixedImage SV_PRINT_COLLATE_IMAGE
38051287027SMatthias Seidel		{
381*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 95, 60 ) ;
382*635e0213SMatthias Seidel			Size = MAP_PIXEL ( 80, 30 ) ;
38351287027SMatthias Seidel		};
38451287027SMatthias Seidel		CheckBox SV_PRINT_COLLATE
38551287027SMatthias Seidel		{
386*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:JobPage:Collate" ;
387*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 95, 45 ) ;
388*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 70, 10 ) ;
389*635e0213SMatthias Seidel			Text [en-US] = "Collate" ;
39051287027SMatthias Seidel		};
39151287027SMatthias Seidel
39251287027SMatthias Seidel		Image SV_PRINT_COLLATE_IMG
39351287027SMatthias Seidel		{
394*635e0213SMatthias Seidel			ImageBitmap = Bitmap { File = "collate.png" ; } ;
39551287027SMatthias Seidel		};
39651287027SMatthias Seidel
39751287027SMatthias Seidel		Image SV_PRINT_NOCOLLATE_IMG
39851287027SMatthias Seidel		{
399*635e0213SMatthias Seidel			ImageBitmap = Bitmap { File = "ncollate.png" ; } ;
40051287027SMatthias Seidel		};
40151287027SMatthias Seidel
40251287027SMatthias Seidel		Image SV_PRINT_COLLATE_HC_IMG
40351287027SMatthias Seidel		{
404*635e0213SMatthias Seidel			ImageBitmap = Bitmap { File = "collate_h.png" ; } ;
40551287027SMatthias Seidel		};
40651287027SMatthias Seidel
40751287027SMatthias Seidel		Image SV_PRINT_NOCOLLATE_HC_IMG
40851287027SMatthias Seidel		{
409*635e0213SMatthias Seidel			ImageBitmap = Bitmap { File = "ncollate_h.png" ; } ;
41051287027SMatthias Seidel		};
41151287027SMatthias Seidel
41251287027SMatthias Seidel		CheckBox SV_PRINT_OPT_REVERSE
41351287027SMatthias Seidel		{
414*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:OptPage:ToReverse" ;
415*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 50 ) ;
416*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 200, 12 ) ;
417*635e0213SMatthias Seidel			Text [en-US] = "Print in ~reverse page order" ;
41851287027SMatthias Seidel		};
41951287027SMatthias Seidel	};
42051287027SMatthias Seidel
42151287027SMatthias Seidel	TabPage SV_PRINT_TAB_OPT
42251287027SMatthias Seidel	{
423*635e0213SMatthias Seidel		Text [en-US] = "Options" ;
424*635e0213SMatthias Seidel		Hide = TRUE ;
425*635e0213SMatthias Seidel		HelpID = ".HelpID:vcl:PrintDialog:OptPage" ;
42651287027SMatthias Seidel
42751287027SMatthias Seidel		FixedLine SV_PRINT_OPT_PRINT_FL
42851287027SMatthias Seidel		{
429*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 5, 5 ) ;
430*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 150, 10 ) ;
431*635e0213SMatthias Seidel			Text [en-US] = "Options" ;
43251287027SMatthias Seidel		};
43351287027SMatthias Seidel		CheckBox SV_PRINT_OPT_TOFILE
43451287027SMatthias Seidel		{
435*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:OptPage:ToFile" ;
436*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 20 ) ;
437*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 200, 12 ) ;
438*635e0213SMatthias Seidel			Text [en-US] = "Print to ~file" ;
43951287027SMatthias Seidel		};
44051287027SMatthias Seidel		CheckBox SV_PRINT_OPT_SINGLEJOBS
44151287027SMatthias Seidel		{
442*635e0213SMatthias Seidel			HelpID = ".HelpID:vcl:PrintDialog:OptPage:SingleJobs" ;
443*635e0213SMatthias Seidel			Pos = MAP_APPFONT ( 10, 35 ) ;
444*635e0213SMatthias Seidel			Size = MAP_APPFONT ( 200, 12 ) ;
445*635e0213SMatthias Seidel			Text [en-US] = "~Create single print jobs for collated output" ;
44651287027SMatthias Seidel		};
44751287027SMatthias Seidel	};
448cdf0e10cSrcweir};
449cdf0e10cSrcweir
450cdf0e10cSrcweirModelessDialog SV_DLG_PRINT_PROGRESS
451cdf0e10cSrcweir{
452*635e0213SMatthias Seidel	HelpID = "vcl:ModelessDialog:SV_DLG_PRINT_PROGRESS" ;
453*635e0213SMatthias Seidel	Text [en-US] = "Printing" ;
454*635e0213SMatthias Seidel	Closeable = FALSE ;
455*635e0213SMatthias Seidel	Sizeable = FALSE ;
456*635e0213SMatthias Seidel	Moveable = TRUE ;
457*635e0213SMatthias Seidel	SVLook = TRUE ;
45851287027SMatthias Seidel
459*635e0213SMatthias Seidel	Size = MAP_APPFONT ( 120, 70 ) ;
46051287027SMatthias Seidel
46151287027SMatthias Seidel	CancelButton SV_PRINT_PROGRESS_CANCEL
46251287027SMatthias Seidel	{
463*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 35, 50 ) ;
464*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 50, 15 ) ;
46551287027SMatthias Seidel	};
46651287027SMatthias Seidel	FixedText SV_PRINT_PROGRESS_TEXT
46751287027SMatthias Seidel	{
468*635e0213SMatthias Seidel		Pos = MAP_APPFONT ( 5,10 ) ;
469*635e0213SMatthias Seidel		Size = MAP_APPFONT ( 110, 10 ) ;
470*635e0213SMatthias Seidel		Text [ en-US ] = "Page %p of %n" ;
471*635e0213SMatthias Seidel		Center = TRUE ;
47251287027SMatthias Seidel	};
473cdf0e10cSrcweir};
474cdf0e10cSrcweir
475cdf0e10cSrcweirErrorBox SV_PRINT_NOPRINTERWARNING
476cdf0e10cSrcweir{
477*635e0213SMatthias Seidel	Title = "%PRODUCTNAME" ;
478*635e0213SMatthias Seidel	Message [en-US] = "No default printer found.\nPlease choose a printer and try again." ;
479cdf0e10cSrcweir};
480cdf0e10cSrcweir
481cdf0e10cSrcweirErrorBox SV_PRINT_NOCONTENT
482cdf0e10cSrcweir{
483*635e0213SMatthias Seidel	Title = "%PRODUCTNAME" ;
484*635e0213SMatthias Seidel	Message [en-US] = "There are no pages to be printed. Please check your document for ranges relevant to printing." ;
485cdf0e10cSrcweir};
486cdf0e10cSrcweir
487cdf0e10cSrcweirStringArray SV_PRINT_NATIVE_STRINGS
488cdf0e10cSrcweir{
48951287027SMatthias Seidel	ItemList [en-US] =
49051287027SMatthias Seidel	{
491*635e0213SMatthias Seidel		< "Preview" ; > ;
492*635e0213SMatthias Seidel		< "Page number" ; > ;
493*635e0213SMatthias Seidel		< "Number of pages" ; > ;
494*635e0213SMatthias Seidel		< "More" ; >;
495*635e0213SMatthias Seidel		< "Print selection only" ; > ;
49651287027SMatthias Seidel	};
497cdf0e10cSrcweir};
498cdf0e10cSrcweir
499cdf0e10cSrcweirStringArray RID_STR_PAPERNAMES
500cdf0e10cSrcweir{
50151287027SMatthias Seidel	ItemList [en-US] =
50251287027SMatthias Seidel	{
503*635e0213SMatthias Seidel		< "A0" ; > ;
504*635e0213SMatthias Seidel		< "A1" ; > ;
505*635e0213SMatthias Seidel		< "A2" ; > ;
506*635e0213SMatthias Seidel		< "A3" ; > ;
507*635e0213SMatthias Seidel		< "A4" ; > ;
508*635e0213SMatthias Seidel		< "A5" ; > ;
509*635e0213SMatthias Seidel		< "B4 (ISO)" ; > ;
510*635e0213SMatthias Seidel		< "B5 (ISO)" ; > ;
511*635e0213SMatthias Seidel		< "Letter" ; > ;
512*635e0213SMatthias Seidel		< "Legal" ; > ;
513*635e0213SMatthias Seidel		< "Tabloid" ; > ;
514*635e0213SMatthias Seidel		< "User Defined" ; > ;
515*635e0213SMatthias Seidel		< "B6 (ISO)" ; > ;
516*635e0213SMatthias Seidel		< "C4 Envelope" ; > ;
517*635e0213SMatthias Seidel		< "C5 Envelope" ; > ;
518*635e0213SMatthias Seidel		< "C6 Envelope" ; > ;
519*635e0213SMatthias Seidel		< "C6/5 Envelope" ; > ;
520*635e0213SMatthias Seidel		< "DL Envelope" ; > ;
521*635e0213SMatthias Seidel		< "Dia Slide" ; > ;
522*635e0213SMatthias Seidel		< "Screen (4:3)" ; > ;
523*635e0213SMatthias Seidel		< "Screen (16:9)" ; > ;
524*635e0213SMatthias Seidel		< "Screen (16:10)" ; > ;
525*635e0213SMatthias Seidel		< "C" ; > ;
526*635e0213SMatthias Seidel		< "D" ; > ;
527*635e0213SMatthias Seidel		< "E" ; > ;
528*635e0213SMatthias Seidel		< "Executive" ; > ;
529*635e0213SMatthias Seidel		< "Long Bond" ; > ;
530*635e0213SMatthias Seidel		< "#8 (Monarch) Envelope" ; > ;
531*635e0213SMatthias Seidel		< "#6 3/4 (Personal) Envelope" ; > ;
532*635e0213SMatthias Seidel		< "#9 Envelope" ; > ;
533*635e0213SMatthias Seidel		< "#10 Envelope" ; > ;
534*635e0213SMatthias Seidel		< "#11 Envelope" ; > ;
535*635e0213SMatthias Seidel		< "#12 Envelope" ; > ;
536*635e0213SMatthias Seidel		< "16 Kai" ; > ;
537*635e0213SMatthias Seidel		< "32 Kai" ; > ;
538*635e0213SMatthias Seidel		< "Big 32 Kai" ; > ;
539*635e0213SMatthias Seidel		< "B4 (JIS)" ; > ;
540*635e0213SMatthias Seidel		< "B5 (JIS)" ; > ;
541*635e0213SMatthias Seidel		< "B6 (JIS)" ; > ;
54251287027SMatthias Seidel	};
543cdf0e10cSrcweir};
544*635e0213SMatthias Seidel
545*635e0213SMatthias Seidel// ********************************************************************** EOF
546