summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/style/ParagraphProperties.idl
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2002-09-25 12:53:04 +0000
committerThomas Lange <tl@openoffice.org>2002-09-25 12:53:04 +0000
commit74b9797933bfb37dd25b3e006bf893db340ac90e (patch)
tree8d5c61be4f58af5fffae10c85e1c3944a830f9cc /offapi/com/sun/star/style/ParagraphProperties.idl
parent6a8a90f164522cd3dd6a124f569c066c0956ad86 (diff)
#103610# missing properties added
Diffstat (limited to 'offapi/com/sun/star/style/ParagraphProperties.idl')
-rw-r--r--offapi/com/sun/star/style/ParagraphProperties.idl108
1 files changed, 75 insertions, 33 deletions
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 <com/sun/star/table/BorderLine.idl>
#endif
-
+#ifndef __com_sun_star_style_BreakType_idl__
+#include <com/sun/star/style/BreakType.idl>
+#endif
+#ifndef __com_sun_star_container_XNameContainer_idl__
+#include <com/sun/star/container/XNameContainer.idl>
+#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
@@ -375,65 +373,109 @@ service ParagraphProperties
*/
[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;
+
+ //-------------------------------------------------------------------------
};
//=============================================================================