Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / presentation / DocumentSettings.idl
bloba4419de116abc3b33429ff14699205e28326734f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_presentation_DocumentSettings_idl__
20 #define __com_sun_star_presentation_DocumentSettings_idl__
22 #include <com/sun/star/document/HeaderFooterSettings.idl>
23 #include <com/sun/star/document/Settings.idl>
26 module com { module sun { module star { module presentation {
29 /** describes properties that apply to the whole presentation document.
31 published service DocumentSettings
33 /** This service documents the common properties of an office document
35 service com::sun::star::document::Settings;
38 /** This service configures the header and footer settings during print
40 [optional] service com::sun::star::document::HeaderFooterSettings;
43 /** provides access to the properties.
45 interface com::sun::star::beans::XPropertySet;
48 /** enables or disables the printing of the drawing pages
50 [optional, property] boolean IsPrintDrawing;
52 /** enables or disables the printing of the notes pages
54 [optional, property] boolean IsPrintNotes;
56 /** enables or disables the printing of the handout pages
58 [optional, property] boolean IsPrintHandout;
60 /** enables or disables the printing of the outline pages
62 [optional, property] boolean IsPrintOutline;
64 /** enables or disables the printing of draw pages that
65 are marked hidden
67 [optional, property] boolean IsPrintHiddenPages;
69 // Note: the following properties exist also in
70 // css::drawing::DocumentSettings
73 /** enables or disables the fitting of the page to the printable
74 area during print
76 [optional, property] boolean IsPrintFitPage;
78 /** if this is true and the paper size for printing is larger than
79 the paper size of the printer than the content is tiled over
80 multiple pages.
82 [optional, property] boolean IsPrintTilePage;
84 /** is the number format used for page number fields
86 [optional, property] long PageNumberFormat;
88 /** If this is true, the distance between two paragraphs is
89 the sum of ParaTopMargin of the previous and ParaBottomMargin of
90 the next paragraph. If false, only the greater of the two is
91 chosen.
93 [optional, property] boolean ParagraphSummation;
98 }; }; }; };
100 #endif
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */