diff options
author | Andreas Martens <ama@openoffice.org> | 2001-09-18 08:14:03 +0000 |
---|---|---|
committer | Andreas Martens <ama@openoffice.org> | 2001-09-18 08:14:03 +0000 |
commit | 766f084db29b5fab7d23795fc345ebd915411196 (patch) | |
tree | 87a658ea32da806ede41b94268bffd47ddb0242b /sw/inc/swrect.hxx | |
parent | 31ca01cf3e577bab17093a4c53f442961c57eb17 (diff) |
New: More help functions for vertical layout
Diffstat (limited to 'sw/inc/swrect.hxx')
-rw-r--r-- | sw/inc/swrect.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sw/inc/swrect.hxx b/sw/inc/swrect.hxx index ba209650b328..7090f7c15e17 100644 --- a/sw/inc/swrect.hxx +++ b/sw/inc/swrect.hxx @@ -2,9 +2,9 @@ * * $RCSfile: swrect.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: ama $ $Date: 2001-09-11 07:58:18 $ + * last change: $Author: ama $ $Date: 2001-09-18 09:14:03 $ * * 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 ); + const Point _Pos() const; + const Size _Size() const; + const Point SwappedPos() const; + const Size SwappedSize() const; #endif }; @@ -185,6 +189,8 @@ extern SvStream &operator<<( SvStream &rStream, const SwRect &rRect ); #ifdef VERTICAL_LAYOUT typedef void (SwRect:: *SwRectSet)( const long nNew ); typedef long (SwRect:: *SwRectGet)() const; +typedef const Point (SwRect:: *SwRectPoint)() const; +typedef const Size (SwRect:: *SwRectSize)() const; #endif //---------------------------------- Set-Methoden |