summaryrefslogtreecommitdiff
path: root/sw/inc/swcrsr.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-28 14:36:58 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-28 14:36:58 +0000
commit15ab792b163b3ca7162133a569465054d9325701 (patch)
tree23d9c0a49e6a145d4b94a379e0a90011a335b7db /sw/inc/swcrsr.hxx
parent98ee00d55dbe8485a97882dda602ac6059f65df6 (diff)
INTEGRATION: CWS swnewtable (1.17.52); FILE MERGED
2006/11/17 13:48:03 ama 1.17.52.2: #i4032#: New table model 2006/11/13 14:32:53 fme 1.17.52.1: #i4032# New table concept
Diffstat (limited to 'sw/inc/swcrsr.hxx')
-rw-r--r--sw/inc/swcrsr.hxx12
1 files changed, 9 insertions, 3 deletions
diff --git a/sw/inc/swcrsr.hxx b/sw/inc/swcrsr.hxx
index d4538ba3158d..2d3e5e234882 100644
--- a/sw/inc/swcrsr.hxx
+++ b/sw/inc/swcrsr.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: swcrsr.hxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: hr $ $Date: 2006-08-14 15:32:53 $
+ * last change: $Author: vg $ $Date: 2007-02-28 15:36:58 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -87,7 +87,8 @@ class SwCursor : public SwPaM
friend class SwCrsrSaveState;
_SwCursor_SavePos* pSavePos;
- BYTE nCursorBidiLevel; // bidi level of the cursor
+ long mnRowSpanOffset; // required for travelling in tabs with rowspans
+ BYTE nCursorBidiLevel; // bidi level of the cursor
ULONG FindAll( SwFindParas& , SwDocPositions, SwDocPositions, FindRanges, BOOL& bCancel );
@@ -238,6 +239,9 @@ public:
BYTE GetCrsrBidiLevel() const { return nCursorBidiLevel; }
void SetCrsrBidiLevel( BYTE nNewLevel ) { nCursorBidiLevel = nNewLevel; }
+ long GetCrsrRowSpanOffset() const { return mnRowSpanOffset; }
+ void SetCrsrRowSpanOffset( long nNew ) { mnRowSpanOffset = nNew; }
+
DECL_FIXEDMEMPOOL_NEWDEL( SwCursor )
};
@@ -312,6 +316,8 @@ public:
// Parke den Tabellen-Cursor auf dem StartNode der Boxen.
void ParkCrsr();
+ bool NewTableSelection();
+ void ActualizeSelection( const SwSelBoxes &rBoxes );
};