summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorPantelis Koukousoulas <pktoss@gmail.com>2011-03-14 20:05:28 +0100
committerThorsten Behrens <tbehrens@novell.com>2011-03-14 20:32:35 +0100
commit0a4732acbf7149d45e076a74bea0b49ee74e2f59 (patch)
tree1323b30cb35a259cae4252cb20ad7c51634c8603 /offapi
parent6cd98b3d9ddaa5426930473d7ff07e4ff5725366 (diff)
Support for greek numerals
References: http://www.spinellis.gr/blog/20090625/ (Greek Numerals in OpenOffice.org) http://user.services.openoffice.org/en/forum/viewtopic.php?f=7&t=7269 ([Issue+Workaround] Custom Numbering in Bullets and Numbering) http://www.opengr.net/forum/viewtopic.php?f=13&t=51 And the references transitively mentioned in the above. This functionality was implemented during Greek Coding Camp 2009. NOTE: the present implementation uses the (modern) two-letter version of '6' (sigma taf) instead of the ancient greek / katharevousa version that uses the 'stigma' character. OTOH, we do use the katharevousa 'qoppa' and 'sampi' because there is no standard modern version that replaces them. If you have that many bullets so that these symbols are needed, then you had it comin' anyway :p Author: Pantelis Koukousoulas <pktoss@gmail.com> License: LGPLv3 / MPL Signed-off-by: Pantelis Koukousoulas <pktoss@gmail.com>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/style/NumberingType.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/offapi/com/sun/star/style/NumberingType.idl b/offapi/com/sun/star/style/NumberingType.idl
index dfba34508371..9ba5b3a6588b 100644
--- a/offapi/com/sun/star/style/NumberingType.idl
+++ b/offapi/com/sun/star/style/NumberingType.idl
@@ -471,6 +471,20 @@ published constants NumberingType
*/
const short CHARS_CYRILLIC_LOWER_LETTER_N_SR = 51;
+ //-------------------------------------------------------------------------
+ /** Numbering in Greek alphabet upper case letters
+
+ @since OOo 3.3
+ */
+ const short CHARS_GREEK_UPPER_LETTER = 52;
+
+ //-------------------------------------------------------------------------
+ /** Numbering in Greek alphabet lower case letters
+
+ @since OOo 3.3
+ */
+ const short CHARS_GREEK_LOWER_LETTER = 53;
+
};
//=============================================================================