diff options
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/type_reference/offapi.idl | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/offapi/type_reference/offapi.idl b/offapi/type_reference/offapi.idl index 6871ccd0664c..e9228afa7671 100644 --- a/offapi/type_reference/offapi.idl +++ b/offapi/type_reference/offapi.idl @@ -3068,6 +3068,7 @@ module com { }; published constants ChartDataCaption { const long CUSTOM = 32; + const long DATA_SERIES = 64; /** @deprecated */ const long FORMAT = 8; const long NONE = 0; const long PERCENT = 2; @@ -4781,12 +4782,18 @@ module com { const short HIGH_RESOLUTION = 3; const short LOW_RESOLUTION = 2; }; + published exception ReadOnlyOpenRequest: ::com::sun::star::uno::Exception { + string DocumentURL; + }; published constants RedlineDisplayType { const short INSERTED = 1; const short INSERTED_AND_REMOVED = 2; const short NONE = 0; const short REMOVED = 3; }; + published exception ReloadEditableRequest: ::com::sun::star::uno::Exception { + string DocumentURL; + }; }; module i18n { published interface XForbiddenCharacters; @@ -5026,6 +5033,7 @@ module com { RL_TB = 1, TB_RL = 2 }; + published interface XTextColumns; }; module drawing { published service TextProperties { @@ -5059,6 +5067,7 @@ module com { [property] boolean TextAnimationStartInside; [property] boolean TextAnimationStopInside; [property] ::com::sun::star::text::WritingMode TextWritingMode; + [property, optional] ::com::sun::star::text::XTextColumns TextColumns; }; }; module text { @@ -5313,6 +5322,7 @@ module com { [property, optional] ::com::sun::star::container::XNameContainer UserDefinedAttributes; [property, optional, readonly] boolean IsBackgroundDark; [property, optional] ::com::sun::star::container::XIndexAccess NavigationOrder; + [property, optional] boolean BackgroundFullSize; }; published interface XMasterPageTarget { interface ::com::sun::star::uno::XInterface; @@ -13057,11 +13067,6 @@ module com { RIGHT = 2, MIRRORED = 3 }; - }; - module text { - published interface XTextColumns; - }; - module style { published service PageProperties { [property] ::com::sun::star::util::Color BackColor; /** @deprecated */ [property] string BackGraphicURL; @@ -13166,6 +13171,9 @@ module com { [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic; [property, maybevoid, optional] ::com::sun::star::graphic::XGraphic HeaderBackGraphic; [property, maybevoid, optional] ::com::sun::star::graphic::XGraphic FooterBackGraphic; + [property, optional] long GutterMargin; + [property, optional] boolean BackgroundFullSize; + [property, optional] boolean RtlGutter; }; published service PageStyle { service ::com::sun::star::style::Style; @@ -13319,14 +13327,15 @@ module com { published service NumberingLevel { [property] short NumberingType; [property] short ParentNumbering; - [property] string Prefix; - [property] string Suffix; + /** @deprecated */ [property] string Prefix; + /** @deprecated */ [property] string Suffix; [property] string CharStyleName; [property] short BulletId; [property] string BulletFontName; /** @deprecated */ [property] string GraphicURL; [property] short StartWith; [property, optional] ::com::sun::star::awt::XBitmap GraphicBitmap; + [property, optional] string ListFormat; }; published service NumberingRule { service ::com::sun::star::style::NumberingAlignment; @@ -15081,6 +15090,7 @@ module com { [property, maybevoid, optional] boolean IsSplitAllowed; [property, optional] sequence< ::com::sun::star::beans::PropertyValue > RowInteropGrabBag; [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic; + [property, optional] boolean HasTextChangesOnly; }; published service TextTables { interface ::com::sun::star::container::XIndexAccess; @@ -15223,6 +15233,7 @@ module com { [property, optional] boolean ShowBookmarks; [property, optional] boolean ShowOutlineContentVisibilityButton; [property, optional] boolean ShowChangesInMargin; + [property, optional] boolean TreatSubOutlineLevelsAsContent; }; published constants WritingMode2 { const short BT_LR = 5; |