summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/table
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedricbosdo@openoffice.org>2010-11-08 16:23:17 +0100
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2011-03-19 17:57:46 +0100
commit8f2a162dbf38f4a894de8cfa504126f57099bc15 (patch)
treed7653536e1b33475283bc44617b8eeea5f2e0529 /offapi/com/sun/star/table
parent5a7f6793ac227c348198ae5958db5951214ec8d2 (diff)
Borders: added some more types to the API
Diffstat (limited to 'offapi/com/sun/star/table')
-rw-r--r--offapi/com/sun/star/table/BorderLineStyle.idl53
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 0582230c3c06..225e57fd2acf 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;
};
//=============================================================================