From 6b80bd446de4bf19df3a9b124881e1fe12402ca8 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 2 Mar 2020 17:17:56 +0100 Subject: sw padded numbering: add doc model and UNO API The idea is to behave similar to Arabic numbering, but pad the result on the left up to 2 characters. Word has this feature, so far Writer falled back to plain Arabic numbering. This is just the document model, not layout yet. Change-Id: I8ac90536848d00b8678129184db0849130724dee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89846 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- offapi/com/sun/star/style/NumberingType.idl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'offapi/com/sun') diff --git a/offapi/com/sun/star/style/NumberingType.idl b/offapi/com/sun/star/style/NumberingType.idl index 0cc07b3eebc6..21ad4c73c3a4 100644 --- a/offapi/com/sun/star/style/NumberingType.idl +++ b/offapi/com/sun/star/style/NumberingType.idl @@ -492,6 +492,13 @@ published constants NumberingType ASTERISK ASTERISK, DAGGER DAGGER, etc. */ const short SYMBOL_CHICAGO = 63; + + /** Numbering is in Arabic numbers, padded with zero to have a length of at least two, as "01, + 02, ..., 10, 11, ...". + + @since LibreOffice 7.0 + */ + const short ARABIC_ZERO = 64; }; -- cgit