diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-27 14:45:43 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-27 14:45:43 +0000 |
commit | c64938ca31ba8fd8cbf35adb3b8c55da5fb59dcb (patch) | |
tree | 1a0e97fdaefb15a69300c0feea0fd6693aab8fd4 /sw/inc/ndgrf.hxx | |
parent | 510facb9028c409f4c21c429c7bcdc1175d67b47 (diff) |
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'sw/inc/ndgrf.hxx')
-rw-r--r-- | sw/inc/ndgrf.hxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sw/inc/ndgrf.hxx b/sw/inc/ndgrf.hxx index e5680faa0e..3e594c29ff 100644 --- a/sw/inc/ndgrf.hxx +++ b/sw/inc/ndgrf.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ndgrf.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2002-08-23 14:04:27 $ + * last change: $Author: hr $ $Date: 2003-03-27 15:38:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -98,6 +98,7 @@ class SwGrfNode: public SwNoTxtNode BOOL bInSwapIn :1; BOOL bGrafikArrived :1; BOOL bChgTwipSize :1; + BOOL bChgTwipSizeFromPixel :1; BOOL bLoadLowResGrf :1; BOOL bFrameInPaint :1; //Um Start-/EndActions im Paint (ueber //SwapIn zu verhindern. @@ -144,7 +145,8 @@ public: inline BOOL IsAnimated() const { return aGrfObj.IsAnimated(); } inline BOOL IsChgTwipSize() const { return bChgTwipSize; } - inline void SetChgTwipSize( BOOL b ) { bChgTwipSize = b; } + inline BOOL IsChgTwipSizeFromPixel() const { return bChgTwipSizeFromPixel; } + inline void SetChgTwipSize( BOOL b, BOOL bFromPx=FALSE ) { bChgTwipSize = b; bChgTwipSizeFromPixel = bFromPx; } inline BOOL IsGrafikArrived() const { return bGrafikArrived; } inline void SetGrafikArrived( BOOL b ) { bGrafikArrived = b; } |