Lines Matching refs:rGraphic
83 const Graphic& rGraphic = rObj.GetGraphic(); in GraphicID() local
85 mnID1 = ( (sal_uLong) rGraphic.GetType() ) << 28; in GraphicID()
87 switch( rGraphic.GetType() ) in GraphicID()
91 if(rGraphic.getSvgData().get()) in GraphicID()
93 const SvgDataPtr& rSvgDataPtr = rGraphic.getSvgData(); in GraphicID()
101 else if( rGraphic.IsAnimated() ) in GraphicID()
103 const Animation aAnimation( rGraphic.GetAnimation() ); in GraphicID()
108 mnID4 = rGraphic.GetChecksum(); in GraphicID()
112 const BitmapEx aBmpEx( rGraphic.GetBitmapEx() ); in GraphicID()
117 mnID4 = rGraphic.GetChecksum(); in GraphicID()
124 const GDIMetaFile aMtf( rGraphic.GetGDIMetaFile() ); in GraphicID()
129 mnID4 = rGraphic.GetChecksum(); in GraphicID()
235 const Graphic& rGraphic = rObj.GetGraphic(); in ImplInit() local
246 switch( rGraphic.GetType() ) in ImplInit()
250 if(rGraphic.getSvgData().get()) in ImplInit()
252 maSvgData = rGraphic.getSvgData(); in ImplInit()
254 else if( rGraphic.IsAnimated() ) in ImplInit()
256 mpAnimation = new Animation( rGraphic.GetAnimation() ); in ImplInit()
260 mpBmpEx = new BitmapEx( rGraphic.GetBitmapEx() ); in ImplInit()
267 mpMtf = new GDIMetaFile( rGraphic.GetGDIMetaFile() ); in ImplInit()
276 if( rGraphic.IsLink() ) in ImplInit()
277 maGfxLink = ( (Graphic&) rGraphic ).GetLink(); in ImplInit()
529 const Graphic& rGraphic = rObj.GetGraphic(); in GetNeededSize() local
530 const GraphicType eType = rGraphic.GetType(); in GetNeededSize()
557 nNeededSize = rGraphic.GetSizeBytes(); in GetNeededSize()