Lines Matching refs:rImpGraphic

144 ImpGraphic::ImpGraphic( const ImpGraphic& rImpGraphic ) :  in ImpGraphic()  argument
145 maMetaFile ( rImpGraphic.maMetaFile ), in ImpGraphic()
146 maEx ( rImpGraphic.maEx ), in ImpGraphic()
148 mpSwapFile ( rImpGraphic.mpSwapFile ), in ImpGraphic()
149 meType ( rImpGraphic.meType ), in ImpGraphic()
150 maDocFileURLStr ( rImpGraphic.maDocFileURLStr ), in ImpGraphic()
151 mnDocFilePos ( rImpGraphic.mnDocFilePos ), in ImpGraphic()
152 mnSizeBytes ( rImpGraphic.mnSizeBytes ), in ImpGraphic()
154 mbSwapOut ( rImpGraphic.mbSwapOut ), in ImpGraphic()
160 if( rImpGraphic.mpGfxLink ) in ImpGraphic()
161 mpGfxLink = new GfxLink( *rImpGraphic.mpGfxLink ); in ImpGraphic()
165 if( rImpGraphic.mpAnimation ) in ImpGraphic()
167 mpAnimation = new Animation( *rImpGraphic.mpAnimation ); in ImpGraphic()
173 maSvgData = rImpGraphic.maSvgData; in ImpGraphic()
273 ImpGraphic& ImpGraphic::operator=( const ImpGraphic& rImpGraphic ) in operator =() argument
275 if( &rImpGraphic != this ) in operator =()
280 maMetaFile = rImpGraphic.maMetaFile; in operator =()
281 meType = rImpGraphic.meType; in operator =()
282 mnSizeBytes = rImpGraphic.mnSizeBytes; in operator =()
286 if ( rImpGraphic.mpAnimation ) in operator =()
288 mpAnimation = new Animation( *rImpGraphic.mpAnimation ); in operator =()
294 maEx = rImpGraphic.maEx; in operator =()
299 maDocFileURLStr = rImpGraphic.maDocFileURLStr; in operator =()
300 mnDocFilePos = rImpGraphic.mnDocFilePos; in operator =()
301 mbSwapOut = rImpGraphic.mbSwapOut; in operator =()
302 mpSwapFile = rImpGraphic.mpSwapFile; in operator =()
310 if( rImpGraphic.mpGfxLink ) in operator =()
311 mpGfxLink = new GfxLink( *rImpGraphic.mpGfxLink ); in operator =()
315 maSvgData = rImpGraphic.maSvgData; in operator =()
323 sal_Bool ImpGraphic::operator==( const ImpGraphic& rImpGraphic ) const in operator ==()
327 if( this == &rImpGraphic ) in operator ==()
329 else if( !ImplIsSwapOut() && ( rImpGraphic.meType == meType ) ) in operator ==()
339 if( rImpGraphic.maMetaFile == maMetaFile ) in operator ==()
348 if(maSvgData == rImpGraphic.maSvgData) in operator ==()
352 else if(rImpGraphic.maSvgData) in operator ==()
354 … if(maSvgData->getSvgDataArrayLength() == rImpGraphic.maSvgData->getSvgDataArrayLength()) in operator ==()
358 rImpGraphic.maSvgData->getSvgDataArray().get(), in operator ==()
368 if( rImpGraphic.mpAnimation && ( *rImpGraphic.mpAnimation == *mpAnimation ) ) in operator ==()
371 else if( !rImpGraphic.mpAnimation && ( rImpGraphic.maEx == maEx ) ) in operator ==()
1730 SvStream& operator>>( SvStream& rIStm, ImpGraphic& rImpGraphic ) in operator >>() argument
1737 if ( !rImpGraphic.mbSwapUnderway ) in operator >>()
1738 rImpGraphic.ImplClear(); in operator >>()
1768 const sal_Bool bSetLink = ( rImpGraphic.mpGfxLink == NULL ); in operator >>()
1771 rImpGraphic = *aGraphic.ImplGetImpGraphic(); in operator >>()
1774 rImpGraphic.ImplSetPrefMapMode( aLink.GetPrefMapMode() ); in operator >>()
1777 rImpGraphic.ImplSetPrefSize( aLink.GetPrefSize() ); in operator >>()
1780 rImpGraphic.ImplSetLink( aLink ); in operator >>()
1805 rImpGraphic = ImpGraphic( aBmpEx ); in operator >>()
1809 delete rImpGraphic.mpAnimation; in operator >>()
1810 rImpGraphic.mpAnimation = new Animation; in operator >>()
1811 rIStm >> *rImpGraphic.mpAnimation; in operator >>()
1815 rImpGraphic.mpAnimation->SetBitmapEx(aBmpEx); in operator >>()
1830 rImpGraphic = aMtf; in operator >>()
1863 rImpGraphic = aSvgDataPtr; in operator >>()
1882 SvStream& operator<<( SvStream& rOStm, const ImpGraphic& rImpGraphic ) in operator <<() argument
1886 if( !rImpGraphic.ImplIsSwapOut() ) in operator <<()
1890 rImpGraphic.mpGfxLink && rImpGraphic.mpGfxLink->IsNative() ) in operator <<()
1901 rImpGraphic.mpGfxLink->SetPrefMapMode( rImpGraphic.ImplGetPrefMapMode() ); in operator <<()
1902 rImpGraphic.mpGfxLink->SetPrefSize( rImpGraphic.ImplGetPrefSize() ); in operator <<()
1903 rOStm << *rImpGraphic.mpGfxLink; in operator <<()
1911 switch( rImpGraphic.ImplGetType() ) in operator <<()
1919 if(rImpGraphic.getSvgData().get()) in operator <<()
1928 rOStm << rImpGraphic.getSvgData()->getSvgDataArrayLength(); in operator <<()
1929 …rOStm.Write(rImpGraphic.getSvgData()->getSvgDataArray().get(), rImpGraphic.getSvgData()->getSvgDat… in operator <<()
1930 rOStm.WriteByteString(rImpGraphic.getSvgData()->getPath()); in operator <<()
1932 else if( rImpGraphic.ImplIsAnimated()) in operator <<()
1934 rOStm << *rImpGraphic.mpAnimation; in operator <<()
1938 WriteDIBBitmapEx(rImpGraphic.maEx, rOStm); in operator <<()
1945 if( rImpGraphic.ImplIsSupportedGraphic() ) in operator <<()
1946 rOStm << rImpGraphic.maMetaFile; in operator <<()