Tag: cws_src680_presfixes12
User: thb
Date: 2007/02/21 07:05:06
Modified:
gsl/cppcanvas/source/mtfrenderer/polypolyaction.hxx
Log:
RESYNC: (1.6-1.7); FILE MERGED
File Changes:
Directory: /gsl/cppcanvas/source/mtfrenderer/
=============================================
File [changed]: polypolyaction.hxx
Url:
http://gsl.openoffice.org/source/browse/gsl/cppcanvas/source/mtfrenderer/polypolyaction.hxx?r1=1.6.54.1&r2=1.6.54.2
Delta lines: +11 -9
--------------------
--- polypolyaction.hxx 20 Feb 2007 22:29:29 -0000 1.6.54.1
+++ polypolyaction.hxx 21 Feb 2007 15:05:03 -0000 1.6.54.2
@@ -39,8 +39,10 @@
#include <action.hxx>
#include <cppcanvas/canvas.hxx>
-class PolyPolygon;
+namespace basegfx {
+ class B2DPolyPolygon;
+}
namespace com { namespace sun { namespace star { namespace rendering
{
struct Texture;
@@ -67,29 +69,29 @@
{
public:
/// Create polygon, fill/stroke according to state
- static ActionSharedPtr createPolyPolyAction( const ::PolyPolygon&,
+ static ActionSharedPtr createPolyPolyAction( const
::basegfx::B2DPolyPolygon&,
const
CanvasSharedPtr&,
const OutDevState&
);
/// Create texture-filled polygon
- static ActionSharedPtr createPolyPolyAction( const ::PolyPolygon&,
+ static ActionSharedPtr createPolyPolyAction( const
::basegfx::B2DPolyPolygon&,
const
CanvasSharedPtr&,
const OutDevState&,
const
::com::sun::star::rendering::Texture& );
/// Create line polygon (always stroked, not filled)
- static ActionSharedPtr createLinePolyPolyAction( const
::PolyPolygon&,
+ static ActionSharedPtr createLinePolyPolyAction( const
::basegfx::B2DPolyPolygon&,
const
CanvasSharedPtr&,
const
OutDevState& );
/// Create stroked polygon
- static ActionSharedPtr createPolyPolyAction( const ::PolyPolygon&,
+ static ActionSharedPtr createPolyPolyAction( const
::basegfx::B2DPolyPolygon&,
const
CanvasSharedPtr&,
const OutDevState&,
const
::com::sun::star::rendering::StrokeAttributes& );
/// For transparent painting of the given polygon (normally, we
take the colors always opaque)
- static ActionSharedPtr createPolyPolyAction( const ::PolyPolygon&,
+ static ActionSharedPtr createPolyPolyAction( const
::basegfx::B2DPolyPolygon&,
const
CanvasSharedPtr&,
const OutDevState&,
int nTransparency );
|