diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 13:07:29 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 13:07:29 +0000 |
commit | 55363c09f97e295fb5aec109e1dd9986f32bc571 (patch) | |
tree | 19b5044f2a3e2a4c256c2c4b0aa348dbfa61cbd8 /svx/source/inc | |
parent | 3af1733259992051afdfba0fa55b5413f07b4392 (diff) |
INTEGRATION: CWS sj05 (1.2.438); FILE MERGED
2003/12/09 11:17:20 sj 1.2.438.2: autoshape changes
2003/12/05 15:54:41 sj 1.2.438.1: added tooling to convert PolyPolygonBezierCoords to XPolyPolygon
Diffstat (limited to 'svx/source/inc')
-rw-r--r-- | svx/source/inc/unopolyhelper.hxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/svx/source/inc/unopolyhelper.hxx b/svx/source/inc/unopolyhelper.hxx index ca556c85ff4a..102c3e308fdb 100644 --- a/svx/source/inc/unopolyhelper.hxx +++ b/svx/source/inc/unopolyhelper.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unopolyhelper.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: cl $ $Date: 2001-03-08 11:37:24 $ + * last change: $Author: rt $ $Date: 2004-04-02 14:07:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -71,17 +71,26 @@ namespace com { namespace sun { namespace star { namespace drawing { } } } } class XPolygon; +class XPolyPolygon; /** convert a drawing::PolyPolygonBezierCoords to a XPolygon */ void SvxConvertPolyPolygonBezierToXPolygon( const com::sun::star::drawing::PolyPolygonBezierCoords* pSourcePolyPolygon, XPolygon& rNewPolygon ) throw( com::sun::star::lang::IllegalArgumentException ); +/** convert a drawing::PolyPolygonBezierCoords to a XPolyPolygon +*/ +void SvxConvertPolyPolygonBezierToXPolyPolygon( const com::sun::star::drawing::PolyPolygonBezierCoords* pSourcePolyPolygon, XPolyPolygon& rNewPolygon ) + throw( com::sun::star::lang::IllegalArgumentException ); + /** convert a XPolygon to a drawing::PolyPolygonBezierCoords */ void SvxConvertXPolygonToPolyPolygonBezier( const XPolygon& rPolygon, com::sun::star::drawing::PolyPolygonBezierCoords& rRetval ) throw(); +void SvxPolyPolygonToPolyPolygonBezierCoords( const XPolyPolygon& rPolyPoly, com::sun::star::drawing::PolyPolygonBezierCoords& rRetval ); + + #endif |