Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / view / PrintSettings.idl
blobd0e593f798d557192bb7b545466528a7ae36c3d8
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: PrintSettings.idl,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
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.
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).
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.
29 ************************************************************************/
30 #ifndef __com_sun_star_view_PrintSettings_idl__
31 #define __com_sun_star_view_PrintSettings_idl__
34 //=============================================================================
36 module com { module sun { module star { module view {
38 //=============================================================================
40 /** provides access to the settings for printing documents.
42 <p>These settings are printer independet but affect the rendering of
43 the document.
45 published service PrintSettings
47 //-------------------------------------------------------------------------
48 /** If <TRUE/>, all characters are printed in black.
50 <p>It is useful for printing colored text on a b/w printer.</p>
52 [property] boolean PrintBlackFonts;
54 //-------------------------------------------------------------------------
55 /** If <TRUE/>, control shapes are included in printing.
57 [property] boolean PrintControls;
59 //-------------------------------------------------------------------------
60 /** If <TRUE/>, drawing objects (shapes) are included in printing.
62 [property] boolean PrintDrawings;
64 //-------------------------------------------------------------------------
65 /** If <TRUE/>, graphic objects are included in printing.
67 [property] boolean PrintGraphics;
69 //-------------------------------------------------------------------------
70 /** If <TRUE/>, left pages are included in printing.
72 [property] boolean PrintLeftPages;
74 //-------------------------------------------------------------------------
75 /** If <TRUE/>, right pages are included in printing.
77 [property] boolean PrintRightPages;
79 //-------------------------------------------------------------------------
80 /** If <TRUE/>, tables are included in printing.
82 [property] boolean PrintTables;
84 //-------------------------------------------------------------------------
85 /** If <TRUE/>, the pages are printed in reverse order.
87 <p>The last page is printed first.</p>
89 [property] boolean PrintReversed;
91 //-------------------------------------------------------------------------
92 /** If <TRUE/>, the pages are printed in the order of prospects.
94 [property] boolean PrintProspect;
96 //-------------------------------------------------------------------------
97 /** If <TRUE/>, the background of the page is printed.
99 [property] boolean PrintPageBackground;
101 //-------------------------------------------------------------------------
102 /** determines how annotations are printed.
104 @see NotePrintMode
106 [property] short PrintAnnotationMode;
110 //=============================================================================
112 }; }; }; };
114 #endif