diff options
author | Oliver Specht <os@openoffice.org> | 2001-05-07 10:55:22 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-05-07 10:55:22 +0000 |
commit | 821f8e89d41af25ee5411236a59f8bf920b81111 (patch) | |
tree | 10a098bcd898253a53ebd9b5e241b1c2340f2ff9 /sw/inc | |
parent | 6f74676229e34f2978061ff6756de3e4ae63bfe9 (diff) |
#86546# automatic width and distance added to text columns
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/unomap.hxx | 6 | ||||
-rw-r--r-- | sw/inc/unoprnms.hxx | 5 | ||||
-rw-r--r-- | sw/inc/unosett.hxx | 8 |
3 files changed, 13 insertions, 6 deletions
diff --git a/sw/inc/unomap.hxx b/sw/inc/unomap.hxx index 47992e746d47..cf426ca5f3e9 100644 --- a/sw/inc/unomap.hxx +++ b/sw/inc/unomap.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unomap.hxx,v $ * - * $Revision: 1.28 $ + * $Revision: 1.29 $ * - * last change: $Author: mtg $ $Date: 2001-05-03 20:04:22 $ + * last change: $Author: os $ $Date: 2001-05-07 11:52:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -292,6 +292,8 @@ #define WID_TXTCOL_LINE_REL_HGT 2 #define WID_TXTCOL_LINE_ALIGN 3 #define WID_TXTCOL_LINE_IS_ON 4 +#define WID_TXTCOL_IS_AUTOMATIC 5 +#define WID_TXTCOL_AUTO_DISTANCE 6 /* -----------------04.07.98 11:41------------------- * diff --git a/sw/inc/unoprnms.hxx b/sw/inc/unoprnms.hxx index 29e0eea614e3..e7f2560bfc6f 100644 --- a/sw/inc/unoprnms.hxx +++ b/sw/inc/unoprnms.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unoprnms.hxx,v $ * - * $Revision: 1.59 $ + * $Revision: 1.60 $ * - * last change: $Author: mib $ $Date: 2001-05-04 08:34:39 $ + * last change: $Author: os $ $Date: 2001-05-07 11:52:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -712,4 +712,5 @@ extern const SwPropNameLen __FAR_DATA UNO_NAME_CURRENT_DATABASE_COMMAND_TYPE; extern const SwPropNameLen __FAR_DATA UNO_NAME_PRINTER_SETUP; extern const SwPropNameLen __FAR_DATA UNO_NAME_PROTECTION_KEY ; extern const SwPropNameLen __FAR_DATA UNO_NAME_REDLINE_PROTECTION_KEY; +extern const SwPropNameLen __FAR_DATA UNO_NAME_AUTOMATIC_DISTANCE; #endif diff --git a/sw/inc/unosett.hxx b/sw/inc/unosett.hxx index 3b3c3640d4b7..57ddd1ac9a4d 100644 --- a/sw/inc/unosett.hxx +++ b/sw/inc/unosett.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unosett.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: os $ $Date: 2000-10-25 12:59:51 $ + * last change: $Author: os $ $Date: 2001-05-07 11:52:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -321,6 +321,8 @@ class SwXTextColumns : public cppu::WeakAggImplHelper4 { sal_uInt32 nReference; ::com::sun::star::uno::Sequence< ::com::sun::star::text::TextColumn> aTextColumns; + sal_Bool bIsAutomaticWidth; + sal_Int32 nAutoDistance; const SfxItemPropertyMap* _pMap; @@ -368,6 +370,8 @@ public: sal_Int8 GetSepLineHeightRelative() const {return nSepLineHeightRelative;} sal_Int8 GetSepLineVertAlign() const {return nSepLineVertAlign;} sal_Bool GetSepLineIsOn() const {return bSepLineIsOn;} + + sal_Bool IsAutomaticWidth() const {return bIsAutomaticWidth;} }; #endif |