diff options
author | August Sodora <augsod@gmail.com> | 2011-12-19 23:19:45 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2011-12-19 23:19:45 -0500 |
commit | d498a3c2a12e03810a81937c1252dc0b16747936 (patch) | |
tree | 8debcb350acc0458863950d4440384940f23c044 /cppcanvas/inc | |
parent | b0e993d42e1df8c68c4c2684ab9dda27a1329594 (diff) |
callcatcher: Remove unused code
Diffstat (limited to 'cppcanvas/inc')
-rw-r--r-- | cppcanvas/inc/cppcanvas/vclfactory.hxx | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/cppcanvas/inc/cppcanvas/vclfactory.hxx b/cppcanvas/inc/cppcanvas/vclfactory.hxx index 14d9e6cbd5a8..ab84534d63df 100644 --- a/cppcanvas/inc/cppcanvas/vclfactory.hxx +++ b/cppcanvas/inc/cppcanvas/vclfactory.hxx @@ -77,44 +77,17 @@ namespace cppcanvas public: static VCLFactory& getInstance(); - BitmapCanvasSharedPtr createCanvas( const ::Window& rVCLWindow ); BitmapCanvasSharedPtr createCanvas( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XBitmapCanvas >& xCanvas ); SpriteCanvasSharedPtr createSpriteCanvas( const ::Window& rVCLWindow ) const; SpriteCanvasSharedPtr createSpriteCanvas( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XSpriteCanvas >& xCanvas ) const; - SpriteCanvasSharedPtr createFullscreenSpriteCanvas( const ::Window& rVCLWindow, const Size& rFullscreenSize ) const; - - /** Create a polygon from a tools::Polygon - - The created polygon initially has the same size in user - coordinate space as the source polygon - */ - PolyPolygonSharedPtr createPolyPolygon( const CanvasSharedPtr&, const ::Polygon& rPoly ) const; - PolyPolygonSharedPtr createPolyPolygon( const CanvasSharedPtr&, const ::PolyPolygon& rPoly ) const; - - /** Create an uninitialized bitmap with the given size - */ - BitmapSharedPtr createBitmap( const CanvasSharedPtr&, const ::Size& rSize ) const; - - /** Create an uninitialized alpha bitmap with the given size - */ - BitmapSharedPtr createAlphaBitmap( const CanvasSharedPtr&, const ::Size& rSize ) const; /** Create a bitmap from a VCL Bitmap */ - BitmapSharedPtr createBitmap( const CanvasSharedPtr&, const ::Bitmap& rBitmap ) const; BitmapSharedPtr createBitmap( const CanvasSharedPtr&, const ::BitmapEx& rBmpEx ) const; - /** Create a renderer object from a Graphic - - The created renderer initially draws the graphic - one-by-one units large, in user coordinate space - */ - RendererSharedPtr createRenderer( const CanvasSharedPtr& rCanvas, - const ::Graphic& rGraphic, - const Renderer::Parameters& rParms ) const; /** Create a renderer object from a Metafile The created renderer initially draws the metafile @@ -124,14 +97,6 @@ namespace cppcanvas const ::GDIMetaFile& rMtf, const Renderer::Parameters& rParms ) const; - /** Create an animated sprite from a VCL animation - */ - SpriteSharedPtr createAnimatedSprite( const SpriteCanvasSharedPtr&, const ::Animation& rAnim ) const; - - /** Create a text portion with the given content string - */ - TextSharedPtr createText( const CanvasSharedPtr&, const ::rtl::OUString& ) const; - private: friend struct InitInstance; |