summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/rowfrm.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-07-12 12:32:45 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-07-12 12:32:45 +0000
commit1c81c93e8837bc87e92ac07d535e1c7d8baac869 (patch)
tree3e512cf41f40ac35710f34d42b1ff494baaa776d /sw/source/core/inc/rowfrm.hxx
parentb0a6d030dde863c4c84ecb21aed9de11057f9498 (diff)
INTEGRATION: CWS cellborders (1.4.190); FILE MERGED
2004/05/29 19:50:59 fme 1.4.190.2: RESYNC: (1.4-1.5); FILE MERGED 2004/05/27 14:19:48 fme 1.4.190.1: #i29552# Collapsing table borders
Diffstat (limited to 'sw/source/core/inc/rowfrm.hxx')
-rw-r--r--sw/source/core/inc/rowfrm.hxx23
1 files changed, 19 insertions, 4 deletions
diff --git a/sw/source/core/inc/rowfrm.hxx b/sw/source/core/inc/rowfrm.hxx
index f9cdb69bb012..f9589909fffb 100644
--- a/sw/source/core/inc/rowfrm.hxx
+++ b/sw/source/core/inc/rowfrm.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: rowfrm.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2004-05-03 13:46:15 $
+ * last change: $Author: rt $ $Date: 2004-07-12 13:32:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,6 +81,11 @@ class SwRowFrm: public SwLayoutFrm
const SwTableLine *pTabLine;
SwRowFrm* pFollowRow;
+ // --> collapsing borders FME 2005-05-27 #i29550#
+ USHORT mnTopMarginForLowers;
+ USHORT mnBottomMarginForLowers;
+ USHORT mnBottomLineSize;
+ // <-- collapsing
bool bIsFollowFlowRow;
bool bIsRepeatedHeadline;
@@ -111,13 +116,23 @@ public:
SwRowFrm* GetFollowRow() const { return pFollowRow; }
void SetFollowRow( SwRowFrm* pNew ) { pFollowRow = pNew; }
- bool IsFollowFlowRow() const { return bIsFollowFlowRow; }
- void SetFollowFlowRow( bool bNew ) { bIsFollowFlowRow = bNew; }
+ // --> collapsing borders FME 2005-05-27 #i29550#
+ USHORT GetTopMarginForLowers() const { return mnTopMarginForLowers; }
+ void SetTopMarginForLowers( USHORT nNew ) { mnTopMarginForLowers = nNew; }
+ USHORT GetBottomMarginForLowers() const { return mnBottomMarginForLowers; }
+ void SetBottomMarginForLowers( USHORT nNew ) { mnBottomMarginForLowers = nNew; }
+ USHORT GetBottomLineSize() const { return mnBottomLineSize; }
+ void SetBottomLineSize( USHORT nNew ) { mnBottomLineSize = nNew; }
+ // <-- collapsing
bool IsRepeatedHeadline() const { return bIsRepeatedHeadline; }
void SetRepeatedHeadline( bool bNew ) { bIsRepeatedHeadline = bNew; }
+ // --> split table rows
bool IsRowSplitAllowed() const;
+ bool IsFollowFlowRow() const { return bIsFollowFlowRow; }
+ void SetFollowFlowRow( bool bNew ) { bIsFollowFlowRow = bNew; }
+ // <-- split table rows
DECL_FIXEDMEMPOOL_NEWDEL(SwRowFrm)
};