summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorEilidh McAdam <eilidh@lanedo.com>2012-11-15 00:29:58 +0000
committerFridrich Strba <fridrich@documentfoundation.org>2012-12-04 10:59:20 +0000
commit7d632ff29e601c2e680c4a689997fbf552592a4b (patch)
treee632de620c11503eb80ae84704fd107cdd348dba /offapi
parent67f42de08bb5d075d554cf5aa1a4c106fe9e4f5c (diff)
Support added for fine dashing on table borders.
When reading in docx documents, fine dashing provides a better visual match for some border types. Added in this patch: - FINE_DASHED in BorderLineStyle UNO enum and in internals - Import of docx table borders using this border style Change-Id: I39cfa18c915ec94d8e4ecfc6a2ca637076d1e468 Reviewed-on: https://gerrit.libreoffice.org/1123 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/table/BorderLineStyle.idl8
1 files changed, 8 insertions, 0 deletions
diff --git a/offapi/com/sun/star/table/BorderLineStyle.idl b/offapi/com/sun/star/table/BorderLineStyle.idl
index 0007118eed7f..7613272043d1 100644
--- a/offapi/com/sun/star/table/BorderLineStyle.idl
+++ b/offapi/com/sun/star/table/BorderLineStyle.idl
@@ -90,6 +90,14 @@ constants BorderLineStyle
/** Inset border line.
*/
const short INSET = 13;
+
+ /** Finely dashed border line.
+ */
+ const short FINE_DASHED = 14;
+
+ /** Maximum valid border line style value.
+ */
+ const short BORDER_LINE_STYLE_MAX = 14;
};