summaryrefslogtreecommitdiff
path: root/cppcanvas/inc
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2011-12-21 06:46:40 -0500
committerAugust Sodora <augsod@gmail.com>2011-12-21 06:46:56 -0500
commit3b8bf60a040d51d2d228127693f0b9c3292b151d (patch)
treeae6d6a79c6d71fff923ef0ad4a5a4202bda55328 /cppcanvas/inc
parentd73d329bf1a114bb5e26742245aac9abb6dae269 (diff)
Revert "callcatcher: Remove unused code"
Diffstat (limited to 'cppcanvas/inc')
-rw-r--r--cppcanvas/inc/cppcanvas/basegfxfactory.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/cppcanvas/inc/cppcanvas/basegfxfactory.hxx b/cppcanvas/inc/cppcanvas/basegfxfactory.hxx
index dbb8d1221f64..5cb87aaeb5d3 100644
--- a/cppcanvas/inc/cppcanvas/basegfxfactory.hxx
+++ b/cppcanvas/inc/cppcanvas/basegfxfactory.hxx
@@ -75,6 +75,7 @@ namespace cppcanvas
coordinate space as the source polygon
*/
PolyPolygonSharedPtr createPolyPolygon( const CanvasSharedPtr&, const ::basegfx::B2DPolygon& rPoly ) const;
+ PolyPolygonSharedPtr createPolyPolygon( const CanvasSharedPtr&, const ::basegfx::B2DPolyPolygon& rPoly ) const;
/** Create an uninitialized bitmap with the given size
*/
@@ -84,6 +85,10 @@ namespace cppcanvas
*/
BitmapSharedPtr createAlphaBitmap( const CanvasSharedPtr&, const ::basegfx::B2ISize& rSize ) const;
+ /** Create a text portion with the given content string
+ */
+ TextSharedPtr createText( const CanvasSharedPtr&, const ::rtl::OUString& ) const;
+
private:
friend struct InitInstance2;
@@ -95,6 +100,7 @@ namespace cppcanvas
BaseGfxFactory(const BaseGfxFactory&);
BaseGfxFactory& operator=( const BaseGfxFactory& );
};
+
}
#endif /* _CPPCANVAS_BASEGFXFACTORY_HXX */