summaryrefslogtreecommitdiff
path: root/sw/inc/crstate.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-05-17 15:09:28 +0000
committerRüdiger Timm <rt@openoffice.org>2004-05-17 15:09:28 +0000
commit12116736b9f07e5d1f0f85847212eaec1871ec64 (patch)
tree25686e3b671bf13ad7d704ff8b9b15d90942bd0f /sw/inc/crstate.hxx
parentb6782094a8b948b55076483989d0459e811fafbf (diff)
INTEGRATION: CWS hbqea101 (1.11.496); FILE MERGED
2004/05/07 15:02:16 hbrinkm 1.11.496.3: #i27615# merge errors 2004/05/05 14:47:15 hbrinkm 1.11.496.2: RESYNC: (1.11-1.12); FILE MERGED 2004/04/26 13:38:20 hbrinkm 1.11.496.1: #i27615# allow cursor in front of numbering label and propagate char attrs to according numbering format
Diffstat (limited to 'sw/inc/crstate.hxx')
-rw-r--r--sw/inc/crstate.hxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/sw/inc/crstate.hxx b/sw/inc/crstate.hxx
index b5154c8ee30c..7d687794f7f3 100644
--- a/sw/inc/crstate.hxx
+++ b/sw/inc/crstate.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: crstate.hxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: hr $ $Date: 2004-04-07 12:41:46 $
+ * last change: $Author: rt $ $Date: 2004-05-17 16:09:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -151,6 +151,11 @@ struct SwSpecialPos
xub_StrLen nCharOfst;
USHORT nLineOfst;
BYTE nExtendRange;
+
+ // #i27615#
+ SwSpecialPos() : nCharOfst(0), nLineOfst(0),
+ nExtendRange(SP_EXTEND_RANGE_NONE)
+ {}
};
// CrsrTravelling-Staties (fuer GetCrsrOfst)
@@ -189,6 +194,11 @@ struct SwCrsrMoveState
BOOL bPosMatchesBounds :1; // GetCrsrOfst should not return the next
// position if screen position is inside second
// have of bound rect
+ // #i27615#
+ /**
+ cursor in front of label
+ */
+ BOOL bInFrontOfLabel :1;
BOOL bInNumPortion :1; // point is in number portion #i23726#
int nInNumPostionOffset; // distance from number portion's start
@@ -209,6 +219,7 @@ struct SwCrsrMoveState
b2Lines( FALSE ),
bNoScroll( FALSE ),
bPosMatchesBounds( FALSE ),
+ bInFrontOfLabel( FALSE ), // #i27615#
bInNumPortion(FALSE), // #i26726#
nInNumPostionOffset(0) // #i26726#
{}
@@ -228,6 +239,7 @@ struct SwCrsrMoveState
b2Lines( FALSE ),
bNoScroll( FALSE ),
bPosMatchesBounds( FALSE ),
+ bInFrontOfLabel( FALSE ), // #i27615#
bInNumPortion(FALSE), // #i23726#
nInNumPostionOffset(0) // #i23726#
{}