summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/rowfrm.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-01-13 10:12:28 +0000
committerOliver Bolte <obo@openoffice.org>2004-01-13 10:12:28 +0000
commitfba47cb45327de5ff17bd5d1eb792c56e67972a2 (patch)
tree953df87f05880e933d1558e8f756a45af838ac6e /sw/source/core/inc/rowfrm.hxx
parent7147f498859ffb5ad9a9159b57607628ddf4d4f2 (diff)
INTEGRATION: CWS cellbreak (1.3.330); FILE MERGED
2003/10/06 12:52:33 fme 1.3.330.2: #i2109# Feature - Split table rows 2003/09/08 07:46:06 fme 1.3.330.1: #i2109# Feature - Split table rows
Diffstat (limited to 'sw/source/core/inc/rowfrm.hxx')
-rw-r--r--sw/source/core/inc/rowfrm.hxx19
1 files changed, 16 insertions, 3 deletions
diff --git a/sw/source/core/inc/rowfrm.hxx b/sw/source/core/inc/rowfrm.hxx
index 56fd1627fd68..f0e382831e05 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.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: ama $ $Date: 2001-10-19 10:15:20 $
+ * last change: $Author: obo $ $Date: 2004-01-13 11:12:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,12 +80,14 @@ class SwRowFrm: public SwLayoutFrm
BOOL bTst = FALSE, BOOL bInfo = FALSE );
const SwTableLine *pTabLine;
+ SwRowFrm* pFollowRow;
+ bool bIsFollowFlowRow;
protected:
virtual void MakeAll();
public:
- SwRowFrm( const SwTableLine & );
+ SwRowFrm( const SwTableLine &, bool bInsertContent = true );
~SwRowFrm();
virtual void Cut();
@@ -102,6 +104,17 @@ public:
//Passt die Zellen auf die aktuelle Hoehe an, invalidiert die Zellen
//wenn die Direction nicht der Hoehe entspricht.
void AdjustCells( const SwTwips nHeight, const BOOL bHeight );
+
+ //
+ //
+ SwRowFrm* GetFollowRow() const { return pFollowRow; }
+ void SetFollowRow( SwRowFrm* pNew ) { pFollowRow = pNew; }
+
+ bool IsFollowFlowRow() const { return bIsFollowFlowRow; }
+ void SetFollowFlowRow( bool bNew ) { bIsFollowFlowRow = bNew; }
+
+ bool IsRowSplitAllowed() const;
+
DECL_FIXEDMEMPOOL_NEWDEL(SwRowFrm)
};