move GetXGraphic to its only user
Change-Id: I72ec4a7e72ca3355a97f987fab70b3e3a8e45168
This commit is contained in:
@@ -717,6 +717,14 @@ throw (css::lang::IllegalArgumentException, css::uno::RuntimeException)
|
||||
return false;
|
||||
}
|
||||
|
||||
namespace
|
||||
{
|
||||
css::uno::Reference< css::graphic::XGraphic > GetXGraphic(const Image &rImage)
|
||||
{
|
||||
return Graphic(rImage.GetBitmapEx()).GetXGraphic();
|
||||
}
|
||||
}
|
||||
|
||||
Sequence< uno::Reference< XGraphic > > ImageManagerImpl::getImages(
|
||||
::sal_Int16 nImageType,
|
||||
const Sequence< OUString >& aCommandURLSequence )
|
||||
@@ -759,7 +767,7 @@ throw ( css::lang::IllegalArgumentException, css::uno::RuntimeException )
|
||||
aImage = rGlobalImageList->getImageFromCommandURL( nIndex, aStrArray[n] );
|
||||
}
|
||||
|
||||
aGraphSeq[n] = aImage.GetXGraphic();
|
||||
aGraphSeq[n] = GetXGraphic(aImage);
|
||||
}
|
||||
|
||||
return aGraphSeq;
|
||||
@@ -909,7 +917,7 @@ throw ( css::lang::IllegalArgumentException,
|
||||
{
|
||||
if ( !pReplacedImages )
|
||||
pReplacedImages = new CmdToXGraphicNameAccess();
|
||||
pReplacedImages->addElement( aCommandURLSequence[i], aNewImage.GetXGraphic() );
|
||||
pReplacedImages->addElement(aCommandURLSequence[i], GetXGraphic(aNewImage));
|
||||
}
|
||||
} // if ( m_bUseGlobal )
|
||||
else
|
||||
@@ -1013,14 +1021,14 @@ void ImageManagerImpl::reload()
|
||||
if ( !pReplacedImages )
|
||||
pReplacedImages = new CmdToXGraphicNameAccess();
|
||||
pReplacedImages->addElement( aNewUserCmdImageSet[j],
|
||||
pImageList->GetImage( aNewUserCmdImageSet[j] ).GetXGraphic() );
|
||||
GetXGraphic(pImageList->GetImage(aNewUserCmdImageSet[j])) );
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( !pInsertedImages )
|
||||
pInsertedImages = new CmdToXGraphicNameAccess();
|
||||
pInsertedImages->addElement( aNewUserCmdImageSet[j],
|
||||
pImageList->GetImage( aNewUserCmdImageSet[j] ).GetXGraphic() );
|
||||
GetXGraphic(pImageList->GetImage(aNewUserCmdImageSet[j])) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1058,7 +1066,7 @@ void ImageManagerImpl::reload()
|
||||
// Image has been found in the module/global image list => replace user image
|
||||
if ( !pReplacedImages )
|
||||
pReplacedImages = new CmdToXGraphicNameAccess();
|
||||
pReplacedImages->addElement( pIter->first, aImage.GetXGraphic() );
|
||||
pReplacedImages->addElement(pIter->first, GetXGraphic(aImage));
|
||||
}
|
||||
} // if ( m_bUseGlobal )
|
||||
else
|
||||
|
@@ -65,7 +65,6 @@ public:
|
||||
Size GetSizePixel() const;
|
||||
|
||||
BitmapEx GetBitmapEx() const;
|
||||
css::uno::Reference< css::graphic::XGraphic > GetXGraphic() const;
|
||||
|
||||
bool operator!() const { return !mpImplData; }
|
||||
bool operator==( const Image& rImage ) const;
|
||||
|
@@ -201,19 +201,19 @@ uno::Reference< ::graphic::XGraphic > GraphicProvider::implLoadStandardImage( co
|
||||
OUString sImageName( rResourceURL.copy( nIndex ) );
|
||||
if ( sImageName == "info" )
|
||||
{
|
||||
xRet = InfoBox::GetStandardImage().GetXGraphic();
|
||||
xRet = Graphic(InfoBox::GetStandardImage().GetBitmapEx()).GetXGraphic();
|
||||
}
|
||||
else if ( sImageName == "warning" )
|
||||
{
|
||||
xRet = WarningBox::GetStandardImage().GetXGraphic();
|
||||
xRet = Graphic(WarningBox::GetStandardImage().GetBitmapEx()).GetXGraphic();
|
||||
}
|
||||
else if ( sImageName == "error" )
|
||||
{
|
||||
xRet = ErrorBox::GetStandardImage().GetXGraphic();
|
||||
xRet = Graphic(ErrorBox::GetStandardImage().GetBitmapEx()).GetXGraphic();
|
||||
}
|
||||
else if ( sImageName == "query" )
|
||||
{
|
||||
xRet = QueryBox::GetStandardImage().GetXGraphic();
|
||||
xRet = Graphic(QueryBox::GetStandardImage().GetBitmapEx()).GetXGraphic();
|
||||
}
|
||||
}
|
||||
return xRet;
|
||||
|
@@ -873,7 +873,7 @@ throw (css::uno::RuntimeException, std::exception)
|
||||
{
|
||||
Image aImage = mpMenu->GetItemImage( nItemId );
|
||||
if ( !!aImage )
|
||||
rxGraphic = aImage.GetXGraphic();
|
||||
rxGraphic = Graphic(aImage.GetBitmapEx()).GetXGraphic();
|
||||
}
|
||||
return rxGraphic;
|
||||
}
|
||||
|
@@ -294,7 +294,7 @@ css::uno::Any VCLXGraphicControl::getProperty( const OUString& PropertyName ) th
|
||||
switch ( nPropType )
|
||||
{
|
||||
case BASEPROPERTY_GRAPHIC:
|
||||
aProp <<= maImage.GetXGraphic();
|
||||
aProp <<= Graphic(maImage.GetBitmapEx()).GetXGraphic();
|
||||
break;
|
||||
case BASEPROPERTY_IMAGEALIGN:
|
||||
{
|
||||
|
@@ -110,13 +110,6 @@ BitmapEx Image::GetBitmapEx() const
|
||||
return aRet;
|
||||
}
|
||||
|
||||
css::uno::Reference< css::graphic::XGraphic > Image::GetXGraphic() const
|
||||
{
|
||||
const Graphic aGraphic( GetBitmapEx() );
|
||||
|
||||
return aGraphic.GetXGraphic();
|
||||
}
|
||||
|
||||
bool Image::operator==(const Image& rImage) const
|
||||
{
|
||||
bool bRet = false;
|
||||
|
Reference in New Issue
Block a user