Searched refs:aGraphCrop (Results 1 – 3 of 3) sorted by relevance
416 text::GraphicCrop aGraphCrop; in createShape() local417 if( getPropertyValue( aGraphCrop, xPropSet, OUSTR("GraphicCrop") )) in createShape()419 aGraphAttrs.SetCrop( aGraphCrop.Left, in createShape()420 aGraphCrop.Top, in createShape()421 aGraphCrop.Right, in createShape()422 aGraphCrop.Bottom ); in createShape()
377 text::GraphicCrop aGraphCrop( 0, 0, 0, 0 ); in pushToPropMap() local379 …aGraphCrop.Left = static_cast< sal_Int32 >( ( static_cast< double >( aOriginalSize.Width ) * oClip… in pushToPropMap()381 …aGraphCrop.Top = static_cast< sal_Int32 >( ( static_cast< double >( aOriginalSize.Height ) * oClip… in pushToPropMap()383 …aGraphCrop.Right = static_cast< sal_Int32 >( ( static_cast< double >( aOriginalSize.Width ) * oCli… in pushToPropMap()385 …aGraphCrop.Bottom = static_cast< sal_Int32 >( ( static_cast< double >( aOriginalSize.Height ) * oC… in pushToPropMap()386 rPropMap[ PROP_GraphicCrop ] <<= aGraphCrop; in pushToPropMap()
1239 ::com::sun::star::text::GraphicCrop aGraphCrop; in ImplCreateGraphicAttributes()1240 if ( aAny >>= aGraphCrop ) in ImplCreateGraphicAttributes()1242 if ( aGraphCrop.Left ) in ImplCreateGraphicAttributes()1244 sal_uInt32 nLeft = ( aGraphCrop.Left * 65536 ) / aCropSize.Width(); in ImplCreateGraphicAttributes()1247 if ( aGraphCrop.Top ) in ImplCreateGraphicAttributes()1249 sal_uInt32 nTop = ( aGraphCrop.Top * 65536 ) / aCropSize.Height(); in ImplCreateGraphicAttributes()1252 if ( aGraphCrop.Right ) in ImplCreateGraphicAttributes()1254 sal_uInt32 nRight = ( aGraphCrop.Right * 65536 ) / aCropSize.Width(); in ImplCreateGraphicAttributes()1257 if ( aGraphCrop.Bottom ) in ImplCreateGraphicAttributes()1259 sal_uInt32 nBottom = ( aGraphCrop.Bottom * 65536 ) / aCropSize.Height(); in ImplCreateGraphicAttributes()
Completed in 145 milliseconds