diff options
author | Andreas Martens <ama@openoffice.org> | 2001-02-28 09:59:58 +0000 |
---|---|---|
committer | Andreas Martens <ama@openoffice.org> | 2001-02-28 09:59:58 +0000 |
commit | 27bef7d09f45466083f0398369fbbfd4e52ec6b7 (patch) | |
tree | 6bb63a1ca37baa13d95aaf0216f544460ddaae63 /sw/inc | |
parent | 904532038872f3306fd89b650cecf88ffbe67ebb (diff) |
New: RedlineAttr-flag
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/txatbase.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sw/inc/txatbase.hxx b/sw/inc/txatbase.hxx index 21e96cd450d9..a96c4246f783 100644 --- a/sw/inc/txatbase.hxx +++ b/sw/inc/txatbase.hxx @@ -2,9 +2,9 @@ * * $RCSfile: txatbase.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: jp $ $Date: 2001-02-15 20:10:39 $ + * last change: $Author: ama $ $Date: 2001-02-28 10:58:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -124,6 +124,7 @@ class SwTxtAttr BOOL bDontMoveAttr : 1; // refmarks, toxmarks BOOL bCharFmtAttr : 1; // charfmt, inet BOOL bOverlapAllowedAttr : 1; // refmarks, toxmarks + BOOL bRedlineAttr : 1; // redlining attribute protected: SwTxtAttr( const SfxPoolItem& rAttr, xub_StrLen nStart ); @@ -132,6 +133,7 @@ protected: void SetDontMoveAttr( BOOL bFlag ) { bDontMoveAttr = bFlag; } void SetCharFmtAttr( BOOL bFlag ) { bCharFmtAttr = bFlag; } void SetOverlapAllowedAttr( BOOL bFlag ){ bOverlapAllowedAttr = bFlag; } + void SetRedlineAttr( BOOL bFlag ) { bRedlineAttr = bFlag; } public: virtual ~SwTxtAttr(); @@ -155,6 +157,7 @@ public: BOOL IsDontMoveAttr() const { return bDontMoveAttr; } BOOL IsCharFmtAttr() const { return bCharFmtAttr; } BOOL IsOverlapAllowedAttr() const { return bOverlapAllowedAttr; } + BOOL IsRedlineAttr() const { return bRedlineAttr; } inline const SfxPoolItem& GetAttr() const; inline USHORT Which() const { return GetAttr().Which(); } @@ -460,6 +463,9 @@ inline const SvxCharRotateItem& SwTxtAttr::GetCharRotate() const /************************************************************************* $Log: not supported by cvs2svn $ + Revision 1.7 2001/02/15 20:10:39 jp + new character attribute: rotate and scalewidth + Revision 1.6 2000/11/16 21:29:02 jp SwFmt2Lines moved to SVX and renamed |