summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorEilidh McAdam <eilidh@lanedo.com>2012-11-15 00:29:58 +0000
committerMiklos Vajna <vmiklos@suse.cz>2013-05-30 16:51:53 +0200
commit487e34c741231b939b314442b091edb6ab7216a8 (patch)
tree4b91e0ac0ee72d9fcc73fa29ae77a1ea4989a0b3 /offapi
parentc2bd5aab1ccd7c58b59b3fc8d29a0f055bb466e7 (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> (cherry picked from commit 7d632ff29e601c2e680c4a689997fbf552592a4b)
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 29cfe0d6b5d1..781473e366d6 100644
--- a/offapi/com/sun/star/table/BorderLineStyle.idl
+++ b/offapi/com/sun/star/table/BorderLineStyle.idl
@@ -101,6 +101,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;
};
//=============================================================================