diff options
author | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2010-11-08 16:23:17 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-03-19 17:57:46 +0100 |
commit | d1e2cf872455d0fc28cbc2bbd9ca9a70ef3a07bf (patch) | |
tree | d8c04b4deb64285dc5de1397485b7533b993b937 /offapi | |
parent | 7f5ce2bde679d1a512a631eea7909727eba1554f (diff) |
Borders: added some more types to the API
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/table/BorderLineStyle.idl | 53 |
1 files changed, 49 insertions, 4 deletions
diff --git a/offapi/com/sun/star/table/BorderLineStyle.idl b/offapi/com/sun/star/table/BorderLineStyle.idl index 0582230c3..225e57fd2 100644 --- a/offapi/com/sun/star/table/BorderLineStyle.idl +++ b/offapi/com/sun/star/table/BorderLineStyle.idl @@ -27,7 +27,6 @@ #ifndef __com_sun_star_table_BorderLineStyle_idl__ #define __com_sun_star_table_BorderLineStyle_idl__ - //============================================================================= module com { module sun { module star { module table { @@ -36,21 +35,67 @@ module com { module sun { module star { module table { constants BorderLineStyle { - //------------------------------------------------------------------------- /** Solid border line. */ const short SOLID = 0; - //------------------------------------------------------------------------- /** Dotted border line. */ const short DOTTED = 1; - //------------------------------------------------------------------------- /** Dashed border line. */ const short DASHED = 2; + /** Double border line. + */ + const short DOUBLE = 3; + + /** Double border line with a thin line outside and a thick line + inside separated by a small gap. + */ + const short THINTHICK_SMALLGAP = 4; + + /** Double border line with a thin line outside and a thick line + inside separated by a medium gap. + */ + const short THINTHICK_MEDIUMGAP = 5; + + /** Double border line with a thin line outside and a thick line + inside separated by a large gap. + */ + const short THINTHICK_LARGEGAP = 6; + + /** Double border line with a thick line outside and a thin line + inside separated by a small gap. + */ + const short THINTHICK_SMALLGAP = 7; + + /** Double border line with a thick line outside and a thin line + inside separated by a medium gap. + */ + const short THINTHICK_MEDIUMGAP = 8; + + /** Double border line with a thick line outside and a thin line + inside separated by a large gap. + */ + const short THINTHICK_LARGEGAP = 9; + + /** 3D embossed border line. + */ + const short EMBOSSED = 10; + + /** 3D engraved border line. + */ + const short ENGRAVED = 11; + + /** Outset border line. + */ + const short OUTSET = 12; + + /** Inset border line. + */ + const short INSET = 13; }; //============================================================================= |