Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Interface code for animated DLL's
22 #include "windowgroup.h"
27 #include "offscreenbitmap.h"
31 GLREF_D CDebugLogBase *wsDebugLog;
33 static const TInt64 KFlashOnTime(700000);
34 static const TInt64 KFlashOffTime(300000);
35 static const TInt64 KOneSecond(1000000);
36 static const TInt64 KOneMinute(60 * KOneSecond);
37 static const TInt64 KOneDay(24 * 60 * 60 * KOneSecond);
38 static const TInt64 KOneHalfSecond(500000);
40 enum {EWindowUpdate=0x0001};
43 CWsAnimGc *CWsAnim::WsAnimGc=NULL;
45 void CWsAnim::InitStaticsL()
47 WsAnimGc=new (ELeave) CWsAnimGc();
50 void CWsAnim::DeleteStatics()
56 CWsAnim::CWsAnim(CWsAnimDll *aDll) : iClient(aDll->WsOwner()), iAnimAddedInHandler(EFalse), iLastFrame(-1), iFlashOn(ETrue)
58 __DECLARE_NAME(_S("CWsAnim"));
61 void CWsAnim::WindowClosing(CWsAnim *aWsAnim)
63 CWsAnim *anim=aWsAnim;
73 void CWsAnim::CloseAnim(CWsAnim *aWsAnim)
75 TInt handle=aWsAnim->iAnimDll->AnimObjectHandle(aWsAnim);
79 aWsAnim->iAnimDll->Remove(handle);
84 WsAnimGc->AnimDeleted(this);
85 if (iWindow) // In case it never got linked
88 for(pAnim= &iWindow->iAnimList;(*pAnim)!=this;pAnim= &(*pAnim)->iNextWin)
95 // force the anim for the event handler list.
96 TWindowServerEvent::RemoveEventHandler(iAnim);
97 TWindowServerEvent::RemoveNotificationHandler(iAnim);
99 TWindowServerEvent::PotentialEventHandlerL(-1); //PotentialEventHandler cannot leave when passed a negative parameter.
102 void CWsAnim::Connect(CWsClientWindow *aWindow)
107 iNextWin=aWindow->iAnimList;
108 aWindow->iAnimList=this;
111 void CWsAnim::Connect(CWsSprite *aSprite)
119 LOCAL_C void HandleLeaveInCWsAnimConstructL(TAny* aAnim)
121 STATIC_CAST(CWsAnim*,aAnim)->SetMessage(NULL);
122 CWsAnim::UserDeactivateAnimGc();
125 void CWsAnim::ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow)
127 TBool isFocused=(iSprite!=NULL);
129 isFocused=CWsTop::FocusWindowGroup()==iWindow->WinGroup();
133 iAnim->iFunctions=this;
134 SetMessage(&iClient->ClientMessage());
135 CleanupStack::PushL(TCleanupItem(HandleLeaveInCWsAnimConstructL,this));
138 CWindowAnim* windowAnim=WindowAnim();
139 windowAnim->iWindowFunctions=this;
140 windowAnim->iGc=WsAnimGc;
141 windowAnim->ConstructL(aArgs, isFocused);
145 CSpriteAnim* spriteAnim=STATIC_CAST(CSpriteAnim*,iAnim);
146 spriteAnim->iSpriteFunctions=this;
147 spriteAnim->ConstructL(aArgs);
149 CleanupStack::PopAndDestroy(this); // doesn't really destroy "this" - it actually calls HandleLeaveInCWsAnimConstructL
152 void CWsAnim::Redraw(CFbsBitGc * aGc, const TRegion *aRegion)
154 WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
158 TWindowInfo::TRegionPair regionPair;
159 regionPair.iRegion1 = aRegion;
160 regionPair.iRegion2 = NULL;
161 iRedrawRegionPair = ®ionPair;
163 // We don't attempt to make use of iRect because it often isn't set up by the client code.
165 // Work out which frame we are in:
166 TTime now = iWindow->Screen()->Now();
169 TInt64 elapsed = now.Int64() - iStartTime.Int64();
170 TInt64 adjustedStart = iStartTime.Int64();
177 frame = elapsed / iInterval.Int64();
186 TInt64 fraction = elapsed % (KFlashOnTime + KFlashOffTime);
187 frame = (elapsed - fraction) / (KFlashOnTime + KFlashOffTime) * 2;
188 if (fraction > KFlashOnTime)
200 adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneSecond);
201 elapsed = now.Int64() - adjustedStart;
202 frame = elapsed / KOneSecond;
205 adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneMinute);
206 elapsed = now.Int64() - adjustedStart;
207 frame = elapsed / KOneMinute;
210 adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneDay);
211 elapsed = now.Int64() - adjustedStart;
212 frame = elapsed / KOneDay;
216 // If the frame has changed, animate:
217 if (frame != iLastFrame && frame != -1)
219 if (frame == iLastFrame + 1 && iLastFrame != -1)
225 TDateTime dt = now.DateTime();
231 // Regardless of whether we animated or not, redraw:
232 WsAnimGc->Activate(iWindow, this, aRegion, aGc);
233 WindowAnim()->Redraw();
234 WsAnimGc->Deactivate();
236 // Schedule ourselves again (we usually only have to do this when we animate,
237 // but it is possible for our scheduled rectangle to get lost in a redraw):
238 TInt64 timeToNextFrame = 0;
244 timeToNextFrame = iStartTime.Int64() + iInterval.Int64() * (frame + 1) - iWindow->Screen()->Now().Int64();
250 timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * frame / 2 + KFlashOnTime - iWindow->Screen()->Now().Int64();
254 timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * (frame + 1 ) / 2 - iWindow->Screen()->Now().Int64();
258 timeToNextFrame = adjustedStart + KOneSecond * (frame + 1) - iWindow->Screen()->Now().Int64();
261 timeToNextFrame = adjustedStart + KOneMinute * (frame + 1) - iWindow->Screen()->Now().Int64();
264 timeToNextFrame = adjustedStart + KOneDay * (frame + 1) - iWindow->Screen()->Now().Int64();
268 if (iAnimSync != ESyncNone || iInterval > 0)
270 iWindow->Screen()->ScheduleAnimation(BestRect(), timeToNextFrame, 0, 0);
273 iRedrawRegionPair = NULL;
276 void CWsAnim::FocusChanged(TBool aNewFocusState)
278 WindowAnim()->FocusChanged(aNewFocusState);
279 WsAnimGc->UserDeactivate();
282 void CWsAnim::Animate(TDateTime *aDateTime)
284 iAnim->Animate(aDateTime);
285 WsAnimGc->UserDeactivate();
288 void CWsAnim::UserDeactivateAnimGc()
290 WsAnimGc->UserDeactivate();
293 // Callback functions //
295 void CWsAnim::ActivateGc()
300 // Window animation drawing commands need to go through the render stage pipeline. This means
301 // that drawing commands issued outside animation redraws (for instance, during Animate() or
302 // when the animation receives a command) will mark the animation area as invalid, but the
303 // commands themselves will be ignored as drawing will only happen during the next WSERV redraw
304 // cycle (CWindowAnim::Redraw).
306 // In this new situation MAnimWindowFunctions::ActivateGc doesn't need to activate the graphics
307 // context (drawing commands issued outside CWindowAnim::Redraw are ignored), but to avoid some
308 // behavior breaks (for instance, panic situations) we mark the GC as "activated by the user".
309 WsAnimGc->UserActivate(iWindow, this);
312 void CWsAnim::DeactivateGc()
317 // Window animation drawing commands need to go through the render stage pipeline. This means
318 // that drawing commands issued outside animation redraws (for instance, during Animate() or
319 // when the animation receives a command) will mark the animation area as invalid, but the
320 // commands themselves will be ignored as drawing will only happen during the next WSERV redraw
321 // cycle (CWindowAnim::Redraw).
323 // In this new situation MAnimFreeTimerWindowFunctions::DeactivateGc just marks the animation
324 // area as invalid so it gets redrawn later.
325 WsAnimGc->UserDeactivate();
329 Because lots of animations don't set a rectangle, or set an empty one, we need
330 to make a best guess at what to use rather than assuming anything.
332 TRect CWsAnim::BestRect() const
337 rect = iWindow->AbsRect();
342 rect.Move(iWindow->Origin());
343 rect.Intersection(iWindow->AbsRect());
348 void CWsAnim::Invalidate(const TRect &aRect)
354 iSprite->RootWindow()->InvalidateWholeScreen();
358 iWindow->Redraw()->ClientExposing();
360 rect.Move(iWindow->Origin());
362 CWsTop::TriggerRedraws(iWindow->RootWindow());
365 void CWsAnim::Update()
371 void CWsAnim::Parameters(TWindowInfo &aData)
375 aData.iScreenPos=iWindow->FullRect();
376 aData.iMode=iWindow->DisplayMode();
377 aData.iRegionPair=iRedrawRegionPair;
380 void CWsAnim::VisibleRegion(TRegion& aRegion)
384 aRegion.Copy(iWindow->VisibleRegion());
388 void CWsAnim::SetSync(TAnimSync aSyncMode)
390 if (iAnimSync != aSyncMode)
394 if (iAnimSync != ESyncNone)
395 iWindow->Screen()->ScheduleAnimation(BestRect(),0,0,0);
396 if (iAnimSync == ESyncFlash)
401 void CWsAnim::SetInterval(TInt aInterval)
403 if (iAnimSync!=ESyncNone)
408 // convert intervals to milliseconds (there are two intervals per second)
409 iInterval = aInterval*KOneHalfSecond;
412 iWindow->Screen()->ScheduleAnimation(BestRect(),iInterval,0,0);
416 void CWsAnim::SetNextInterval(TInt aInterval)
418 if (iAnimSync!=ESyncNone)
420 aInterval = (aInterval <= 0) ? 1 : aInterval;
421 iWindow->Screen()->ScheduleAnimation(BestRect(),aInterval*KOneHalfSecond,0,0);
424 void CWsAnim::SetRect(const TRect &aRect)
429 iWindow->UpdateAnimArea(); // backed up windows only
432 const TRect& CWsAnim::Rect() const
437 TDateTime CWsAnim::SystemTime() const
439 TDateTime dt=iWindow->Screen()->Now().DateTime();
441 TInt minute=dt.Minute();
442 TInt second=dt.Second();
443 TInt microSecond=dt.MicroSecond();
460 dateTime.Set(dt.Year(),dt.Month(),dt.Day(),hour,minute,second,microSecond);
464 TBool CWsAnim::FlashStateOn() const
469 const RThread &CWsAnim::Client()
471 return(iClient->Client());
474 void CWsAnim::ReplyBuf(const TDesC8 &aDes)
476 CWsClient::ReplyBuf(aDes);
479 void CWsAnim::ReplyBuf(const TDesC16 &aDes)
481 CWsClient::ReplyBuf(aDes);
484 void CWsAnim::Panic() const
486 iClient->PPanic(EWservPanicAnimDll);
489 void CWsAnim::Panic(TClientPanic aPanic) const
491 iClient->PPanic(aPanic);
494 const CFbsScreenDevice *CWsAnim::ScreenDevice()
496 CScreen* screen=NULL; //To stop a warning
498 screen=iWindow->Screen();
500 screen=iSprite->Screen();
503 return screen->ScreenDevice();
506 CFbsFont *CWsAnim::DuplicateFontL(TInt aHandle)
510 font=CAnimFbsFont::NewL(aHandle,err);
513 WS_ASSERT_DEBUG(font==NULL,EWsPanicFailedToInitialise);
514 if (err==KErrNoMemory)
516 iClient->PPanic(EWservPanicFont);
521 void CWsAnim::CloseFont(CFbsFont *aFont)
524 ((CAnimFbsFont *)aFont)->Close();
527 CFbsBitmap *CWsAnim::DuplicateBitmapL(TInt aHandle)
529 CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
530 TInt err=bitmap->Duplicate(aHandle);
534 if (err==KErrNoMemory)
536 iClient->PPanic(EWservPanicBitmap);
541 TSize CWsAnim::WindowSize() const
545 return(iWindow->Size());
548 TBool CWsAnim::IsHidden()
553 return iWindow->IsHidden();
556 void CWsAnim::SetVisible(TBool aState)
558 //The (WsAnimGc->IsActive() && aState) part of the below if statement is in place to accomodate bc with
559 //the original wserv.
560 //We panic when we call SetVisible(ETrue) and the CWsAnimGc has been activated because the origininal wserv did.
561 //We don't panic when we call SetVisible(EFalse) and the CWsAnimGc is activated because the original wserv didn't.
562 if( !iWindow || (WsAnimGc->IsActive() && aState) )
567 iWindow->SetVisible(aState);
570 VisibleRegion(region);
571 TRect rect = region.BoundingRect();
574 iWindow->Screen()->ScheduleAnimation(rect,0,0,0);
577 MAnimGeneralFunctions::TAnimSync CWsAnim::Sync() const
582 void CWsAnim::GetRawEvents(TBool aGetEvents) const
586 if (!iAnimAddedInHandler)
588 TWindowServerEvent::AddEventHandler(iAnim);
589 iAnimAddedInHandler = ETrue;
594 if (iAnimAddedInHandler)
596 TWindowServerEvent::RemoveEventHandler(iAnim);
597 iAnimAddedInHandler = EFalse;
602 void CWsAnim::PostRawEvent(const TRawEvent &aRawEvent) const
604 TWindowServerEvent::ProcessRawEvent(aRawEvent);
607 void CWsAnim::PostKeyEvent(const TKeyEvent &aRawEvent) const
609 TWindowServerEvent::ProcessKeyEvent(aRawEvent,0);
613 Generate repeated key events.
615 void CWsAnim::PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const
617 TWindowServerEvent::ProcessKeyEvent(aRawEvent,aRepeats);
620 TInt CWsAnim::RegisterForNotifications(TUint32 aNotifications)
624 return TWindowServerEvent::AddNotificationHandler(iAnim,aNotifications);
628 TWindowServerEvent::RemoveNotificationHandler(iAnim);
634 const RMessagePtr2* CWsAnim::Message()
639 void CWsAnim::SetMessage(const RMessagePtr2* aMessage)
644 TInt CWsAnim::CommandReply(TInt aOpcode, TAny* aArgs)
646 SetMessage(&iClient->ClientMessage()); // ClientMessage returns a reference, so taking the address of it is okay (it it returned it by value, then taking the address would be taking the address of a temporary which would be dodgey)
648 TRAP(returnValue,returnValue=iAnim->CommandReplyL(aOpcode, aArgs));
653 TSpriteMember *CWsAnim::GetSpriteMember(TInt aMember) const
657 return REINTERPRET_CAST(TSpriteMember*,&(*iSprite->iMembers)[aMember]->iBitmap); //The 2 classes involved in the cast have exactly the same data members in the same order
660 void CWsAnim::UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)
664 iSprite->Update(aMember,aRect,aFullUpdate);
667 void CWsAnim::Activate(TBool aActive)
672 iSprite->Deactivate();
675 if (iSprite->IsActive())
681 void CWsAnim::SizeChangedL()
685 iSprite->CWsSpriteBase::CompleteL();
688 void CWsAnim::SetPosition(const TPoint &aPos)
690 iSprite->SetPos(aPos);
693 TAny* CWsAnim::ExtendedInterface(TInt aInterface)
697 case ENumberOfExtendedInterfaces:
698 return reinterpret_cast<TAny*>(EInterfaceCount-1);
699 case EWindowExtensionInterface:
700 return static_cast<MAnimGeneralFunctionsWindowExtension*>(this);
701 case EEventExtentionInterface:
702 return static_cast<MAnimGeneralFunctionsEventExtension*>(this);
708 TInt CWsAnim::Screens() const
710 return CWsTop::NumberOfScreens();
713 TInt CWsAnim::FocusScreens() const
715 return CWsTop::CurrentFocusScreen()->ScreenNumber();
718 void CWsAnim::SetFocusScreen(TInt aScreenNo)
720 if (aScreenNo<CWsTop::NumberOfScreens() && aScreenNo>=0)
722 CWsTop::SetCurrentFocusScreen(aScreenNo);
730 TInt CWsAnim::WindowGroups(TInt aScreen) const
732 return(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(aScreen)->RootWindow()->Child(),ETrue,0));
735 TBool CWsAnim::WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const
737 CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
740 aInfo.iId=group->Identifier();
741 if (group->ReceivesFocus() && group->ScreenDeviceValid())
742 aInfo.iFlags=TWindowGroupInfo::EIsFocusable;
745 aInfo.iOrdinalPriority=group->OrdinalPriority();
746 HBufC* groupName=group->GroupName();
747 aInfo.iNameLength=groupName?group->GroupName()->Length():0;
748 if (!group->IsChained(aInfo.iParentId))
753 TInt CWsAnim::WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const
755 CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
758 HBufC* name=group->GroupName();
760 aWindowName.Set(*name);
762 aWindowName.Set(NULL,0);
766 TInt CWsAnim::SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)
768 CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifier(aWindowGroupId);
771 group->SetOrdinalPriority(aPos,aOrdinalPriority);
777 void CWsAnim::WindowConfig(TWindowConfig& aWindowConfig) const
779 aWindowConfig.iFlags = 0x00;
780 if (iWindow->IsTranslucent())
782 aWindowConfig.iFlags |= TWindowConfig::ETransparencyEnabled;
783 if (iWindow->HasAlpha())
785 aWindowConfig.iFlags |= TWindowConfig::EAlphaBlendedTransparency;
790 TBool CWsAnim::SpriteCanBeSeen() const
794 return iSprite->CanBeSeen();
799 CObjectConIx* CWsAnimDll::AnimObjectConIx=NULL;
801 void CWsAnimDll::InitStaticsL()
803 CWsAnimDll::AnimObjectConIx=CObjectConIx::NewL();
806 void CWsAnimDll::DeleteStatics()
808 delete CWsAnimDll::AnimObjectConIx;
811 CWsAnimDll::CWsAnimDll(CWsClient *aOwner) : CWsObject(aOwner,WS_HANDLE_ANIM_DLL)
813 __DECLARE_NAME(_S("CWsAnimDll"));
816 CWsAnimDll::~CWsAnimDll()
818 delete iInstanceIndex;
819 AnimObjectConIx->Remove(iInstanceCon);
824 TInt CWsAnimDll::doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow)
826 iInstanceCon->AddL(aInstance);
827 aInstance->ConstructL(iAnimDll->CreateInstanceL(aType),aArgs,this,aIsWindow);
828 return(iInstanceIndex->AddL(aInstance));
831 TInt CWsAnimDll::CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow)
833 TWindowServerEvent::PotentialEventHandlerL(1);
834 CWsAnim *instance=new(ELeave) CWsAnim(this);
835 CleanupClosePushL(*instance);
838 CWsClientWindow *win;
839 iWsOwner->HandleToClientWindow(aHandle,&win);
840 instance->Connect(win);
844 CWsObject *sprite=iWsOwner->HandleToObj(aHandle, WS_HANDLE_SPRITE);
846 OwnerPanic(EWservPanicSprite);
847 instance->Connect(STATIC_CAST(CWsSprite*,sprite));
849 TInt handle=doCreateInstanceL(instance, aType, aArgs, aIsWindow);
850 CleanupStack::Pop(instance);
854 void CWsAnimDll::LoadL(const TDesC &aDllName)
857 TFileName name(aDllName);
858 User::LeaveIfError(iAnimLib.Load(name));
862 _LIT(KWSERVLoadedAnimDll,"Loaded Anim DLL: ");
863 buf.Append(KWSERVLoadedAnimDll);
864 buf.Append(iAnimLib.FileName());
865 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
867 TUidType uid=iAnimLib.Type();
868 if (uid[1]!=KWservAnimDllUid)
869 User::Leave(KErrNotSupported);
871 f=(CreateCAnimDll)User::LeaveIfNull((TAny *)iAnimLib.Lookup(1));
873 iInstanceIndex=CObjectIx::NewL();
874 iInstanceCon=AnimObjectConIx->CreateL();
877 void CWsAnimDll::Remove(TInt aHandle)
879 iInstanceIndex->Remove(aHandle);
882 void CWsAnimDll::CommandL(TInt aOpcode, const TAny *aCmdData)
884 TWsAnimDllCmdUnion pData;
889 case EWsAnimDllOpFree:
892 case EWsAnimDllOpCreateInstance:
893 case EWsAnimDllOpCreateInstanceSprite:
894 SetReply(CreateInstanceL(*pData.UInt,*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)
895 ,aOpcode==EWsAnimDllOpCreateInstance));
897 case EWsAnimDllOpCommandReply:
898 case EWsAnimDllOpCommand:
899 case EWsAnimDllOpDestroyInstance:
901 CWsAnim *anim=(CWsAnim *)iInstanceIndex->At(*pData.UInt);
903 //Deleting a non existant Anim is allowed as the Anim will be destroyed
904 //when the window it is on (or a parent of) it destroyed
905 if (anim==NULL && aOpcode!=EWsAnimDllOpDestroyInstance)
906 OwnerPanic(EWservPanicAnim);
909 case EWsAnimDllOpCommandReply:
910 SetReply(anim->CommandReply(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
911 CWsAnim::UserDeactivateAnimGc();
913 case EWsAnimDllOpCommand:
914 TRAP(ret,anim->Anim()->Command(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
915 if (ret!=KErrNone && ret!=CWsClient::EPanicLeave)
916 OwnerPanic(EWservPanicAnimLeave);
917 CWsAnim::UserDeactivateAnimGc();
919 case EWsAnimDllOpDestroyInstance:
920 if (anim) // Added to go with changes described above
929 OwnerPanic(EWservPanicOpcode);
933 CAnimFbsFont::~CAnimFbsFont()
936 CAnimFbsFont::CAnimFbsFont()
939 CAnimFbsFont* CAnimFbsFont::NewL(TInt aHandle,TInt& aError)
941 CAnimFbsFont *font=new(ELeave) CAnimFbsFont();
942 font->iAccessCount=1;
943 aError=font->Duplicate(aHandle);
944 if (aError!=KErrNone)
952 void CAnimFbsFont::Open()
957 void CAnimFbsFont::Close()
959 if (--iAccessCount==0)
964 /*MAnimGeneralFunctions*/
965 void MAnimGeneralFunctions::Reserved1() const
968 void MAnimGeneralFunctions::Reserved2() const
971 void MAnimGeneralFunctions::Reserved3() const
975 /*MAnimGeneralFunctionsExtension*/
977 void MAnimGeneralFunctionsWindowExtension::Reserved1() const
980 void MAnimGeneralFunctionsWindowExtension::Reserved2() const
983 void MAnimGeneralFunctionsWindowExtension::Reserved3() const
986 /*MAnimWindowFunctions*/
988 void MAnimWindowFunctions::Reserved() const
991 void MAnimWindowFunctions::Reserved1() const
994 void MAnimWindowFunctions::Reserved2() const
997 void MAnimWindowFunctions::Reserved3() const
1001 /*MAnimFreeTimerWindowFunctions*/
1003 void MAnimFreeTimerWindowFunctions::Reserved3() const
1007 /*MAnimSpriteFunctions*/
1009 void MAnimSpriteFunctions::Reserved() const
1012 void MAnimSpriteFunctions::Reserved2() const
1015 void MAnimSpriteFunctions::Reserved3() const
1018 void MAnimSpriteFunctions::Reserved4() const
1021 /*MAnimGeneralFunctionsEventExtension*/
1023 void MAnimGeneralFunctionsEventExtension::Reserved1() const
1026 void MAnimGeneralFunctionsEventExtension::Reserved2() const