tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / text / FootnoteSettings.idl
bloba615981b9ff040a9381965c4dd161dbbc6763eb5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
22 module com { module sun { module star { module text {
25 /** provides access to the settings of footnotes or endnotes in a
26 (text) document.
28 published service FootnoteSettings
31 /** contains the name of the character style that is used
32 for the label in front of the footnote/endnote text.
34 [property] string CharStyleName;
37 /** contains the numbering type for the numbering of the
38 footnotes/endnotes.
40 [property] short NumberingType;
43 /** contains the page style that is used for the page that
44 contains the footnote/endnote texts
46 [property] string PageStyleName;
49 /** contains the paragraph style that is used for the
50 footnote/endnote text.
52 [property] string ParaStyleName;
55 /** contains the prefix for the footnote/endnote symbol.
57 [property] string Prefix;
60 /** contains the first number of the automatic numbering
61 of footnotes/endnotes.
63 [property] short StartAt;
66 /** contains the suffix for the footnote/endnote symbol.
68 [property] string Suffix;
71 /** contains the string at the restart of the footnote
72 text after a break.
74 <p>For footnotes only.</p>
76 [optional, property] string BeginNotice;
79 /** contains the string at the end of a footnote part in
80 front of a break.
82 <p>For footnotes only.</p>
84 [optional, property] string EndNotice;
87 /** contains the type of the counting of the footnote numbers.
89 <p>For footnotes only.</p>
90 @see FootnoteNumbering
92 [optional, property] short FootnoteCounting;
95 /** If `TRUE`, the footnote text is shown at the end of the document.
97 <p>For footnotes only.</p>
99 [optional, property] boolean PositionEndOfDoc;
102 /** contains the name of the character style that is used
103 for footnote/endnote anchor in the text.
105 @since OOo 2.0
107 [optional, property] string AnchorCharStyleName;
112 }; }; }; };
114 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */