| /AOO41X/main/oox/source/vml/ |
| H A D | vmlshape.cxx | 69 Point lclGetAbsPoint( const Point& rRelPoint, const Rectangle& rShapeRect, const Rectangle& rCoordS… in lclGetAbsPoint() argument 71 double fWidthRatio = static_cast< double >( rShapeRect.Width ) / rCoordSys.Width; in lclGetAbsPoint() 72 double fHeightRatio = static_cast< double >( rShapeRect.Height ) / rCoordSys.Height; in lclGetAbsPoint() 74 …aAbsPoint.X = static_cast< sal_Int32 >( rShapeRect.X + fWidthRatio * (rRelPoint.X - rCoordSys.X) +… in lclGetAbsPoint() 75 …aAbsPoint.Y = static_cast< sal_Int32 >( rShapeRect.Y + fHeightRatio * (rRelPoint.Y - rCoordSys.Y) … in lclGetAbsPoint() 79 Rectangle lclGetAbsRect( const Rectangle& rRelRect, const Rectangle& rShapeRect, const Rectangle& r… in lclGetAbsRect() argument 81 double fWidthRatio = static_cast< double >( rShapeRect.Width ) / rCoordSys.Width; in lclGetAbsRect() 82 double fHeightRatio = static_cast< double >( rShapeRect.Height ) / rCoordSys.Height; in lclGetAbsRect() 84 …aAbsRect.X = static_cast< sal_Int32 >( rShapeRect.X + fWidthRatio * (rRelRect.X - rCoordSys.X) + 0… in lclGetAbsRect() 85 …aAbsRect.Y = static_cast< sal_Int32 >( rShapeRect.Y + fHeightRatio * (rRelRect.Y - rCoordSys.Y) + … in lclGetAbsRect() [all …]
|
| H A D | vmldrawing.cxx | 206 const Reference< XShapes >& rxShapes, const Rectangle& rShapeRect ) const in createAndInsertXShape() 217 xShape->setPosition( Point( rShapeRect.X, rShapeRect.Y ) ); in createAndInsertXShape() 218 xShape->setSize( Size( rShapeRect.Width, rShapeRect.Height ) ); in createAndInsertXShape() 228 … const Reference< XShapes >& rxShapes, const Rectangle& rShapeRect, sal_Int32& rnCtrlIndex ) const in createAndInsertXControlShape() argument 237 …ateAndInsertXShape( CREATE_OUSTRING( "com.sun.star.drawing.ControlShape" ), rxShapes, rShapeRect ); in createAndInsertXControlShape()
|
| /AOO41X/main/oox/source/xls/ |
| H A D | drawingmanager.cxx | 987 const Reference< XShapes >& rxShapes, const Rectangle& rShapeRect ) const in implConvertAndInsert() 992 …reateAndInsertXShape( CREATE_OUSTRING( "com.sun.star.drawing.GroupShape" ), rxShapes, rShapeRect ); in implConvertAndInsert() 994 maChildren.convertAndInsert( rDrawing, xChildShapes, &rShapeRect ); in implConvertAndInsert() 1041 const Reference< XShapes >& rxShapes, const Rectangle& rShapeRect ) const in implConvertAndInsert() 1051 sal_Int32 nL = rShapeRect.X; in implConvertAndInsert() 1052 sal_Int32 nT = rShapeRect.Y; in implConvertAndInsert() 1053 sal_Int32 nR = rShapeRect.X + ::std::max< sal_Int32 >( rShapeRect.Width - 1, 0 ); in implConvertAndInsert() 1054 sal_Int32 nB = rShapeRect.Y + ::std::max< sal_Int32 >( rShapeRect.Height - 1, 0 ); in implConvertAndInsert() 1067 …createAndInsertXShape( CREATE_OUSTRING( "com.sun.star.drawing.LineShape" ), rxShapes, rShapeRect ); in implConvertAndInsert() 1113 const Reference< XShapes >& rxShapes, const Rectangle& rShapeRect ) const in implConvertAndInsert() [all …]
|
| H A D | worksheethelper.cxx | 311 void extendShapeBoundingBox( const Rectangle& rShapeRect ); 776 void WorksheetGlobals::extendShapeBoundingBox( const Rectangle& rShapeRect ) in extendShapeBoundingBox() argument 781 maShapeBoundingBox = rShapeRect; in extendShapeBoundingBox() 785 …X = ::std::max( maShapeBoundingBox.X + maShapeBoundingBox.Width, rShapeRect.X + rShapeRect.Width ); in extendShapeBoundingBox() 786 …= ::std::max( maShapeBoundingBox.Y + maShapeBoundingBox.Height, rShapeRect.Y + rShapeRect.Height ); in extendShapeBoundingBox() 787 maShapeBoundingBox.X = ::std::min( maShapeBoundingBox.X, rShapeRect.X ); in extendShapeBoundingBox() 788 maShapeBoundingBox.Y = ::std::min( maShapeBoundingBox.Y, rShapeRect.Y ); in extendShapeBoundingBox() 1628 void WorksheetHelper::extendShapeBoundingBox( const Rectangle& rShapeRect ) in extendShapeBoundingBox() argument 1630 mrSheetGlob.extendShapeBoundingBox( rShapeRect ); in extendShapeBoundingBox()
|
| H A D | drawingfragment.cxx | 436 const Reference< XShapes >& rxShapes, const Rectangle& rShapeRect ) const in createAndInsertClientXShape() 443 Rectangle aShapeRect = rShapeRect; in createAndInsertClientXShape() 613 const Rectangle& rShapeRect, const ::oox::vml::ShapeBase& rShape, bool bGroupChild ) in notifyXShapeInserted() argument 617 extendShapeBoundingBox( rShapeRect ); in notifyXShapeInserted()
|
| /AOO41X/main/oox/inc/oox/xls/ |
| H A D | drawingmanager.hxx | 221 const ::com::sun::star::awt::Rectangle& rShapeRect ) const = 0; 267 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 293 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 320 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 354 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 375 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 398 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 424 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 475 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 481 const ::com::sun::star::awt::Rectangle& rShapeRect ) = 0; [all …]
|
| H A D | drawingfragment.hxx | 183 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 188 const ::com::sun::star::awt::Rectangle& rShapeRect,
|
| H A D | worksheethelper.hxx | 292 … void extendShapeBoundingBox( const ::com::sun::star::awt::Rectangle& rShapeRect );
|
| /AOO41X/main/oox/inc/oox/vml/ |
| H A D | vmlshape.hxx | 233 const ::com::sun::star::awt::Rectangle& rShapeRect ) const = 0; 261 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 298 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 314 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 331 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 361 const ::com::sun::star::awt::Rectangle& rShapeRect ) const;
|
| H A D | vmldrawing.hxx | 148 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 156 const ::com::sun::star::awt::Rectangle& rShapeRect, 178 const ::com::sun::star::awt::Rectangle& rShapeRect ) const; 186 const ::com::sun::star::awt::Rectangle& rShapeRect,
|
| /AOO41X/main/oox/source/drawingml/ |
| H A D | shape.cxx | 551 …izeServiceName( XmlFilterBase& rFilter, const OUString& rServiceName, const Rectangle& rShapeRect ) in finalizeServiceName() argument 558 Size aOleSize( rShapeRect.Width, rShapeRect.Height ); in finalizeServiceName()
|
| /AOO41X/main/oox/inc/oox/drawingml/ |
| H A D | shape.hxx | 168 const ::com::sun::star::awt::Rectangle& rShapeRect );
|