summaryrefslogtreecommitdiff
path: root/cppcanvas
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-22 10:49:16 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-22 10:49:16 +0000
commit78af3529767c7d842a84ce01c8dc0080a940946c (patch)
tree8f4afb3b1637c4ac1fe900d7fe39726e70ce5991 /cppcanvas
parent50ea101373188ee7c89c4e8294f87a3461e42b26 (diff)
INTEGRATION: CWS thbpp6 (1.6.44); FILE MERGED
2006/12/21 17:20:52 thb 1.6.44.1: #121806# Now keeping full precision of the mtf logic coordinates across mtf->XCanvas conversion
Diffstat (limited to 'cppcanvas')
-rw-r--r--cppcanvas/source/mtfrenderer/bitmapaction.hxx16
1 files changed, 9 insertions, 7 deletions
diff --git a/cppcanvas/source/mtfrenderer/bitmapaction.hxx b/cppcanvas/source/mtfrenderer/bitmapaction.hxx
index 03af8aa1a3c6..6f8d05ff49ff 100644
--- a/cppcanvas/source/mtfrenderer/bitmapaction.hxx
+++ b/cppcanvas/source/mtfrenderer/bitmapaction.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: bitmapaction.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 08:18:02 $
+ * last change: $Author: obo $ $Date: 2007-01-22 11:49:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,8 +39,10 @@
#include <cppcanvas/canvas.hxx>
#include <action.hxx>
-class Point;
-class Size;
+namespace basegfx {
+ class B2DPoint;
+ class B2DVector;
+}
class BitmapEx;
/* Definition of internal::BitmapActionFactory class */
@@ -63,14 +65,14 @@ namespace cppcanvas
public:
/// Unscaled bitmap action, only references destination point
static ActionSharedPtr createBitmapAction( const ::BitmapEx&,
- const ::Point& rDstPoint,
+ const ::basegfx::B2DPoint& rDstPoint,
const CanvasSharedPtr&,
const OutDevState& );
/// Scaled bitmap action, dest point and dest size
static ActionSharedPtr createBitmapAction( const ::BitmapEx&,
- const ::Point& rDstPoint,
- const ::Size& rDstSize,
+ const ::basegfx::B2DPoint& rDstPoint,
+ const ::basegfx::B2DVector& rDstSize,
const CanvasSharedPtr&,
const OutDevState& );