1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_text_FootnoteSettings_idl__
28 #define __com_sun_star_text_FootnoteSettings_idl__
31 //=============================================================================
33 module com
{ module sun
{ module star
{ module text
{
35 //=============================================================================
37 /** provides access to the settings of footnotes or endnotes in a
40 published service FootnoteSettings
42 //-------------------------------------------------------------------------
44 /** contains the name of the character style that is used
45 for the label in front of the footnote/endnote text.
47 [property
] string CharStyleName
;
49 //-------------------------------------------------------------------------
51 /** contains the numbering type for the numbering of the
54 [property
] short NumberingType
;
56 //-------------------------------------------------------------------------
58 /** contains the page style that is used for the page that
59 contains the footnote/endnote texts
61 [property
] string PageStyleName
;
63 //-------------------------------------------------------------------------
65 /** contains the paragraph style that is used for the
66 footnote/endnote text.
68 [property
] string ParaStyleName
;
70 //-------------------------------------------------------------------------
72 /** contains the prefix for the footnote/endnote symbol.
74 [property
] string Prefix
;
76 //-------------------------------------------------------------------------
78 /** contains the first number of the automatic numbering
79 of footnotes/endnotes.
81 [property
] short StartAt
;
83 //-------------------------------------------------------------------------
85 /** contains the suffix for the footnote/endnote symbol.
87 [property
] string Suffix
;
89 //-------------------------------------------------------------------------
91 /** contains the string at the restart of the footnote
94 <p>For footnotes only.</p>
96 [optional, property
] string BeginNotice
;
98 //-------------------------------------------------------------------------
100 /** contains the string at the end of a footnote part in
103 <p>For footnotes only.</p>
105 [optional, property
] string EndNotice
;
107 //-------------------------------------------------------------------------
109 /** contains the type of the counting of the footnote numbers.
111 <p>For footnotes only.</p>
112 @see FootnoteNumbering
114 [optional, property
] short FootnoteCounting
;
116 //-------------------------------------------------------------------------
118 /** If <TRUE/>, the footnote text is shown at the end of the document.
120 <p>For footnotes only.</p>
122 [optional, property
] boolean PositionEndOfDoc
;
124 //-------------------------------------------------------------------------
126 /** contains the name of the character style that is used
127 for footnote/endnote anchor in the text.
131 [optional, property
] string AnchorCharStyleName
;
135 //=============================================================================