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 .
19 #ifndef __com_sun_star_text_FootnoteSettings_idl__
20 #define __com_sun_star_text_FootnoteSettings_idl__
24 module com
{ module sun
{ module star
{ module text
{
27 /** provides access to the settings of footnotes or endnotes in a
30 published service FootnoteSettings
33 /** contains the name of the character style that is used
34 for the label in front of the footnote/endnote text.
36 [property
] string CharStyleName
;
39 /** contains the numbering type for the numbering of the
42 [property
] short NumberingType
;
45 /** contains the page style that is used for the page that
46 contains the footnote/endnote texts
48 [property
] string PageStyleName
;
51 /** contains the paragraph style that is used for the
52 footnote/endnote text.
54 [property
] string ParaStyleName
;
57 /** contains the prefix for the footnote/endnote symbol.
59 [property
] string Prefix
;
62 /** contains the first number of the automatic numbering
63 of footnotes/endnotes.
65 [property
] short StartAt
;
68 /** contains the suffix for the footnote/endnote symbol.
70 [property
] string Suffix
;
73 /** contains the string at the restart of the footnote
76 <p>For footnotes only.</p>
78 [optional, property
] string BeginNotice
;
81 /** contains the string at the end of a footnote part in
84 <p>For footnotes only.</p>
86 [optional, property
] string EndNotice
;
89 /** contains the type of the counting of the footnote numbers.
91 <p>For footnotes only.</p>
92 @see FootnoteNumbering
94 [optional, property
] short FootnoteCounting
;
97 /** If `TRUE`, the footnote text is shown at the end of the document.
99 <p>For footnotes only.</p>
101 [optional, property
] boolean PositionEndOfDoc
;
104 /** contains the name of the character style that is used
105 for footnote/endnote anchor in the text.
109 [optional, property
] string AnchorCharStyleName
;
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */