From 74b9797933bfb37dd25b3e006bf893db340ac90e Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Wed, 25 Sep 2002 12:53:04 +0000 Subject: #103610# missing properties added --- offapi/com/sun/star/style/ParagraphProperties.idl | 108 +++++++++++++++------- 1 file changed, 75 insertions(+), 33 deletions(-) (limited to 'offapi/com/sun/star/style/ParagraphProperties.idl') diff --git a/offapi/com/sun/star/style/ParagraphProperties.idl b/offapi/com/sun/star/style/ParagraphProperties.idl index 7e3ec86a3931..4589b01266f2 100644 --- a/offapi/com/sun/star/style/ParagraphProperties.idl +++ b/offapi/com/sun/star/style/ParagraphProperties.idl @@ -2,9 +2,9 @@ * * $RCSfile: ParagraphProperties.idl,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: tl $ $Date: 2002-08-28 08:27:31 $ + * last change: $Author: tl $ $Date: 2002-09-25 13:51:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -90,7 +90,12 @@ #ifndef __com_sun_star_table_BorderLine_idl__ #include #endif - +#ifndef __com_sun_star_style_BreakType_idl__ +#include +#endif +#ifndef __com_sun_star_container_XNameContainer_idl__ +#include +#endif //============================================================================= @@ -234,13 +239,6 @@ service ParagraphProperties //------------------------------------------------------------------------- - // DocMerge from xml: property com::sun::star::style::ParagraphProperties::ParaIsHyphenation - /** prevents the paragraph from getting hyphenated. - */ - [property] boolean ParaIsHyphenation; - - //------------------------------------------------------------------------- - // DocMerge from xml: property com::sun::star::style::ParagraphProperties::PageDescName /** If this property is set, it creates a page break before the paragraph it belongs to and assigns the value as the name @@ -374,66 +372,110 @@ service ParagraphProperties @see com.sun.star.table.ShadowFormat */ [optional, property] com::sun::star::table::ShadowFormat ParaShadowFormat; - //------------------------------------------------------------------------- - /** determines if hanging punctuation is allowed. - */ - [optional, property] boolean IsHangingPunctuation; - //------------------------------------------------------------------------- - /** determines if a distance between asian text, western text or complex text is set. - */ - [optional, property] boolean IsCharacterDistance; - //------------------------------------------------------------------------- - /** determines if the the rules for forbidden characters at the start or end - of text lines are considered. - */ - [optional, property] boolean IsForbiddenRules; - //------------------------------------------------------------------------- /** contains the left border of the object. */ - [property, optional] com::sun::star::table::BorderLine LeftBorder; + [property, optional] com::sun::star::table::BorderLine LeftBorder; //------------------------------------------------------------------------- /** contains the right border of the object. */ - [property, optional] com::sun::star::table::BorderLine RightBorder; + [property, optional] com::sun::star::table::BorderLine RightBorder; //------------------------------------------------------------------------- /** contains the top border of the object. */ - [property, optional] com::sun::star::table::BorderLine TopBorder; + [property, optional] com::sun::star::table::BorderLine TopBorder; //------------------------------------------------------------------------- /** contains the bottom border of the object. */ - [property, optional] com::sun::star::table::BorderLine BottomBorder; + [property, optional] com::sun::star::table::BorderLine BottomBorder; //------------------------------------------------------------------------- /** contains the distance from the border to the object. */ - [property, optional] long BorderDistance; + [property, optional] long BorderDistance; //------------------------------------------------------------------------- /** contains the distance from the left border to the object. */ - [property, optional] long LeftBorderDistance; + [property, optional] long LeftBorderDistance; //------------------------------------------------------------------------- /** contains the distance from the right border to the object. */ - [property, optional] long RightBorderDistance; + [property, optional] long RightBorderDistance; //------------------------------------------------------------------------- /** contains the distance from the top border to the object. */ - [property, optional] long TopBorderDistance; + [property, optional] long TopBorderDistance; //------------------------------------------------------------------------- /** contains the distance from the bottom border to the object. */ - [property, optional] long BottomBorderDistance; + [property, optional] long BottomBorderDistance; //------------------------------------------------------------------------- + /** determins the type of break that is applied at the beginning of the table. + @see com.sun.star.style.BreakType + */ + [property] com::sun::star::style::BreakType BreakType; + + //------------------------------------------------------------------------- + /** specifies the character style name for drop caps. + */ + [property] string DropCapCharStyleName; + + //------------------------------------------------------------------------- + /** specifies the indent for the first line. + */ + [property] long ParaFirstLineIndent; + + //------------------------------------------------------------------------- + /** determines if the first line should be indented automatically. + */ + [property] boolean ParaIsAutoFirstLineIndent; + + //------------------------------------------------------------------------- + /** specifies if automatic hyphenation is applied. + */ + [property] boolean ParaIsHyphenation; + + //------------------------------------------------------------------------- + /** specifies the maximum number of consecutive hyphens. + */ + [property] short ParaHyphenationMaxHyphens; + + //------------------------------------------------------------------------- + /** specifies the maximum number of characters to remain before the + hyphen character (when hyphenation is applied). + */ + [property] short ParaHyphenationMaxLeadingChars; + + //------------------------------------------------------------------------- + /** specifies the maximum number of characters to remain after the + hyphen character (when hyphenation is applied). + */ + [property] short ParaHyphenationMaxTrailingChars; + + //------------------------------------------------------------------------- + /** specifies the vertical alignment of a paragraph. + + @see com::sun::star::text::ParagraphVertAlign + */ + [property] short ParaVertAlignment; + + //------------------------------------------------------------------------- + /** this property stores xml attributes. + They will be saved to and restored from automatic styles inside xml files. + + @see com::sun::star::xml::AttributeContainer + */ + [property] com::sun::star::container::XNameContainer ParaUserDefinedAttributes; + + //------------------------------------------------------------------------- }; //============================================================================= -- cgit