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 .
21 module com
{ module sun
{ module star
{ module presentation
{
24 /** describes properties that apply to the whole presentation document.
26 published service DocumentSettings
28 /** This service documents the common properties of an office document
30 service com
::sun
::star
::document
::Settings
;
33 /** This service configures the header and footer settings during print
35 [optional] service com
::sun
::star
::document
::HeaderFooterSettings
;
38 /** provides access to the properties.
40 interface com
::sun
::star
::beans
::XPropertySet
;
43 /** enables or disables the printing of the drawing pages
45 [optional, property
] boolean IsPrintDrawing
;
47 /** enables or disables the printing of the notes pages
49 [optional, property
] boolean IsPrintNotes
;
51 /** enables or disables the printing of the handout pages
53 [optional, property
] boolean IsPrintHandout
;
55 /** enables or disables the printing of the outline pages
57 [optional, property
] boolean IsPrintOutline
;
59 /** enables or disables the printing of draw pages that
62 [optional, property
] boolean IsPrintHiddenPages
;
64 // Note: the following properties exist also in
65 // css::drawing::DocumentSettings
68 /** enables or disables the fitting of the page to the printable
71 [optional, property
] boolean IsPrintFitPage
;
73 /** if this is true and the paper size for printing is larger than
74 the paper size of the printer than the content is tiled over
77 [optional, property
] boolean IsPrintTilePage
;
79 /** is the number format used for page number fields
81 Values 0-7 are supported.
83 @see com::sun::star::style::NumberingType
85 [optional, property
] long PageNumberFormat
;
87 /** If this is true, the distance between two paragraphs is
88 the sum of ParaBottomMargin of the previous and ParaTopMargin of
89 the next paragraph. If false, only the greater of the two is
92 [optional, property
] boolean ParagraphSummation
;
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */