summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/layact.hxx
diff options
context:
space:
mode:
authorHenning Brinkmann <hbrinkm@openoffice.org>2002-11-01 14:33:33 +0000
committerHenning Brinkmann <hbrinkm@openoffice.org>2002-11-01 14:33:33 +0000
commit2c8f4bd3e0d1ac5606fa129626fe225264276c80 (patch)
tree21ef6175937fae88d55fd9f33013123e186a773f /sw/source/core/inc/layact.hxx
parent805e96bca362adc2a331274d568adc50a808efaf (diff)
#102110# SwViewImp: bStopPtr, {Is|Set}StopPtr: save stop request for printing
Diffstat (limited to 'sw/source/core/inc/layact.hxx')
-rw-r--r--sw/source/core/inc/layact.hxx12
1 files changed, 9 insertions, 3 deletions
diff --git a/sw/source/core/inc/layact.hxx b/sw/source/core/inc/layact.hxx
index 75037b2b77f1..9e5f8c8908d4 100644
--- a/sw/source/core/inc/layact.hxx
+++ b/sw/source/core/inc/layact.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: layact.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: ama $ $Date: 2002-07-08 08:26:15 $
+ * last change: $Author: hbrinkm $ $Date: 2002-11-01 15:31:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -100,6 +100,8 @@ class SwLayAction
SwWait *pWait;
+ SfxProgress * pProgress;
+
//Wenn ein Absatz - oder was auch immer - bei der Formatierung mehr
//als eine Seite rueckwaerts floss traegt er seine neue Seitennummer
//hier ein. Die Steuerung der InternalAction kann dann geeignet reagieren.
@@ -169,6 +171,7 @@ class SwLayAction
inline void CheckIdleEnd();
inline ULONG GetStartTicks() { return nStartTicks; }
+
#endif
public:
@@ -189,6 +192,8 @@ public:
BOOL IsIdle() const { return bIdle; }
BOOL IsReschedule() const { return bReschedule; }
BOOL IsPaintExtraData() const { return bPaintExtraData;}
+ BOOL IsStopPrt() const;
+ BOOL IsInterrupt() const { return IsInput() || IsStopPrt(); }
USHORT GetInputType() const { return nInputType; }
#endif
@@ -204,6 +209,8 @@ public:
void SetAgain() { bAgain = TRUE; }
void SetUpdateExpFlds() {bUpdateExpFlds = TRUE; }
+ void SetProgress(SfxProgress * _pProgress = NULL)
+ { pProgress = _pProgress; }
inline void SetCheckPageNum( USHORT nNew );
inline void SetCheckPageNumDirect( USHORT nNew ) { nCheckPageNum = nNew; }
@@ -225,7 +232,6 @@ public:
void CheckWaitCrsr();
};
-
class SwLayIdle
{