summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedricbosdo@openoffice.org>2011-03-17 17:40:07 +0100
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2011-03-19 17:57:47 +0100
commit7ff8f9a4bb008c46f4ac6fa2877a16cafbe2007c (patch)
tree5f8ac976822d2a54dee176326b7205fb5b7deed0 /offapi
parente1fa511afa6b59baf218cce6c6e61b95cdc673c7 (diff)
Fixed line style in footnote format GUI and saved it to ODF
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/style/FootnoteLineStyle.idl44
-rw-r--r--offapi/com/sun/star/style/PageProperties.idl7
-rw-r--r--offapi/com/sun/star/style/makefile.mk1
3 files changed, 52 insertions, 0 deletions
diff --git a/offapi/com/sun/star/style/FootnoteLineStyle.idl b/offapi/com/sun/star/style/FootnoteLineStyle.idl
new file mode 100644
index 000000000000..100e27f1cb41
--- /dev/null
+++ b/offapi/com/sun/star/style/FootnoteLineStyle.idl
@@ -0,0 +1,44 @@
+/*
+ * Version: MPL 1.1 / GPLv3+ / LGPLv3+
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Initial Developer of the Original Code is
+ * [ Novell Inc. ]
+ * Portions created by the Initial Developer are Copyright (C) 2010 the
+ * Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s): Cedric Bosdonnat <cbosdonnat@novell.com>
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+ * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+ * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+ * instead of those above.
+ */
+#ifndef __com_sun_star_text_FootnoteLineStyle_idl__
+#define __com_sun_star_text_FootnoteLineStyle_idl__
+
+module com { module sun { module star { module text {
+
+published constants FootnoteLineStyle
+{
+ const short NONE = 0;
+
+ const short SOLID = 1;
+
+ const short DOTTED = 2;
+
+ const short DASHED = 3;
+};
+
+}; }; }; };
+#endif
diff --git a/offapi/com/sun/star/style/PageProperties.idl b/offapi/com/sun/star/style/PageProperties.idl
index 488e108a5a25..4476ff711ff7 100644
--- a/offapi/com/sun/star/style/PageProperties.idl
+++ b/offapi/com/sun/star/style/PageProperties.idl
@@ -424,6 +424,13 @@ of the current page is used as limit.
*/
[optional,property] short FootnoteLineWeight;
//-----------------------------------------------------------------------------
+/** contains the style of the separator line between the text and the footnote area.
+
+ @see com::sun::star::style::FootnoteLineStyle
+ for the possible values.
+ */
+[optional,property] short FootnoteLineStyle;
+//-----------------------------------------------------------------------------
/** contains the color of the separator line between the text and the footnote area..
*/
[optional,property] com::sun::star::util::Color FootnoteLineColor;
diff --git a/offapi/com/sun/star/style/makefile.mk b/offapi/com/sun/star/style/makefile.mk
index 969f0589d9c3..b9077b14109c 100644
--- a/offapi/com/sun/star/style/makefile.mk
+++ b/offapi/com/sun/star/style/makefile.mk
@@ -46,6 +46,7 @@ IDLFILES=\
CharacterPropertiesComplex.idl\
CharacterStyle.idl\
DropCapFormat.idl\
+ FootnoteLineStyle.idl\
GraphicLocation.idl\
HorizontalAlignment.idl\
LineNumberPosition.idl\