1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#ifndef __com_sun_star_text_PageFootnoteInfo_idl__ 24#define __com_sun_star_text_PageFootnoteInfo_idl__ 25 26#ifndef __com_sun_star_text_HorizontalAdjust_idl__ 27#include <com/sun/star/text/HorizontalAdjust.idl> 28#endif 29 30 31//============================================================================= 32 33 module com { module sun { module star { module text { 34 35//============================================================================= 36 37// DocMerge from xml: service com::sun::star::text::PageFootnoteInfo 38/** specifies the properties of the footnote area of a page or a 39 page style. 40 */ 41published service PageFootnoteInfo 42{ 43 //------------------------------------------------------------------------- 44 45 // DocMerge from xml: property com::sun::star::text::PageFootnoteInfo::FootnoteHeight 46 /** contains the maximum height of the footnote section. 47 48 49 50 <p>If 0, the maximum is the height of the page.</p> 51 */ 52 [property] long FootnoteHeight; 53 54 //------------------------------------------------------------------------- 55 56 // DocMerge from xml: property com::sun::star::text::PageFootnoteInfo::FootnoteSeparatorLineWidth 57 /** contains the relative width of the footnote separator line. 58 */ 59 [property] long FootnoteSeparatorLineWidth; 60 61 //------------------------------------------------------------------------- 62 63 // DocMerge from xml: property com::sun::star::text::PageFootnoteInfo::FootnoteTopDistance 64 /** contains the distance between the text and footnote section. 65 */ 66 [property] long FootnoteTopDistance; 67 68 //------------------------------------------------------------------------- 69 70 // DocMerge from xml: property com::sun::star::text::PageFootnoteInfo::FootnoteBottomDistance 71 /** contains the distance between the separator line and the footnote section. 72 */ 73 [property] long FootnoteBottomDistance; 74 75 //------------------------------------------------------------------------- 76 77 // DocMerge from xml: property com::sun::star::text::PageFootnoteInfo::FootnoteSeparatorLineWidthPercent 78 /** contains the relative width of the footnote separator line. 79 */ 80 [property] short FootnoteSeparatorLineWidthPercent; 81 82 //------------------------------------------------------------------------- 83 84 // DocMerge from xml: property com::sun::star::text::PageFootnoteInfo::FootnoteSeparatorLineAdjust 85 /** contains the adjustment of the footnote separator line. 86 */ 87 [property] com::sun::star::text::HorizontalAdjust FootnoteSeparatorLineAdjust; 88 89 //------------------------------------------------------------------------- 90 91 // DocMerge from xml: property com::sun::star::text::PageFootnoteInfo::FootnoteSeparatorLinePenWidth 92 /** contains the width of the pen for the footnote separator line. 93 */ 94 [property] short FootnoteSeparatorLinePenWidth; 95 96}; 97 98//============================================================================= 99 100}; }; }; }; 101 102#endif 103