First public contribution.
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"
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 CWsAnim::CWsAnim(CWsAnimDll *aDll) : iClient(aDll->WsOwner()), iAnimAddedInHandler(EFalse), iLastFrame(-1)
45 __DECLARE_NAME(_S("CWsAnim"));
46 iBitFlags.Set(EFlashOn);
49 void CWsAnim::WindowClosing(CWsAnim *aWsAnim)
51 CWsAnim *anim=aWsAnim;
62 void CWsAnim::CloseAnim(CWsAnim *aWsAnim)
66 TInt handle=aWsAnim->iAnimDll->AnimObjectHandle(aWsAnim);
70 aWsAnim->iAnimDll->Remove(handle);
76 if (iWindow) // In case it never got linked
78 iWindow->SetupVisibleRegionTracking(EFalse);
79 MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
80 if (windowTreeObserver && (iBitFlags.IsSet(EWinAnimConstructed)))
82 windowTreeObserver->NodeReleased(*this);
83 iBitFlags.Clear(EWinAnimConstructed);
86 for(pAnim= &iWindow->iAnimList;(*pAnim)!=NULL && (*pAnim)!=this;pAnim= &(*pAnim)->iNextWin)
93 // coverity[extend_simple_error]
95 iSprite->SetHasAnimation(EFalse);
97 iSprite->Win()->SetupVisibleRegionTracking(EFalse);
99 // force the anim for the event handler list.
100 TWindowServerEvent::RemoveEventHandler(Anim());
101 TWindowServerEvent::RemoveNotificationHandler(Anim());
102 delete iAnim.iWindowAnim;
104 // coverity[extend_simple_error]
105 TWindowServerEvent::PotentialEventHandlerL(-1); //PotentialEventHandler cannot leave when passed a negative parameter.
108 void CWsAnim::Connect(CWsClientWindow *aWindow)
110 //coverity[var_compare_op]
111 WS_ASSERT_DEBUG(aWindow,EWsPanicWindowNull);
116 iNextWin=aWindow->iAnimList;
117 aWindow->iAnimList=this;
118 iBitFlags.Assign(EAdvancedPointersEnabled, aWindow->AdvancedPointersEnabled());
119 iWindow->SetupVisibleRegionTracking(ETrue);
122 void CWsAnim::Connect(CWsSprite *aSprite)
124 WS_ASSERT_DEBUG(aSprite,EWsPanicNoSprite);
129 iSprite->SetHasAnimation(ETrue);
130 iBitFlags.Assign(EAdvancedPointersEnabled, aSprite->AdvancedPointersEnabled());
133 iSprite->Win()->SetupVisibleRegionTracking(ETrue);
137 LOCAL_C void HandleLeaveInCWsAnimConstructL(TAny* aAnim)
139 STATIC_CAST(CWsAnim*,aAnim)->SetMessage(NULL);
140 STATIC_CAST(CWsAnim*,aAnim)->UserDeactivateAnimGc();
143 void CWsAnim::ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow)
145 TBool isFocused=(iSprite!=NULL);
147 isFocused=CWsTop::FocusWindowGroup()==iWindow->WinGroup();
152 RDebug::Printf("CreateInstanceL did not create an anim instance.");
155 aAnim->iFunctions=this;
156 SetMessage(&iClient->ClientMessage());
157 CleanupStack::PushL(TCleanupItem(HandleLeaveInCWsAnimConstructL,this));
160 iAnim.iWindowAnim = static_cast<CWindowAnim*>(aAnim);
161 iAnimGc = new (ELeave) CWsAnimGc(*this);
162 iAnim.iWindowAnim->iWindowFunctions=this;
163 iAnim.iWindowAnim->iGc=iAnimGc;
164 iAnim.iWindowAnim->ConstructL(aArgs, isFocused);
165 iBitFlags.Set(EWinAnimConstructed);
166 WS_ASSERT_DEBUG(iClient->Screen(), EWsPanicNoScreen);
167 if (iClient->Screen())
169 MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
170 if (windowTreeObserver)
172 windowTreeObserver->NodeCreated(*this, ParentNode());
173 const TRect rect = BestRect();
174 windowTreeObserver->NodeExtentChanged(*this, rect);
175 windowTreeObserver->NodeActivated(*this); //window-anim inherits activate status from iWindow
181 iAnim.iSpriteAnim = static_cast<CSpriteAnim*>(aAnim);
182 iAnim.iSpriteAnim->iSpriteFunctions=this;
183 iAnim.iSpriteAnim->ConstructL(aArgs);
185 CleanupStack::PopAndDestroy(this); // doesn't really destroy "this" - it actually calls HandleLeaveInCWsAnimConstructL
189 This function should only be called in the context of a redraw (i.e. CScreenRedraw::OnAnimation)
190 @panic EWsPanicAnim will be raised in debug build if this function is called in the wrong context.
192 void CWsAnim::RedrawWindowAnimL(const TTime& aTimeNow, MWsGraphicsContext* aGc, const TRegion* aRegion)
194 WS_ASSERT_DEBUG(iWindow, EWsPanicAnimHasNoWindow);
195 WS_ASSERT_DEBUG(iWindow->Screen(), EWsPanicNoScreen);
196 WS_ASSERT_DEBUG(iWindow->Screen()->IsAnimating(), EWsPanicAnim);
197 iBitFlags.Set(EInRedraw);
200 TInt64 adjustedStart;
201 // Don't call AnimateL() on CFreeTimerWindowAnim animations
202 if(iAnimSync!=ESyncNone || iInterval!=0)
204 AnimateL(aTimeNow, frame, adjustedStart);
206 RedrawWindowAnimL(aGc, aRegion);
207 ReSchedule(aTimeNow, frame, adjustedStart);
209 iBitFlags.Clear(EInRedraw);
213 This function should only be called in the context of a redraw (i.e. CScreenRedraw::OnAnimation)
214 @panic EWsPanicAnim will be raised in debug build if this function is called in the wrong context.
216 void CWsAnim::AnimateSpriteAnimL(const TTime& aTimeNow)
218 WS_ASSERT_DEBUG(iSprite, EWsPanicNoSprite);
219 WS_ASSERT_DEBUG(iSprite->Screen(), EWsPanicNoScreen);
220 WS_ASSERT_DEBUG(iSprite->Screen()->IsAnimating(), EWsPanicAnim);
221 iBitFlags.Set(EInRedraw);
224 TInt64 adjustedStart;
225 AnimateL(aTimeNow, frame, adjustedStart);
226 ReSchedule(aTimeNow, frame, adjustedStart);
228 iBitFlags.Clear(EInRedraw);
231 void CWsAnim::AnimateL(const TTime& aTimeNow, TInt& aFrame, TInt64& aAdjustedStart)
233 // Work out which frame we are in:
235 iStartTime = aTimeNow;
236 TInt64 elapsed = aTimeNow.Int64() - iStartTime.Int64();
237 aAdjustedStart = iStartTime.Int64();
244 aFrame = elapsed / iInterval.Int64();
248 aFrame = -1; //This would be a CFreeTimerWindowAnim
253 TInt64 fraction = elapsed % (KFlashOnTime + KFlashOffTime);
254 aFrame = (elapsed - fraction) / (KFlashOnTime + KFlashOffTime) * 2;
255 if (fraction > KFlashOnTime)
258 iBitFlags.Clear(EFlashOn);
262 iBitFlags.Set(EFlashOn);
267 aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneSecond);
268 elapsed = aTimeNow.Int64() - aAdjustedStart;
269 aFrame = elapsed / KOneSecond;
272 aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneMinute);
273 elapsed = aTimeNow.Int64() - aAdjustedStart;
274 aFrame = elapsed / KOneMinute;
277 aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneDay);
278 elapsed = aTimeNow.Int64() - aAdjustedStart;
279 aFrame = elapsed / KOneDay;
283 // If the frame has changed, animate:
284 if (aFrame != iLastFrame && aFrame != -1)
286 if (aFrame == iLastFrame + 1 && iLastFrame != -1)
288 Animate(NULL); //This can leave
292 TDateTime dt = aTimeNow.DateTime();
299 void CWsAnim::RedrawWindowAnimL(MWsGraphicsContext * aGc, const TRegion *aRegion)
301 WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
303 // We don't attempt to make use of iRect because it often isn't set up by the client code.
304 TWindowInfo::TRegionPair regionPair;
305 regionPair.iRegion1 = aRegion;
306 regionPair.iRegion2 = NULL;
307 iRedrawRegionPair = ®ionPair;
309 if(iWindow && iAnim.iWindowAnim)
311 // Regardless of whether we animated or not, redraw:
312 iAnimGc->Activate(aRegion, aGc);
313 iAnim.iWindowAnim->Redraw(); //This can leave
314 iAnimGc->Deactivate();
317 iRedrawRegionPair = NULL;
320 void CWsAnim::ReSchedule(const TTime& aTimeNow, const TInt& aFrame, const TInt64& aAdjustedStart)
322 // Schedule ourselves again (we usually only have to do this when we animate,
323 // but it is possible for our scheduled rectangle to get lost in a redraw):
324 TInt64 timeToNextFrame = 0;
330 timeToNextFrame = iStartTime.Int64() + iInterval.Int64() * (aFrame + 1) - aTimeNow.Int64();
334 if (iBitFlags.IsSet(EFlashOn))
336 timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * aFrame / 2 + KFlashOnTime - aTimeNow.Int64();
340 timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * (aFrame + 1 ) / 2 - aTimeNow.Int64();
344 timeToNextFrame = aAdjustedStart + KOneSecond * (aFrame + 1) - aTimeNow.Int64();
347 timeToNextFrame = aAdjustedStart + KOneMinute * (aFrame + 1) - aTimeNow.Int64();
350 timeToNextFrame = aAdjustedStart + KOneDay * (aFrame + 1) - aTimeNow.Int64();
354 if (iAnimSync != ESyncNone || iInterval > 0)
356 ScheduleSelf(timeToNextFrame);
362 Mark the animation area as invalid so it gets redrawn later.
364 void CWsAnim::ScheduleSelf(const TTimeIntervalMicroSeconds& aFrom)
366 ASSERT( (iWindow && iAnim.iWindowAnim) || (iSprite && iAnim.iSpriteAnim) );
368 if(iWindow && iAnim.iWindowAnim)
370 WS_ASSERT_DEBUG(iWindow->Screen(), EWsPanicNoScreen);
371 const TRect rect = BestRect();
372 iWindow->Screen()->ScheduleAnimation(EWindowAnim, rect, aFrom, 0, 0, iWindow);
374 else if(iSprite && iAnim.iSpriteAnim)
376 WS_ASSERT_DEBUG(iSprite->Screen(), EWsPanicNoScreen);
377 const TRect rect = iSprite->Rect();
379 iSprite->Screen()->ScheduleAnimation(ESpriteAnim, rect, aFrom, 0, 0, iSprite->Win());
381 iSprite->Screen()->ScheduleAnimation(EFloatingSpriteAnim, rect, aFrom, 0, 0, NULL);
385 void CWsAnim::UserDeactivateAnimGc()
387 if (iAnimGc) // For sprite anims iAnimGc is NULL
389 //If we have been receiving draw commands outside the context of
390 //CScreenRedraw::OnAnimation, then we need to schedule a redraw.
391 if (iAnimGc->IsActive() && iBitFlags.IsClear(EInRedraw))
395 iAnimGc->UserDeactivate();
399 void CWsAnim::FocusChanged(TBool aNewFocusState)
401 WS_ASSERT_DEBUG(iWindow && iAnimGc && iAnim.iWindowAnim,EWsPanicAnim);
402 iAnim.iWindowAnim->FocusChanged(aNewFocusState);
403 UserDeactivateAnimGc();
406 void CWsAnim::Animate(TDateTime *aDateTime)
408 WS_ASSERT_DEBUG(Anim(),EWsPanicAnim);
409 Anim()->Animate(aDateTime);
410 UserDeactivateAnimGc();
413 // Callback functions //
415 void CWsAnim::ActivateGc()
420 // Window animation drawing commands need to go through the render stage pipeline. This means
421 // that drawing commands issued outside animation redraws (for instance, during Animate() or
422 // when the animation receives a command) will mark the animation area as invalid, but the
423 // commands themselves will be ignored as drawing will only happen during the next WSERV redraw
424 // cycle (CWindowAnim::Redraw).
426 // In this new situation MAnimWindowFunctions::ActivateGc doesn't need to activate the graphics
427 // context (drawing commands issued outside CWindowAnim::Redraw are ignored), but to avoid some
428 // behavior breaks (for instance, panic situations) we mark the GC as "activated by the user".
429 iAnimGc->UserActivate();
432 void CWsAnim::DeactivateGc()
437 // Window animation drawing commands need to go through the render stage pipeline. This means
438 // that drawing commands issued outside animation redraws (for instance, during Animate() or
439 // when the animation receives a command) will mark the animation area as invalid, but the
440 // commands themselves will be ignored as drawing will only happen during the next WSERV redraw
441 // cycle (CWindowAnim::Redraw).
443 // In this new situation MAnimFreeTimerWindowFunctions::DeactivateGc just marks the animation
444 // area as invalid so it gets redrawn later.
446 UserDeactivateAnimGc();
450 Because lots of animations don't set a rectangle, or set an empty one, we need
451 to make a best guess at what to use rather than assuming anything.
453 TRect CWsAnim::BestRect() const
455 WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
459 rect = iWindow->AbsRect();
464 rect.Move(iWindow->Origin());
465 rect.Intersection(iWindow->AbsRect());
470 void CWsAnim::Invalidate(const TRect &aRect)
476 iSprite->RootWindow()->InvalidateWholeScreen();
480 iWindow->Redraw()->ClientExposing();
482 rect.Move(iWindow->Origin());
484 CWsTop::TriggerRedraws(iWindow->RootWindow());
487 void CWsAnim::Update()
493 void CWsAnim::Parameters(TWindowInfo &aData)
497 aData.iScreenPos=iWindow->FullRect();
498 aData.iMode=iWindow->DisplayMode();
499 aData.iRegionPair=iRedrawRegionPair;
502 void CWsAnim::VisibleRegion(TRegion& aRegion)
506 aRegion.Copy(iWindow->VisibleRegion());
510 void CWsAnim::SetSync(TAnimSync aSyncMode)
512 if (iAnimSync != aSyncMode)
517 if (iAnimSync != ESyncNone)
520 if (iAnimSync == ESyncFlash)
521 iBitFlags.Set(EFlashOn);
525 void CWsAnim::SetInterval(TInt aInterval)
527 if (iAnimSync!=ESyncNone)
532 // convert intervals to milliseconds (there are two intervals per second)
533 iInterval = aInterval*KOneHalfSecond;
536 ScheduleSelf(iInterval);
541 void CWsAnim::SetNextInterval(TInt aInterval)
543 if (iAnimSync!=ESyncNone)
545 aInterval = (aInterval <= 0) ? 1 : aInterval;
546 ScheduleSelf(aInterval*KOneHalfSecond);
549 void CWsAnim::SetRect(const TRect &aRect)
557 iWindow->UpdateAnimArea(); // backed up windows only
559 MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
560 if (windowTreeObserver && iBitFlags.IsSet(EWinAnimConstructed))
562 const TRect rect = BestRect();
563 windowTreeObserver->NodeExtentChanged(*this, rect);
568 const TRect& CWsAnim::Rect() const
573 TDateTime CWsAnim::SystemTime() const
575 TDateTime dt=iWindow->Screen()->Now().DateTime();
577 TInt minute=dt.Minute();
578 TInt second=dt.Second();
579 TInt microSecond=dt.MicroSecond();
596 dateTime.Set(dt.Year(),dt.Month(),dt.Day(),hour,minute,second,microSecond);
600 TBool CWsAnim::FlashStateOn() const
602 return(iBitFlags.IsSet(EFlashOn));
605 const RThread &CWsAnim::Client()
607 return(iClient->Client());
610 void CWsAnim::ReplyBuf(const TDesC8 &aDes)
612 CWsClient::ReplyBuf(aDes);
615 void CWsAnim::ReplyBuf(const TDesC16 &aDes)
617 CWsClient::ReplyBuf(aDes);
620 void CWsAnim::SessionPanic() const
622 iClient->SessionPanic(EWservPanicAnimDll);
625 void CWsAnim::Panic() const
627 iClient->PPanic(EWservPanicAnimDll);
630 void CWsAnim::Panic(TClientPanic aPanic) const
632 iClient->PPanic(aPanic);
635 void CWsAnim::SendState(MWsWindowTreeObserver& aWindowTreeObserver) const
638 iNextWin->SendState(aWindowTreeObserver);
640 if(iBitFlags.IsSet(EWinAnimConstructed))
642 aWindowTreeObserver.NodeCreated(*this, ParentNode());
643 const TRect rect = BestRect();
644 aWindowTreeObserver.NodeExtentChanged(*this, rect);
645 aWindowTreeObserver.NodeActivated(*this); //window-anim inherits activate status from iWindow
649 const CFbsScreenDevice *CWsAnim::ScreenDevice()
651 return NULL; // Deprecated by PREQ 2095
654 CFbsFont *CWsAnim::DuplicateFontL(TInt aHandle)
658 font=CAnimFbsFont::NewL(aHandle,err);
661 WS_ASSERT_DEBUG(font==NULL,EWsPanicFailedToInitialise);
662 if (err==KErrNoMemory)
664 iClient->PPanic(EWservPanicFont);
669 void CWsAnim::CloseFont(CFbsFont *aFont)
672 ((CAnimFbsFont *)aFont)->Close();
675 CFbsBitmap *CWsAnim::DuplicateBitmapL(TInt aHandle)
677 CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
678 TInt err=bitmap->Duplicate(aHandle);
682 if (err==KErrNoMemory)
684 iClient->PPanic(EWservPanicBitmap);
689 TSize CWsAnim::WindowSize() const
693 return(iWindow->Size());
696 TBool CWsAnim::IsHidden()
701 return iWindow->IsHidden();
704 void CWsAnim::SetVisible(TBool aState)
706 //The (iAnimGc->IsActive() && aState) part of the below if statement is in place to accomodate bc with
707 //the original wserv.
708 //We panic when we call SetVisible(ETrue) and the CWsAnimGc has been activated because the origininal wserv did.
709 //We don't panic when we call SetVisible(EFalse) and the CWsAnimGc is activated because the original wserv didn't.
711 if( !iWindow || (iAnimGc->IsActive() && aState) )
716 iWindow->SetVisible(aState);
719 VisibleRegion(region);
720 TRect rect = region.BoundingRect();
723 iWindow->Screen()->ScheduleAnimation(EWindowAnim, rect,0,0,0, iWindow);
726 MAnimGeneralFunctions::TAnimSync CWsAnim::Sync() const
731 void CWsAnim::GetRawEvents(TBool aGetEvents) const
735 if (!iAnimAddedInHandler)
737 TWindowServerEvent::AddEventHandler(Anim(), iBitFlags.IsSet(EAdvancedPointersEnabled));
738 iAnimAddedInHandler = ETrue;
743 if (iAnimAddedInHandler)
745 TWindowServerEvent::RemoveEventHandler(Anim());
746 iAnimAddedInHandler = EFalse;
751 void CWsAnim::PostRawEvent(const TRawEvent &aRawEvent) const
753 // Cannot remove const from aRawEvent parameter type for compatibility reasons.
754 if (TWsPointer::PreProcessClientEvent(const_cast<TRawEvent &>(aRawEvent), iBitFlags.IsSet(EAdvancedPointersEnabled)))
756 TWindowServerEvent::ProcessRawEvent(aRawEvent);
760 void CWsAnim::PostKeyEvent(const TKeyEvent &aRawEvent) const
762 TWindowServerEvent::ProcessKeyEvent(aRawEvent,0);
766 Generate repeated key events.
768 void CWsAnim::PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const
770 TWindowServerEvent::ProcessKeyEvent(aRawEvent,aRepeats);
773 TInt CWsAnim::RegisterForNotifications(TUint32 aNotifications)
777 return TWindowServerEvent::AddNotificationHandler(Anim(),aNotifications);
781 TWindowServerEvent::RemoveNotificationHandler(Anim());
786 const RMessagePtr2* CWsAnim::Message()
791 void CWsAnim::SetMessage(const RMessagePtr2* aMessage)
796 TInt CWsAnim::CommandReply(TInt aOpcode, TAny* aArgs)
798 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)
800 TRAP(returnValue,returnValue=Anim()->CommandReplyL(aOpcode, aArgs));
805 TSpriteMember *CWsAnim::GetSpriteMember(TInt aMember) const
809 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
812 void CWsAnim::UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)
816 iSprite->Update(aMember,aRect,aFullUpdate);
819 void CWsAnim::Activate(TBool aActive)
824 iSprite->Deactivate();
827 if (iSprite->IsActive())
833 void CWsAnim::SizeChangedL()
837 iSprite->CWsSpriteBase::CompleteL();
840 void CWsAnim::SetPosition(const TPoint &aPos)
842 iSprite->SetPos(aPos);
845 TAny* CWsAnim::ExtendedInterface(TInt aInterface)
849 case ENumberOfExtendedInterfaces:
850 return reinterpret_cast<TAny*>(EInterfaceCount-1);
851 case EWindowExtensionInterface:
852 return static_cast<MAnimGeneralFunctionsWindowExtension*>(this);
853 case EEventExtentionInterface:
854 return static_cast<MAnimGeneralFunctionsEventExtension*>(this);
860 TInt CWsAnim::Screens() const
862 return CWsTop::NumberOfScreens();
865 TInt CWsAnim::FocusScreens() const
867 return CWsTop::CurrentFocusScreen()->ScreenNumber();
870 void CWsAnim::SetFocusScreen(TInt aScreenNo)
872 if (aScreenNo<CWsTop::NumberOfScreens() && aScreenNo>=0)
874 CWsTop::SetCurrentFocusScreen(aScreenNo);
882 TInt CWsAnim::WindowGroups(TInt aScreen) const
884 return(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(aScreen)->RootWindow()->Child(),ETrue,0));
887 TBool CWsAnim::WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const
889 CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
892 aInfo.iId=group->Identifier();
893 if (group->ReceivesFocus() && group->ScreenDeviceValid())
894 aInfo.iFlags=TWindowGroupInfo::EIsFocusable;
897 aInfo.iOrdinalPriority=group->OrdinalPriority();
898 HBufC* groupName=group->GroupName();
899 aInfo.iNameLength=groupName?group->GroupName()->Length():0;
900 if (!group->IsChained(aInfo.iParentId))
905 TInt CWsAnim::WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const
907 CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
910 HBufC* name=group->GroupName();
912 aWindowName.Set(*name);
914 aWindowName.Set(NULL,0);
918 TInt CWsAnim::SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)
920 CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifier(aWindowGroupId);
923 group->SetOrdinalPriority(aPos,aOrdinalPriority);
929 void CWsAnim::WindowConfig(TWindowConfig& aWindowConfig) const
931 aWindowConfig.iFlags = 0x00;
932 if (iWindow->IsTranslucent())
934 aWindowConfig.iFlags |= TWindowConfig::ETransparencyEnabled;
935 if (iWindow->HasAlpha())
937 aWindowConfig.iFlags |= TWindowConfig::EAlphaBlendedTransparency;
942 TBool CWsAnim::SpriteCanBeSeen() const
946 return iSprite->CanBeSeen();
949 /** @see MWsWindowTreeNode */
950 MWsWindowTreeNode::TType CWsAnim::NodeType() const
952 return (iSprite) ? iSprite->NodeType() : MWsWindowTreeNode::EWinTreeNodeAnim;
955 /** @see MWsWindowTreeNode */
956 const MWsWindow* CWsAnim::Window() const
961 /** @see MWsWindowTreeNode */
962 const MWsSprite* CWsAnim::Sprite() const
967 /** @see MWsWindowTreeNode */
968 const MWsStandardTextCursor* CWsAnim::StandardTextCursor() const
973 /** @see MWsWindowTreeNode */
974 const MWsWindowGroup* CWsAnim::WindowGroup() const
977 return iSprite->WindowGroup();
979 return iWindow->WindowGroup();
984 /** @see MWsWindowTreeNode */
985 const MWsWindowTreeNode* CWsAnim::ParentNode() const
988 return iSprite->ParentNode();
990 return iWindow; //A window-anim is considered to be a child of the window
997 CObjectConIx* CWsAnimDll::AnimObjectConIx=NULL;
999 void CWsAnimDll::InitStaticsL()
1001 CWsAnimDll::AnimObjectConIx=CObjectConIx::NewL();
1004 void CWsAnimDll::DeleteStatics()
1006 delete CWsAnimDll::AnimObjectConIx;
1009 CWsAnimDll::CWsAnimDll(CWsClient *aOwner) : CWsObject(aOwner,WS_HANDLE_ANIM_DLL)
1011 __DECLARE_NAME(_S("CWsAnimDll"));
1014 CWsAnimDll::~CWsAnimDll()
1016 delete iInstanceIndex;
1017 AnimObjectConIx->Remove(iInstanceCon);
1022 TInt CWsAnimDll::doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow)
1024 iInstanceCon->AddL(aInstance);
1025 aInstance->ConstructL(iAnimDll->CreateInstanceL(aType),aArgs,this,aIsWindow);
1026 return(iInstanceIndex->AddL(aInstance));
1029 TInt CWsAnimDll::CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow)
1031 TWindowServerEvent::PotentialEventHandlerL(1);
1032 CWsAnim *instance=new(ELeave) CWsAnim(this);
1033 CleanupClosePushL(*instance);
1036 CWsClientWindow *win;
1037 iWsOwner->HandleToClientWindow(aHandle,&win);
1038 instance->Connect(win);
1042 CWsObject *sprite=iWsOwner->HandleToObj(aHandle, WS_HANDLE_SPRITE);
1044 OwnerPanic(EWservPanicSprite);
1045 instance->Connect(STATIC_CAST(CWsSprite*,sprite));
1047 TInt handle=doCreateInstanceL(instance, aType, aArgs, aIsWindow);
1048 CleanupStack::Pop(instance);
1052 void CWsAnimDll::LoadL(const TDesC &aDllName)
1055 TFileName name(aDllName);
1056 User::LeaveIfError(iAnimLib.Load(name));
1060 _LIT(KWSERVLoadedAnimDll,"Loaded Anim DLL: ");
1061 buf.Append(KWSERVLoadedAnimDll);
1062 buf.Append(iAnimLib.FileName());
1063 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
1065 TUidType uid=iAnimLib.Type();
1066 if (uid[1]!=KWservAnimDllUid)
1067 User::Leave(KErrNotSupported);
1069 f=(CreateCAnimDll)User::LeaveIfNull((TAny *)iAnimLib.Lookup(1));
1071 iInstanceIndex=CObjectIx::NewL();
1072 iInstanceCon=AnimObjectConIx->CreateL();
1075 void CWsAnimDll::Remove(TInt aHandle)
1077 iInstanceIndex->Remove(aHandle);
1080 void CWsAnimDll::CommandL(TInt aOpcode, const TAny *aCmdData)
1082 TWsAnimDllCmdUnion pData;
1087 case EWsAnimDllOpFree:
1090 case EWsAnimDllOpCreateInstance:
1091 case EWsAnimDllOpCreateInstanceSprite:
1092 SetReply(CreateInstanceL(*pData.UInt,*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)
1093 ,aOpcode==EWsAnimDllOpCreateInstance));
1095 case EWsAnimDllOpCommandReply:
1096 case EWsAnimDllOpCommand:
1097 case EWsAnimDllOpDestroyInstance:
1099 CWsAnim *anim=(CWsAnim *)iInstanceIndex->At(*pData.UInt);
1101 //Deleting a non existant Anim is allowed as the Anim will be destroyed
1102 //when the window it is on (or a parent of) it destroyed
1103 if (anim==NULL && aOpcode!=EWsAnimDllOpDestroyInstance)
1104 OwnerPanic(EWservPanicAnim);
1107 case EWsAnimDllOpCommandReply:
1109 TInt reply=KErrNone;
1110 TRAP(ret,reply=anim->CommandReply(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
1111 anim->UserDeactivateAnimGc();
1117 case EWsAnimDllOpCommand:
1118 TRAP(ret,anim->Anim()->Command(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
1119 if (ret!=KErrNone && ret!=CWsClient::EPanicLeave)
1120 OwnerPanic(EWservPanicAnimLeave);
1121 anim->UserDeactivateAnimGc();
1123 case EWsAnimDllOpDestroyInstance:
1124 if (anim) // Added to go with changes described above
1125 Remove(*pData.UInt);
1133 OwnerPanic(EWservPanicOpcode);
1137 CAnimFbsFont::~CAnimFbsFont()
1140 CAnimFbsFont::CAnimFbsFont()
1143 CAnimFbsFont* CAnimFbsFont::NewL(TInt aHandle,TInt& aError)
1145 CAnimFbsFont *font=new(ELeave) CAnimFbsFont();
1146 font->iAccessCount=1;
1147 aError=font->Duplicate(aHandle);
1148 if (aError!=KErrNone)
1156 void CAnimFbsFont::Open()
1161 void CAnimFbsFont::Close()
1163 if (--iAccessCount==0)
1168 /*MAnimGeneralFunctions*/
1169 void MAnimGeneralFunctions::Reserved1() const
1172 void MAnimGeneralFunctions::Reserved2() const
1175 void MAnimGeneralFunctions::Reserved3() const
1179 /*MAnimGeneralFunctionsExtension*/
1181 void MAnimGeneralFunctionsWindowExtension::Reserved1() const
1184 void MAnimGeneralFunctionsWindowExtension::Reserved2() const
1187 void MAnimGeneralFunctionsWindowExtension::Reserved3() const
1191 /*MAnimWindowFunctions*/
1193 void MAnimWindowFunctions::Reserved() const
1196 void MAnimWindowFunctions::Reserved1() const
1199 void MAnimWindowFunctions::Reserved2() const
1202 void MAnimWindowFunctions::Reserved3() const
1206 /*MAnimFreeTimerWindowFunctions*/
1208 void MAnimFreeTimerWindowFunctions::Reserved3() const
1212 /*MAnimSpriteFunctions*/
1214 void MAnimSpriteFunctions::Reserved() const
1217 void MAnimSpriteFunctions::Reserved2() const
1220 void MAnimSpriteFunctions::Reserved3() const
1223 void MAnimSpriteFunctions::Reserved4() const
1226 /*MAnimGeneralFunctionsEventExtension*/
1228 void MAnimGeneralFunctionsEventExtension::Reserved1() const
1231 void MAnimGeneralFunctionsEventExtension::Reserved2() const