Lines Matching refs:mpAnimation

129 		mpAnimation		( NULL ),  in ImpGraphic()
165 if( rImpGraphic.mpAnimation ) in ImpGraphic()
167 mpAnimation = new Animation( *rImpGraphic.mpAnimation ); in ImpGraphic()
168 maEx = mpAnimation->GetBitmapEx(); in ImpGraphic()
171 mpAnimation = NULL; in ImpGraphic()
180 mpAnimation ( NULL ), in ImpGraphic()
197 mpAnimation ( NULL ), in ImpGraphic()
213 : mpAnimation( NULL ), in ImpGraphic()
231 mpAnimation ( new Animation( rAnimation ) ), in ImpGraphic()
248 mpAnimation ( NULL ), in ImpGraphic()
284 delete mpAnimation; in operator =()
286 if ( rImpGraphic.mpAnimation ) in operator =()
288 mpAnimation = new Animation( *rImpGraphic.mpAnimation ); in operator =()
289 maEx = mpAnimation->GetBitmapEx(); in operator =()
293 mpAnimation = NULL; in operator =()
366 else if( mpAnimation ) in operator ==()
368 if( rImpGraphic.mpAnimation && ( *rImpGraphic.mpAnimation == *mpAnimation ) ) in operator ==()
371 else if( !rImpGraphic.mpAnimation && ( rImpGraphic.maEx == maEx ) ) in operator ==()
399 if( mpAnimation ) in ImplClearGraphics()
401 mpAnimation->Clear(); in ImplClearGraphics()
402 delete mpAnimation; in ImplClearGraphics()
403 mpAnimation = NULL; in ImplClearGraphics()
492 bRet = ( mpAnimation ? mpAnimation->IsTransparent() : maEx.IsTransparent() ); in ImplIsTransparent()
510 bRet = ( NULL == mpAnimation ) && maEx.IsAlpha(); in ImplIsAlpha()
520 return( mpAnimation != NULL ); in ImplIsAnimated()
546 const BitmapEx& rRetBmpEx = ( mpAnimation ? mpAnimation->GetBitmapEx() : maEx ); in ImplGetBitmap()
656 aRetBmpEx = ( mpAnimation ? mpAnimation->GetBitmapEx() : maEx ); in ImplGetBitmapEx()
687 if( mpAnimation ) in ImplGetAnimation()
688 aAnimation = *mpAnimation; in ImplGetAnimation()
806 const_cast< BitmapEx& >(mpAnimation->GetBitmapEx()).SetPrefSize( rPrefSize ); in ImplSetPrefSize()
890 … const_cast< BitmapEx& >(mpAnimation->GetBitmapEx()).SetPrefMapMode( rPrefMapMode ); in ImplSetPrefMapMode()
921 mnSizeBytes = mpAnimation ? mpAnimation->GetSizeBytes() : maEx.GetSizeBytes(); in ImplGetSizeBytes()
952 if ( mpAnimation ) in ImplDraw()
954 mpAnimation->Draw( pOutDev, rDestPt ); in ImplDraw()
990 if( mpAnimation ) in ImplDraw()
992 mpAnimation->Draw( pOutDev, rDestPt, rDestSize ); in ImplDraw()
1019 if( ImplIsSupportedGraphic() && !ImplIsSwapOut() && mpAnimation ) in ImplStartAnimation()
1020 mpAnimation->Start( pOutDev, rDestPt, nExtraData, pFirstFrameOutDev ); in ImplStartAnimation()
1029 if( ImplIsSupportedGraphic() && !ImplIsSwapOut() && mpAnimation ) in ImplStartAnimation()
1030 mpAnimation->Start( pOutDev, rDestPt, rDestSize, nExtraData, pFirstFrameOutDev ); in ImplStartAnimation()
1037 if( ImplIsSupportedGraphic() && !ImplIsSwapOut() && mpAnimation ) in ImplStopAnimation()
1038 mpAnimation->Stop( pOutDev, nExtraData ); in ImplStopAnimation()
1045 if( mpAnimation ) in ImplSetAnimationNotifyHdl()
1046 mpAnimation->SetNotifyHdl( rLink ); in ImplSetAnimationNotifyHdl()
1055 if( mpAnimation ) in ImplGetAnimationNotifyHdl()
1056 aLink = mpAnimation->GetNotifyHdl(); in ImplGetAnimationNotifyHdl()
1065 return( mpAnimation ? mpAnimation->GetLoopCount() : 0UL ); in ImplGetAnimationLoopCount()
1072 if( mpAnimation ) in ImplResetAnimationLoopCount()
1073 mpAnimation->ResetLoopCount(); in ImplResetAnimationLoopCount()
1080 return( mpAnimation ? mpAnimation->GetAInfoList() : NULL ); in ImplGetAnimationInfoList()
1676 if( mpAnimation ) in ImplGetChecksum()
1678 nRet = mpAnimation->GetChecksum(); in ImplGetChecksum()
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 >>()
1934 rOStm << *rImpGraphic.mpAnimation; in operator <<()