os/graphics/windowing/windowserver/nonnga/SERVER/ANIMDLL.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/ANIMDLL.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1027 @@
     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 "offscreenbitmap.h"
    1.31 +#include "panics.h"
    1.32 +#include "wsfont.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 +CWsAnimGc *CWsAnim::WsAnimGc=NULL;
    1.47 +
    1.48 +void CWsAnim::InitStaticsL()
    1.49 +	{
    1.50 +	WsAnimGc=new (ELeave) CWsAnimGc();
    1.51 +	}
    1.52 +
    1.53 +void CWsAnim::DeleteStatics()
    1.54 +	{
    1.55 +	delete WsAnimGc;
    1.56 +	WsAnimGc=NULL;
    1.57 +	}
    1.58 +
    1.59 +CWsAnim::CWsAnim(CWsAnimDll *aDll) : iClient(aDll->WsOwner()), iAnimAddedInHandler(EFalse), iLastFrame(-1), iFlashOn(ETrue)
    1.60 +	{
    1.61 +	__DECLARE_NAME(_S("CWsAnim"));
    1.62 +	}
    1.63 +
    1.64 +void CWsAnim::WindowClosing(CWsAnim *aWsAnim)
    1.65 +	{
    1.66 +	CWsAnim *anim=aWsAnim;
    1.67 +	CWsAnim *next;
    1.68 +	while(anim)
    1.69 +		{
    1.70 +		next=anim->iNextWin;
    1.71 +		CloseAnim(anim);
    1.72 +		anim=next;
    1.73 +		}
    1.74 +	}
    1.75 +
    1.76 +void CWsAnim::CloseAnim(CWsAnim *aWsAnim)
    1.77 +	{
    1.78 +	TInt handle=aWsAnim->iAnimDll->AnimObjectHandle(aWsAnim);
    1.79 +	if (handle<0)
    1.80 +		delete aWsAnim;
    1.81 +	else
    1.82 +		aWsAnim->iAnimDll->Remove(handle);
    1.83 +	}
    1.84 +
    1.85 +CWsAnim::~CWsAnim()
    1.86 +	{
    1.87 +	WsAnimGc->AnimDeleted(this);
    1.88 +	if (iWindow)	// In case it never got linked
    1.89 +		{
    1.90 +		CWsAnim **pAnim;
    1.91 +		for(pAnim= &iWindow->iAnimList;(*pAnim)!=this;pAnim= &(*pAnim)->iNextWin)
    1.92 +			{}
    1.93 +		*pAnim=iNextWin;
    1.94 +		}
    1.95 +	else if (iSprite)
    1.96 +		iSprite->iAnim=NULL;
    1.97 +	
    1.98 +	// force the anim for the event handler list.
    1.99 +	TWindowServerEvent::RemoveEventHandler(iAnim);
   1.100 +	TWindowServerEvent::RemoveNotificationHandler(iAnim);
   1.101 +	delete iAnim;
   1.102 +	TWindowServerEvent::PotentialEventHandlerL(-1);		//PotentialEventHandler cannot leave when passed a negative parameter.
   1.103 +	}
   1.104 +
   1.105 +void CWsAnim::Connect(CWsClientWindow *aWindow)
   1.106 +	{
   1.107 +	if (iSprite)
   1.108 +		Panic();
   1.109 +	iWindow=aWindow;
   1.110 +	iNextWin=aWindow->iAnimList;
   1.111 +	aWindow->iAnimList=this;
   1.112 +	}
   1.113 +
   1.114 +void CWsAnim::Connect(CWsSprite *aSprite)
   1.115 +	{
   1.116 +	if (iWindow)
   1.117 +		Panic();
   1.118 +	iSprite=aSprite;
   1.119 +	iSprite->iAnim=this;
   1.120 +	}
   1.121 +
   1.122 +LOCAL_C void HandleLeaveInCWsAnimConstructL(TAny* aAnim)
   1.123 +	{
   1.124 +	STATIC_CAST(CWsAnim*,aAnim)->SetMessage(NULL);
   1.125 +	CWsAnim::UserDeactivateAnimGc();
   1.126 +	}
   1.127 +
   1.128 +void CWsAnim::ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow)
   1.129 +	{
   1.130 +	TBool isFocused=(iSprite!=NULL);
   1.131 +	if (!isFocused)
   1.132 +		isFocused=CWsTop::FocusWindowGroup()==iWindow->WinGroup();
   1.133 +	iAnimDll=aAnimDll;
   1.134 +	iAnimSync=ESyncNone;
   1.135 +	iAnim=aAnim;
   1.136 +	iAnim->iFunctions=this;
   1.137 +	SetMessage(&iClient->ClientMessage());
   1.138 +	CleanupStack::PushL(TCleanupItem(HandleLeaveInCWsAnimConstructL,this));
   1.139 +	if (aIsWindow)
   1.140 +		{
   1.141 +		CWindowAnim* windowAnim=WindowAnim();
   1.142 +		windowAnim->iWindowFunctions=this;
   1.143 +		windowAnim->iGc=WsAnimGc;
   1.144 +		windowAnim->ConstructL(aArgs, isFocused);
   1.145 +		}
   1.146 +	else
   1.147 +		{
   1.148 +		CSpriteAnim* spriteAnim=STATIC_CAST(CSpriteAnim*,iAnim);
   1.149 +		spriteAnim->iSpriteFunctions=this;
   1.150 +		spriteAnim->ConstructL(aArgs);
   1.151 +		}
   1.152 +	CleanupStack::PopAndDestroy(this); // doesn't really destroy "this" - it actually calls HandleLeaveInCWsAnimConstructL
   1.153 +	}
   1.154 +
   1.155 +void CWsAnim::Redraw(CFbsBitGc * aGc, const TRegion *aRegion)
   1.156 +	{
   1.157 +	WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
   1.158 +	if (!iWindow)
   1.159 +		return;
   1.160 +	
   1.161 +	TWindowInfo::TRegionPair regionPair;
   1.162 +	regionPair.iRegion1 = aRegion;
   1.163 +	regionPair.iRegion2 = NULL;
   1.164 +	iRedrawRegionPair = &regionPair;
   1.165 +	
   1.166 +	// We don't attempt to make use of iRect because it often isn't set up by the client code.
   1.167 +	
   1.168 +	// Work out which frame we are in:
   1.169 +	TTime now = iWindow->Screen()->Now();
   1.170 +	if (iLastFrame < 0)
   1.171 +		iStartTime = now;
   1.172 +	TInt64 elapsed = now.Int64() - iStartTime.Int64();
   1.173 +	TInt64 adjustedStart = iStartTime.Int64();
   1.174 +	TInt frame = 0;
   1.175 +	switch (iAnimSync)
   1.176 +		{
   1.177 +		case ESyncNone:
   1.178 +			if (iInterval > 0)
   1.179 +				{
   1.180 +				frame = elapsed / iInterval.Int64();
   1.181 +				}
   1.182 +				else
   1.183 +				{
   1.184 +				frame = -1;
   1.185 +				}
   1.186 +			break;
   1.187 +		case ESyncFlash:
   1.188 +			{
   1.189 +			TInt64 fraction = elapsed % (KFlashOnTime + KFlashOffTime);
   1.190 +			frame = (elapsed - fraction) / (KFlashOnTime + KFlashOffTime) * 2;
   1.191 +			if (fraction > KFlashOnTime)
   1.192 +				{
   1.193 +				frame = frame + 1;
   1.194 +				iFlashOn = EFalse;
   1.195 +				}
   1.196 +			else
   1.197 +				{
   1.198 +				iFlashOn = ETrue;
   1.199 +				}
   1.200 +			}
   1.201 +			break;
   1.202 +		case ESyncSecond:
   1.203 +			adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneSecond);
   1.204 +			elapsed = now.Int64() - adjustedStart;
   1.205 +			frame = elapsed / KOneSecond;
   1.206 +			break;
   1.207 +		case ESyncMinute:
   1.208 +			adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneMinute);
   1.209 +			elapsed = now.Int64() - adjustedStart;
   1.210 +			frame = elapsed / KOneMinute;
   1.211 +			break;
   1.212 +		case ESyncDay:
   1.213 +			adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneDay);
   1.214 +			elapsed = now.Int64() - adjustedStart;
   1.215 +			frame = elapsed / KOneDay;
   1.216 +			break;
   1.217 +		}
   1.218 +	
   1.219 +	// If the frame has changed, animate:
   1.220 +	if (frame != iLastFrame && frame != -1)
   1.221 +		{
   1.222 +		if (frame == iLastFrame + 1 && iLastFrame != -1)
   1.223 +			{
   1.224 +			Animate(NULL);
   1.225 +			}
   1.226 +		else
   1.227 +			{
   1.228 +			TDateTime dt = now.DateTime();
   1.229 +			Animate(&dt);
   1.230 +			}
   1.231 +		iLastFrame = frame;
   1.232 +		}
   1.233 +
   1.234 +	// Regardless of whether we animated or not, redraw:
   1.235 +	WsAnimGc->Activate(iWindow, this, aRegion, aGc);	
   1.236 +	WindowAnim()->Redraw();
   1.237 +	WsAnimGc->Deactivate();
   1.238 +
   1.239 +	// Schedule ourselves again (we usually only have to do this when we animate,
   1.240 +	// but it is possible for our scheduled rectangle to get lost in a redraw):
   1.241 +	TInt64 timeToNextFrame = 0;
   1.242 +	switch (iAnimSync)
   1.243 +		{
   1.244 +		case ESyncNone:
   1.245 +			if (iInterval > 0)
   1.246 +				{
   1.247 +				timeToNextFrame = iStartTime.Int64() + iInterval.Int64() * (frame + 1) - iWindow->Screen()->Now().Int64();
   1.248 +				}
   1.249 +			break;
   1.250 +		case ESyncFlash:
   1.251 +			if (iFlashOn)
   1.252 +				{
   1.253 +				timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * frame / 2 + KFlashOnTime - iWindow->Screen()->Now().Int64();
   1.254 +				}
   1.255 +			else
   1.256 +				{
   1.257 +				timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * (frame + 1 ) / 2 - iWindow->Screen()->Now().Int64();
   1.258 +				}
   1.259 +			break;
   1.260 +		case ESyncSecond:
   1.261 +			timeToNextFrame = adjustedStart + KOneSecond * (frame + 1) - iWindow->Screen()->Now().Int64();
   1.262 +			break;
   1.263 +		case ESyncMinute:
   1.264 +			timeToNextFrame = adjustedStart + KOneMinute * (frame + 1) - iWindow->Screen()->Now().Int64();
   1.265 +			break;
   1.266 +		case ESyncDay:
   1.267 +			timeToNextFrame = adjustedStart + KOneDay * (frame + 1) - iWindow->Screen()->Now().Int64();
   1.268 +			break;
   1.269 +		}
   1.270 +	
   1.271 +	if (iAnimSync != ESyncNone || iInterval > 0)
   1.272 +		{
   1.273 +		iWindow->Screen()->ScheduleAnimation(BestRect(), timeToNextFrame, 0, 0);
   1.274 +		}
   1.275 +
   1.276 +	iRedrawRegionPair = NULL;				
   1.277 +	}
   1.278 +
   1.279 +void CWsAnim::FocusChanged(TBool aNewFocusState)
   1.280 +	{
   1.281 +	WindowAnim()->FocusChanged(aNewFocusState);
   1.282 +	WsAnimGc->UserDeactivate();
   1.283 +	}
   1.284 +
   1.285 +void CWsAnim::Animate(TDateTime *aDateTime)
   1.286 +	{
   1.287 +	iAnim->Animate(aDateTime);
   1.288 +	WsAnimGc->UserDeactivate();
   1.289 +	}
   1.290 +
   1.291 +void CWsAnim::UserDeactivateAnimGc()
   1.292 +	{
   1.293 +	WsAnimGc->UserDeactivate();
   1.294 +	}
   1.295 +
   1.296 +// Callback functions //
   1.297 +
   1.298 +void CWsAnim::ActivateGc()
   1.299 +	{
   1.300 +	if (!iWindow)
   1.301 +		Panic();
   1.302 +
   1.303 +	// Window animation drawing commands need to go through the render stage pipeline. This means
   1.304 +	// that drawing commands issued outside animation redraws (for instance, during Animate() or
   1.305 +	// when the animation receives a command) will mark the animation area as invalid, but the
   1.306 +	// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
   1.307 +	// cycle (CWindowAnim::Redraw).
   1.308 +
   1.309 +	// In this new situation MAnimWindowFunctions::ActivateGc doesn't need to activate the graphics
   1.310 +	// context (drawing commands issued outside CWindowAnim::Redraw are ignored), but to avoid some
   1.311 +	// behavior breaks (for instance, panic situations) we mark the GC as "activated by the user".
   1.312 +	WsAnimGc->UserActivate(iWindow, this);
   1.313 +	}
   1.314 +
   1.315 +void CWsAnim::DeactivateGc()
   1.316 +	{
   1.317 +	if (!iWindow)
   1.318 +		Panic();
   1.319 +
   1.320 +	// Window animation drawing commands need to go through the render stage pipeline. This means
   1.321 +	// that drawing commands issued outside animation redraws (for instance, during Animate() or
   1.322 +	// when the animation receives a command) will mark the animation area as invalid, but the
   1.323 +	// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
   1.324 +	// cycle (CWindowAnim::Redraw).
   1.325 +
   1.326 +	// In this new situation MAnimFreeTimerWindowFunctions::DeactivateGc just marks the animation
   1.327 +	// area as invalid so it gets redrawn later.
   1.328 +	WsAnimGc->UserDeactivate();
   1.329 +	}
   1.330 +
   1.331 +/*
   1.332 +Because lots of animations don't set a rectangle, or set an empty one, we need
   1.333 +to make a best guess at what to use rather than assuming anything.
   1.334 +*/
   1.335 +TRect CWsAnim::BestRect() const
   1.336 +	{
   1.337 +	TRect rect;
   1.338 +	if (iRect.IsEmpty())
   1.339 +		{
   1.340 +		rect = iWindow->AbsRect();
   1.341 +		}
   1.342 +	else
   1.343 +		{
   1.344 +		rect = iRect;
   1.345 +		rect.Move(iWindow->Origin());
   1.346 +		rect.Intersection(iWindow->AbsRect());
   1.347 +		}
   1.348 +	return rect;
   1.349 +	}
   1.350 +
   1.351 +void CWsAnim::Invalidate(const TRect &aRect)
   1.352 +	{
   1.353 +	if (!iWindow)
   1.354 +		{
   1.355 +		if (iSprite) 
   1.356 +			{
   1.357 +			iSprite->RootWindow()->InvalidateWholeScreen();
   1.358 +			}
   1.359 +		return;
   1.360 +		}
   1.361 +	iWindow->Redraw()->ClientExposing();
   1.362 +	TRect rect(aRect);
   1.363 +	rect.Move(iWindow->Origin());
   1.364 +
   1.365 +	CWsTop::TriggerRedraws(iWindow->RootWindow());
   1.366 +	}
   1.367 +
   1.368 +void CWsAnim::Update()
   1.369 +	{
   1.370 +	if (!iWindow)
   1.371 +		Panic();
   1.372 +	}
   1.373 +
   1.374 +void CWsAnim::Parameters(TWindowInfo &aData)
   1.375 +	{
   1.376 +	if (!iWindow)
   1.377 +		Panic();
   1.378 +	aData.iScreenPos=iWindow->FullRect();
   1.379 +	aData.iMode=iWindow->DisplayMode();
   1.380 +	aData.iRegionPair=iRedrawRegionPair;
   1.381 +	}
   1.382 +
   1.383 +void CWsAnim::VisibleRegion(TRegion& aRegion)
   1.384 +	{
   1.385 +	if(iWindow)
   1.386 +		{
   1.387 +		aRegion.Copy(iWindow->VisibleRegion());
   1.388 +		}
   1.389 +	}
   1.390 +
   1.391 +void CWsAnim::SetSync(TAnimSync aSyncMode)
   1.392 +	{
   1.393 +	if (iAnimSync != aSyncMode)
   1.394 +		{
   1.395 +		iAnimSync=aSyncMode;	
   1.396 +		iLastFrame = -1;
   1.397 +		if (iAnimSync != ESyncNone)
   1.398 +			iWindow->Screen()->ScheduleAnimation(BestRect(),0,0,0);
   1.399 +		if (iAnimSync == ESyncFlash)
   1.400 +			iFlashOn = ETrue;
   1.401 +		}
   1.402 +	}
   1.403 +
   1.404 +void CWsAnim::SetInterval(TInt aInterval)
   1.405 +	{
   1.406 +	if (iAnimSync!=ESyncNone)
   1.407 +		Panic();
   1.408 +	iLastFrame = -1;	
   1.409 +	if (aInterval < 0)
   1.410 +		aInterval = 0;
   1.411 +	// convert intervals to milliseconds (there are two intervals per second)
   1.412 +	iInterval = aInterval*KOneHalfSecond;
   1.413 +	if (iInterval > 0)
   1.414 +		{
   1.415 +		iWindow->Screen()->ScheduleAnimation(BestRect(),iInterval,0,0);
   1.416 +		}
   1.417 +	}
   1.418 +
   1.419 +void CWsAnim::SetNextInterval(TInt aInterval)
   1.420 +	{
   1.421 +	if (iAnimSync!=ESyncNone)
   1.422 +		Panic();
   1.423 +	aInterval = (aInterval <= 0) ? 1 : aInterval; 
   1.424 +	iWindow->Screen()->ScheduleAnimation(BestRect(),aInterval*KOneHalfSecond,0,0);
   1.425 +	}
   1.426 +
   1.427 +void CWsAnim::SetRect(const TRect &aRect)
   1.428 +	{
   1.429 +	if (!iWindow)
   1.430 +		Panic();
   1.431 +	iRect=aRect;
   1.432 +	iWindow->UpdateAnimArea(); // backed up windows only
   1.433 +	}
   1.434 +
   1.435 +const TRect& CWsAnim::Rect() const
   1.436 +	{
   1.437 +	return(iRect);
   1.438 +	}
   1.439 +
   1.440 +TDateTime CWsAnim::SystemTime() const
   1.441 +	{
   1.442 +	TDateTime dt=iWindow->Screen()->Now().DateTime();
   1.443 +	TInt hour=dt.Hour();
   1.444 +	TInt minute=dt.Minute();
   1.445 +	TInt second=dt.Second();
   1.446 +	TInt microSecond=dt.MicroSecond();
   1.447 +	switch(iAnimSync)
   1.448 +		{
   1.449 +	case ESyncDay:
   1.450 +		hour=0;
   1.451 +		minute=0;
   1.452 +		/*Fall through*/
   1.453 +	case ESyncMinute:
   1.454 +		second=0; 
   1.455 +		/*Fall through*/
   1.456 +	case ESyncNone:
   1.457 +	case ESyncFlash:
   1.458 +	case ESyncSecond:
   1.459 +		microSecond=0;
   1.460 +		break;
   1.461 +		}
   1.462 +	TDateTime dateTime;
   1.463 +	dateTime.Set(dt.Year(),dt.Month(),dt.Day(),hour,minute,second,microSecond);
   1.464 +	return(dateTime);
   1.465 +	}
   1.466 +
   1.467 +TBool CWsAnim::FlashStateOn() const
   1.468 +	{
   1.469 +	return(iFlashOn);
   1.470 +	}
   1.471 +
   1.472 +const RThread &CWsAnim::Client()
   1.473 +	{
   1.474 +	return(iClient->Client());
   1.475 +	}
   1.476 +
   1.477 +void CWsAnim::ReplyBuf(const TDesC8 &aDes)
   1.478 +	{
   1.479 +	CWsClient::ReplyBuf(aDes);
   1.480 +	}
   1.481 +
   1.482 +void CWsAnim::ReplyBuf(const TDesC16 &aDes)
   1.483 +	{
   1.484 +	CWsClient::ReplyBuf(aDes);
   1.485 +	}
   1.486 +
   1.487 +void CWsAnim::Panic() const
   1.488 +	{
   1.489 +	iClient->PPanic(EWservPanicAnimDll);
   1.490 +	}
   1.491 +	
   1.492 +void CWsAnim::Panic(TClientPanic aPanic) const
   1.493 +	{
   1.494 +	iClient->PPanic(aPanic);
   1.495 +	}
   1.496 +	
   1.497 +const CFbsScreenDevice *CWsAnim::ScreenDevice()
   1.498 +	{
   1.499 +	CScreen* screen=NULL;		//To stop a warning
   1.500 +	if (iWindow)
   1.501 +		screen=iWindow->Screen();
   1.502 +	else if (iSprite)
   1.503 +		screen=iSprite->Screen();
   1.504 +	else
   1.505 +		Panic();
   1.506 +	return screen->ScreenDevice();
   1.507 +	}
   1.508 +
   1.509 +CFbsFont *CWsAnim::DuplicateFontL(TInt aHandle)
   1.510 +	{
   1.511 +	CFbsFont *font=NULL;
   1.512 +	TInt err;
   1.513 +	font=CAnimFbsFont::NewL(aHandle,err);
   1.514 +	if (err!=KErrNone)
   1.515 +		{
   1.516 +		WS_ASSERT_DEBUG(font==NULL,EWsPanicFailedToInitialise);
   1.517 +		if (err==KErrNoMemory)
   1.518 +			User::Leave(err);
   1.519 +		iClient->PPanic(EWservPanicFont);
   1.520 +		}
   1.521 +	return(font);
   1.522 +	}
   1.523 +
   1.524 +void CWsAnim::CloseFont(CFbsFont *aFont)
   1.525 +	{
   1.526 +	if (aFont)
   1.527 +		((CAnimFbsFont *)aFont)->Close();
   1.528 +	}
   1.529 +
   1.530 +CFbsBitmap *CWsAnim::DuplicateBitmapL(TInt aHandle)
   1.531 +	{
   1.532 +	CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
   1.533 +	TInt err=bitmap->Duplicate(aHandle);
   1.534 +	if (err!=KErrNone)
   1.535 +		{
   1.536 +		delete bitmap;
   1.537 +		if (err==KErrNoMemory)
   1.538 +			User::Leave(err);
   1.539 +		iClient->PPanic(EWservPanicBitmap);
   1.540 +		}
   1.541 +	return(bitmap);
   1.542 +	}
   1.543 +
   1.544 +TSize CWsAnim::WindowSize() const
   1.545 +	{
   1.546 +	if (!iWindow)
   1.547 +		Panic();
   1.548 +	return(iWindow->Size());
   1.549 +	}
   1.550 +
   1.551 +TBool CWsAnim::IsHidden()
   1.552 +	{
   1.553 +	if (!iWindow)
   1.554 +		Panic();
   1.555 +
   1.556 +	return iWindow->IsHidden();
   1.557 +	}
   1.558 +
   1.559 +void CWsAnim::SetVisible(TBool aState)
   1.560 +	{	
   1.561 +	//The (WsAnimGc->IsActive() && aState) part of the below if statement is in place to accomodate bc with 
   1.562 +	//the original wserv. 
   1.563 +	//We panic when we call SetVisible(ETrue) and the CWsAnimGc has been activated because the origininal wserv did.
   1.564 +	//We don't panic when we call SetVisible(EFalse) and the CWsAnimGc is activated because the original wserv didn't.
   1.565 +	if( !iWindow || (WsAnimGc->IsActive() && aState) )
   1.566 +		{
   1.567 +		Panic();	
   1.568 +		}
   1.569 +		
   1.570 +	iWindow->SetVisible(aState);
   1.571 +	
   1.572 +	STACK_REGION region;
   1.573 +	VisibleRegion(region);
   1.574 +	TRect rect = region.BoundingRect();
   1.575 +	region.Close();
   1.576 +	if(!rect.IsEmpty())
   1.577 +		iWindow->Screen()->ScheduleAnimation(rect,0,0,0);
   1.578 +	}
   1.579 +
   1.580 +MAnimGeneralFunctions::TAnimSync CWsAnim::Sync() const
   1.581 +	{
   1.582 +	return(iAnimSync);
   1.583 +	}
   1.584 +
   1.585 +void CWsAnim::GetRawEvents(TBool aGetEvents) const
   1.586 +	{
   1.587 +	if (aGetEvents)
   1.588 +		{
   1.589 +		if (!iAnimAddedInHandler)
   1.590 +			{
   1.591 +			TWindowServerEvent::AddEventHandler(iAnim);	
   1.592 +			iAnimAddedInHandler = ETrue;
   1.593 +			}
   1.594 +		}
   1.595 +	else
   1.596 +		{
   1.597 +		if (iAnimAddedInHandler)
   1.598 +			{
   1.599 +			TWindowServerEvent::RemoveEventHandler(iAnim);
   1.600 +			iAnimAddedInHandler = EFalse;
   1.601 +			}
   1.602 +		}
   1.603 +	}
   1.604 +
   1.605 +void CWsAnim::PostRawEvent(const TRawEvent &aRawEvent) const
   1.606 +	{
   1.607 +	TWindowServerEvent::ProcessRawEvent(aRawEvent);
   1.608 +	}
   1.609 +
   1.610 +void CWsAnim::PostKeyEvent(const TKeyEvent &aRawEvent) const
   1.611 +	{
   1.612 +	TWindowServerEvent::ProcessKeyEvent(aRawEvent,0);
   1.613 +	}
   1.614 +	
   1.615 +/**
   1.616 +Generate repeated key events. 
   1.617 +*/	
   1.618 +void CWsAnim::PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const
   1.619 +	{
   1.620 +	TWindowServerEvent::ProcessKeyEvent(aRawEvent,aRepeats);
   1.621 + 	}
   1.622 +
   1.623 +TInt CWsAnim::RegisterForNotifications(TUint32 aNotifications)
   1.624 +	{
   1.625 +	if (aNotifications)
   1.626 +		{
   1.627 +		return TWindowServerEvent::AddNotificationHandler(iAnim,aNotifications);
   1.628 +		}
   1.629 +	else
   1.630 +		{
   1.631 +		TWindowServerEvent::RemoveNotificationHandler(iAnim);
   1.632 +		return KErrNone;
   1.633 +		}
   1.634 +	}
   1.635 +
   1.636 +
   1.637 +const RMessagePtr2* CWsAnim::Message()
   1.638 +	{
   1.639 +	return iMessage;
   1.640 +	}
   1.641 +
   1.642 +void CWsAnim::SetMessage(const RMessagePtr2* aMessage)
   1.643 +	{
   1.644 +	iMessage=aMessage;
   1.645 +	}
   1.646 +
   1.647 +TInt CWsAnim::CommandReply(TInt aOpcode, TAny* aArgs)
   1.648 +	{
   1.649 +	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.650 +	TInt returnValue=0;
   1.651 +	TRAP(returnValue,returnValue=iAnim->CommandReplyL(aOpcode, aArgs));
   1.652 +	SetMessage(NULL);
   1.653 +	return returnValue;
   1.654 +	}
   1.655 +
   1.656 +TSpriteMember *CWsAnim::GetSpriteMember(TInt aMember) const
   1.657 +	{
   1.658 +	if (!iSprite)
   1.659 +		Panic();
   1.660 +	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.661 +	}
   1.662 +
   1.663 +void CWsAnim::UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)
   1.664 +	{
   1.665 +	if (!iSprite)
   1.666 +		Panic();
   1.667 +	iSprite->Update(aMember,aRect,aFullUpdate);
   1.668 +	}
   1.669 +
   1.670 +void CWsAnim::Activate(TBool aActive)
   1.671 +	{
   1.672 +	if (!iSprite)
   1.673 +		Panic();
   1.674 +	if (!aActive)
   1.675 +		iSprite->Deactivate();
   1.676 +	else
   1.677 +		{
   1.678 +		if (iSprite->IsActive())
   1.679 +			Panic();
   1.680 +		iSprite->Activate();
   1.681 +		}
   1.682 +	}
   1.683 +
   1.684 +void CWsAnim::SizeChangedL()
   1.685 +	{
   1.686 +	if (!iSprite)
   1.687 +		Panic();
   1.688 +	iSprite->CWsSpriteBase::CompleteL();
   1.689 +	}
   1.690 +
   1.691 +void CWsAnim::SetPosition(const TPoint &aPos)
   1.692 +	{
   1.693 +	iSprite->SetPos(aPos);
   1.694 +	}
   1.695 +
   1.696 +TAny* CWsAnim::ExtendedInterface(TInt aInterface)
   1.697 +	{
   1.698 +	switch(aInterface)
   1.699 +		{
   1.700 +	case ENumberOfExtendedInterfaces:
   1.701 +		return reinterpret_cast<TAny*>(EInterfaceCount-1);
   1.702 +	case EWindowExtensionInterface:
   1.703 +		return static_cast<MAnimGeneralFunctionsWindowExtension*>(this);
   1.704 +	case EEventExtentionInterface:
   1.705 +		return static_cast<MAnimGeneralFunctionsEventExtension*>(this);
   1.706 +	default:
   1.707 +		return NULL;
   1.708 +		}
   1.709 +	}
   1.710 +
   1.711 +TInt CWsAnim::Screens() const
   1.712 +	{
   1.713 +	return CWsTop::NumberOfScreens();
   1.714 +	}
   1.715 +
   1.716 +TInt CWsAnim::FocusScreens() const
   1.717 +	{
   1.718 +	return CWsTop::CurrentFocusScreen()->ScreenNumber();
   1.719 +	}
   1.720 +
   1.721 +void CWsAnim::SetFocusScreen(TInt aScreenNo)
   1.722 + 	{
   1.723 + 	if (aScreenNo<CWsTop::NumberOfScreens() && aScreenNo>=0)
   1.724 + 		{
   1.725 + 		CWsTop::SetCurrentFocusScreen(aScreenNo);
   1.726 + 		}
   1.727 + 	else
   1.728 + 		{
   1.729 + 		Panic();
   1.730 + 		}
   1.731 + 	}
   1.732 +
   1.733 +TInt CWsAnim::WindowGroups(TInt aScreen) const
   1.734 +	{
   1.735 +	return(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(aScreen)->RootWindow()->Child(),ETrue,0));
   1.736 +	}
   1.737 +
   1.738 +TBool CWsAnim::WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const
   1.739 +	{
   1.740 +	CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
   1.741 +	if (!group)
   1.742 +		return EFalse;
   1.743 +	aInfo.iId=group->Identifier();
   1.744 +	if (group->ReceivesFocus() && group->ScreenDeviceValid())
   1.745 +		aInfo.iFlags=TWindowGroupInfo::EIsFocusable;
   1.746 +	else
   1.747 +		aInfo.iFlags=0;
   1.748 +	aInfo.iOrdinalPriority=group->OrdinalPriority();
   1.749 +	HBufC* groupName=group->GroupName();
   1.750 +	aInfo.iNameLength=groupName?group->GroupName()->Length():0;
   1.751 +	if (!group->IsChained(aInfo.iParentId))
   1.752 +		aInfo.iParentId=-1;
   1.753 +	return ETrue;
   1.754 +	}
   1.755 +
   1.756 +TInt CWsAnim::WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const
   1.757 +	{
   1.758 +	CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
   1.759 +	if (!group)
   1.760 +		return EFalse;
   1.761 +	HBufC* name=group->GroupName();
   1.762 +	if (name)
   1.763 +		aWindowName.Set(*name);
   1.764 +	else
   1.765 +		aWindowName.Set(NULL,0);
   1.766 +	return ETrue;
   1.767 +	}
   1.768 +
   1.769 +TInt CWsAnim::SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)
   1.770 +	{
   1.771 +	CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifier(aWindowGroupId);
   1.772 +	if (group)
   1.773 +		{
   1.774 +		group->SetOrdinalPriority(aPos,aOrdinalPriority);
   1.775 +		return KErrNone;
   1.776 +		}
   1.777 +	return KErrNotFound;
   1.778 +	}
   1.779 +
   1.780 +void CWsAnim::WindowConfig(TWindowConfig& aWindowConfig) const
   1.781 +	{
   1.782 +	aWindowConfig.iFlags = 0x00;
   1.783 +	if (iWindow->IsTranslucent())
   1.784 +		{
   1.785 +		aWindowConfig.iFlags |= TWindowConfig::ETransparencyEnabled;
   1.786 +		if (iWindow->HasAlpha())
   1.787 +			{
   1.788 +			aWindowConfig.iFlags |= TWindowConfig::EAlphaBlendedTransparency;
   1.789 +			}		
   1.790 +		}
   1.791 +	}
   1.792 +
   1.793 +TBool CWsAnim::SpriteCanBeSeen() const
   1.794 +	{
   1.795 +	if(!iSprite)
   1.796 +		Panic();
   1.797 +	return iSprite->CanBeSeen();
   1.798 +	}
   1.799 +
   1.800 +//
   1.801 +
   1.802 +CObjectConIx* CWsAnimDll::AnimObjectConIx=NULL;
   1.803 +
   1.804 +void CWsAnimDll::InitStaticsL()
   1.805 +	{
   1.806 +	CWsAnimDll::AnimObjectConIx=CObjectConIx::NewL();
   1.807 +	}
   1.808 +
   1.809 +void CWsAnimDll::DeleteStatics()
   1.810 +	{
   1.811 +	delete CWsAnimDll::AnimObjectConIx;
   1.812 +	}
   1.813 +
   1.814 +CWsAnimDll::CWsAnimDll(CWsClient *aOwner) : CWsObject(aOwner,WS_HANDLE_ANIM_DLL)
   1.815 +	{
   1.816 +	__DECLARE_NAME(_S("CWsAnimDll"));
   1.817 +	}
   1.818 +
   1.819 +CWsAnimDll::~CWsAnimDll()
   1.820 +	{
   1.821 +	delete iInstanceIndex;
   1.822 +	AnimObjectConIx->Remove(iInstanceCon);
   1.823 +	delete iAnimDll;
   1.824 +	iAnimLib.Close();
   1.825 +	}
   1.826 +
   1.827 +TInt CWsAnimDll::doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow)
   1.828 +	{
   1.829 +	iInstanceCon->AddL(aInstance);
   1.830 +	aInstance->ConstructL(iAnimDll->CreateInstanceL(aType),aArgs,this,aIsWindow);
   1.831 +	return(iInstanceIndex->AddL(aInstance));
   1.832 +	}
   1.833 +
   1.834 +TInt CWsAnimDll::CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow)
   1.835 +	{
   1.836 +	TWindowServerEvent::PotentialEventHandlerL(1);
   1.837 +	CWsAnim *instance=new(ELeave) CWsAnim(this);
   1.838 +	CleanupClosePushL(*instance);
   1.839 +	if (aIsWindow)
   1.840 +		{
   1.841 +		CWsClientWindow *win;
   1.842 +		iWsOwner->HandleToClientWindow(aHandle,&win);
   1.843 +		instance->Connect(win);
   1.844 +		}
   1.845 +	else
   1.846 +		{
   1.847 +		CWsObject *sprite=iWsOwner->HandleToObj(aHandle, WS_HANDLE_SPRITE);
   1.848 +		if (!sprite)
   1.849 +			OwnerPanic(EWservPanicSprite);
   1.850 +		instance->Connect(STATIC_CAST(CWsSprite*,sprite));
   1.851 +		}
   1.852 +	TInt handle=doCreateInstanceL(instance, aType, aArgs, aIsWindow);
   1.853 +	CleanupStack::Pop(instance);
   1.854 +	return(handle);
   1.855 +	}
   1.856 +
   1.857 +void CWsAnimDll::LoadL(const TDesC &aDllName)
   1.858 +	{
   1.859 +	NewObjL();
   1.860 +	TFileName name(aDllName);
   1.861 +	User::LeaveIfError(iAnimLib.Load(name));
   1.862 +	if (wsDebugLog)
   1.863 +		{
   1.864 +		TBuf<256> buf;
   1.865 +		_LIT(KWSERVLoadedAnimDll,"Loaded Anim DLL:  ");
   1.866 +		buf.Append(KWSERVLoadedAnimDll);
   1.867 +		buf.Append(iAnimLib.FileName());
   1.868 +		wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
   1.869 +		}
   1.870 +	TUidType uid=iAnimLib.Type();
   1.871 +	if (uid[1]!=KWservAnimDllUid)
   1.872 +		User::Leave(KErrNotSupported);
   1.873 +	CreateCAnimDll f;
   1.874 +	f=(CreateCAnimDll)User::LeaveIfNull((TAny *)iAnimLib.Lookup(1));
   1.875 +	iAnimDll=(*f)();
   1.876 +	iInstanceIndex=CObjectIx::NewL();
   1.877 +	iInstanceCon=AnimObjectConIx->CreateL();
   1.878 +	}
   1.879 +
   1.880 +void CWsAnimDll::Remove(TInt aHandle)
   1.881 +	{
   1.882 +	iInstanceIndex->Remove(aHandle);
   1.883 +	}
   1.884 +
   1.885 +void CWsAnimDll::CommandL(TInt aOpcode, const TAny *aCmdData)
   1.886 +	{
   1.887 +	TWsAnimDllCmdUnion pData;
   1.888 +
   1.889 +	pData.any=aCmdData;
   1.890 +	switch(aOpcode)
   1.891 +		{
   1.892 +		case EWsAnimDllOpFree:
   1.893 +			delete this;
   1.894 +			break;
   1.895 +		case EWsAnimDllOpCreateInstance:
   1.896 +		case EWsAnimDllOpCreateInstanceSprite:
   1.897 +			SetReply(CreateInstanceL(*pData.UInt,*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)
   1.898 +																					,aOpcode==EWsAnimDllOpCreateInstance));
   1.899 +			break;
   1.900 +		case EWsAnimDllOpCommandReply:
   1.901 +		case EWsAnimDllOpCommand:
   1.902 +		case EWsAnimDllOpDestroyInstance:
   1.903 +			{
   1.904 +			CWsAnim *anim=(CWsAnim *)iInstanceIndex->At(*pData.UInt);
   1.905 +			TInt ret;
   1.906 +			//Deleting a non existant Anim is allowed as the Anim will be destroyed
   1.907 +			//when the window it is on (or a parent of) it destroyed
   1.908 +			if (anim==NULL && aOpcode!=EWsAnimDllOpDestroyInstance)
   1.909 +				OwnerPanic(EWservPanicAnim);
   1.910 +			switch(aOpcode)
   1.911 +				{
   1.912 +				case EWsAnimDllOpCommandReply:
   1.913 +					SetReply(anim->CommandReply(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
   1.914 +					CWsAnim::UserDeactivateAnimGc();
   1.915 +					break;
   1.916 +				case EWsAnimDllOpCommand:
   1.917 +					TRAP(ret,anim->Anim()->Command(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
   1.918 +					if (ret!=KErrNone && ret!=CWsClient::EPanicLeave)
   1.919 +						OwnerPanic(EWservPanicAnimLeave);
   1.920 +					CWsAnim::UserDeactivateAnimGc();
   1.921 +					break;
   1.922 +				case EWsAnimDllOpDestroyInstance:
   1.923 +					if (anim) // Added to go with changes described above
   1.924 +						Remove(*pData.UInt);
   1.925 +					break;
   1.926 +				default:
   1.927 +					break;
   1.928 +				}
   1.929 +			}
   1.930 +			break;
   1.931 +		default:
   1.932 +			OwnerPanic(EWservPanicOpcode);
   1.933 +		}
   1.934 +	}
   1.935 +
   1.936 +CAnimFbsFont::~CAnimFbsFont()
   1.937 +	{}
   1.938 +
   1.939 +CAnimFbsFont::CAnimFbsFont()
   1.940 +	{}
   1.941 +
   1.942 +CAnimFbsFont* CAnimFbsFont::NewL(TInt aHandle,TInt& aError)
   1.943 +	{
   1.944 +	CAnimFbsFont *font=new(ELeave) CAnimFbsFont();
   1.945 +	font->iAccessCount=1;
   1.946 +	aError=font->Duplicate(aHandle);
   1.947 +	if (aError!=KErrNone)
   1.948 +		{
   1.949 +		delete font;
   1.950 +		font=NULL;
   1.951 +		}
   1.952 +	return(font);
   1.953 +	}
   1.954 +
   1.955 +void CAnimFbsFont::Open()
   1.956 +	{
   1.957 +	iAccessCount++;
   1.958 +	}
   1.959 +
   1.960 +void CAnimFbsFont::Close()
   1.961 +	{
   1.962 +	if (--iAccessCount==0)
   1.963 +		delete this;
   1.964 +	}
   1.965 +
   1.966 +
   1.967 +/*MAnimGeneralFunctions*/
   1.968 +void MAnimGeneralFunctions::Reserved1() const
   1.969 +	{}
   1.970 +	
   1.971 +void MAnimGeneralFunctions::Reserved2() const
   1.972 +	{}
   1.973 +	
   1.974 +void MAnimGeneralFunctions::Reserved3() const
   1.975 +	{}
   1.976 +
   1.977 +	
   1.978 +/*MAnimGeneralFunctionsExtension*/
   1.979 +
   1.980 +void MAnimGeneralFunctionsWindowExtension::Reserved1() const
   1.981 +	{}
   1.982 +
   1.983 +void MAnimGeneralFunctionsWindowExtension::Reserved2() const
   1.984 +	{}
   1.985 +
   1.986 +void MAnimGeneralFunctionsWindowExtension::Reserved3() const
   1.987 +	{}
   1.988 +
   1.989 +/*MAnimWindowFunctions*/
   1.990 +
   1.991 +void MAnimWindowFunctions::Reserved() const
   1.992 +	{}
   1.993 +
   1.994 +void MAnimWindowFunctions::Reserved1() const
   1.995 +	{}
   1.996 +	
   1.997 +void MAnimWindowFunctions::Reserved2() const
   1.998 +	{}
   1.999 +	
  1.1000 +void MAnimWindowFunctions::Reserved3() const
  1.1001 +	{}
  1.1002 +	
  1.1003 +
  1.1004 +/*MAnimFreeTimerWindowFunctions*/
  1.1005 +
  1.1006 +void MAnimFreeTimerWindowFunctions::Reserved3() const
  1.1007 +	{}
  1.1008 +
  1.1009 +
  1.1010 +/*MAnimSpriteFunctions*/
  1.1011 +
  1.1012 +void MAnimSpriteFunctions::Reserved() const
  1.1013 +	{}
  1.1014 +
  1.1015 +void MAnimSpriteFunctions::Reserved2() const
  1.1016 +	{}
  1.1017 +	
  1.1018 +void MAnimSpriteFunctions::Reserved3() const
  1.1019 +	{}
  1.1020 +	
  1.1021 +void MAnimSpriteFunctions::Reserved4() const
  1.1022 +	{}	
  1.1023 +
  1.1024 +/*MAnimGeneralFunctionsEventExtension*/
  1.1025 +
  1.1026 +void MAnimGeneralFunctionsEventExtension::Reserved1() const
  1.1027 +	{}
  1.1028 +	
  1.1029 +void MAnimGeneralFunctionsEventExtension::Reserved2() const
  1.1030 +	{}