Remove unused vcl methods.
This commit is contained in:
committed by
Muthu Subramanian
parent
2910933f26
commit
d31aae4c9e
@@ -27,10 +27,6 @@ Matrix3d::Inverse() const
|
|||||||
Matrix3d::Matrix3d()
|
Matrix3d::Matrix3d()
|
||||||
PopupMenu::SetSelectedEntry(unsigned short)
|
PopupMenu::SetSelectedEntry(unsigned short)
|
||||||
PropBrwMgr::GetChildWindowId()
|
PropBrwMgr::GetChildWindowId()
|
||||||
SalGraphics::DrawBitmap(SalTwoRect const*, SalBitmap const&, unsigned int, OutputDevice const*)
|
|
||||||
SalGraphics::drawAlphaBitmap(SalTwoRect const&, SalBitmap const&, SalBitmap const&)
|
|
||||||
SalGraphics::drawPolyLine(basegfx::B2DPolygon const&, double, basegfx::B2DVector const&, basegfx::B2DLineJoin)
|
|
||||||
SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const&, double)
|
|
||||||
SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
|
SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
|
||||||
SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char)
|
SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char)
|
||||||
ScAddInAsyncs::Insert(ScAddInAsync* const&, unsigned short&)
|
ScAddInAsyncs::Insert(ScAddInAsync* const&, unsigned short&)
|
||||||
|
@@ -403,10 +403,6 @@ public:
|
|||||||
void DrawBitmap( const SalTwoRect* pPosAry,
|
void DrawBitmap( const SalTwoRect* pPosAry,
|
||||||
const SalBitmap& rSalBitmap,
|
const SalBitmap& rSalBitmap,
|
||||||
const OutputDevice *pOutDev );
|
const OutputDevice *pOutDev );
|
||||||
void DrawBitmap( const SalTwoRect* pPosAry,
|
|
||||||
const SalBitmap& rSalBitmap,
|
|
||||||
SalColor nTransparentColor,
|
|
||||||
const OutputDevice *pOutDev );
|
|
||||||
void DrawBitmap( const SalTwoRect* pPosAry,
|
void DrawBitmap( const SalTwoRect* pPosAry,
|
||||||
const SalBitmap& rSalBitmap,
|
const SalBitmap& rSalBitmap,
|
||||||
const SalBitmap& rTransparentBitmap,
|
const SalBitmap& rTransparentBitmap,
|
||||||
|
@@ -91,14 +91,6 @@ SalGraphics::~SalGraphics()
|
|||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
bool SalGraphics::drawAlphaBitmap( const SalTwoRect&,
|
|
||||||
const SalBitmap&, const SalBitmap& )
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
void SalGraphics::mirror( long& x, const OutputDevice *pOutDev, bool bBack ) const
|
void SalGraphics::mirror( long& x, const OutputDevice *pOutDev, bool bBack ) const
|
||||||
{
|
{
|
||||||
long w;
|
long w;
|
||||||
@@ -411,14 +403,6 @@ void SalGraphics::DrawRect( long nX, long nY, long nWidth, long nHeight, cons
|
|||||||
mirror( nX, nWidth, pOutDev );
|
mirror( nX, nWidth, pOutDev );
|
||||||
drawRect( nX, nY, nWidth, nHeight );
|
drawRect( nX, nY, nWidth, nHeight );
|
||||||
}
|
}
|
||||||
bool SalGraphics::drawPolyLine(
|
|
||||||
const basegfx::B2DPolygon& /*rPolyPolygon*/,
|
|
||||||
double /*fTransparency*/,
|
|
||||||
const basegfx::B2DVector& /*rLineWidths*/,
|
|
||||||
basegfx::B2DLineJoin /*eLineJoin*/)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void SalGraphics::DrawPolyLine( sal_uLong nPoints, const SalPoint* pPtAry, const OutputDevice *pOutDev )
|
void SalGraphics::DrawPolyLine( sal_uLong nPoints, const SalPoint* pPtAry, const OutputDevice *pOutDev )
|
||||||
{
|
{
|
||||||
@@ -483,11 +467,6 @@ bool SalGraphics::DrawPolyPolygon( const ::basegfx::B2DPolyPolygon& i_rPolyPolyg
|
|||||||
return bRet;
|
return bRet;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SalGraphics::drawPolyPolygon( const ::basegfx::B2DPolyPolygon&, double /*fTransparency*/)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
sal_Bool SalGraphics::DrawPolyLineBezier( sal_uLong nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry, const OutputDevice* pOutDev )
|
sal_Bool SalGraphics::DrawPolyLineBezier( sal_uLong nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry, const OutputDevice* pOutDev )
|
||||||
{
|
{
|
||||||
sal_Bool bResult = sal_False;
|
sal_Bool bResult = sal_False;
|
||||||
@@ -600,19 +579,6 @@ void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
|
|||||||
else
|
else
|
||||||
drawBitmap( pPosAry, rSalBitmap );
|
drawBitmap( pPosAry, rSalBitmap );
|
||||||
}
|
}
|
||||||
void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
|
|
||||||
const SalBitmap& rSalBitmap,
|
|
||||||
SalColor nTransparentColor, const OutputDevice *pOutDev )
|
|
||||||
{
|
|
||||||
if( (m_nLayout & SAL_LAYOUT_BIDI_RTL) || (pOutDev && pOutDev->IsRTLEnabled()) )
|
|
||||||
{
|
|
||||||
SalTwoRect pPosAry2 = *pPosAry;
|
|
||||||
mirror( pPosAry2.mnDestX, pPosAry2.mnDestWidth, pOutDev );
|
|
||||||
drawBitmap( &pPosAry2, rSalBitmap, nTransparentColor );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
drawBitmap( pPosAry, rSalBitmap, nTransparentColor );
|
|
||||||
}
|
|
||||||
void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
|
void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry,
|
||||||
const SalBitmap& rSalBitmap,
|
const SalBitmap& rSalBitmap,
|
||||||
const SalBitmap& rTransparentBitmap, const OutputDevice *pOutDev )
|
const SalBitmap& rTransparentBitmap, const OutputDevice *pOutDev )
|
||||||
|
Reference in New Issue
Block a user