diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 16:15:14 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 16:15:14 +0000 |
commit | e12fa8a83a11a2293e5db1de1e93d64639135ead (patch) | |
tree | a073f2c81856fa2240560307800d5d025bfc29d9 /canvas/source | |
parent | 1bcf8df2f4b0ac6a226755bc1e2147a9275b482b (diff) |
INTEGRATION: CWS presentationengine01 (1.2.2); FILE MERGED
2004/07/23 20:57:15 thb 1.2.2.3: #110496# Made it build under Solaris
2004/07/22 18:40:43 thb 1.2.2.2: #110496# Overhauled sprite redraw algo, to also respect overlapping sprites
2004/04/05 15:58:00 thb 1.2.2.1: Resync with canvas01 changes
Diffstat (limited to 'canvas/source')
-rw-r--r-- | canvas/source/vcl/sprite.hxx | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/canvas/source/vcl/sprite.hxx b/canvas/source/vcl/sprite.hxx index 97114e31ab58..b72ae939e2d9 100644 --- a/canvas/source/vcl/sprite.hxx +++ b/canvas/source/vcl/sprite.hxx @@ -2,9 +2,9 @@ * * $RCSfile: sprite.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: thb $ $Date: 2004-03-18 10:38:44 $ + * last change: $Author: rt $ $Date: 2004-11-26 17:15:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -70,7 +70,10 @@ #include <drafts/com/sun/star/rendering/XCanvas.hpp> #endif -#ifndef _BGFX_POINT_B2DSIZE_HXX +#ifndef _BGFX_POINT_B2DPOINT_HXX +#include <basegfx/vector/b2dpoint.hxx> +#endif +#ifndef _BGFX_VECTOR_B2DSIZE_HXX #include <basegfx/vector/b2dsize.hxx> #endif @@ -94,7 +97,10 @@ namespace vclcanvas virtual void redraw( OutputDevice& rTargetSurface ) const = 0; virtual void redraw( OutputDevice& rTargetSurface, const Point& rOutputPosition ) const = 0; - virtual ::basegfx::B2DSize getSize() const = 0; + virtual ::basegfx::B2DPoint getPos() const = 0; + + // TODO(Q3): Rename method, it hides XBitmap::getSize() + virtual ::basegfx::B2DSize getSize() const = 0; }; } |