Home
last modified time | relevance | path

Searched refs:xBmp (Results 1 – 10 of 10) sorted by relevance

/trunk/main/vcl/test/
H A Dcanvasbitmaptest.cxx159 void checkCanvasBitmap( const rtl::Reference<VclCanvasBitmap>& xBmp, in checkCanvasBitmap() argument
166 BitmapEx aContainedBmpEx( xBmp->getBitmapEx() ); in checkCanvasBitmap()
179 test( xBmp->getSize().Width == 200 && xBmp->getSize().Height == 200, in checkCanvasBitmap()
182 test( xBmp->hasAlpha() == aContainedBmpEx.IsTransparent(), in checkCanvasBitmap()
185 test( xBmp->getScaledBitmap( geometry::RealSize2D(500,500), sal_False ).is(), in checkCanvasBitmap()
189 …uno::Sequence<sal_Int8> aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,1,1)); in checkCanvasBitmap()
209 uno::Sequence<sal_Int8> aPixelData2 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(0,0) ); in checkCanvasBitmap()
214 aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,200,1)); in checkCanvasBitmap()
223 uno::Sequence< rendering::RGBColor > aRGBColors = xBmp->convertIntegerToRGB( aPixelData ); in checkCanvasBitmap()
224 uno::Sequence< rendering::ARGBColor > aARGBColors = xBmp->convertIntegerToARGB( aPixelData ); in checkCanvasBitmap()
[all …]
/trunk/main/svx/source/xoutdev/
H A Dxattrbmp.cxx322 ::com::sun::star::uno::Reference< ::com::sun::star::awt::XBitmap > xBmp; in QueryValue()
342 xBmp.set(VCLUnoHelper::CreateBitmap(GetGraphicObject().GetGraphic().GetBitmapEx())); in QueryValue()
350 rVal <<= xBmp; in QueryValue()
362 aPropSeq[2].Value = uno::makeAny( xBmp ); in QueryValue()
378 ::com::sun::star::uno::Reference< ::com::sun::star::awt::XBitmap > xBmp; in PutValue()
391 bSetBitmap = (rVal >>= xBmp); in PutValue()
408 bSetBitmap = (aPropSeq[n].Value >>= xBmp); in PutValue()
429 if(xBmp.is()) in PutValue()
431 maGraphicObject = Graphic(VCLUnoHelper::GetBitmap(xBmp)); in PutValue()
/trunk/main/toolkit/source/awt/
H A Dvclxdevice.cxx224 ::com::sun::star::uno::Reference< ::com::sun::star::awt::XBitmap > xBmp; in createBitmap()
231 xBmp = pBmp; in createBitmap()
233 return xBmp; in createBitmap()
/trunk/main/editeng/source/uno/
H A Dunonrule.cxx379 Reference< awt::XBitmap > xBmp; in setNumberingRuleByIndex() local
380 if( aVal >>= xBmp ) in setNumberingRuleByIndex()
382 Graphic aGraf( VCLUnoHelper::GetBitmap( xBmp ) ); in setNumberingRuleByIndex()
/trunk/main/toolkit/source/helper/
H A Dvclunohelper.cxx115 …::com::sun::star::uno::Reference< ::com::sun::star::awt::XBitmap> xBmp( aGraphic.GetXGraphic(), ::… in CreateBitmap()
116 return xBmp; in CreateBitmap()
/trunk/main/svx/source/unodraw/
H A Dunoshap2.cxx1681 Reference< awt::XBitmap > xBmp( rValue, UNO_QUERY ); in setPropertyValueImpl() local
1682 if( xBmp.is() ) in setPropertyValueImpl()
1685 Graphic aGraphic(VCLUnoHelper::GetBitmap( xBmp )); in setPropertyValueImpl()
H A Dunoshape.cxx772 Reference< awt::XBitmap > xBmp( aGraph.GetXGraphic(), UNO_QUERY ); in GetBitmap() local
773 aAny <<= xBmp; in GetBitmap()
2820 Reference< awt::XBitmap > xBmp( VCLUnoHelper::CreateBitmap( aBmp ) ); in getPropertyValueImpl() local
2822 rValue <<= xBmp; in getPropertyValueImpl()
/trunk/main/sw/source/core/unocore/
H A Dunosett.cxx1655 … uno::Reference<awt::XBitmap> xBmp = VCLUnoHelper::CreateBitmap( pGraphic->GetBitmapEx() ); in GetNumberingRuleByIndex() local
1656 pData = new PropValData((void*)&xBmp, SW_PROP_NAME_STR(UNO_NAME_GRAPHIC_BITMAP), in GetNumberingRuleByIndex()
/trunk/main/filter/source/msfilter/
H A Descherex.cxx1511 ::com::sun::star::uno::Reference< ::com::sun::star::awt::XBitmap > xBmp; in CreateGraphicProperties()
1512 if ( aAny >>= xBmp ) in CreateGraphicProperties()
1514 BitmapEx aBitmapEx( VCLUnoHelper::GetBitmap( xBmp ) ); in CreateGraphicProperties()
/trunk/main/sw/source/ui/uno/
H A Dunotxdoc.cxx3968 Reference<awt::XBitmap> xBmp = VCLUnoHelper::CreateBitmap( aBitmap ); in lcl_GetDisplayBitmap() local
3969 aRet.setValue( &xBmp, ::getCppuType((Reference<awt::XBitmap>*)0) ); in lcl_GetDisplayBitmap()