merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / drawing / DocumentSettings.idl
blob2af1911aa440f81bec11bebd5e9bb88dfd9f9a64
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: DocumentSettings.idl,v $
10 * $Revision: 1.6 $
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_drawing_DocumentSettings_idl__
31 #define __com_sun_star_drawing_DocumentSettings_idl__
33 #ifndef __com_sun_star_document_Settings_idl__
34 #include <com/sun/star/document/Settings.idl>
35 #endif
37 #ifndef __com_sun_star_document_HeaderFooterSettings_idl__
38 #include <com/sun/star/document/HeaderFooterSettings.idl>
39 #endif
41 //=============================================================================
43 module com { module sun { module star { module drawing {
45 //=============================================================================
47 /** describes properties that apply to the whole drawing document.
49 published service DocumentSettings
51 service com::sun::star::document::Settings;
53 //-------------------------------------------------------------------------
54 /** This service configures the header and footer settings during print
56 [optional] service com::sun::star::document::HeaderFooterSettings;
58 //-------------------------------------------------------------------------
60 /** provides access to the properties.
62 interface com::sun::star::beans::XPropertySet;
64 //-------------------------------------------------------------------------
66 /** This is the default logical measure unit that is used for string
67 formatings inside the document, f.e. the measure text
69 [optional, property] short MeasureUnit;
71 /** is the numerator for the logical scale of the document
73 [optional, property] long ScaleNumerator;
75 /** is the denominator for the logical scale of the document
77 [optional, property] long ScaleDenominator;
79 // Note: the following properties exist also in
80 // css::presentation::DocumentSettings
82 // ------------------------------------------------------------
84 /** enables or disables the fitting of the page to the printable
85 area during print
87 [optional, property] boolean IsPrintFitPage;
89 /** if this is true and the paper size for printing is larger than
90 the paper size of the printer than the content is tiled over
91 multiple pages.
93 [optional, property] boolean IsPrintTilePage;
95 /** is the number format used for page number fields
97 [optional, property] long PageNumberFormat;
99 /** If this is true, the distance between two paragraphs is
100 the sum of ParaTopMargin of the previous and ParaBottomMargin of
101 the next paragraph. If false, only the greater of the two is
102 choosen.
104 [optional, property] boolean ParagraphSummation;
108 //=============================================================================
110 }; }; }; };
112 #endif