os/graphics/windowing/windowserver/nga/SERVER/openwfc/ANIMDLL.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/ANIMDLL.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1232 @@
     1.4 +// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Interface code for animated DLL's
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32std.h>
    1.22 +#include "server.h"
    1.23 +#include "gc.h"
    1.24 +#include "rootwin.h"
    1.25 +#include "windowgroup.h"
    1.26 +#include "ANIM.H"
    1.27 +#include "wstop.h"
    1.28 +#include "EVENT.H"
    1.29 +#include "ScrDev.H"
    1.30 +#include "panics.h"
    1.31 +#include "wsfont.h"
    1.32 +#include "pointer.h"
    1.33 +
    1.34 +GLREF_D CDebugLogBase *wsDebugLog;
    1.35 +
    1.36 +static const TInt64 KFlashOnTime(700000);
    1.37 +static const TInt64 KFlashOffTime(300000);
    1.38 +static const TInt64 KOneSecond(1000000);
    1.39 +static const TInt64 KOneMinute(60 * KOneSecond);
    1.40 +static const TInt64 KOneDay(24 * 60 * 60 * KOneSecond);
    1.41 +static const TInt64 KOneHalfSecond(500000);
    1.42 +
    1.43 +enum {EWindowUpdate=0x0001};
    1.44 +
    1.45 +// Anim DLL code //
    1.46 +CWsAnim::CWsAnim(CWsAnimDll *aDll) : iClient(aDll->WsOwner()), iAnimAddedInHandler(EFalse), iLastFrame(-1)
    1.47 +	{
    1.48 +	__DECLARE_NAME(_S("CWsAnim"));
    1.49 +	iBitFlags.Set(EFlashOn);
    1.50 +	}
    1.51 +
    1.52 +void CWsAnim::WindowClosing(CWsAnim *aWsAnim)
    1.53 +	{
    1.54 +	CWsAnim *anim=aWsAnim;
    1.55 +	CWsAnim *next;
    1.56 +	
    1.57 +	while(anim)
    1.58 +		{
    1.59 +		next=anim->iNextWin;
    1.60 +		CloseAnim(anim);
    1.61 +		anim=next;
    1.62 +		}
    1.63 +	}
    1.64 +
    1.65 +void CWsAnim::CloseAnim(CWsAnim *aWsAnim)
    1.66 +	{
    1.67 +	if(aWsAnim)
    1.68 +		{
    1.69 +		TInt handle=aWsAnim->iAnimDll->AnimObjectHandle(aWsAnim);
    1.70 +		if (handle<0)
    1.71 +			delete aWsAnim;
    1.72 +		else
    1.73 +			aWsAnim->iAnimDll->Remove(handle);
    1.74 +		}
    1.75 +	}
    1.76 +
    1.77 +CWsAnim::~CWsAnim()
    1.78 +	{
    1.79 +	if (iWindow)	// In case it never got linked
    1.80 +		{
    1.81 +		iWindow->SetupVisibleRegionTracking(EFalse);
    1.82 +		MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
    1.83 +		if (windowTreeObserver && (iBitFlags.IsSet(EWinAnimConstructed)))
    1.84 +			{
    1.85 +			windowTreeObserver->NodeReleased(*this);
    1.86 +			iBitFlags.Clear(EWinAnimConstructed);
    1.87 +			}
    1.88 +		CWsAnim **pAnim;
    1.89 +		for(pAnim= &iWindow->iAnimList;(*pAnim)!=NULL && (*pAnim)!=this;pAnim= &(*pAnim)->iNextWin)
    1.90 +			{}
    1.91 +		*pAnim=iNextWin;
    1.92 +		
    1.93 +		}
    1.94 +	else if (iSprite)
    1.95 +		{
    1.96 +		// coverity[extend_simple_error]
    1.97 +		iSprite->iAnim=NULL;
    1.98 +		iSprite->SetHasAnimation(EFalse);
    1.99 +		if(iSprite->Win())
   1.100 +			iSprite->Win()->SetupVisibleRegionTracking(EFalse);
   1.101 +		}
   1.102 +	// force the anim for the event handler list.
   1.103 +	TWindowServerEvent::RemoveEventHandler(Anim());
   1.104 +	TWindowServerEvent::RemoveNotificationHandler(Anim());
   1.105 +	delete iAnim.iWindowAnim;
   1.106 +	delete iAnimGc;
   1.107 +	// coverity[extend_simple_error]
   1.108 +	TWindowServerEvent::PotentialEventHandlerL(-1);		//PotentialEventHandler cannot leave when passed a negative parameter.
   1.109 +	}
   1.110 +
   1.111 +void CWsAnim::Connect(CWsClientWindow *aWindow)
   1.112 +	{
   1.113 +	//coverity[var_compare_op]
   1.114 +	WS_ASSERT_DEBUG(aWindow,EWsPanicWindowNull);
   1.115 +	if ((iSprite))
   1.116 +		Panic();
   1.117 +
   1.118 +	iWindow=aWindow;
   1.119 +	iNextWin=aWindow->iAnimList;
   1.120 +	aWindow->iAnimList=this;
   1.121 +	iBitFlags.Assign(EAdvancedPointersEnabled, aWindow->AdvancedPointersEnabled());
   1.122 +	iWindow->SetupVisibleRegionTracking(ETrue);
   1.123 +	}
   1.124 +
   1.125 +void CWsAnim::Connect(CWsSprite *aSprite)
   1.126 +	{
   1.127 +	WS_ASSERT_DEBUG(aSprite,EWsPanicNoSprite);
   1.128 +	if (iWindow)
   1.129 +		Panic();
   1.130 +	iSprite=aSprite;
   1.131 +	iSprite->iAnim=this;
   1.132 +	iSprite->SetHasAnimation(ETrue);
   1.133 +	iBitFlags.Assign(EAdvancedPointersEnabled, aSprite->AdvancedPointersEnabled());
   1.134 +	if(iSprite->Win())
   1.135 +		{
   1.136 +		iSprite->Win()->SetupVisibleRegionTracking(ETrue);
   1.137 +		}
   1.138 +	}
   1.139 +
   1.140 +LOCAL_C void HandleLeaveInCWsAnimConstructL(TAny* aAnim)
   1.141 +	{
   1.142 +	STATIC_CAST(CWsAnim*,aAnim)->SetMessage(NULL);
   1.143 +	STATIC_CAST(CWsAnim*,aAnim)->UserDeactivateAnimGc();
   1.144 +	}
   1.145 +
   1.146 +void CWsAnim::ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow)
   1.147 +	{
   1.148 +	TBool isFocused=(iSprite!=NULL);
   1.149 +	if (!isFocused)
   1.150 +		isFocused=CWsTop::FocusWindowGroup()==iWindow->WinGroup();
   1.151 +	iAnimDll=aAnimDll;
   1.152 +	iAnimSync=ESyncNone;
   1.153 +	if(!aAnim)
   1.154 +	    {
   1.155 +	    RDebug::Printf("CreateInstanceL did not create an anim instance.");
   1.156 +	    Panic();
   1.157 +	    }
   1.158 +	aAnim->iFunctions=this;
   1.159 +	SetMessage(&iClient->ClientMessage());
   1.160 +	CleanupStack::PushL(TCleanupItem(HandleLeaveInCWsAnimConstructL,this));
   1.161 +	if (aIsWindow)
   1.162 +		{
   1.163 +		iAnim.iWindowAnim = static_cast<CWindowAnim*>(aAnim);
   1.164 +		iAnimGc = new (ELeave) CWsAnimGc(*this);
   1.165 +		iAnim.iWindowAnim->iWindowFunctions=this;
   1.166 +		iAnim.iWindowAnim->iGc=iAnimGc;
   1.167 +		iAnim.iWindowAnim->ConstructL(aArgs, isFocused);
   1.168 +		iBitFlags.Set(EWinAnimConstructed);
   1.169 +		WS_ASSERT_DEBUG(iClient->Screen(), EWsPanicNoScreen);
   1.170 +		if (iClient->Screen())
   1.171 +			{
   1.172 +			MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
   1.173 +			if (windowTreeObserver)
   1.174 +				{
   1.175 +				windowTreeObserver->NodeCreated(*this, ParentNode());
   1.176 +				const TRect rect = BestRect();
   1.177 +				windowTreeObserver->NodeExtentChanged(*this, rect);
   1.178 +				windowTreeObserver->NodeActivated(*this); //window-anim inherits activate status from iWindow
   1.179 +				}
   1.180 +			}
   1.181 +		}
   1.182 +	else
   1.183 +		{
   1.184 +		iAnim.iSpriteAnim = static_cast<CSpriteAnim*>(aAnim);
   1.185 +		iAnim.iSpriteAnim->iSpriteFunctions=this;
   1.186 +		iAnim.iSpriteAnim->ConstructL(aArgs);
   1.187 +		}
   1.188 +	CleanupStack::PopAndDestroy(this); // doesn't really destroy "this" - it actually calls HandleLeaveInCWsAnimConstructL
   1.189 +	}
   1.190 +
   1.191 +/**
   1.192 +This function should only be called in the context of a redraw (i.e. CScreenRedraw::OnAnimation) 
   1.193 +@panic EWsPanicAnim will be raised in debug build if this function is called in the wrong context.
   1.194 +*/
   1.195 +void CWsAnim::RedrawWindowAnimL(const TTime& aTimeNow, MWsGraphicsContext* aGc, const TRegion* aRegion)
   1.196 +	{
   1.197 +	WS_ASSERT_DEBUG(iWindow, EWsPanicAnimHasNoWindow);
   1.198 +	WS_ASSERT_DEBUG(iWindow->Screen(), EWsPanicNoScreen);
   1.199 +	WS_ASSERT_DEBUG(iWindow->Screen()->IsAnimating(), EWsPanicAnim);
   1.200 +	iBitFlags.Set(EInRedraw);
   1.201 +	
   1.202 +	TInt frame;
   1.203 +	TInt64 adjustedStart;
   1.204 +	 // Don't call AnimateL() on CFreeTimerWindowAnim animations
   1.205 +	if(iAnimSync!=ESyncNone || iInterval!=0)
   1.206 +	    {
   1.207 +	    AnimateL(aTimeNow, frame, adjustedStart);
   1.208 +	    }
   1.209 +	RedrawWindowAnimL(aGc, aRegion);
   1.210 +	ReSchedule(aTimeNow, frame, adjustedStart);
   1.211 +	
   1.212 +	iBitFlags.Clear(EInRedraw);
   1.213 +	}
   1.214 +
   1.215 +/**
   1.216 +This function should only be called in the context of a redraw (i.e. CScreenRedraw::OnAnimation)
   1.217 +@panic EWsPanicAnim will be raised in debug build if this function is called in the wrong context. 
   1.218 +*/
   1.219 +void CWsAnim::AnimateSpriteAnimL(const TTime& aTimeNow)
   1.220 +	{
   1.221 +	WS_ASSERT_DEBUG(iSprite, EWsPanicNoSprite);
   1.222 +	WS_ASSERT_DEBUG(iSprite->Screen(), EWsPanicNoScreen);
   1.223 +    WS_ASSERT_DEBUG(iSprite->Screen()->IsAnimating(), EWsPanicAnim);
   1.224 +    iBitFlags.Set(EInRedraw);
   1.225 +    	
   1.226 +	TInt frame;
   1.227 +	TInt64 adjustedStart;
   1.228 +	AnimateL(aTimeNow, frame, adjustedStart);
   1.229 +	ReSchedule(aTimeNow, frame, adjustedStart);
   1.230 +	
   1.231 +	iBitFlags.Clear(EInRedraw);
   1.232 +	}
   1.233 +
   1.234 +void CWsAnim::AnimateL(const TTime& aTimeNow, TInt& aFrame, TInt64& aAdjustedStart)
   1.235 +	{
   1.236 +	// Work out which frame we are in:
   1.237 +	if (iLastFrame < 0)
   1.238 +		iStartTime = aTimeNow;
   1.239 +	TInt64 elapsed = aTimeNow.Int64() - iStartTime.Int64();
   1.240 +	aAdjustedStart = iStartTime.Int64();
   1.241 +	aFrame = 0;
   1.242 +	switch (iAnimSync)
   1.243 +		{
   1.244 +		case ESyncNone:
   1.245 +			if (iInterval > 0)
   1.246 +				{
   1.247 +				aFrame = elapsed / iInterval.Int64();
   1.248 +				}
   1.249 +				else
   1.250 +				{
   1.251 +				aFrame = -1; //This would be a CFreeTimerWindowAnim
   1.252 +				}
   1.253 +			break;
   1.254 +		case ESyncFlash:
   1.255 +			{
   1.256 +			TInt64 fraction = elapsed % (KFlashOnTime + KFlashOffTime);
   1.257 +			aFrame = (elapsed - fraction) / (KFlashOnTime + KFlashOffTime) * 2;
   1.258 +			if (fraction > KFlashOnTime)
   1.259 +				{
   1.260 +				aFrame += 1;
   1.261 +				iBitFlags.Clear(EFlashOn);
   1.262 +				}
   1.263 +			else
   1.264 +				{
   1.265 +				iBitFlags.Set(EFlashOn);
   1.266 +				}
   1.267 +			}
   1.268 +			break;
   1.269 +		case ESyncSecond:
   1.270 +			aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneSecond);
   1.271 +			elapsed = aTimeNow.Int64() - aAdjustedStart;
   1.272 +			aFrame = elapsed / KOneSecond;
   1.273 +			break;
   1.274 +		case ESyncMinute:
   1.275 +			aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneMinute);
   1.276 +			elapsed = aTimeNow.Int64() - aAdjustedStart;
   1.277 +			aFrame = elapsed / KOneMinute;
   1.278 +			break;
   1.279 +		case ESyncDay:
   1.280 +			aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneDay);
   1.281 +			elapsed = aTimeNow.Int64() - aAdjustedStart;
   1.282 +			aFrame = elapsed / KOneDay;
   1.283 +			break;
   1.284 +		}
   1.285 +
   1.286 +	// If the frame has changed, animate:
   1.287 +	if (aFrame != iLastFrame && aFrame != -1)
   1.288 +		{
   1.289 +		if (aFrame == iLastFrame + 1 && iLastFrame != -1)
   1.290 +			{
   1.291 +			Animate(NULL); //This can leave
   1.292 +			}
   1.293 +		else
   1.294 +			{
   1.295 +			TDateTime dt = aTimeNow.DateTime();
   1.296 +			Animate(&dt);
   1.297 +			}
   1.298 +		iLastFrame = aFrame;
   1.299 +		}
   1.300 +	}
   1.301 +
   1.302 +void CWsAnim::RedrawWindowAnimL(MWsGraphicsContext * aGc, const TRegion *aRegion)
   1.303 +	{
   1.304 +	WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
   1.305 +	
   1.306 +	// We don't attempt to make use of iRect because it often isn't set up by the client code.
   1.307 +	TWindowInfo::TRegionPair regionPair;
   1.308 +	regionPair.iRegion1 = aRegion;
   1.309 +	regionPair.iRegion2 = NULL;
   1.310 +	iRedrawRegionPair = &regionPair;
   1.311 +	
   1.312 +	if(iWindow && iAnim.iWindowAnim)
   1.313 +		{
   1.314 +		// Regardless of whether we animated or not, redraw:
   1.315 +		iAnimGc->Activate(aRegion, aGc);
   1.316 +		iAnim.iWindowAnim->Redraw();	//This can leave
   1.317 +		iAnimGc->Deactivate();
   1.318 +		}
   1.319 +	
   1.320 +	iRedrawRegionPair = NULL;				
   1.321 +	}
   1.322 +
   1.323 +void CWsAnim::ReSchedule(const TTime& aTimeNow, const TInt& aFrame, const TInt64& aAdjustedStart)
   1.324 +	{
   1.325 +	// Schedule ourselves again (we usually only have to do this when we animate,
   1.326 +	// but it is possible for our scheduled rectangle to get lost in a redraw):
   1.327 +	TInt64 timeToNextFrame = 0;
   1.328 +	switch (iAnimSync)
   1.329 +		{
   1.330 +		case ESyncNone:
   1.331 +			if (iInterval > 0)
   1.332 +				{
   1.333 +				timeToNextFrame = iStartTime.Int64() + iInterval.Int64() * (aFrame + 1) - aTimeNow.Int64();
   1.334 +				}
   1.335 +			break;
   1.336 +		case ESyncFlash:
   1.337 +			if (iBitFlags.IsSet(EFlashOn))
   1.338 +				{
   1.339 +				timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * aFrame / 2 + KFlashOnTime - aTimeNow.Int64();
   1.340 +				}
   1.341 +			else
   1.342 +				{
   1.343 +				timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * (aFrame + 1 ) / 2 - aTimeNow.Int64();
   1.344 +				}
   1.345 +			break;
   1.346 +		case ESyncSecond:
   1.347 +			timeToNextFrame = aAdjustedStart + KOneSecond * (aFrame + 1) - aTimeNow.Int64();
   1.348 +			break;
   1.349 +		case ESyncMinute:
   1.350 +			timeToNextFrame = aAdjustedStart + KOneMinute * (aFrame + 1) - aTimeNow.Int64();
   1.351 +			break;
   1.352 +		case ESyncDay:
   1.353 +			timeToNextFrame = aAdjustedStart + KOneDay * (aFrame + 1) - aTimeNow.Int64();
   1.354 +			break;
   1.355 +		}
   1.356 +	
   1.357 +	if (iAnimSync != ESyncNone || iInterval > 0)
   1.358 +		{
   1.359 +		ScheduleSelf(timeToNextFrame);
   1.360 +		}
   1.361 +			
   1.362 +	}
   1.363 +
   1.364 +/**
   1.365 +Mark the animation area as invalid so it gets redrawn later. 
   1.366 +*/
   1.367 +void CWsAnim::ScheduleSelf(const TTimeIntervalMicroSeconds& aFrom)
   1.368 +	{
   1.369 +	ASSERT( (iWindow && iAnim.iWindowAnim) || (iSprite && iAnim.iSpriteAnim) );
   1.370 +	
   1.371 +	if(iWindow && iAnim.iWindowAnim)
   1.372 +		{
   1.373 +		WS_ASSERT_DEBUG(iWindow->Screen(), EWsPanicNoScreen);
   1.374 +		const TRect rect = BestRect();
   1.375 +		iWindow->Screen()->ScheduleAnimation(EWindowAnim, rect, aFrom, 0, 0, iWindow);
   1.376 +		}
   1.377 +	else if(iSprite && iAnim.iSpriteAnim)
   1.378 +		{
   1.379 +		WS_ASSERT_DEBUG(iSprite->Screen(), EWsPanicNoScreen);
   1.380 +		const TRect rect = iSprite->Rect();
   1.381 +		if(iSprite->Win())
   1.382 +			iSprite->Screen()->ScheduleAnimation(ESpriteAnim, rect, aFrom, 0, 0, iSprite->Win());
   1.383 +		else
   1.384 +			iSprite->Screen()->ScheduleAnimation(EFloatingSpriteAnim, rect, aFrom, 0, 0, NULL);
   1.385 +		}
   1.386 +	}
   1.387 +
   1.388 +void CWsAnim::UserDeactivateAnimGc()
   1.389 +	{
   1.390 +	if (iAnimGc) // For sprite anims iAnimGc is NULL
   1.391 +	    {
   1.392 +        //If we have been receiving draw commands outside the context of 
   1.393 +	    //CScreenRedraw::OnAnimation, then we need to schedule a redraw.
   1.394 +	    if (iAnimGc->IsActive() && iBitFlags.IsClear(EInRedraw))
   1.395 +	         {
   1.396 +	         ScheduleSelf(0);
   1.397 +	         }
   1.398 +	    iAnimGc->UserDeactivate();
   1.399 +	    }
   1.400 +	}
   1.401 +
   1.402 +void CWsAnim::FocusChanged(TBool aNewFocusState)
   1.403 +	{
   1.404 +	WS_ASSERT_DEBUG(iWindow && iAnimGc && iAnim.iWindowAnim,EWsPanicAnim);
   1.405 +	iAnim.iWindowAnim->FocusChanged(aNewFocusState);
   1.406 +	UserDeactivateAnimGc();
   1.407 +	}
   1.408 +
   1.409 +void CWsAnim::Animate(TDateTime *aDateTime)
   1.410 +	{
   1.411 +	WS_ASSERT_DEBUG(Anim(),EWsPanicAnim);
   1.412 +	Anim()->Animate(aDateTime);
   1.413 +	UserDeactivateAnimGc();
   1.414 +	}
   1.415 +
   1.416 +// Callback functions //
   1.417 +
   1.418 +void CWsAnim::ActivateGc()
   1.419 +	{
   1.420 +	if (!iWindow)
   1.421 +		Panic();
   1.422 +
   1.423 +	// Window animation drawing commands need to go through the render stage pipeline. This means
   1.424 +	// that drawing commands issued outside animation redraws (for instance, during Animate() or
   1.425 +	// when the animation receives a command) will mark the animation area as invalid, but the
   1.426 +	// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
   1.427 +	// cycle (CWindowAnim::Redraw).
   1.428 +
   1.429 +	// In this new situation MAnimWindowFunctions::ActivateGc doesn't need to activate the graphics
   1.430 +	// context (drawing commands issued outside CWindowAnim::Redraw are ignored), but to avoid some
   1.431 +	// behavior breaks (for instance, panic situations) we mark the GC as "activated by the user".
   1.432 +	iAnimGc->UserActivate();
   1.433 +	}
   1.434 +
   1.435 +void CWsAnim::DeactivateGc()
   1.436 +	{
   1.437 +	if (!iWindow)
   1.438 +		Panic();
   1.439 +
   1.440 +	// Window animation drawing commands need to go through the render stage pipeline. This means
   1.441 +	// that drawing commands issued outside animation redraws (for instance, during Animate() or
   1.442 +	// when the animation receives a command) will mark the animation area as invalid, but the
   1.443 +	// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
   1.444 +	// cycle (CWindowAnim::Redraw).
   1.445 +
   1.446 +	// In this new situation MAnimFreeTimerWindowFunctions::DeactivateGc just marks the animation
   1.447 +	// area as invalid so it gets redrawn later.
   1.448 +	
   1.449 +	UserDeactivateAnimGc();
   1.450 +	}
   1.451 +
   1.452 +/*
   1.453 +Because lots of animations don't set a rectangle, or set an empty one, we need
   1.454 +to make a best guess at what to use rather than assuming anything.
   1.455 +*/
   1.456 +TRect CWsAnim::BestRect() const
   1.457 +	{
   1.458 +	WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
   1.459 +	TRect rect;
   1.460 +	if (iRect.IsEmpty())
   1.461 +		{
   1.462 +		rect = iWindow->AbsRect();
   1.463 +		}
   1.464 +	else
   1.465 +		{
   1.466 +		rect = iRect;
   1.467 +		rect.Move(iWindow->Origin());
   1.468 +		rect.Intersection(iWindow->AbsRect());
   1.469 +		}
   1.470 +	return rect;
   1.471 +	}
   1.472 +
   1.473 +void CWsAnim::Invalidate(const TRect &aRect)
   1.474 +	{
   1.475 +	if (!iWindow)
   1.476 +		{
   1.477 +		if (iSprite) 
   1.478 +			{
   1.479 +			iSprite->RootWindow()->InvalidateWholeScreen();
   1.480 +			}
   1.481 +		return;
   1.482 +		}
   1.483 +	iWindow->Redraw()->ClientExposing();
   1.484 +	TRect rect(aRect);
   1.485 +	rect.Move(iWindow->Origin());
   1.486 +
   1.487 +	CWsTop::TriggerRedraws(iWindow->RootWindow());
   1.488 +	}
   1.489 +
   1.490 +void CWsAnim::Update()
   1.491 +	{
   1.492 +	if (!iWindow)
   1.493 +		Panic();
   1.494 +	}
   1.495 +
   1.496 +void CWsAnim::Parameters(TWindowInfo &aData)
   1.497 +	{
   1.498 +	if (!iWindow)
   1.499 +		Panic();
   1.500 +	aData.iScreenPos=iWindow->FullRect();
   1.501 +	aData.iMode=iWindow->DisplayMode();
   1.502 +	aData.iRegionPair=iRedrawRegionPair;
   1.503 +	}
   1.504 +
   1.505 +void CWsAnim::VisibleRegion(TRegion& aRegion)
   1.506 +	{
   1.507 +	if(iWindow)
   1.508 +		{
   1.509 +		aRegion.Copy(iWindow->VisibleRegion());
   1.510 +		}
   1.511 +	}
   1.512 +
   1.513 +void CWsAnim::SetSync(TAnimSync aSyncMode)
   1.514 +	{
   1.515 +	if (iAnimSync != aSyncMode)
   1.516 +		{
   1.517 +		iAnimSync=aSyncMode;
   1.518 +		iLastFrame = -1;
   1.519 +		
   1.520 +		if (iAnimSync != ESyncNone)
   1.521 +			ScheduleSelf(0);
   1.522 +
   1.523 +		if (iAnimSync == ESyncFlash)
   1.524 +			iBitFlags.Set(EFlashOn);
   1.525 +		}
   1.526 +	}
   1.527 +
   1.528 +void CWsAnim::SetInterval(TInt aInterval)
   1.529 +	{
   1.530 +	if (iAnimSync!=ESyncNone)
   1.531 +		Panic();
   1.532 +	iLastFrame = -1;	
   1.533 +	if (aInterval < 0)
   1.534 +		aInterval = 0;
   1.535 +	// convert intervals to milliseconds (there are two intervals per second)
   1.536 +	iInterval = aInterval*KOneHalfSecond;
   1.537 +	if (iInterval > 0)
   1.538 +		{
   1.539 +		ScheduleSelf(iInterval);
   1.540 +		}
   1.541 +	
   1.542 +	}
   1.543 +
   1.544 +void CWsAnim::SetNextInterval(TInt aInterval)
   1.545 +	{
   1.546 +	if (iAnimSync!=ESyncNone)
   1.547 +		Panic();
   1.548 +	aInterval = (aInterval <= 0) ? 1 : aInterval; 
   1.549 +	ScheduleSelf(aInterval*KOneHalfSecond);
   1.550 +	}
   1.551 +
   1.552 +void CWsAnim::SetRect(const TRect &aRect)
   1.553 +	{
   1.554 +	if (!iWindow)
   1.555 +		Panic();
   1.556 +	
   1.557 +	if (iRect != aRect)
   1.558 +		{
   1.559 +		iRect=aRect;
   1.560 +		iWindow->UpdateAnimArea(); // backed up windows only
   1.561 +		
   1.562 +		MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
   1.563 +		if (windowTreeObserver && iBitFlags.IsSet(EWinAnimConstructed))
   1.564 +			{
   1.565 +			const TRect rect = BestRect();
   1.566 +			windowTreeObserver->NodeExtentChanged(*this, rect);
   1.567 +			}
   1.568 +		}
   1.569 +	}
   1.570 +
   1.571 +const TRect& CWsAnim::Rect() const
   1.572 +	{
   1.573 +	return(iRect);
   1.574 +	}
   1.575 +
   1.576 +TDateTime CWsAnim::SystemTime() const
   1.577 +	{
   1.578 +	TDateTime dt=iWindow->Screen()->Now().DateTime();
   1.579 +	TInt hour=dt.Hour();
   1.580 +	TInt minute=dt.Minute();
   1.581 +	TInt second=dt.Second();
   1.582 +	TInt microSecond=dt.MicroSecond();
   1.583 +	switch(iAnimSync)
   1.584 +		{
   1.585 +	case ESyncDay:
   1.586 +		hour=0; 
   1.587 +		minute=0;
   1.588 +		/*Fall through*/
   1.589 +	case ESyncMinute:
   1.590 +		second=0; 
   1.591 +		/*Fall through*/
   1.592 +	case ESyncNone:
   1.593 +	case ESyncFlash:
   1.594 +	case ESyncSecond:
   1.595 +		microSecond=0;
   1.596 +		break;
   1.597 +		}
   1.598 +	TDateTime dateTime;
   1.599 +	dateTime.Set(dt.Year(),dt.Month(),dt.Day(),hour,minute,second,microSecond);
   1.600 +	return(dateTime);
   1.601 +	}
   1.602 +
   1.603 +TBool CWsAnim::FlashStateOn() const
   1.604 +	{
   1.605 +	return(iBitFlags.IsSet(EFlashOn));
   1.606 +	}
   1.607 +
   1.608 +const RThread &CWsAnim::Client()
   1.609 +	{
   1.610 +	return(iClient->Client());
   1.611 +	}
   1.612 +
   1.613 +void CWsAnim::ReplyBuf(const TDesC8 &aDes)
   1.614 +	{
   1.615 +	CWsClient::ReplyBuf(aDes);
   1.616 +	}
   1.617 +
   1.618 +void CWsAnim::ReplyBuf(const TDesC16 &aDes)
   1.619 +	{
   1.620 +	CWsClient::ReplyBuf(aDes);
   1.621 +	}
   1.622 +
   1.623 +void CWsAnim::SessionPanic() const
   1.624 +	{
   1.625 +	iClient->SessionPanic(EWservPanicAnimDll);
   1.626 +	}
   1.627 +
   1.628 +void CWsAnim::Panic() const
   1.629 +	{
   1.630 +	iClient->PPanic(EWservPanicAnimDll);
   1.631 +	}
   1.632 +	
   1.633 +void CWsAnim::Panic(TClientPanic aPanic) const
   1.634 +	{
   1.635 +	iClient->PPanic(aPanic);
   1.636 +	}
   1.637 +
   1.638 +void CWsAnim::SendState(MWsWindowTreeObserver& aWindowTreeObserver) const
   1.639 +	{
   1.640 +	if(iNextWin)
   1.641 +		iNextWin->SendState(aWindowTreeObserver);
   1.642 +	
   1.643 +	if(iBitFlags.IsSet(EWinAnimConstructed))
   1.644 +		{
   1.645 +		aWindowTreeObserver.NodeCreated(*this, ParentNode());
   1.646 +		const TRect rect = BestRect();
   1.647 +		aWindowTreeObserver.NodeExtentChanged(*this, rect);
   1.648 +		aWindowTreeObserver.NodeActivated(*this); //window-anim inherits activate status from iWindow
   1.649 +		}
   1.650 +	}
   1.651 +
   1.652 +const CFbsScreenDevice *CWsAnim::ScreenDevice()
   1.653 +	{
   1.654 +	return NULL; // Deprecated by PREQ 2095
   1.655 +	}
   1.656 +
   1.657 +CFbsFont *CWsAnim::DuplicateFontL(TInt aHandle)
   1.658 +	{
   1.659 +	CFbsFont *font=NULL;
   1.660 +	TInt err;
   1.661 +	font=CAnimFbsFont::NewL(aHandle,err);
   1.662 +	if (err!=KErrNone)
   1.663 +		{
   1.664 +		WS_ASSERT_DEBUG(font==NULL,EWsPanicFailedToInitialise);
   1.665 +		if (err==KErrNoMemory)
   1.666 +			User::Leave(err);
   1.667 +		iClient->PPanic(EWservPanicFont);
   1.668 +		}
   1.669 +	return(font);
   1.670 +	}
   1.671 +
   1.672 +void CWsAnim::CloseFont(CFbsFont *aFont)
   1.673 +	{
   1.674 +	if (aFont)
   1.675 +		((CAnimFbsFont *)aFont)->Close();
   1.676 +	}
   1.677 +
   1.678 +CFbsBitmap *CWsAnim::DuplicateBitmapL(TInt aHandle)
   1.679 +	{
   1.680 +	CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
   1.681 +	TInt err=bitmap->Duplicate(aHandle);
   1.682 +	if (err!=KErrNone)
   1.683 +		{
   1.684 +		delete bitmap;
   1.685 +		if (err==KErrNoMemory)
   1.686 +			User::Leave(err);
   1.687 +		iClient->PPanic(EWservPanicBitmap);
   1.688 +		}
   1.689 +	return(bitmap);
   1.690 +	}
   1.691 +
   1.692 +TSize CWsAnim::WindowSize() const
   1.693 +	{
   1.694 +	if (!iWindow)
   1.695 +		Panic();
   1.696 +	return(iWindow->Size());
   1.697 +	}
   1.698 +
   1.699 +TBool CWsAnim::IsHidden()
   1.700 +	{
   1.701 +	if (!iWindow)
   1.702 +		Panic();
   1.703 +
   1.704 +	return iWindow->IsHidden();
   1.705 +	}
   1.706 +
   1.707 +void CWsAnim::SetVisible(TBool aState)
   1.708 +	{	
   1.709 +	//The (iAnimGc->IsActive() && aState) part of the below if statement is in place to accomodate bc with 
   1.710 +	//the original wserv. 
   1.711 +	//We panic when we call SetVisible(ETrue) and the CWsAnimGc has been activated because the origininal wserv did.
   1.712 +	//We don't panic when we call SetVisible(EFalse) and the CWsAnimGc is activated because the original wserv didn't.
   1.713 + 
   1.714 +	if( !iWindow || (iAnimGc->IsActive() && aState) )
   1.715 +		{
   1.716 +		Panic();	
   1.717 +		}
   1.718 +		
   1.719 +	iWindow->SetVisible(aState);
   1.720 +	
   1.721 +	STACK_REGION region;
   1.722 +	VisibleRegion(region);
   1.723 +	TRect rect = region.BoundingRect();
   1.724 +	region.Close();
   1.725 +	if(!rect.IsEmpty())
   1.726 +		iWindow->Screen()->ScheduleAnimation(EWindowAnim, rect,0,0,0, iWindow);
   1.727 +	}
   1.728 +
   1.729 +MAnimGeneralFunctions::TAnimSync CWsAnim::Sync() const
   1.730 +	{
   1.731 +	return(iAnimSync);
   1.732 +	}
   1.733 +
   1.734 +void CWsAnim::GetRawEvents(TBool aGetEvents) const
   1.735 +	{
   1.736 +	if (aGetEvents)
   1.737 +		{
   1.738 +		if (!iAnimAddedInHandler)
   1.739 +			{
   1.740 +			TWindowServerEvent::AddEventHandler(Anim(), iBitFlags.IsSet(EAdvancedPointersEnabled));
   1.741 +			iAnimAddedInHandler = ETrue;
   1.742 +			}
   1.743 +		}
   1.744 +	else
   1.745 +		{
   1.746 +		if (iAnimAddedInHandler)
   1.747 +			{
   1.748 +			TWindowServerEvent::RemoveEventHandler(Anim());
   1.749 +			iAnimAddedInHandler = EFalse;
   1.750 +			}
   1.751 +		}
   1.752 +	}
   1.753 +
   1.754 +void CWsAnim::PostRawEvent(const TRawEvent &aRawEvent) const
   1.755 +	{
   1.756 +	// Cannot remove const from aRawEvent parameter type for compatibility reasons.
   1.757 +	if (TWsPointer::PreProcessClientEvent(const_cast<TRawEvent &>(aRawEvent), iBitFlags.IsSet(EAdvancedPointersEnabled)))
   1.758 +		{
   1.759 +		TWindowServerEvent::ProcessRawEvent(aRawEvent);
   1.760 +		}
   1.761 +	}
   1.762 +
   1.763 +void CWsAnim::PostKeyEvent(const TKeyEvent &aRawEvent) const
   1.764 +	{
   1.765 +	TWindowServerEvent::ProcessKeyEvent(aRawEvent,0);
   1.766 +	}
   1.767 +	
   1.768 +/**
   1.769 +Generate repeated key events. 
   1.770 +*/	
   1.771 +void CWsAnim::PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const
   1.772 +	{
   1.773 +	TWindowServerEvent::ProcessKeyEvent(aRawEvent,aRepeats);
   1.774 + 	}
   1.775 +
   1.776 +TInt CWsAnim::RegisterForNotifications(TUint32 aNotifications)
   1.777 +	{
   1.778 +	if (aNotifications)
   1.779 +		{
   1.780 +		return TWindowServerEvent::AddNotificationHandler(Anim(),aNotifications);
   1.781 +		}
   1.782 +	else
   1.783 +		{
   1.784 +		TWindowServerEvent::RemoveNotificationHandler(Anim());
   1.785 +		return KErrNone;
   1.786 +		}
   1.787 +	}
   1.788 +
   1.789 +const RMessagePtr2* CWsAnim::Message()
   1.790 +	{
   1.791 +	return iMessage;
   1.792 +	}
   1.793 +
   1.794 +void CWsAnim::SetMessage(const RMessagePtr2* aMessage)
   1.795 +	{
   1.796 +	iMessage=aMessage;
   1.797 +	}
   1.798 +
   1.799 +TInt CWsAnim::CommandReply(TInt aOpcode, TAny* aArgs)
   1.800 +	{
   1.801 +	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)
   1.802 +	TInt returnValue=0;
   1.803 +	TRAP(returnValue,returnValue=Anim()->CommandReplyL(aOpcode, aArgs));
   1.804 +	SetMessage(NULL);
   1.805 +	return returnValue;
   1.806 +	}
   1.807 +
   1.808 +TSpriteMember *CWsAnim::GetSpriteMember(TInt aMember) const
   1.809 +	{
   1.810 +	if (!iSprite)
   1.811 +		Panic();
   1.812 +	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
   1.813 +	}
   1.814 +
   1.815 +void CWsAnim::UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)
   1.816 +	{
   1.817 +	if (!iSprite)
   1.818 +		Panic();
   1.819 +	iSprite->Update(aMember,aRect,aFullUpdate);
   1.820 +	}
   1.821 +
   1.822 +void CWsAnim::Activate(TBool aActive)
   1.823 +	{
   1.824 +	if (!iSprite)
   1.825 +		Panic();
   1.826 +	if (!aActive)
   1.827 +		iSprite->Deactivate();
   1.828 +	else
   1.829 +		{
   1.830 +		if (iSprite->IsActive())
   1.831 +			Panic();
   1.832 +		iSprite->Activate();
   1.833 +		}
   1.834 +	}
   1.835 +
   1.836 +void CWsAnim::SizeChangedL()
   1.837 +	{
   1.838 +	if (!iSprite)
   1.839 +		Panic();
   1.840 +	iSprite->CWsSpriteBase::CompleteL();
   1.841 +	}
   1.842 +
   1.843 +void CWsAnim::SetPosition(const TPoint &aPos)
   1.844 +	{
   1.845 +	iSprite->SetPos(aPos);
   1.846 +	}
   1.847 +
   1.848 +TAny* CWsAnim::ExtendedInterface(TInt aInterface)
   1.849 +	{
   1.850 +	switch(aInterface)
   1.851 +		{
   1.852 +	case ENumberOfExtendedInterfaces:
   1.853 +		return reinterpret_cast<TAny*>(EInterfaceCount-1);
   1.854 +	case EWindowExtensionInterface:
   1.855 +		return static_cast<MAnimGeneralFunctionsWindowExtension*>(this);
   1.856 +	case EEventExtentionInterface:
   1.857 +		return static_cast<MAnimGeneralFunctionsEventExtension*>(this);
   1.858 +	default:
   1.859 +		return NULL;
   1.860 +		}
   1.861 +	}
   1.862 +
   1.863 +TInt CWsAnim::Screens() const
   1.864 +	{
   1.865 +	return CWsTop::NumberOfScreens();
   1.866 +	}
   1.867 +
   1.868 +TInt CWsAnim::FocusScreens() const
   1.869 +	{
   1.870 +	return CWsTop::CurrentFocusScreen()->ScreenNumber();
   1.871 +	}
   1.872 +
   1.873 +void CWsAnim::SetFocusScreen(TInt aScreenNo)
   1.874 + 	{
   1.875 + 	if (aScreenNo<CWsTop::NumberOfScreens() && aScreenNo>=0)
   1.876 + 		{
   1.877 + 		CWsTop::SetCurrentFocusScreen(aScreenNo);
   1.878 + 		}
   1.879 + 	else
   1.880 + 		{
   1.881 + 		Panic();
   1.882 + 		}
   1.883 + 	}
   1.884 +
   1.885 +TInt CWsAnim::WindowGroups(TInt aScreen) const
   1.886 +	{
   1.887 +	return(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(aScreen)->RootWindow()->Child(),ETrue,0));
   1.888 +	}
   1.889 +
   1.890 +TBool CWsAnim::WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const
   1.891 +	{
   1.892 +	CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
   1.893 +	if (!group)
   1.894 +		return EFalse;
   1.895 +	aInfo.iId=group->Identifier();
   1.896 +	if (group->ReceivesFocus() && group->ScreenDeviceValid())
   1.897 +		aInfo.iFlags=TWindowGroupInfo::EIsFocusable;
   1.898 +	else
   1.899 +		aInfo.iFlags=0;
   1.900 +	aInfo.iOrdinalPriority=group->OrdinalPriority();
   1.901 +	HBufC* groupName=group->GroupName();
   1.902 +	aInfo.iNameLength=groupName?group->GroupName()->Length():0;
   1.903 +	if (!group->IsChained(aInfo.iParentId))
   1.904 +		aInfo.iParentId=-1;
   1.905 +	return ETrue;
   1.906 +	}
   1.907 +
   1.908 +TInt CWsAnim::WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const
   1.909 +	{
   1.910 +	CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
   1.911 +	if (!group)
   1.912 +		return EFalse;
   1.913 +	HBufC* name=group->GroupName();
   1.914 +	if (name)
   1.915 +		aWindowName.Set(*name);
   1.916 +	else
   1.917 +		aWindowName.Set(NULL,0);
   1.918 +	return ETrue;
   1.919 +	}
   1.920 +
   1.921 +TInt CWsAnim::SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)
   1.922 +	{
   1.923 +	CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifier(aWindowGroupId);
   1.924 +	if (group)
   1.925 +		{
   1.926 +		group->SetOrdinalPriority(aPos,aOrdinalPriority);
   1.927 +		return KErrNone;
   1.928 +		}
   1.929 +	return KErrNotFound;
   1.930 +	}
   1.931 +
   1.932 +void CWsAnim::WindowConfig(TWindowConfig& aWindowConfig) const
   1.933 +	{
   1.934 +	aWindowConfig.iFlags = 0x00;
   1.935 +	if (iWindow->IsTranslucent())
   1.936 +		{
   1.937 +		aWindowConfig.iFlags |= TWindowConfig::ETransparencyEnabled;
   1.938 +		if (iWindow->HasAlpha())
   1.939 +			{
   1.940 +			aWindowConfig.iFlags |= TWindowConfig::EAlphaBlendedTransparency;
   1.941 +			}		
   1.942 +		}
   1.943 +	}
   1.944 +
   1.945 +TBool CWsAnim::SpriteCanBeSeen() const
   1.946 +	{
   1.947 +	if(!iSprite)
   1.948 +		Panic();
   1.949 +	return iSprite->CanBeSeen();
   1.950 +	}
   1.951 +
   1.952 +/** @see MWsWindowTreeNode */
   1.953 +MWsWindowTreeNode::TType CWsAnim::NodeType() const
   1.954 +	{
   1.955 +	return (iSprite) ? iSprite->NodeType() : MWsWindowTreeNode::EWinTreeNodeAnim;
   1.956 +	}
   1.957 +
   1.958 +/** @see MWsWindowTreeNode */
   1.959 +const MWsWindow* CWsAnim::Window() const
   1.960 +	{
   1.961 +	return NULL;
   1.962 +	}
   1.963 +
   1.964 +/** @see MWsWindowTreeNode */
   1.965 +const MWsSprite* CWsAnim::Sprite() const
   1.966 +	{
   1.967 +	return iSprite;
   1.968 +	}
   1.969 +
   1.970 +/** @see MWsWindowTreeNode */
   1.971 +const MWsStandardTextCursor* CWsAnim::StandardTextCursor() const
   1.972 +	{
   1.973 +	return NULL;
   1.974 +	}
   1.975 +
   1.976 +/** @see MWsWindowTreeNode */
   1.977 +const MWsWindowGroup* CWsAnim::WindowGroup() const
   1.978 +	{
   1.979 +	if (iSprite)
   1.980 +		return iSprite->WindowGroup();
   1.981 +	else if (iWindow)
   1.982 +		return iWindow->WindowGroup();
   1.983 +	Panic();
   1.984 +	return NULL;
   1.985 +	}
   1.986 +
   1.987 +/** @see MWsWindowTreeNode */
   1.988 +const MWsWindowTreeNode* CWsAnim::ParentNode() const
   1.989 +	{
   1.990 +	if (iSprite)
   1.991 +		return iSprite->ParentNode();
   1.992 +	else if (iWindow)
   1.993 +		return iWindow; //A window-anim is considered to be a child of the window
   1.994 +	Panic();
   1.995 +	return NULL;
   1.996 +	}
   1.997 +
   1.998 +//
   1.999 +
  1.1000 +CObjectConIx* CWsAnimDll::AnimObjectConIx=NULL;
  1.1001 +
  1.1002 +void CWsAnimDll::InitStaticsL()
  1.1003 +	{
  1.1004 +	CWsAnimDll::AnimObjectConIx=CObjectConIx::NewL();
  1.1005 +	}
  1.1006 +
  1.1007 +void CWsAnimDll::DeleteStatics()
  1.1008 +	{
  1.1009 +	delete CWsAnimDll::AnimObjectConIx;
  1.1010 +	}
  1.1011 +
  1.1012 +CWsAnimDll::CWsAnimDll(CWsClient *aOwner) : CWsObject(aOwner,WS_HANDLE_ANIM_DLL)
  1.1013 +	{
  1.1014 +	__DECLARE_NAME(_S("CWsAnimDll"));
  1.1015 +	}
  1.1016 +
  1.1017 +CWsAnimDll::~CWsAnimDll()
  1.1018 +	{
  1.1019 +	delete iInstanceIndex;
  1.1020 +	AnimObjectConIx->Remove(iInstanceCon);
  1.1021 +	delete iAnimDll;
  1.1022 +	iAnimLib.Close();
  1.1023 +	}
  1.1024 +
  1.1025 +TInt CWsAnimDll::doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow)
  1.1026 +	{
  1.1027 +	iInstanceCon->AddL(aInstance);
  1.1028 +	aInstance->ConstructL(iAnimDll->CreateInstanceL(aType),aArgs,this,aIsWindow);
  1.1029 +	return(iInstanceIndex->AddL(aInstance));
  1.1030 +	}
  1.1031 +
  1.1032 +TInt CWsAnimDll::CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow)
  1.1033 +	{
  1.1034 +	TWindowServerEvent::PotentialEventHandlerL(1);
  1.1035 +	CWsAnim *instance=new(ELeave) CWsAnim(this);
  1.1036 +	CleanupClosePushL(*instance);
  1.1037 +	if (aIsWindow)
  1.1038 +		{
  1.1039 +		CWsClientWindow *win;
  1.1040 +		iWsOwner->HandleToClientWindow(aHandle,&win);
  1.1041 +		instance->Connect(win);
  1.1042 +		}
  1.1043 +	else
  1.1044 +		{
  1.1045 +		CWsObject *sprite=iWsOwner->HandleToObj(aHandle, WS_HANDLE_SPRITE);
  1.1046 +		if (!sprite)
  1.1047 +			OwnerPanic(EWservPanicSprite);
  1.1048 +		instance->Connect(STATIC_CAST(CWsSprite*,sprite));
  1.1049 +		}
  1.1050 +	TInt handle=doCreateInstanceL(instance, aType, aArgs, aIsWindow);
  1.1051 +	CleanupStack::Pop(instance);	
  1.1052 +	return(handle);
  1.1053 +	}
  1.1054 +
  1.1055 +void CWsAnimDll::LoadL(const TDesC &aDllName)
  1.1056 +	{
  1.1057 +	NewObjL();
  1.1058 +	TFileName name(aDllName);
  1.1059 +	User::LeaveIfError(iAnimLib.Load(name));
  1.1060 +	if (wsDebugLog)
  1.1061 +		{
  1.1062 +		TBuf<256> buf;
  1.1063 +		_LIT(KWSERVLoadedAnimDll,"Loaded Anim DLL:  ");
  1.1064 +		buf.Append(KWSERVLoadedAnimDll);
  1.1065 +		buf.Append(iAnimLib.FileName());
  1.1066 +		wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
  1.1067 +		}
  1.1068 +	TUidType uid=iAnimLib.Type();
  1.1069 +	if (uid[1]!=KWservAnimDllUid)
  1.1070 +		User::Leave(KErrNotSupported);
  1.1071 +	CreateCAnimDll f;
  1.1072 +	f=(CreateCAnimDll)User::LeaveIfNull((TAny *)iAnimLib.Lookup(1));
  1.1073 +	iAnimDll=(*f)();
  1.1074 +	iInstanceIndex=CObjectIx::NewL();
  1.1075 +	iInstanceCon=AnimObjectConIx->CreateL();
  1.1076 +	}
  1.1077 +
  1.1078 +void CWsAnimDll::Remove(TInt aHandle)
  1.1079 +	{
  1.1080 +	iInstanceIndex->Remove(aHandle);
  1.1081 +	}
  1.1082 +
  1.1083 +void CWsAnimDll::CommandL(TInt aOpcode, const TAny *aCmdData)
  1.1084 +	{
  1.1085 +	TWsAnimDllCmdUnion pData;
  1.1086 +
  1.1087 +	pData.any=aCmdData;
  1.1088 +	switch(aOpcode)
  1.1089 +		{
  1.1090 +		case EWsAnimDllOpFree:
  1.1091 +			delete this;
  1.1092 +			break;
  1.1093 +		case EWsAnimDllOpCreateInstance:
  1.1094 +		case EWsAnimDllOpCreateInstanceSprite:
  1.1095 +			SetReply(CreateInstanceL(*pData.UInt,*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)
  1.1096 +																					,aOpcode==EWsAnimDllOpCreateInstance));
  1.1097 +			break;
  1.1098 +		case EWsAnimDllOpCommandReply:
  1.1099 +		case EWsAnimDllOpCommand:
  1.1100 +		case EWsAnimDllOpDestroyInstance:
  1.1101 +			{
  1.1102 +			CWsAnim *anim=(CWsAnim *)iInstanceIndex->At(*pData.UInt);
  1.1103 +			TInt ret;
  1.1104 +			//Deleting a non existant Anim is allowed as the Anim will be destroyed
  1.1105 +			//when the window it is on (or a parent of) it destroyed
  1.1106 +			if (anim==NULL && aOpcode!=EWsAnimDllOpDestroyInstance)
  1.1107 +				OwnerPanic(EWservPanicAnim);
  1.1108 +			switch(aOpcode)
  1.1109 +				{
  1.1110 +				case EWsAnimDllOpCommandReply:
  1.1111 +					{
  1.1112 +					TInt reply=KErrNone;
  1.1113 +					TRAP(ret,reply=anim->CommandReply(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
  1.1114 +					anim->UserDeactivateAnimGc();
  1.1115 +					if (ret!=KErrNone)
  1.1116 +						User::Leave(ret);
  1.1117 +					SetReply(reply);
  1.1118 +					}
  1.1119 +					break;
  1.1120 +				case EWsAnimDllOpCommand:
  1.1121 +					TRAP(ret,anim->Anim()->Command(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
  1.1122 +					if (ret!=KErrNone && ret!=CWsClient::EPanicLeave)
  1.1123 +						OwnerPanic(EWservPanicAnimLeave);
  1.1124 +					anim->UserDeactivateAnimGc();
  1.1125 +					break;
  1.1126 +				case EWsAnimDllOpDestroyInstance:
  1.1127 +					if (anim) // Added to go with changes described above
  1.1128 +						Remove(*pData.UInt);
  1.1129 +					break;
  1.1130 +				default:
  1.1131 +					break;
  1.1132 +				}
  1.1133 +			}
  1.1134 +			break;
  1.1135 +		default:
  1.1136 +			OwnerPanic(EWservPanicOpcode);
  1.1137 +		}
  1.1138 +	}
  1.1139 +
  1.1140 +CAnimFbsFont::~CAnimFbsFont()
  1.1141 +	{}
  1.1142 +
  1.1143 +CAnimFbsFont::CAnimFbsFont()
  1.1144 +	{}
  1.1145 +
  1.1146 +CAnimFbsFont* CAnimFbsFont::NewL(TInt aHandle,TInt& aError)
  1.1147 +	{
  1.1148 +	CAnimFbsFont *font=new(ELeave) CAnimFbsFont();
  1.1149 +	font->iAccessCount=1;
  1.1150 +	aError=font->Duplicate(aHandle);
  1.1151 +	if (aError!=KErrNone)
  1.1152 +		{
  1.1153 +		delete font;
  1.1154 +		font=NULL;
  1.1155 +		}
  1.1156 +	return(font);
  1.1157 +	}
  1.1158 +
  1.1159 +void CAnimFbsFont::Open()
  1.1160 +	{
  1.1161 +	iAccessCount++;
  1.1162 +	}
  1.1163 +
  1.1164 +void CAnimFbsFont::Close()
  1.1165 +	{
  1.1166 +	if (--iAccessCount==0)
  1.1167 +		delete this;
  1.1168 +	}
  1.1169 +
  1.1170 +
  1.1171 +/*MAnimGeneralFunctions*/
  1.1172 +void MAnimGeneralFunctions::Reserved1() const
  1.1173 +	{}
  1.1174 +	
  1.1175 +void MAnimGeneralFunctions::Reserved2() const
  1.1176 +	{}
  1.1177 +	
  1.1178 +void MAnimGeneralFunctions::Reserved3() const
  1.1179 +	{}
  1.1180 +
  1.1181 +	
  1.1182 +/*MAnimGeneralFunctionsExtension*/
  1.1183 +
  1.1184 +void MAnimGeneralFunctionsWindowExtension::Reserved1() const
  1.1185 +	{}
  1.1186 +
  1.1187 +void MAnimGeneralFunctionsWindowExtension::Reserved2() const
  1.1188 +	{}
  1.1189 +
  1.1190 +void MAnimGeneralFunctionsWindowExtension::Reserved3() const
  1.1191 +	{}
  1.1192 +
  1.1193 +
  1.1194 +/*MAnimWindowFunctions*/
  1.1195 +
  1.1196 +void MAnimWindowFunctions::Reserved() const
  1.1197 +	{}
  1.1198 +
  1.1199 +void MAnimWindowFunctions::Reserved1() const
  1.1200 +	{}
  1.1201 +	
  1.1202 +void MAnimWindowFunctions::Reserved2() const
  1.1203 +	{}
  1.1204 +	
  1.1205 +void MAnimWindowFunctions::Reserved3() const
  1.1206 +	{}
  1.1207 +	
  1.1208 +
  1.1209 +/*MAnimFreeTimerWindowFunctions*/
  1.1210 +
  1.1211 +void MAnimFreeTimerWindowFunctions::Reserved3() const
  1.1212 +	{}
  1.1213 +
  1.1214 +
  1.1215 +/*MAnimSpriteFunctions*/
  1.1216 +
  1.1217 +void MAnimSpriteFunctions::Reserved() const
  1.1218 +	{}
  1.1219 +
  1.1220 +void MAnimSpriteFunctions::Reserved2() const
  1.1221 +	{}
  1.1222 +	
  1.1223 +void MAnimSpriteFunctions::Reserved3() const
  1.1224 +	{}
  1.1225 +	
  1.1226 +void MAnimSpriteFunctions::Reserved4() const
  1.1227 +	{}	
  1.1228 +
  1.1229 +/*MAnimGeneralFunctionsEventExtension*/
  1.1230 +
  1.1231 +void MAnimGeneralFunctionsEventExtension::Reserved1() const
  1.1232 +	{}
  1.1233 +	
  1.1234 +void MAnimGeneralFunctionsEventExtension::Reserved2() const
  1.1235 +	{}