INTEGRATION: CWS presfixes03 (1.5.2); FILE MERGED

2005/04/01 16:09:44 thb 1.5.2.1: #i36190#, #i39245# Changed uno::Sequence::operator[] for nonconst sequences to use naked ptr; added support for true bezier polygons (and removed subdivision, where it was added because of that canvas deficiency); overhauled mtf renderer to provide faithful bounds also for subsetted meta files
This commit is contained in:
Oliver Bolte
2005-04-18 09:00:40 +00:00
parent 0bdca39b52
commit 3ef19d3e06
3 changed files with 153 additions and 6 deletions

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: mtftools.cxx,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: rt $ $Date: 2005-03-30 08:30:28 $
* last change: $Author: obo $ $Date: 2005-04-18 09:59:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -557,6 +557,21 @@ namespace cppcanvas
return aTextLinesPolyPoly;
}
::basegfx::B2DRange calcDevicePixelBounds( const ::basegfx::B2DRange& rBounds,
const rendering::ViewState& viewState,
const rendering::RenderState& renderState )
{
::basegfx::B2DHomMatrix aTransform;
::canvas::tools::mergeViewAndRenderTransform( aTransform,
viewState,
renderState );
::basegfx::B2DRange aTransformedBounds;
return ::canvas::tools::calcTransformedRectBounds( aTransformedBounds,
rBounds,
aTransform );
}
// create line actions for text such as underline and
// strikeout
::basegfx::B2DPolyPolygon createTextLinesPolyPolygon( const double& rStartOffset,