Bump for 3.6-28
[LibreOffice.git] / offapi / com / sun / star / presentation / DocumentSettings.idl
blob2a9d598dac0b4b66e67dcba4a17d62bb83b7e2b8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef __com_sun_star_presentation_DocumentSettings_idl__
29 #define __com_sun_star_presentation_DocumentSettings_idl__
31 #include <com/sun/star/document/HeaderFooterSettings.idl>
32 #include <com/sun/star/document/Settings.idl>
34 //=============================================================================
36 module com { module sun { module star { module presentation {
38 //=============================================================================
40 /** describes properties that apply to the whole presentation document.
42 published service DocumentSettings
44 /** This service documents the common properties of an office document
46 service com::sun::star::document::Settings;
48 //-------------------------------------------------------------------------
50 /** This service configures the header and footer settings during print
52 [optional] service com::sun::star::document::HeaderFooterSettings;
54 //-------------------------------------------------------------------------
56 /** provides access to the properties.
58 interface com::sun::star::beans::XPropertySet;
60 //-------------------------------------------------------------------------
62 /** enables or disables the printing of the drawing pages
64 [optional, property] boolean IsPrintDrawing;
66 /** enables or disables the printing of the notes pages
68 [optional, property] boolean IsPrintNotes;
70 /** enables or disables the printing of the handout pages
72 [optional, property] boolean IsPrintHandout;
74 /** enables or disables the printing of the outline pages
76 [optional, property] boolean IsPrintOutline;
78 /** enables or disables the printing of draw pages that
79 are marked hidden
81 [optional, property] boolean IsPrintHiddenPages;
83 // Note: the following properties exist also in
84 // css::drawing::DocumentSettings
86 // ------------------------------------------------------------
88 /** enables or disables the fitting of the page to the printable
89 area during print
91 [optional, property] boolean IsPrintFitPage;
93 /** if this is true and the paper size for printing is larger than
94 the paper size of the printer than the content is tiled over
95 multiple pages.
97 [optional, property] boolean IsPrintTilePage;
99 /** is the number format used for page number fields
101 [optional, property] long PageNumberFormat;
103 /** If this is true, the distance between two paragraphs is
104 the sum of ParaTopMargin of the previous and ParaBottomMargin of
105 the next paragraph. If false, only the greater of the two is
106 chosen.
108 [optional, property] boolean ParagraphSummation;
112 //=============================================================================
114 }; }; }; };
116 #endif
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */