1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_text_PrintSettings_idl__
20 #define __com_sun_star_text_PrintSettings_idl__
22 #include
<com
/sun
/star
/text
/NotePrintMode.idl
>
26 module com
{ module sun
{ module star
{ module text
{
28 /** These properties describe the printing of the content of a text document.
30 published service PrintSettings
32 /** determines if graphic objects are printed
34 [property
] boolean PrintGraphics
;
36 /** determines if text tables are printed.
38 [property
] boolean PrintTables
;
40 /** determines if shapes are printed.
42 [property
] boolean PrintDrawings
;
44 /** determines if left pages are printed.
46 [property
] boolean PrintLeftPages
;
48 /** determines if right pages are printed.
50 [property
] boolean PrintRightPages
;
52 /** determines if control shapes are printed.
54 [property
] boolean PrintControls
;
56 /** determines if the pages are printed in the reverse order, starting with the last page.
58 [property
] boolean PrintReversed
;
60 /** specifies if the printer paper tray selection of the system
65 <p>If com::sun::star::view::PrintSettings::PaperFromSetup is `FALSE`,
66 then the paper tray selection of the page styles is used.</p>
68 [property
] boolean PrintPaperFromSetup
;
70 /** contains the name of the fax.
72 [property
] string PrintFaxName
;
74 /** determines how notes are printed.@see NotePrintMode
76 [property
] com
::sun
::star
::text
::NotePrintMode PrintAnnotationMode
;
78 /** determines if prospect printing is used.
80 [property
] boolean PrintProspect
;
82 /** determines if the background color / background graphic of pages is printed.
84 [property
] boolean PrintPageBackground
;
86 /** determines if characters are always printed in black.
88 [property
] boolean PrintBlackFonts
;
91 /** determines if automatically inserted empty pages are printed.
93 [optional, property
] boolean PrintEmptyPages
;
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */