1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: FootnoteSettings.idl,v $
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_text_FootnoteSettings_idl__
31 #define __com_sun_star_text_FootnoteSettings_idl__
34 //=============================================================================
36 module com
{ module sun
{ module star
{ module text
{
38 //=============================================================================
40 /** provides access to the settings of footnotes or endnotes in a
43 published service FootnoteSettings
45 //-------------------------------------------------------------------------
47 /** contains the name of the character style that is used
48 for the label in front of the footnote/endnote text.
50 [property
] string CharStyleName
;
52 //-------------------------------------------------------------------------
54 /** contains the numbering type for the numbering of the
57 [property
] short NumberingType
;
59 //-------------------------------------------------------------------------
61 /** contains the page style that is used for the page that
62 contains the footnote/endnote texts
64 [property
] string PageStyleName
;
66 //-------------------------------------------------------------------------
68 /** contains the paragraph style that is used for the
69 footnote/endnote text.
71 [property
] string ParaStyleName
;
73 //-------------------------------------------------------------------------
75 /** contains the prefix for the footnote/endnote symbol.
77 [property
] string Prefix
;
79 //-------------------------------------------------------------------------
81 /** contains the first number of the automatic numbering
82 of footnotes/endnotes.
84 [property
] short StartAt
;
86 //-------------------------------------------------------------------------
88 /** contains the suffix for the footnote/endnote symbol.
90 [property
] string Suffix
;
92 //-------------------------------------------------------------------------
94 /** contains the string at the restart of the footnote
97 <p>For footnotes only.</p>
99 [optional, property
] string BeginNotice
;
101 //-------------------------------------------------------------------------
103 /** contains the string at the end of a footnote part in
106 <p>For footnotes only.</p>
108 [optional, property
] string EndNotice
;
110 //-------------------------------------------------------------------------
112 /** contains the type of the counting of the footnote numbers.
114 <p>For footnotes only.</p>
115 @see FootnoteNumbering
117 [optional, property
] short FootnoteCounting
;
119 //-------------------------------------------------------------------------
121 /** If <TRUE/>, the footnote text is shown at the end of the document.
123 <p>For footnotes only.</p>
125 [optional, property
] boolean PositionEndOfDoc
;
127 //-------------------------------------------------------------------------
129 /** contains the name of the character style that is used
130 for footnote/endnote anchor in the text.
134 [optional, property
] string AnchorCharStyleName
;
138 //=============================================================================