diff options
author | Andreas Martens <ama@openoffice.org> | 2001-11-16 10:40:30 +0000 |
---|---|---|
committer | Andreas Martens <ama@openoffice.org> | 2001-11-16 10:40:30 +0000 |
commit | 207f9bb47bf4956d91abf118c0b4fc1baad6656e (patch) | |
tree | 28ec24c8131ccd15e2dd3b6bf1189e7199680b00 /sw/inc/swrect.hxx | |
parent | 808fa19c0d6ecb42db789367462e96d168c1642f (diff) |
New: Vertical tables
Diffstat (limited to 'sw/inc/swrect.hxx')
-rw-r--r-- | sw/inc/swrect.hxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sw/inc/swrect.hxx b/sw/inc/swrect.hxx index 233eadb4fae8..3546545fb9fc 100644 --- a/sw/inc/swrect.hxx +++ b/sw/inc/swrect.hxx @@ -2,9 +2,9 @@ * * $RCSfile: swrect.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: ama $ $Date: 2001-10-05 12:28:48 $ + * last change: $Author: ama $ $Date: 2001-11-16 11:35:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -176,6 +176,10 @@ public: void AddHeight( const long nAdd ); void SetPosX( const long nNew ); void SetPosY( const long nNew ); + void SetLeftAndWidth( long nLeft, long nNew ); + void SetTopAndHeight( long nTop, long nNew ); + void SetRightAndWidth( long nRight, long nNew ); + void SetBottomAndHeight( long nBottom, long nNew ); const Point _Pos() const; const Size _Size() const; const Point TopLeft() const; @@ -205,6 +209,7 @@ typedef const Point (SwRect:: *SwRectPoint)() const; typedef const Size (SwRect:: *SwRectSize)() const; typedef BOOL (SwRect:: *SwRectMax)( long ) const; typedef long (SwRect:: *SwRectDist)( long ) const; +typedef void (SwRect:: *SwRectSetTwice)( long, long ); #endif //---------------------------------- Set-Methoden |