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
This commit is contained in:
Rüdiger Timm
2004-11-26 16:15:14 +00:00
parent 1bcf8df2f4
commit e12fa8a83a

View File

@@ -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;
};
}