diff options
author | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-03-17 17:40:07 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-03-19 17:57:47 +0100 |
commit | 374cce46358edc4a65d5cff84fc511cc3524d8be (patch) | |
tree | 0cd12f73fc64f58243bdf41d0fa7d7f9205aea1b /offapi | |
parent | 232e5dfb37f777f1d4a9df7e55266dd9befa56ed (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.idl | 44 | ||||
-rw-r--r-- | offapi/com/sun/star/style/PageProperties.idl | 7 | ||||
-rw-r--r-- | offapi/com/sun/star/style/makefile.mk | 1 |
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 000000000..100e27f1c --- /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 d09f0cc8a..dc5265e97 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 969f0589d..b9077b141 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\ |