From 449d272daf5e99f039cdfdd25f020bd798fb9e1d Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 7 Jul 2015 13:58:41 +0200 Subject: loplugin:unusedmethods vcl Change-Id: I98b88ca3369a2c888fd63796e39d42376d513002 --- vcl/generic/print/genpspgraphics.cxx | 7 - vcl/headless/svpbmp.cxx | 10 - vcl/headless/svpgdi.cxx | 7 - vcl/inc/generic/genpspgraphics.h | 3 - vcl/inc/headless/svpbmp.hxx | 2 - vcl/inc/headless/svpgdi.hxx | 3 - vcl/inc/opengl/framebuffer.hxx | 1 - vcl/inc/opengl/salbmp.hxx | 4 - vcl/inc/opengl/texture.hxx | 1 - vcl/inc/openglgdiimpl.hxx | 1 - vcl/inc/quartz/salbmp.h | 2 - vcl/inc/quartz/salgdi.h | 3 - vcl/inc/salbmp.hxx | 2 - vcl/inc/salgdi.hxx | 5 - vcl/inc/sallayout.hxx | 1 - vcl/inc/unx/salbmp.h | 2 - vcl/inc/unx/salgdi.h | 5 - vcl/inc/win/salbmp.h | 2 - vcl/inc/win/salgdi.h | 3 - vcl/opengl/gdiimpl.cxx | 7 - vcl/opengl/salbmp.cxx | 10 - vcl/opengl/texture.cxx | 29 --- vcl/quartz/salbmp.cxx | 10 - vcl/quartz/salgdicommon.cxx | 6 - vcl/source/gdi/metaact.cxx | 345 ----------------------------------- vcl/source/gdi/region.cxx | 28 --- vcl/source/gdi/sallayout.cxx | 37 ---- vcl/source/gdi/virdev.cxx | 8 - vcl/source/opengl/OpenGLContext.cxx | 101 +--------- vcl/source/outdev/map.cxx | 85 --------- vcl/source/outdev/outdev.cxx | 23 --- vcl/source/outdev/transparent.cxx | 10 - vcl/source/window/window.cxx | 54 ------ vcl/source/window/winproc.cxx | 2 +- vcl/unx/generic/gdi/salbmp.cxx | 10 - vcl/unx/generic/gdi/salgdi2.cxx | 7 - vcl/win/source/gdi/salbmp.cxx | 10 - vcl/win/source/gdi/salgdi2.cxx | 7 - 38 files changed, 4 insertions(+), 849 deletions(-) (limited to 'vcl') diff --git a/vcl/generic/print/genpspgraphics.cxx b/vcl/generic/print/genpspgraphics.cxx index 5b5971f26d3a..571be87ef0d2 100644 --- a/vcl/generic/print/genpspgraphics.cxx +++ b/vcl/generic/print/genpspgraphics.cxx @@ -529,13 +529,6 @@ void GenPspGraphics::drawBitmap( const SalTwoRect&, OSL_FAIL("Error: no PrinterGfx::DrawBitmap() for transparent bitmap"); } -void GenPspGraphics::drawBitmap( const SalTwoRect&, - const SalBitmap&, - SalColor ) -{ - OSL_FAIL("Error: no PrinterGfx::DrawBitmap() for transparent color"); -} - void GenPspGraphics::drawMask( const SalTwoRect&, const SalBitmap &, SalColor ) diff --git a/vcl/headless/svpbmp.cxx b/vcl/headless/svpbmp.cxx index 7e54bc083dbb..95441c3ed775 100644 --- a/vcl/headless/svpbmp.cxx +++ b/vcl/headless/svpbmp.cxx @@ -350,16 +350,6 @@ bool SvpSalBitmap::GetSystemData( BitmapSystemData& ) return false; } -bool SvpSalBitmap::Crop( const Rectangle& /*rRectPixel*/ ) -{ - return false; -} - -bool SvpSalBitmap::Erase( const ::Color& /*rFillColor*/ ) -{ - return false; -} - bool SvpSalBitmap::Scale( const double& /*rScaleX*/, const double& /*rScaleY*/, BmpScaleFlag /*nScaleFlag*/ ) { return false; diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx index b111b0871ef6..66d398ae0d76 100644 --- a/vcl/headless/svpgdi.cxx +++ b/vcl/headless/svpgdi.cxx @@ -708,13 +708,6 @@ void SvpSalGraphics::drawBitmap( const SalTwoRect& rPosAry, dbgOut( m_aDevice ); } -void SvpSalGraphics::drawBitmap( const SalTwoRect&, - const SalBitmap&, - SalColor ) -{ - // SNI, as in X11 plugin -} - void SvpSalGraphics::drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, const SalBitmap& rTransparentBitmap ) diff --git a/vcl/inc/generic/genpspgraphics.h b/vcl/inc/generic/genpspgraphics.h index 762b0d29e0c5..baa6b1d1e4a7 100644 --- a/vcl/inc/generic/genpspgraphics.h +++ b/vcl/inc/generic/genpspgraphics.h @@ -171,9 +171,6 @@ public: SalGraphics* pSrcGraphics ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap ) SAL_OVERRIDE; - virtual void drawBitmap( const SalTwoRect& rPosAry, - const SalBitmap& rSalBitmap, - SalColor nTransparentColor ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, const SalBitmap& rTransparentBitmap ) SAL_OVERRIDE; diff --git a/vcl/inc/headless/svpbmp.hxx b/vcl/inc/headless/svpbmp.hxx index 1a331f24522d..9cf373974141 100644 --- a/vcl/inc/headless/svpbmp.hxx +++ b/vcl/inc/headless/svpbmp.hxx @@ -59,8 +59,6 @@ public: virtual void ReleaseBuffer( BitmapBuffer* pBuffer, BitmapAccessMode nMode ) SAL_OVERRIDE; virtual bool GetSystemData( BitmapSystemData& rData ) SAL_OVERRIDE; - virtual bool Crop( const Rectangle& rRectPixel ) SAL_OVERRIDE; - virtual bool Erase( const Color& rFillColor ) SAL_OVERRIDE; virtual bool Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ) SAL_OVERRIDE; virtual bool Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) SAL_OVERRIDE; diff --git a/vcl/inc/headless/svpgdi.hxx b/vcl/inc/headless/svpgdi.hxx index 587d488b3f37..0903d6e23565 100644 --- a/vcl/inc/headless/svpgdi.hxx +++ b/vcl/inc/headless/svpgdi.hxx @@ -184,9 +184,6 @@ public: SalGraphics* pSrcGraphics ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap ) SAL_OVERRIDE; - virtual void drawBitmap( const SalTwoRect& rPosAry, - const SalBitmap& rSalBitmap, - SalColor nTransparentColor ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, const SalBitmap& rTransparentBitmap ) SAL_OVERRIDE; diff --git a/vcl/inc/opengl/framebuffer.hxx b/vcl/inc/opengl/framebuffer.hxx index 4e8f9cc152da..385b11ac5771 100644 --- a/vcl/inc/opengl/framebuffer.hxx +++ b/vcl/inc/opengl/framebuffer.hxx @@ -27,7 +27,6 @@ public: OpenGLFramebuffer(); virtual ~OpenGLFramebuffer(); - GLuint Id() const { return mnId; }; int GetWidth() const { return mnWidth; }; int GetHeight() const { return mnHeight; }; diff --git a/vcl/inc/opengl/salbmp.hxx b/vcl/inc/opengl/salbmp.hxx index 3df78c8b2051..ba9ac3f4fe2f 100644 --- a/vcl/inc/opengl/salbmp.hxx +++ b/vcl/inc/opengl/salbmp.hxx @@ -79,8 +79,6 @@ public: bool GetSystemData( BitmapSystemData& rData ) SAL_OVERRIDE; - bool Crop( const Rectangle& rRectPixel ) SAL_OVERRIDE; - bool Erase( const Color& rFillColor ) SAL_OVERRIDE; bool Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ) SAL_OVERRIDE; bool Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) SAL_OVERRIDE; @@ -94,8 +92,6 @@ private: void ExecuteOperations(); GLuint CreateTexture(); - void DeleteTexture(); - void DrawTexture( GLuint nTexture, const SalTwoRect& rPosAry ); bool AllocateUserData(); bool ReadTexture(); diff --git a/vcl/inc/opengl/texture.hxx b/vcl/inc/opengl/texture.hxx index 3d99526d2646..554a02dd6c8c 100644 --- a/vcl/inc/opengl/texture.hxx +++ b/vcl/inc/opengl/texture.hxx @@ -69,7 +69,6 @@ public: void Bind(); void Unbind(); - bool Draw(); void Read( GLenum nFormat, GLenum nType, sal_uInt8* pData ); GLenum GetFilter() const; diff --git a/vcl/inc/openglgdiimpl.hxx b/vcl/inc/openglgdiimpl.hxx index 9abc4f975941..444c9f232fef 100644 --- a/vcl/inc/openglgdiimpl.hxx +++ b/vcl/inc/openglgdiimpl.hxx @@ -83,7 +83,6 @@ public: void DrawPoint( long nX, long nY ); void DrawLine( double nX1, double nY1, double nX2, double nY2 ); - void DrawLines( sal_uInt32 nPoints, const SalPoint* pPtAry, bool bClose ); void DrawLineAA( double nX1, double nY1, double nX2, double nY2 ); void DrawLinesAA( sal_uInt32 nPoints, const SalPoint* pPtAry, bool bClose ); void DrawEdgeAA( double nX1, double nY1, double nX2, double nY2 ); diff --git a/vcl/inc/quartz/salbmp.h b/vcl/inc/quartz/salbmp.h index 49679f073363..bcbf9b366715 100644 --- a/vcl/inc/quartz/salbmp.h +++ b/vcl/inc/quartz/salbmp.h @@ -75,8 +75,6 @@ public: bool GetSystemData( BitmapSystemData& rData ) SAL_OVERRIDE; - bool Crop( const Rectangle& rRectPixel ) SAL_OVERRIDE; - bool Erase( const Color& rFillColor ) SAL_OVERRIDE; bool Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ) SAL_OVERRIDE; bool Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) SAL_OVERRIDE; diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h index 7292479e8c9b..c378f202509e 100644 --- a/vcl/inc/quartz/salgdi.h +++ b/vcl/inc/quartz/salgdi.h @@ -257,9 +257,6 @@ public: // CopyBits() --> pSrcGraphics == NULL, then CopyBits on same Graphics virtual void copyBits( const SalTwoRect& rPosAry, SalGraphics* pSrcGraphics ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap ) SAL_OVERRIDE; - virtual void drawBitmap( const SalTwoRect& rPosAry, - const SalBitmap& rSalBitmap, - SalColor nTransparentColor ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, const SalBitmap& rTransparentBitmap ) SAL_OVERRIDE; diff --git a/vcl/inc/salbmp.hxx b/vcl/inc/salbmp.hxx index f89f4171072e..91f69aeb2bdc 100644 --- a/vcl/inc/salbmp.hxx +++ b/vcl/inc/salbmp.hxx @@ -59,8 +59,6 @@ public: virtual void ReleaseBuffer( BitmapBuffer* pBuffer, BitmapAccessMode nMode ) = 0; virtual bool GetSystemData( BitmapSystemData& rData ) = 0; - virtual bool Crop( const Rectangle& rRectPixel ) = 0; - virtual bool Erase( const Color& rFillColor ) = 0; virtual bool Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ) = 0; virtual bool Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) = 0; }; diff --git a/vcl/inc/salgdi.hxx b/vcl/inc/salgdi.hxx index 8c98d08b7b3e..16864276e357 100644 --- a/vcl/inc/salgdi.hxx +++ b/vcl/inc/salgdi.hxx @@ -518,11 +518,6 @@ protected: virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap ) = 0; - virtual void drawBitmap( - const SalTwoRect& rPosAry, - const SalBitmap& rSalBitmap, - SalColor nTransparentColor ) = 0; - virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, diff --git a/vcl/inc/sallayout.hxx b/vcl/inc/sallayout.hxx index 5364eedb954f..5175e2d7eff5 100644 --- a/vcl/inc/sallayout.hxx +++ b/vcl/inc/sallayout.hxx @@ -345,7 +345,6 @@ public: // used by upper layers virtual DeviceCoordinate GetTextWidth() const SAL_OVERRIDE; - Rectangle GetTextRect() const; virtual DeviceCoordinate FillDXArray( DeviceCoordinate* pDXArray ) const SAL_OVERRIDE; virtual sal_Int32 GetTextBreak(DeviceCoordinate nMaxWidth, DeviceCoordinate nCharExtra, int nFactor) const SAL_OVERRIDE; virtual void GetCaretPositions( int nArraySize, long* pCaretXArray ) const SAL_OVERRIDE; diff --git a/vcl/inc/unx/salbmp.h b/vcl/inc/unx/salbmp.h index 65d85ba862e5..edd8b023266f 100644 --- a/vcl/inc/unx/salbmp.h +++ b/vcl/inc/unx/salbmp.h @@ -146,8 +146,6 @@ public: virtual void ReleaseBuffer( BitmapBuffer* pBuffer, BitmapAccessMode nMode ) SAL_OVERRIDE; virtual bool GetSystemData( BitmapSystemData& rData ) SAL_OVERRIDE; - virtual bool Crop( const Rectangle& rRectPixel ) SAL_OVERRIDE; - virtual bool Erase( const Color& rFillColor ) SAL_OVERRIDE; virtual bool Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ) SAL_OVERRIDE; virtual bool Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) SAL_OVERRIDE; }; diff --git a/vcl/inc/unx/salgdi.h b/vcl/inc/unx/salgdi.h index 0a0d0d329bce..99fe40d87279 100644 --- a/vcl/inc/unx/salgdi.h +++ b/vcl/inc/unx/salgdi.h @@ -213,11 +213,6 @@ public: const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap ) SAL_OVERRIDE; - virtual void drawBitmap( - const SalTwoRect& rPosAry, - const SalBitmap& rSalBitmap, - SalColor nTransparentColor ) SAL_OVERRIDE; - virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, diff --git a/vcl/inc/win/salbmp.h b/vcl/inc/win/salbmp.h index 4b64d5df35e7..879e44130852 100644 --- a/vcl/inc/win/salbmp.h +++ b/vcl/inc/win/salbmp.h @@ -97,8 +97,6 @@ public: virtual void ReleaseBuffer( BitmapBuffer* pBuffer, BitmapAccessMode nMode ) SAL_OVERRIDE; virtual bool GetSystemData( BitmapSystemData& rData ) SAL_OVERRIDE; - virtual bool Crop( const Rectangle& rRectPixel ) SAL_OVERRIDE; - virtual bool Erase( const Color& rFillColor ) SAL_OVERRIDE; virtual bool Scale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ) SAL_OVERRIDE; virtual bool Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) SAL_OVERRIDE; }; diff --git a/vcl/inc/win/salgdi.h b/vcl/inc/win/salgdi.h index 8550054aed3c..2e892690f72d 100644 --- a/vcl/inc/win/salgdi.h +++ b/vcl/inc/win/salgdi.h @@ -289,9 +289,6 @@ protected: // CopyBits() --> pSrcGraphics == NULL, then CopyBits on same Graphics virtual void copyBits( const SalTwoRect& rPosAry, SalGraphics* pSrcGraphics ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap ) SAL_OVERRIDE; - virtual void drawBitmap( const SalTwoRect& rPosAry, - const SalBitmap& rSalBitmap, - SalColor nTransparentColor ) SAL_OVERRIDE; virtual void drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, const SalBitmap& rTransparentBitmap ) SAL_OVERRIDE; diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx index f56dd4af2a38..125ac0e218de 100644 --- a/vcl/opengl/gdiimpl.cxx +++ b/vcl/opengl/gdiimpl.cxx @@ -641,13 +641,6 @@ void OpenGLSalGraphicsImpl::ImplDrawLineAA( double nX1, double nY1, double nX2, CHECK_GL_ERROR(); } -void OpenGLSalGraphicsImpl::DrawLines( sal_uInt32 nPoints, const SalPoint* pPtAry, bool bClose ) -{ - for( int i = 0; i < int(nPoints) - 1; ++i ) - DrawLine( pPtAry[ i ].mnX, pPtAry[ i ].mnY, pPtAry[ i + 1 ].mnX, pPtAry[ i + 1 ].mnY ); - if( bClose ) - DrawLine( pPtAry[ nPoints - 1 ].mnX, pPtAry[ nPoints - 1 ].mnY, pPtAry[ 0 ].mnX, pPtAry[ 0 ].mnY ); -} void OpenGLSalGraphicsImpl::DrawLinesAA( sal_uInt32 nPoints, const SalPoint* pPtAry, bool bClose ) { diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx index 39218faabc5e..405428e7425c 100644 --- a/vcl/opengl/salbmp.cxx +++ b/vcl/opengl/salbmp.cxx @@ -576,16 +576,6 @@ bool OpenGLSalBitmap::GetSystemData( BitmapSystemData& /*rData*/ ) #endif } -bool OpenGLSalBitmap::Crop( const Rectangle& /*rRectPixel*/ ) -{ - return false; -} - -bool OpenGLSalBitmap::Erase( const ::Color& /*rFillColor*/ ) -{ - return false; -} - bool OpenGLSalBitmap::Replace( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong nTol ) { OpenGLFramebuffer* pFramebuffer; diff --git a/vcl/opengl/texture.cxx b/vcl/opengl/texture.cxx index 732830b9a717..2aa99a7f3ecc 100644 --- a/vcl/opengl/texture.cxx +++ b/vcl/opengl/texture.cxx @@ -262,35 +262,6 @@ void OpenGLTexture::Unbind() CHECK_GL_ERROR(); } -bool OpenGLTexture::Draw() -{ - GLfloat aPosition[8] = { -1, -1, -1, 1, 1, 1, 1, -1 }; - GLfloat aTexCoord[8]; - - if( mpImpl == NULL ) - { - SAL_WARN( "vcl.opengl", "Can't draw invalid texture" ); - return false; - } - - SAL_INFO( "vcl.opengl", "Drawing texture " << Id() << " [" << maRect.Left() << "," << maRect.Top() << "] " << GetWidth() << "x" << GetHeight() ); - - GetWholeCoord( aTexCoord ); - glActiveTexture( GL_TEXTURE0 ); - glBindTexture( GL_TEXTURE_2D, mpImpl->mnTexture ); - glEnableVertexAttribArray( 0 ); - glVertexAttribPointer( 0, 2, GL_FLOAT, GL_FALSE, 0, aPosition ); - glEnableVertexAttribArray( 1 ); - glVertexAttribPointer( 1, 2, GL_FLOAT, GL_FALSE, 0, aTexCoord ); - glDrawArrays( GL_TRIANGLE_FAN, 0, 4 ); - glDisableVertexAttribArray( 0 ); - glDisableVertexAttribArray( 1 ); - glBindTexture( GL_TEXTURE_2D, 0 ); - - CHECK_GL_ERROR(); - return true; -} - void OpenGLTexture::Read( GLenum nFormat, GLenum nType, sal_uInt8* pData ) { if( mpImpl == NULL ) diff --git a/vcl/quartz/salbmp.cxx b/vcl/quartz/salbmp.cxx index a2d43649f2f1..7dbbfb0b64b4 100644 --- a/vcl/quartz/salbmp.cxx +++ b/vcl/quartz/salbmp.cxx @@ -968,16 +968,6 @@ bool QuartzSalBitmap::GetSystemData( BitmapSystemData& rData ) return bRet; } -bool QuartzSalBitmap::Crop( const Rectangle& /*rRectPixel*/ ) -{ - return false; -} - -bool QuartzSalBitmap::Erase( const ::Color& /*rFillColor*/ ) -{ - return false; -} - bool QuartzSalBitmap::Scale( const double& /*rScaleX*/, const double& /*rScaleY*/, BmpScaleFlag /*nScaleFlag*/ ) { return false; diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 9b42a222c6af..01fac7fc087b 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -757,12 +757,6 @@ void AquaSalGraphics::drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rS DBG_DRAW_OPERATION_EXIT("drawBitmap"); } -void AquaSalGraphics::drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap,SalColor ) -{ - OSL_FAIL("not implemented for color masking!"); - drawBitmap( rPosAry, rSalBitmap ); -} - void AquaSalGraphics::drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, const SalBitmap& rTransparentBitmap ) { diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx index 10b0e7f469ed..596ab10f1745 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -179,11 +179,6 @@ void MetaAction::Scale( double, double ) { } -bool MetaAction::Compare( const MetaAction& ) const -{ - return true; -} - void MetaAction::Write( SvStream& rOStm, ImplMetaWriteData* ) { rOStm.WriteUInt16( static_cast(mnType) ); @@ -308,12 +303,6 @@ void MetaPixelAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maPt, fScaleX, fScaleY ); } -bool MetaPixelAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maPt == static_cast(rMetaAction).maPt ) && - ( maColor == static_cast(rMetaAction).maColor ); -} - void MetaPixelAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -363,11 +352,6 @@ void MetaPointAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maPt, fScaleX, fScaleY ); } -bool MetaPointAction::Compare( const MetaAction& rMetaAction ) const -{ - return maPt == static_cast(rMetaAction).maPt; -} - void MetaPointAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -430,13 +414,6 @@ void MetaLineAction::Scale( double fScaleX, double fScaleY ) ImplScaleLineInfo( maLineInfo, fScaleX, fScaleY ); } -bool MetaLineAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maLineInfo == static_cast(rMetaAction).maLineInfo ) && - ( maStartPt == static_cast(rMetaAction).maStartPt ) && - ( maEndPt == static_cast(rMetaAction).maEndPt ); -} - void MetaLineAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -496,11 +473,6 @@ void MetaRectAction::Scale( double fScaleX, double fScaleY ) ImplScaleRect( maRect, fScaleX, fScaleY ); } -bool MetaRectAction::Compare( const MetaAction& rMetaAction ) const -{ - return maRect == static_cast(rMetaAction).maRect; -} - void MetaRectAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -555,13 +527,6 @@ void MetaRoundRectAction::Scale( double fScaleX, double fScaleY ) mnVertRound = FRound( mnVertRound * fabs(fScaleY) ); } -bool MetaRoundRectAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRect == static_cast(rMetaAction).maRect ) && - ( mnHorzRound == static_cast(rMetaAction).mnHorzRound ) && - ( mnVertRound == static_cast(rMetaAction).mnVertRound ); -} - void MetaRoundRectAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -610,11 +575,6 @@ void MetaEllipseAction::Scale( double fScaleX, double fScaleY ) ImplScaleRect( maRect, fScaleX, fScaleY ); } -bool MetaEllipseAction::Compare( const MetaAction& rMetaAction ) const -{ - return maRect == static_cast(rMetaAction).maRect; -} - void MetaEllipseAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -669,13 +629,6 @@ void MetaArcAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maEndPt, fScaleX, fScaleY ); } -bool MetaArcAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRect == static_cast(rMetaAction).maRect ) && - ( maStartPt == static_cast(rMetaAction).maStartPt ) && - ( maEndPt == static_cast(rMetaAction).maEndPt ); -} - void MetaArcAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -734,13 +687,6 @@ void MetaPieAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maEndPt, fScaleX, fScaleY ); } -bool MetaPieAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRect == static_cast(rMetaAction).maRect ) && - ( maStartPt == static_cast(rMetaAction).maStartPt ) && - ( maEndPt == static_cast(rMetaAction).maEndPt ); -} - void MetaPieAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -799,13 +745,6 @@ void MetaChordAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maEndPt, fScaleX, fScaleY ); } -bool MetaChordAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRect == static_cast(rMetaAction).maRect ) && - ( maStartPt == static_cast(rMetaAction).maStartPt ) && - ( maEndPt == static_cast(rMetaAction).maEndPt ); -} - void MetaChordAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -867,17 +806,6 @@ void MetaPolyLineAction::Scale( double fScaleX, double fScaleY ) ImplScaleLineInfo( maLineInfo, fScaleX, fScaleY ); } -bool MetaPolyLineAction::Compare( const MetaAction& rMetaAction ) const -{ - bool bIsEqual = true; - if ( maLineInfo != static_cast(rMetaAction).maLineInfo ) - bIsEqual = false; - else - bIsEqual = maPoly.IsEqual(static_cast(rMetaAction).maPoly ); - return bIsEqual; - -} - void MetaPolyLineAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -948,11 +876,6 @@ void MetaPolygonAction::Scale( double fScaleX, double fScaleY ) ImplScalePoly( maPoly, fScaleX, fScaleY ); } -bool MetaPolygonAction::Compare( const MetaAction& rMetaAction ) const -{ - return maPoly.IsEqual(static_cast(rMetaAction).maPoly ); -} - void MetaPolygonAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -1018,11 +941,6 @@ void MetaPolyPolygonAction::Scale( double fScaleX, double fScaleY ) ImplScalePoly( maPolyPoly[ i ], fScaleX, fScaleY ); } -bool MetaPolyPolygonAction::Compare( const MetaAction& rMetaAction ) const -{ - return maPolyPoly.IsEqual(static_cast(rMetaAction).maPolyPoly ); -} - void MetaPolyPolygonAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -1130,14 +1048,6 @@ void MetaTextAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maPt, fScaleX, fScaleY ); } -bool MetaTextAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maPt == static_cast(rMetaAction).maPt ) && - ( maStr == static_cast(rMetaAction).maStr ) && - ( mnIndex == static_cast(rMetaAction).mnIndex ) && - ( mnLen == static_cast(rMetaAction).mnLen ); -} - void MetaTextAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -1246,15 +1156,6 @@ void MetaTextArrayAction::Scale( double fScaleX, double fScaleY ) } } -bool MetaTextArrayAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maStartPt == static_cast(rMetaAction).maStartPt ) && - ( maStr == static_cast(rMetaAction).maStr ) && - ( mnIndex == static_cast(rMetaAction).mnIndex ) && - ( mnLen == static_cast(rMetaAction).mnLen ) && - ( memcmp( mpDXAry, static_cast(rMetaAction).mpDXAry, mnLen ) == 0 ); -} - void MetaTextArrayAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { const sal_Int32 nAryLen = mpDXAry ? mnLen : 0; @@ -1381,15 +1282,6 @@ void MetaStretchTextAction::Scale( double fScaleX, double fScaleY ) mnWidth = (sal_uLong)FRound( mnWidth * fabs(fScaleX) ); } -bool MetaStretchTextAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maPt == static_cast(rMetaAction).maPt ) && - ( maStr == static_cast(rMetaAction).maStr ) && - ( mnWidth == static_cast(rMetaAction).mnWidth ) && - ( mnIndex == static_cast(rMetaAction).mnIndex ) && - ( mnLen == static_cast(rMetaAction).mnLen ); -} - void MetaStretchTextAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -1458,13 +1350,6 @@ void MetaTextRectAction::Scale( double fScaleX, double fScaleY ) ImplScaleRect( maRect, fScaleX, fScaleY ); } -bool MetaTextRectAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRect == static_cast(rMetaAction).maRect ) && - ( maStr == static_cast(rMetaAction).maStr ) && - ( mnStyle == static_cast(rMetaAction).mnStyle ); -} - void MetaTextRectAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -1535,15 +1420,6 @@ void MetaTextLineAction::Scale( double fScaleX, double fScaleY ) mnWidth = FRound( mnWidth * fabs(fScaleX) ); } -bool MetaTextLineAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maPos == static_cast(rMetaAction).maPos ) && - ( mnWidth == static_cast(rMetaAction).mnWidth ) && - ( meStrikeout == static_cast(rMetaAction).meStrikeout ) && - ( meUnderline == static_cast(rMetaAction).meUnderline ) && - ( meOverline == static_cast(rMetaAction).meOverline ); -} - void MetaTextLineAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -1613,12 +1489,6 @@ void MetaBmpAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maPt, fScaleX, fScaleY ); } -bool MetaBmpAction::Compare( const MetaAction& rMetaAction ) const -{ - return maBmp.IsEqual(static_cast(rMetaAction).maBmp ) && - ( maPt == static_cast(rMetaAction).maPt ); -} - void MetaBmpAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmp ) @@ -1677,13 +1547,6 @@ void MetaBmpScaleAction::Scale( double fScaleX, double fScaleY ) maSz = aRectangle.GetSize(); } -bool MetaBmpScaleAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmp.IsEqual(static_cast(rMetaAction).maBmp )) && - ( maPt == static_cast(rMetaAction).maPt ) && - ( maSz == static_cast(rMetaAction).maSz ); -} - void MetaBmpScaleAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmp ) @@ -1747,15 +1610,6 @@ void MetaBmpScalePartAction::Scale( double fScaleX, double fScaleY ) maDstSz = aRectangle.GetSize(); } -bool MetaBmpScalePartAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmp.IsEqual(static_cast(rMetaAction).maBmp )) && - ( maDstPt == static_cast(rMetaAction).maDstPt ) && - ( maDstSz == static_cast(rMetaAction).maDstSz ) && - ( maSrcPt == static_cast(rMetaAction).maSrcPt ) && - ( maSrcSz == static_cast(rMetaAction).maSrcSz ); -} - void MetaBmpScalePartAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmp ) @@ -1815,12 +1669,6 @@ void MetaBmpExAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maPt, fScaleX, fScaleY ); } -bool MetaBmpExAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmpEx.IsEqual(static_cast(rMetaAction).maBmpEx )) && - ( maPt == static_cast(rMetaAction).maPt ); -} - void MetaBmpExAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmpEx.GetBitmap() ) @@ -1879,13 +1727,6 @@ void MetaBmpExScaleAction::Scale( double fScaleX, double fScaleY ) maSz = aRectangle.GetSize(); } -bool MetaBmpExScaleAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmpEx.IsEqual(static_cast(rMetaAction).maBmpEx )) && - ( maPt == static_cast(rMetaAction).maPt ) && - ( maSz == static_cast(rMetaAction).maSz ); -} - void MetaBmpExScaleAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmpEx.GetBitmap() ) @@ -1949,15 +1790,6 @@ void MetaBmpExScalePartAction::Scale( double fScaleX, double fScaleY ) maDstSz = aRectangle.GetSize(); } -bool MetaBmpExScalePartAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmpEx.IsEqual(static_cast(rMetaAction).maBmpEx )) && - ( maDstPt == static_cast(rMetaAction).maDstPt ) && - ( maDstSz == static_cast(rMetaAction).maDstSz ) && - ( maSrcPt == static_cast(rMetaAction).maSrcPt ) && - ( maSrcSz == static_cast(rMetaAction).maSrcSz ); -} - void MetaBmpExScalePartAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmpEx.GetBitmap() ) @@ -2020,13 +1852,6 @@ void MetaMaskAction::Scale( double fScaleX, double fScaleY ) ImplScalePoint( maPt, fScaleX, fScaleY ); } -bool MetaMaskAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmp.IsEqual(static_cast(rMetaAction).maBmp )) && - ( maColor == static_cast(rMetaAction).maColor ) && - ( maPt == static_cast(rMetaAction).maPt ); -} - void MetaMaskAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmp ) @@ -2087,14 +1912,6 @@ void MetaMaskScaleAction::Scale( double fScaleX, double fScaleY ) maSz = aRectangle.GetSize(); } -bool MetaMaskScaleAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmp.IsEqual(static_cast(rMetaAction).maBmp )) && - ( maColor == static_cast(rMetaAction).maColor ) && - ( maPt == static_cast(rMetaAction).maPt ) && - ( maSz == static_cast(rMetaAction).maSz ); -} - void MetaMaskScaleAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmp ) @@ -2160,16 +1977,6 @@ void MetaMaskScalePartAction::Scale( double fScaleX, double fScaleY ) maDstSz = aRectangle.GetSize(); } -bool MetaMaskScalePartAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maBmp.IsEqual(static_cast(rMetaAction).maBmp )) && - ( maColor == static_cast(rMetaAction).maColor ) && - ( maDstPt == static_cast(rMetaAction).maDstPt ) && - ( maDstSz == static_cast(rMetaAction).maDstSz ) && - ( maSrcPt == static_cast(rMetaAction).maSrcPt ) && - ( maSrcSz == static_cast(rMetaAction).maSrcSz ); -} - void MetaMaskScalePartAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { if( !!maBmp ) @@ -2231,12 +2038,6 @@ void MetaGradientAction::Scale( double fScaleX, double fScaleY ) ImplScaleRect( maRect, fScaleX, fScaleY ); } -bool MetaGradientAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRect == static_cast(rMetaAction).maRect ) && - ( maGradient == static_cast(rMetaAction).maGradient ); -} - void MetaGradientAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2292,12 +2093,6 @@ void MetaGradientExAction::Scale( double fScaleX, double fScaleY ) ImplScalePoly( maPolyPoly[ i ], fScaleX, fScaleY ); } -bool MetaGradientExAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maPolyPoly == static_cast(rMetaAction).maPolyPoly ) && - ( maGradient == static_cast(rMetaAction).maGradient ); -} - void MetaGradientExAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2354,12 +2149,6 @@ void MetaHatchAction::Scale( double fScaleX, double fScaleY ) ImplScalePoly( maPolyPoly[ i ], fScaleX, fScaleY ); } -bool MetaHatchAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maPolyPoly == static_cast(rMetaAction).maPolyPoly ) && - ( maHatch == static_cast(rMetaAction).maHatch ); -} - void MetaHatchAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2416,12 +2205,6 @@ void MetaWallpaperAction::Scale( double fScaleX, double fScaleY ) ImplScaleRect( maRect, fScaleX, fScaleY ); } -bool MetaWallpaperAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRect == static_cast(rMetaAction).maRect ) && - ( maWallpaper == static_cast(rMetaAction).maWallpaper ); -} - void MetaWallpaperAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2475,12 +2258,6 @@ void MetaClipRegionAction::Scale( double fScaleX, double fScaleY ) maRegion.Scale( fScaleX, fScaleY ); } -bool MetaClipRegionAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRegion == static_cast(rMetaAction).maRegion ) && - ( mbClip == static_cast(rMetaAction).mbClip ); -} - void MetaClipRegionAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2531,11 +2308,6 @@ void MetaISectRectClipRegionAction::Scale( double fScaleX, double fScaleY ) ImplScaleRect( maRect, fScaleX, fScaleY ); } -bool MetaISectRectClipRegionAction::Compare( const MetaAction& rMetaAction ) const -{ - return maRect == static_cast(rMetaAction).maRect; -} - void MetaISectRectClipRegionAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2584,11 +2356,6 @@ void MetaISectRegionClipRegionAction::Scale( double fScaleX, double fScaleY ) maRegion.Scale( fScaleX, fScaleY ); } -bool MetaISectRegionClipRegionAction::Compare( const MetaAction& rMetaAction ) const -{ - return maRegion == static_cast(rMetaAction).maRegion; -} - void MetaISectRegionClipRegionAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2635,12 +2402,6 @@ void MetaMoveClipRegionAction::Scale( double fScaleX, double fScaleY ) mnVertMove = FRound( mnVertMove * fScaleY ); } -bool MetaMoveClipRegionAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( mnHorzMove == static_cast(rMetaAction).mnHorzMove ) && - ( mnVertMove == static_cast(rMetaAction).mnVertMove ); -} - void MetaMoveClipRegionAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2686,12 +2447,6 @@ MetaAction* MetaLineColorAction::Clone() return pClone; } -bool MetaLineColorAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maColor == static_cast(rMetaAction).maColor ) && - ( mbSet == static_cast(rMetaAction).mbSet ); -} - void MetaLineColorAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2736,12 +2491,6 @@ MetaAction* MetaFillColorAction::Clone() return pClone; } -bool MetaFillColorAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maColor == static_cast(rMetaAction).maColor ) && - ( mbSet == static_cast(rMetaAction).mbSet ); -} - void MetaFillColorAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2781,11 +2530,6 @@ MetaAction* MetaTextColorAction::Clone() return pClone; } -bool MetaTextColorAction::Compare( const MetaAction& rMetaAction ) const -{ - return maColor == static_cast(rMetaAction).maColor; -} - void MetaTextColorAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2828,12 +2572,6 @@ MetaAction* MetaTextFillColorAction::Clone() return pClone; } -bool MetaTextFillColorAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maColor == static_cast(rMetaAction).maColor ) && - ( mbSet == static_cast(rMetaAction).mbSet ); -} - void MetaTextFillColorAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2878,12 +2616,6 @@ MetaAction* MetaTextLineColorAction::Clone() return pClone; } -bool MetaTextLineColorAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maColor == static_cast(rMetaAction).maColor ) && - ( mbSet == static_cast(rMetaAction).mbSet ); -} - void MetaTextLineColorAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2928,12 +2660,6 @@ MetaAction* MetaOverlineColorAction::Clone() return pClone; } -bool MetaOverlineColorAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maColor == static_cast(rMetaAction).maColor ) && - ( mbSet == static_cast(rMetaAction).mbSet ); -} - void MetaOverlineColorAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -2974,11 +2700,6 @@ MetaAction* MetaTextAlignAction::Clone() return pClone; } -bool MetaTextAlignAction::Compare( const MetaAction& rMetaAction ) const -{ - return maAlign == static_cast(rMetaAction).maAlign; -} - void MetaTextAlignAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3026,11 +2747,6 @@ void MetaMapModeAction::Scale( double fScaleX, double fScaleY ) maMapMode.SetOrigin( aPoint ); } -bool MetaMapModeAction::Compare( const MetaAction& rMetaAction ) const -{ - return maMapMode == static_cast(rMetaAction).maMapMode; -} - void MetaMapModeAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3086,11 +2802,6 @@ void MetaFontAction::Scale( double fScaleX, double fScaleY ) maFont.SetSize( aSize ); } -bool MetaFontAction::Compare( const MetaAction& rMetaAction ) const -{ - return maFont == static_cast(rMetaAction).maFont; -} - void MetaFontAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3135,11 +2846,6 @@ MetaAction* MetaPushAction::Clone() return pClone; } -bool MetaPushAction::Compare( const MetaAction& rMetaAction ) const -{ - return mnFlags == static_cast(rMetaAction).mnFlags; -} - void MetaPushAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3211,11 +2917,6 @@ MetaAction* MetaRasterOpAction::Clone() return pClone; } -bool MetaRasterOpAction::Compare( const MetaAction& rMetaAction ) const -{ - return meRasterOp == static_cast(rMetaAction).meRasterOp; -} - void MetaRasterOpAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3268,12 +2969,6 @@ void MetaTransparentAction::Scale( double fScaleX, double fScaleY ) ImplScalePoly( maPolyPoly[ i ], fScaleX, fScaleY ); } -bool MetaTransparentAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maPolyPoly == static_cast(rMetaAction).maPolyPoly ) && - ( mnTransPercent == static_cast(rMetaAction).mnTransPercent ); -} - void MetaTransparentAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3343,14 +3038,6 @@ void MetaFloatTransparentAction::Scale( double fScaleX, double fScaleY ) maSize = aRectangle.GetSize(); } -bool MetaFloatTransparentAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maMtf == static_cast(rMetaAction).maMtf ) && - ( maPoint == static_cast(rMetaAction).maPoint ) && - ( maSize == static_cast(rMetaAction).maSize ) && - ( maGradient == static_cast(rMetaAction).maGradient ); -} - void MetaFloatTransparentAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3412,14 +3099,6 @@ void MetaEPSAction::Scale( double fScaleX, double fScaleY ) maSize = aRectangle.GetSize(); } -bool MetaEPSAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maGfxLink.IsEqual(static_cast(rMetaAction).maGfxLink )) && - ( maSubst == static_cast(rMetaAction).maSubst ) && - ( maPoint == static_cast(rMetaAction).maPoint ) && - ( maSize == static_cast(rMetaAction).maSize ); -} - void MetaEPSAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3469,12 +3148,6 @@ MetaAction* MetaRefPointAction::Clone() return pClone; } -bool MetaRefPointAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maRefPoint == static_cast(rMetaAction).maRefPoint ) && - ( mbSet == static_cast(rMetaAction).mbSet ); -} - void MetaRefPointAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3666,14 +3339,6 @@ void MetaCommentAction::Scale( double fXScale, double fYScale ) } } -bool MetaCommentAction::Compare( const MetaAction& rMetaAction ) const -{ - return ( maComment == static_cast(rMetaAction).maComment ) && - ( mnValue == static_cast(rMetaAction).mnValue ) && - ( mnDataSize == static_cast(rMetaAction).mnDataSize ) && - ( memcmp( mpData, static_cast(rMetaAction).mpData, mnDataSize ) == 0 ); -} - void MetaCommentAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3729,11 +3394,6 @@ MetaAction* MetaLayoutModeAction::Clone() return pClone; } -bool MetaLayoutModeAction::Compare( const MetaAction& rMetaAction ) const -{ - return mnLayoutMode == static_cast(rMetaAction).mnLayoutMode; -} - void MetaLayoutModeAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); @@ -3774,11 +3434,6 @@ MetaAction* MetaTextLanguageAction::Clone() return pClone; } -bool MetaTextLanguageAction::Compare( const MetaAction& rMetaAction ) const -{ - return meTextLanguage == static_cast(rMetaAction).meTextLanguage; -} - void MetaTextLanguageAction::Write( SvStream& rOStm, ImplMetaWriteData* pData ) { MetaAction::Write(rOStm, pData); diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx index 943559582d4d..493a02204255 100644 --- a/vcl/source/gdi/region.cxx +++ b/vcl/source/gdi/region.cxx @@ -1383,34 +1383,6 @@ bool vcl::Region::IsInside( const Point& rPoint ) const return false; } -bool vcl::Region::IsInside( const Rectangle& rRect ) const -{ - if(IsEmpty()) - { - // no rectangle can be in empty region - return false; - } - - if(IsNull()) - { - // rectangle always inside null-region - return true; - } - - if ( rRect.IsEmpty() ) - { - // is rectangle empty? -> not inside - return false; - } - - // create region from rectangle and intersect own region - vcl::Region aRegion(rRect); - aRegion.Exclude(*this); - - // rectangle is inside if exclusion is empty - return aRegion.IsEmpty(); -} - bool vcl::Region::IsOver( const Rectangle& rRect ) const { if(IsEmpty()) diff --git a/vcl/source/gdi/sallayout.cxx b/vcl/source/gdi/sallayout.cxx index 39c2f777d754..2e1461f83152 100644 --- a/vcl/source/gdi/sallayout.cxx +++ b/vcl/source/gdi/sallayout.cxx @@ -942,43 +942,6 @@ DeviceCoordinate GenericSalLayout::GetTextWidth() const return nWidth; } -Rectangle GenericSalLayout::GetTextRect() const -{ - if( m_GlyphItems.empty() ) - return Rectangle(Point(0, 0), Size(0, 0)); - - // initialize the extent - DeviceCoordinate nMinXPos = 0; - DeviceCoordinate nMaxXPos = 0; - - DeviceCoordinate nMinYPos = 0; - DeviceCoordinate nMaxYPos = 0; - - for( GlyphVector::const_iterator pGlyphIter = m_GlyphItems.begin(), end = m_GlyphItems.end(); pGlyphIter != end ; ++pGlyphIter ) - { - // update the text extent with the glyph extent - DeviceCoordinate nXPos = pGlyphIter->maLinearPos.X(); - DeviceCoordinate nYPos = pGlyphIter->maLinearPos.Y(); - - if( nMinXPos > nXPos ) - nMinXPos = nXPos; - nXPos += pGlyphIter->mnNewWidth - pGlyphIter->mnXOffset; - if( nMaxXPos < nXPos ) - nMaxXPos = nXPos; - - if( nMinYPos > nYPos ) - nMinYPos = nYPos; - nYPos += pGlyphIter->mnNewWidth - pGlyphIter->mnYOffset; - if( nMaxYPos < nYPos ) - nMaxYPos = nYPos; - } - - DeviceCoordinate nWidth = nMaxXPos - nMinXPos; - DeviceCoordinate nHeight = nMaxYPos - nMinYPos; - - return Rectangle( Point(nMinXPos, nMinYPos), Size(nWidth, nHeight) ); -} - void GenericSalLayout::AdjustLayout( ImplLayoutArgs& rArgs ) { SalLayout::AdjustLayout( rArgs ); diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx index 04ac2d72a700..b8dc0613fda4 100644 --- a/vcl/source/gdi/virdev.cxx +++ b/vcl/source/gdi/virdev.cxx @@ -543,14 +543,6 @@ sal_uInt16 VirtualDevice::GetBitCount() const return mnBitCount; } -sal_uInt16 VirtualDevice::GetAlphaBitCount() const -{ - if (mpAlphaVDev) - return mpAlphaVDev->GetBitCount(); - - return 0; -} - bool VirtualDevice::UsePolyPolygonForComplexGradient() { return true; diff --git a/vcl/source/opengl/OpenGLContext.cxx b/vcl/source/opengl/OpenGLContext.cxx index 0d0a157b171a..c106067dbc2b 100644 --- a/vcl/source/opengl/OpenGLContext.cxx +++ b/vcl/source/opengl/OpenGLContext.cxx @@ -60,7 +60,6 @@ OpenGLContext::OpenGLContext(): mnRefCount(1), mbRequestLegacyContext(false), mbUseDoubleBufferedRendering(true), - mbRequestVirtualDevice(false), mnFramebufferCount(0), mpCurrentFramebuffer(NULL), mpFirstFramebuffer(NULL), @@ -152,11 +151,6 @@ void OpenGLContext::requestSingleBufferedRendering() mbUseDoubleBufferedRendering = false; } -void OpenGLContext::requestVirtualDevice() -{ - mbRequestVirtualDevice = true; -} - #if defined( _WIN32 ) static LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { @@ -513,56 +507,6 @@ int oglErrorHandler( Display* /*dpy*/, XErrorEvent* /*evnt*/ ) return 0; } -GLXFBConfig* getFBConfigForPixmap(Display* dpy, int& nBestFBC, bool bUseDoubleBufferedRendering, int screen) -{ - static int visual_attribs[] = - { - GLX_DOUBLEBUFFER, False, - GLX_DRAWABLE_TYPE, GLX_PIXMAP_BIT, - GLX_X_RENDERABLE, True, - GLX_RED_SIZE, 8, - GLX_GREEN_SIZE, 8, - GLX_BLUE_SIZE, 8, - GLX_ALPHA_SIZE, 8, - GLX_DEPTH_SIZE, 24, - GLX_X_VISUAL_TYPE, GLX_TRUE_COLOR, - None - }; - - if (bUseDoubleBufferedRendering) - visual_attribs[1] = True; - - int fbCount = 0; - GLXFBConfig* pFBC = glXChooseFBConfig( dpy, - screen, - visual_attribs, &fbCount ); - - if(!pFBC) - { - SAL_WARN("vcl.opengl", "no suitable fb format found"); - return NULL; - } - - int best_num_samp = -1; - for(int i = 0; i < fbCount; ++i) - { - // pick the one with the most samples per pixel - int nSampleBuf = 0; - int nSamples = 0; - glXGetFBConfigAttrib( dpy, pFBC[i], GLX_SAMPLE_BUFFERS, &nSampleBuf ); - glXGetFBConfigAttrib( dpy, pFBC[i], GLX_SAMPLES , &nSamples ); - - if ( nBestFBC < 0 || (nSampleBuf && ( nSamples > best_num_samp )) ) - { - nBestFBC = i; - best_num_samp = nSamples; - } - } - - CHECK_GL_ERROR(); - return pFBC; -} - GLXFBConfig* getFBConfig(Display* dpy, Window win, int& nBestFBC, bool bUseDoubleBufferedRendering, bool bWithSameVisualID) { if( dpy == 0 || !glXQueryExtension( dpy, NULL, NULL ) ) @@ -709,36 +653,7 @@ bool OpenGLContext::init(Display* dpy, Window win, int screen) return ImplInit(); } -bool OpenGLContext::init(Display* dpy, Pixmap pix, unsigned int width, unsigned int height, int nScreen) -{ - if(mbInitialized) - return true; - - if (!dpy) - return false; - - initOpenGLFunctionPointers(); - - SAL_INFO("vcl.opengl", "init with pixmap"); - m_aGLWin.dpy = dpy; - m_aGLWin.Width = width; - m_aGLWin.Height = height; - m_aGLWin.pix = pix; - const int attrib_list[] = { GLX_TEXTURE_FORMAT_EXT, GLX_TEXTURE_FORMAT_RGB_EXT, - GLX_TEXTURE_TARGET_EXT, GLX_TEXTURE_2D_EXT, - None}; - int best_fbc = -1; - GLXFBConfig* config = getFBConfigForPixmap(dpy, best_fbc, mbUseDoubleBufferedRendering, nScreen); - if (best_fbc == -1) - return false; - - m_aGLWin.vi = glXGetVisualFromFBConfig( dpy, config[best_fbc] ); - m_aGLWin.glPix = glXCreatePixmap(dpy, config[best_fbc], pix, attrib_list); - mbPixmap = true; - - return ImplInit(); -} bool OpenGLContext::ImplInit() { @@ -899,15 +814,12 @@ bool OpenGLContext::ImplInit() // rendering - otherwise we get errors with virtual devices PixelFormatFront.dwFlags |= PFD_DOUBLEBUFFER; - if (mbRequestVirtualDevice) - PixelFormatFront.dwFlags |= PFD_DRAW_TO_BITMAP; - else - PixelFormatFront.dwFlags |= PFD_DRAW_TO_WINDOW; + PixelFormatFront.dwFlags |= PFD_DRAW_TO_WINDOW; // we must check whether can set the MSAA int WindowPix = 0; bool bMultiSampleSupport = InitMultisample(PixelFormatFront, WindowPix, - mbUseDoubleBufferedRendering, mbRequestVirtualDevice); + mbUseDoubleBufferedRendering, false); if (bMultiSampleSupport && WindowPix != 0) { m_aGLWin.bMultiSampleSupported = true; @@ -1073,14 +985,7 @@ void OpenGLContext::setWinSize(const Size& rSize) m_aGLWin.Height = rSize.Height(); } -void OpenGLContext::renderToFile() -{ - int iWidth = m_aGLWin.Width; - int iHeight = m_aGLWin.Height; - static int nIdx = 0; - OUString aName = "file:///home/moggi/Documents/work/output" + OUString::number( nIdx++ ) + ".png"; - OpenGLHelper::renderToFile(iWidth, iHeight, aName); -} + #if defined( WNT ) diff --git a/vcl/source/outdev/map.cxx b/vcl/source/outdev/map.cxx index 4f2863ece132..530df0257627 100644 --- a/vcl/source/outdev/map.cxx +++ b/vcl/source/outdev/map.cxx @@ -1054,14 +1054,6 @@ tools::PolyPolygon OutputDevice::LogicToPixel( const tools::PolyPolygon& rLogicP return aPolyPoly; } -basegfx::B2DPolygon OutputDevice::LogicToPixel( const basegfx::B2DPolygon& rLogicPoly ) const -{ - basegfx::B2DPolygon aTransformedPoly = rLogicPoly; - const ::basegfx::B2DHomMatrix& rTransformationMatrix = GetViewTransformation(); - aTransformedPoly.transform( rTransformationMatrix ); - return aTransformedPoly; -} - basegfx::B2DPolyPolygon OutputDevice::LogicToPixel( const basegfx::B2DPolyPolygon& rLogicPolyPoly ) const { basegfx::B2DPolyPolygon aTransformedPoly = rLogicPolyPoly; @@ -1231,49 +1223,6 @@ basegfx::B2DPolyPolygon OutputDevice::LogicToPixel( const basegfx::B2DPolyPolygo return aTransformedPoly; } -basegfx::B2DPolygon OutputDevice::LogicToPixel( const basegfx::B2DPolygon& rLogicPoly, - const MapMode& rMapMode ) const -{ - basegfx::B2DPolygon aTransformedPoly = rLogicPoly; - const ::basegfx::B2DHomMatrix& rTransformationMatrix = GetViewTransformation( rMapMode ); - aTransformedPoly.transform( rTransformationMatrix ); - return aTransformedPoly; -} - -vcl::Region OutputDevice::LogicToPixel( const vcl::Region& rLogicRegion, const MapMode& rMapMode ) const -{ - - if(rMapMode.IsDefault() || rLogicRegion.IsNull() || rLogicRegion.IsEmpty()) - { - return rLogicRegion; - } - - vcl::Region aRegion; - - if(rLogicRegion.getB2DPolyPolygon()) - { - aRegion = vcl::Region(LogicToPixel(*rLogicRegion.getB2DPolyPolygon(), rMapMode)); - } - else if(rLogicRegion.getPolyPolygon()) - { - aRegion = vcl::Region(LogicToPixel(*rLogicRegion.getPolyPolygon(), rMapMode)); - } - else if(rLogicRegion.getRegionBand()) - { - RectangleVector aRectangles; - rLogicRegion.GetRegionRectangles(aRectangles); - const RectangleVector& rRectangles(aRectangles); // needed to make the '!=' work - - // make reverse run to fill new region bottom-up, this will speed it up due to the used data structuring - for(RectangleVector::const_reverse_iterator aRectIter(rRectangles.rbegin()); aRectIter != rRectangles.rend(); ++aRectIter) - { - aRegion.Union(LogicToPixel(*aRectIter, rMapMode)); - } - } - - return aRegion; -} - Point OutputDevice::PixelToLogic( const Point& rDevicePt ) const { @@ -1549,40 +1498,6 @@ basegfx::B2DPolyPolygon OutputDevice::PixelToLogic( const basegfx::B2DPolyPolygo return aTransformedPoly; } -vcl::Region OutputDevice::PixelToLogic( const vcl::Region& rDeviceRegion, const MapMode& rMapMode ) const -{ - - if(rMapMode.IsDefault() || rDeviceRegion.IsNull() || rDeviceRegion.IsEmpty()) - { - return rDeviceRegion; - } - - vcl::Region aRegion; - - if(rDeviceRegion.getB2DPolyPolygon()) - { - aRegion = vcl::Region(PixelToLogic(*rDeviceRegion.getB2DPolyPolygon(), rMapMode)); - } - else if(rDeviceRegion.getPolyPolygon()) - { - aRegion = vcl::Region(PixelToLogic(*rDeviceRegion.getPolyPolygon(), rMapMode)); - } - else if(rDeviceRegion.getRegionBand()) - { - RectangleVector aRectangles; - rDeviceRegion.GetRegionRectangles(aRectangles); - const RectangleVector& rRectangles(aRectangles); // needed to make the '!=' work - - // make reverse run to fill new region bottom-up, this will speed it up due to the used data structuring - for(RectangleVector::const_reverse_iterator aRectIter(rRectangles.rbegin()); aRectIter != rRectangles.rend(); ++aRectIter) - { - aRegion.Union(PixelToLogic(*aRectIter, rMapMode)); - } - } - - return aRegion; -} - #define ENTER1( rSource, pMapModeSource, pMapModeDest ) \ if ( !pMapModeSource ) \ pMapModeSource = &maMapMode; \ diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx index daaea0ab87f5..ecc6c8f31ed2 100644 --- a/vcl/source/outdev/outdev.cxx +++ b/vcl/source/outdev/outdev.cxx @@ -433,29 +433,6 @@ sal_uLong OutputDevice::GetColorCount() const return( ( nBitCount > 31 ) ? ULONG_MAX : ( ( (sal_uLong) 1 ) << nBitCount) ); } -css::uno::Reference< css::rendering::XCanvas > OutputDevice::GetCanvas() const -{ - css::uno::Sequence< css::uno::Any > aArg(6); - - aArg[ 0 ] = css::uno::makeAny( reinterpret_cast(this) ); - aArg[ 2 ] = css::uno::makeAny( css::awt::Rectangle( mnOutOffX, mnOutOffY, mnOutWidth, mnOutHeight ) ); - aArg[ 3 ] = css::uno::makeAny( sal_False ); - aArg[ 5 ] = GetSystemGfxDataAny(); - - css::uno::Reference xContext = comphelper::getProcessComponentContext(); - - // Create canvas instance with window handle - static css::uno::Reference xCanvasFactory( css::rendering::CanvasFactory::create( xContext ) ); - - css::uno::Reference xCanvas; - xCanvas.set( - xCanvasFactory->createInstanceWithArgumentsAndContext( - "com.sun.star.rendering.Canvas", aArg, xContext ), - css::uno::UNO_QUERY ); - - return xCanvas; -} - css::uno::Reference< css::awt::XGraphics > OutputDevice::CreateUnoGraphics() { UnoWrapperBase* pWrapper = Application::GetUnoWrapper(); diff --git a/vcl/source/outdev/transparent.cxx b/vcl/source/outdev/transparent.cxx index bc4d8228b1fc..07ff0678effe 100644 --- a/vcl/source/outdev/transparent.cxx +++ b/vcl/source/outdev/transparent.cxx @@ -113,16 +113,6 @@ Color OutputDevice::ImplDrawModeToColor( const Color& rColor ) const return aColor; } -sal_uInt16 OutputDevice::GetAlphaBitCount() const -{ - return 0; -} - -bool OutputDevice::HasAlpha() -{ - return mpAlphaVDev != nullptr; -} - void OutputDevice::ImplPrintTransparent( const Bitmap& rBmp, const Bitmap& rMask, const Point& rDestPt, const Size& rDestSize, const Point& rSrcPtPixel, const Size& rSrcSizePixel ) diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 8ecf0f4172bd..199888a1141a 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -3433,11 +3433,6 @@ void Window::DrawSelectionBackground( const Rectangle& rRect, sal_uInt16 highlig DrawSelectionBackground( rRect, highlight, bChecked, bDrawBorder, bDrawExtBorderOnly, 0, NULL, NULL ); } -void Window::DrawSelectionBackground( const Rectangle& rRect, sal_uInt16 highlight, bool bChecked, bool bDrawBorder, bool bDrawExtBorderOnly, Color* pSelectionTextColor ) -{ - DrawSelectionBackground( rRect, highlight, bChecked, bDrawBorder, bDrawExtBorderOnly, 0, pSelectionTextColor, NULL ); -} - void Window::DrawSelectionBackground( const Rectangle& rRect, sal_uInt16 highlight, bool bChecked, @@ -3872,45 +3867,6 @@ void Window::ApplySettings(vcl::RenderContext& /*rRenderContext*/) { } -void Window::DrawGradientWallpaper(vcl::RenderContext& rRenderContext, - long nX, long nY, long nWidth, long nHeight, - const Wallpaper& rWallpaper) -{ - Rectangle aBound; - GDIMetaFile* pOldMetaFile = mpMetaFile; - const bool bOldMap = mbMap; - bool bNeedGradient = true; - - aBound = Rectangle(Point(nX, nY), Size(nWidth, nHeight)); - - mpMetaFile = NULL; - rRenderContext.EnableMapMode(false); - rRenderContext.Push(PushFlags::CLIPREGION); - rRenderContext.IntersectClipRegion(Rectangle(Point(nX, nY), Size(nWidth, nHeight))); - - if (rWallpaper.GetStyle() == WALLPAPER_APPLICATIONGRADIENT) - { - // limit gradient to useful size, so that it still can be noticed - // in maximized windows - long gradientWidth = GetDesktopRectPixel().GetSize().Width(); - if (gradientWidth > 1024) - gradientWidth = 1024; - if (mnOutOffX + nWidth > gradientWidth) - rRenderContext.DrawColorWallpaper(nX, nY, nWidth, nHeight, rWallpaper.GetGradient().GetEndColor()); - if (mnOutOffX > gradientWidth) - bNeedGradient = false; - else - aBound = Rectangle(Point(-mnOutOffX, nY), Size(gradientWidth, nHeight)); - } - - if (bNeedGradient) - rRenderContext.DrawGradient(aBound, rWallpaper.GetGradient()); - - rRenderContext.Pop(); - rRenderContext.EnableMapMode(bOldMap); - mpMetaFile = pOldMetaFile; -} - const SystemEnvData* Window::GetSystemData() const { @@ -3929,21 +3885,11 @@ Any Window::GetSystemDataAny() const return aRet; } -vcl::RenderSettings& Window::GetRenderSettings() -{ - return mpWindowImpl->maRenderSettings; -} - bool Window::SupportsDoubleBuffering() const { return mpWindowImpl->mbDoubleBuffering; } -void Window::SetDoubleBuffering(bool bDoubleBuffering) -{ - mpWindowImpl->mbDoubleBuffering = bDoubleBuffering; -} - /* * The rational here is that we moved destructors to * dispose and this altered a lot of code paths, that diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx index 5d73c49bbb14..c1b31962b6a5 100644 --- a/vcl/source/window/winproc.cxx +++ b/vcl/source/window/winproc.cxx @@ -1578,7 +1578,7 @@ public: HandleSwipeEvent(vcl::Window *pWindow, const SalSwipeEvent& rEvt) : HandleGestureEvent(pWindow, Point(rEvt.mnX, rEvt.mnY)) { - m_aSwipeData = CommandSwipeData(rEvt.mnVelocityX, rEvt.mnVelocityY); + m_aSwipeData = CommandSwipeData(rEvt.mnVelocityX); } virtual bool CallCommand(vcl::Window *pWindow, const Point &/*rMousePos*/) SAL_OVERRIDE { diff --git a/vcl/unx/generic/gdi/salbmp.cxx b/vcl/unx/generic/gdi/salbmp.cxx index cc0779909822..1836ce7f7b67 100644 --- a/vcl/unx/generic/gdi/salbmp.cxx +++ b/vcl/unx/generic/gdi/salbmp.cxx @@ -859,16 +859,6 @@ bool X11SalBitmap::GetSystemData( BitmapSystemData& rData ) return false; } -bool X11SalBitmap::Crop( const Rectangle& /*rRectPixel*/ ) -{ - return false; -} - -bool X11SalBitmap::Erase( const ::Color& /*rFillColor*/ ) -{ - return false; -} - bool X11SalBitmap::Scale( const double& /*rScaleX*/, const double& /*rScaleY*/, BmpScaleFlag /*nScaleFlag*/ ) { return false; diff --git a/vcl/unx/generic/gdi/salgdi2.cxx b/vcl/unx/generic/gdi/salgdi2.cxx index d92da5a6c47e..b98d9b69cf66 100644 --- a/vcl/unx/generic/gdi/salgdi2.cxx +++ b/vcl/unx/generic/gdi/salgdi2.cxx @@ -208,13 +208,6 @@ bool X11SalGraphics::drawAlphaRect( long nX, long nY, long nWidth, return mxImpl->drawAlphaRect( nX, nY, nWidth, nHeight, nTransparency ); } -void X11SalGraphics::drawBitmap( const SalTwoRect& rRect, - const SalBitmap& rBitmap, - SalColor nColor ) -{ - mxImpl->drawBitmap( rRect, rBitmap, nColor ); -} - void X11SalGraphics::drawMask( const SalTwoRect& rPosAry, const SalBitmap &rSalBitmap, SalColor nMaskColor ) diff --git a/vcl/win/source/gdi/salbmp.cxx b/vcl/win/source/gdi/salbmp.cxx index 86656dd1d86a..42088b739ac6 100644 --- a/vcl/win/source/gdi/salbmp.cxx +++ b/vcl/win/source/gdi/salbmp.cxx @@ -1056,16 +1056,6 @@ bool WinSalBitmap::GetSystemData( BitmapSystemData& rData ) return bRet; } -bool WinSalBitmap::Crop( const Rectangle& /*rRectPixel*/ ) -{ - return false; -} - -bool WinSalBitmap::Erase( const ::Color& /*rFillColor*/ ) -{ - return false; -} - bool WinSalBitmap::Scale( const double& /*rScaleX*/, const double& /*rScaleY*/, BmpScaleFlag /*nScaleFlag*/ ) { return false; diff --git a/vcl/win/source/gdi/salgdi2.cxx b/vcl/win/source/gdi/salgdi2.cxx index f00945164f3e..64516c248569 100644 --- a/vcl/win/source/gdi/salgdi2.cxx +++ b/vcl/win/source/gdi/salgdi2.cxx @@ -74,13 +74,6 @@ void WinSalGraphics::drawBitmap(const SalTwoRect& rPosAry, const SalBitmap& rSal mpImpl->drawBitmap( rPosAry, rSalBitmap ); } -void WinSalGraphics::drawBitmap( const SalTwoRect& rPosAry, - const SalBitmap& rSSalBitmap, - SalColor nTransparentColor ) -{ - mpImpl->drawBitmap( rPosAry, rSSalBitmap, nTransparentColor ); -} - void WinSalGraphics::drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSSalBitmap, const SalBitmap& rSTransparentBitmap ) -- cgit v1.2.3