os/graphics/windowing/windowserver/nonnga/SERVER/ANIMDLL.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Interface code for animated DLL's
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include "server.h"
sl@0
    20
#include "gc.h"
sl@0
    21
#include "rootwin.h"
sl@0
    22
#include "windowgroup.h"
sl@0
    23
#include "ANIM.H"
sl@0
    24
#include "wstop.h"
sl@0
    25
#include "EVENT.H"
sl@0
    26
#include "ScrDev.H"
sl@0
    27
#include "offscreenbitmap.h"
sl@0
    28
#include "panics.h"
sl@0
    29
#include "wsfont.h"
sl@0
    30
sl@0
    31
GLREF_D CDebugLogBase *wsDebugLog;
sl@0
    32
sl@0
    33
static const TInt64 KFlashOnTime(700000);
sl@0
    34
static const TInt64 KFlashOffTime(300000);
sl@0
    35
static const TInt64 KOneSecond(1000000);
sl@0
    36
static const TInt64 KOneMinute(60 * KOneSecond);
sl@0
    37
static const TInt64 KOneDay(24 * 60 * 60 * KOneSecond);
sl@0
    38
static const TInt64 KOneHalfSecond(500000);
sl@0
    39
sl@0
    40
enum {EWindowUpdate=0x0001};
sl@0
    41
sl@0
    42
// Anim DLL code //
sl@0
    43
CWsAnimGc *CWsAnim::WsAnimGc=NULL;
sl@0
    44
sl@0
    45
void CWsAnim::InitStaticsL()
sl@0
    46
	{
sl@0
    47
	WsAnimGc=new (ELeave) CWsAnimGc();
sl@0
    48
	}
sl@0
    49
sl@0
    50
void CWsAnim::DeleteStatics()
sl@0
    51
	{
sl@0
    52
	delete WsAnimGc;
sl@0
    53
	WsAnimGc=NULL;
sl@0
    54
	}
sl@0
    55
sl@0
    56
CWsAnim::CWsAnim(CWsAnimDll *aDll) : iClient(aDll->WsOwner()), iAnimAddedInHandler(EFalse), iLastFrame(-1), iFlashOn(ETrue)
sl@0
    57
	{
sl@0
    58
	__DECLARE_NAME(_S("CWsAnim"));
sl@0
    59
	}
sl@0
    60
sl@0
    61
void CWsAnim::WindowClosing(CWsAnim *aWsAnim)
sl@0
    62
	{
sl@0
    63
	CWsAnim *anim=aWsAnim;
sl@0
    64
	CWsAnim *next;
sl@0
    65
	while(anim)
sl@0
    66
		{
sl@0
    67
		next=anim->iNextWin;
sl@0
    68
		CloseAnim(anim);
sl@0
    69
		anim=next;
sl@0
    70
		}
sl@0
    71
	}
sl@0
    72
sl@0
    73
void CWsAnim::CloseAnim(CWsAnim *aWsAnim)
sl@0
    74
	{
sl@0
    75
	TInt handle=aWsAnim->iAnimDll->AnimObjectHandle(aWsAnim);
sl@0
    76
	if (handle<0)
sl@0
    77
		delete aWsAnim;
sl@0
    78
	else
sl@0
    79
		aWsAnim->iAnimDll->Remove(handle);
sl@0
    80
	}
sl@0
    81
sl@0
    82
CWsAnim::~CWsAnim()
sl@0
    83
	{
sl@0
    84
	WsAnimGc->AnimDeleted(this);
sl@0
    85
	if (iWindow)	// In case it never got linked
sl@0
    86
		{
sl@0
    87
		CWsAnim **pAnim;
sl@0
    88
		for(pAnim= &iWindow->iAnimList;(*pAnim)!=this;pAnim= &(*pAnim)->iNextWin)
sl@0
    89
			{}
sl@0
    90
		*pAnim=iNextWin;
sl@0
    91
		}
sl@0
    92
	else if (iSprite)
sl@0
    93
		iSprite->iAnim=NULL;
sl@0
    94
	
sl@0
    95
	// force the anim for the event handler list.
sl@0
    96
	TWindowServerEvent::RemoveEventHandler(iAnim);
sl@0
    97
	TWindowServerEvent::RemoveNotificationHandler(iAnim);
sl@0
    98
	delete iAnim;
sl@0
    99
	TWindowServerEvent::PotentialEventHandlerL(-1);		//PotentialEventHandler cannot leave when passed a negative parameter.
sl@0
   100
	}
sl@0
   101
sl@0
   102
void CWsAnim::Connect(CWsClientWindow *aWindow)
sl@0
   103
	{
sl@0
   104
	if (iSprite)
sl@0
   105
		Panic();
sl@0
   106
	iWindow=aWindow;
sl@0
   107
	iNextWin=aWindow->iAnimList;
sl@0
   108
	aWindow->iAnimList=this;
sl@0
   109
	}
sl@0
   110
sl@0
   111
void CWsAnim::Connect(CWsSprite *aSprite)
sl@0
   112
	{
sl@0
   113
	if (iWindow)
sl@0
   114
		Panic();
sl@0
   115
	iSprite=aSprite;
sl@0
   116
	iSprite->iAnim=this;
sl@0
   117
	}
sl@0
   118
sl@0
   119
LOCAL_C void HandleLeaveInCWsAnimConstructL(TAny* aAnim)
sl@0
   120
	{
sl@0
   121
	STATIC_CAST(CWsAnim*,aAnim)->SetMessage(NULL);
sl@0
   122
	CWsAnim::UserDeactivateAnimGc();
sl@0
   123
	}
sl@0
   124
sl@0
   125
void CWsAnim::ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow)
sl@0
   126
	{
sl@0
   127
	TBool isFocused=(iSprite!=NULL);
sl@0
   128
	if (!isFocused)
sl@0
   129
		isFocused=CWsTop::FocusWindowGroup()==iWindow->WinGroup();
sl@0
   130
	iAnimDll=aAnimDll;
sl@0
   131
	iAnimSync=ESyncNone;
sl@0
   132
	iAnim=aAnim;
sl@0
   133
	iAnim->iFunctions=this;
sl@0
   134
	SetMessage(&iClient->ClientMessage());
sl@0
   135
	CleanupStack::PushL(TCleanupItem(HandleLeaveInCWsAnimConstructL,this));
sl@0
   136
	if (aIsWindow)
sl@0
   137
		{
sl@0
   138
		CWindowAnim* windowAnim=WindowAnim();
sl@0
   139
		windowAnim->iWindowFunctions=this;
sl@0
   140
		windowAnim->iGc=WsAnimGc;
sl@0
   141
		windowAnim->ConstructL(aArgs, isFocused);
sl@0
   142
		}
sl@0
   143
	else
sl@0
   144
		{
sl@0
   145
		CSpriteAnim* spriteAnim=STATIC_CAST(CSpriteAnim*,iAnim);
sl@0
   146
		spriteAnim->iSpriteFunctions=this;
sl@0
   147
		spriteAnim->ConstructL(aArgs);
sl@0
   148
		}
sl@0
   149
	CleanupStack::PopAndDestroy(this); // doesn't really destroy "this" - it actually calls HandleLeaveInCWsAnimConstructL
sl@0
   150
	}
sl@0
   151
sl@0
   152
void CWsAnim::Redraw(CFbsBitGc * aGc, const TRegion *aRegion)
sl@0
   153
	{
sl@0
   154
	WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
sl@0
   155
	if (!iWindow)
sl@0
   156
		return;
sl@0
   157
	
sl@0
   158
	TWindowInfo::TRegionPair regionPair;
sl@0
   159
	regionPair.iRegion1 = aRegion;
sl@0
   160
	regionPair.iRegion2 = NULL;
sl@0
   161
	iRedrawRegionPair = &regionPair;
sl@0
   162
	
sl@0
   163
	// We don't attempt to make use of iRect because it often isn't set up by the client code.
sl@0
   164
	
sl@0
   165
	// Work out which frame we are in:
sl@0
   166
	TTime now = iWindow->Screen()->Now();
sl@0
   167
	if (iLastFrame < 0)
sl@0
   168
		iStartTime = now;
sl@0
   169
	TInt64 elapsed = now.Int64() - iStartTime.Int64();
sl@0
   170
	TInt64 adjustedStart = iStartTime.Int64();
sl@0
   171
	TInt frame = 0;
sl@0
   172
	switch (iAnimSync)
sl@0
   173
		{
sl@0
   174
		case ESyncNone:
sl@0
   175
			if (iInterval > 0)
sl@0
   176
				{
sl@0
   177
				frame = elapsed / iInterval.Int64();
sl@0
   178
				}
sl@0
   179
				else
sl@0
   180
				{
sl@0
   181
				frame = -1;
sl@0
   182
				}
sl@0
   183
			break;
sl@0
   184
		case ESyncFlash:
sl@0
   185
			{
sl@0
   186
			TInt64 fraction = elapsed % (KFlashOnTime + KFlashOffTime);
sl@0
   187
			frame = (elapsed - fraction) / (KFlashOnTime + KFlashOffTime) * 2;
sl@0
   188
			if (fraction > KFlashOnTime)
sl@0
   189
				{
sl@0
   190
				frame = frame + 1;
sl@0
   191
				iFlashOn = EFalse;
sl@0
   192
				}
sl@0
   193
			else
sl@0
   194
				{
sl@0
   195
				iFlashOn = ETrue;
sl@0
   196
				}
sl@0
   197
			}
sl@0
   198
			break;
sl@0
   199
		case ESyncSecond:
sl@0
   200
			adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneSecond);
sl@0
   201
			elapsed = now.Int64() - adjustedStart;
sl@0
   202
			frame = elapsed / KOneSecond;
sl@0
   203
			break;
sl@0
   204
		case ESyncMinute:
sl@0
   205
			adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneMinute);
sl@0
   206
			elapsed = now.Int64() - adjustedStart;
sl@0
   207
			frame = elapsed / KOneMinute;
sl@0
   208
			break;
sl@0
   209
		case ESyncDay:
sl@0
   210
			adjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneDay);
sl@0
   211
			elapsed = now.Int64() - adjustedStart;
sl@0
   212
			frame = elapsed / KOneDay;
sl@0
   213
			break;
sl@0
   214
		}
sl@0
   215
	
sl@0
   216
	// If the frame has changed, animate:
sl@0
   217
	if (frame != iLastFrame && frame != -1)
sl@0
   218
		{
sl@0
   219
		if (frame == iLastFrame + 1 && iLastFrame != -1)
sl@0
   220
			{
sl@0
   221
			Animate(NULL);
sl@0
   222
			}
sl@0
   223
		else
sl@0
   224
			{
sl@0
   225
			TDateTime dt = now.DateTime();
sl@0
   226
			Animate(&dt);
sl@0
   227
			}
sl@0
   228
		iLastFrame = frame;
sl@0
   229
		}
sl@0
   230
sl@0
   231
	// Regardless of whether we animated or not, redraw:
sl@0
   232
	WsAnimGc->Activate(iWindow, this, aRegion, aGc);	
sl@0
   233
	WindowAnim()->Redraw();
sl@0
   234
	WsAnimGc->Deactivate();
sl@0
   235
sl@0
   236
	// Schedule ourselves again (we usually only have to do this when we animate,
sl@0
   237
	// but it is possible for our scheduled rectangle to get lost in a redraw):
sl@0
   238
	TInt64 timeToNextFrame = 0;
sl@0
   239
	switch (iAnimSync)
sl@0
   240
		{
sl@0
   241
		case ESyncNone:
sl@0
   242
			if (iInterval > 0)
sl@0
   243
				{
sl@0
   244
				timeToNextFrame = iStartTime.Int64() + iInterval.Int64() * (frame + 1) - iWindow->Screen()->Now().Int64();
sl@0
   245
				}
sl@0
   246
			break;
sl@0
   247
		case ESyncFlash:
sl@0
   248
			if (iFlashOn)
sl@0
   249
				{
sl@0
   250
				timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * frame / 2 + KFlashOnTime - iWindow->Screen()->Now().Int64();
sl@0
   251
				}
sl@0
   252
			else
sl@0
   253
				{
sl@0
   254
				timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * (frame + 1 ) / 2 - iWindow->Screen()->Now().Int64();
sl@0
   255
				}
sl@0
   256
			break;
sl@0
   257
		case ESyncSecond:
sl@0
   258
			timeToNextFrame = adjustedStart + KOneSecond * (frame + 1) - iWindow->Screen()->Now().Int64();
sl@0
   259
			break;
sl@0
   260
		case ESyncMinute:
sl@0
   261
			timeToNextFrame = adjustedStart + KOneMinute * (frame + 1) - iWindow->Screen()->Now().Int64();
sl@0
   262
			break;
sl@0
   263
		case ESyncDay:
sl@0
   264
			timeToNextFrame = adjustedStart + KOneDay * (frame + 1) - iWindow->Screen()->Now().Int64();
sl@0
   265
			break;
sl@0
   266
		}
sl@0
   267
	
sl@0
   268
	if (iAnimSync != ESyncNone || iInterval > 0)
sl@0
   269
		{
sl@0
   270
		iWindow->Screen()->ScheduleAnimation(BestRect(), timeToNextFrame, 0, 0);
sl@0
   271
		}
sl@0
   272
sl@0
   273
	iRedrawRegionPair = NULL;				
sl@0
   274
	}
sl@0
   275
sl@0
   276
void CWsAnim::FocusChanged(TBool aNewFocusState)
sl@0
   277
	{
sl@0
   278
	WindowAnim()->FocusChanged(aNewFocusState);
sl@0
   279
	WsAnimGc->UserDeactivate();
sl@0
   280
	}
sl@0
   281
sl@0
   282
void CWsAnim::Animate(TDateTime *aDateTime)
sl@0
   283
	{
sl@0
   284
	iAnim->Animate(aDateTime);
sl@0
   285
	WsAnimGc->UserDeactivate();
sl@0
   286
	}
sl@0
   287
sl@0
   288
void CWsAnim::UserDeactivateAnimGc()
sl@0
   289
	{
sl@0
   290
	WsAnimGc->UserDeactivate();
sl@0
   291
	}
sl@0
   292
sl@0
   293
// Callback functions //
sl@0
   294
sl@0
   295
void CWsAnim::ActivateGc()
sl@0
   296
	{
sl@0
   297
	if (!iWindow)
sl@0
   298
		Panic();
sl@0
   299
sl@0
   300
	// Window animation drawing commands need to go through the render stage pipeline. This means
sl@0
   301
	// that drawing commands issued outside animation redraws (for instance, during Animate() or
sl@0
   302
	// when the animation receives a command) will mark the animation area as invalid, but the
sl@0
   303
	// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
sl@0
   304
	// cycle (CWindowAnim::Redraw).
sl@0
   305
sl@0
   306
	// In this new situation MAnimWindowFunctions::ActivateGc doesn't need to activate the graphics
sl@0
   307
	// context (drawing commands issued outside CWindowAnim::Redraw are ignored), but to avoid some
sl@0
   308
	// behavior breaks (for instance, panic situations) we mark the GC as "activated by the user".
sl@0
   309
	WsAnimGc->UserActivate(iWindow, this);
sl@0
   310
	}
sl@0
   311
sl@0
   312
void CWsAnim::DeactivateGc()
sl@0
   313
	{
sl@0
   314
	if (!iWindow)
sl@0
   315
		Panic();
sl@0
   316
sl@0
   317
	// Window animation drawing commands need to go through the render stage pipeline. This means
sl@0
   318
	// that drawing commands issued outside animation redraws (for instance, during Animate() or
sl@0
   319
	// when the animation receives a command) will mark the animation area as invalid, but the
sl@0
   320
	// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
sl@0
   321
	// cycle (CWindowAnim::Redraw).
sl@0
   322
sl@0
   323
	// In this new situation MAnimFreeTimerWindowFunctions::DeactivateGc just marks the animation
sl@0
   324
	// area as invalid so it gets redrawn later.
sl@0
   325
	WsAnimGc->UserDeactivate();
sl@0
   326
	}
sl@0
   327
sl@0
   328
/*
sl@0
   329
Because lots of animations don't set a rectangle, or set an empty one, we need
sl@0
   330
to make a best guess at what to use rather than assuming anything.
sl@0
   331
*/
sl@0
   332
TRect CWsAnim::BestRect() const
sl@0
   333
	{
sl@0
   334
	TRect rect;
sl@0
   335
	if (iRect.IsEmpty())
sl@0
   336
		{
sl@0
   337
		rect = iWindow->AbsRect();
sl@0
   338
		}
sl@0
   339
	else
sl@0
   340
		{
sl@0
   341
		rect = iRect;
sl@0
   342
		rect.Move(iWindow->Origin());
sl@0
   343
		rect.Intersection(iWindow->AbsRect());
sl@0
   344
		}
sl@0
   345
	return rect;
sl@0
   346
	}
sl@0
   347
sl@0
   348
void CWsAnim::Invalidate(const TRect &aRect)
sl@0
   349
	{
sl@0
   350
	if (!iWindow)
sl@0
   351
		{
sl@0
   352
		if (iSprite) 
sl@0
   353
			{
sl@0
   354
			iSprite->RootWindow()->InvalidateWholeScreen();
sl@0
   355
			}
sl@0
   356
		return;
sl@0
   357
		}
sl@0
   358
	iWindow->Redraw()->ClientExposing();
sl@0
   359
	TRect rect(aRect);
sl@0
   360
	rect.Move(iWindow->Origin());
sl@0
   361
sl@0
   362
	CWsTop::TriggerRedraws(iWindow->RootWindow());
sl@0
   363
	}
sl@0
   364
sl@0
   365
void CWsAnim::Update()
sl@0
   366
	{
sl@0
   367
	if (!iWindow)
sl@0
   368
		Panic();
sl@0
   369
	}
sl@0
   370
sl@0
   371
void CWsAnim::Parameters(TWindowInfo &aData)
sl@0
   372
	{
sl@0
   373
	if (!iWindow)
sl@0
   374
		Panic();
sl@0
   375
	aData.iScreenPos=iWindow->FullRect();
sl@0
   376
	aData.iMode=iWindow->DisplayMode();
sl@0
   377
	aData.iRegionPair=iRedrawRegionPair;
sl@0
   378
	}
sl@0
   379
sl@0
   380
void CWsAnim::VisibleRegion(TRegion& aRegion)
sl@0
   381
	{
sl@0
   382
	if(iWindow)
sl@0
   383
		{
sl@0
   384
		aRegion.Copy(iWindow->VisibleRegion());
sl@0
   385
		}
sl@0
   386
	}
sl@0
   387
sl@0
   388
void CWsAnim::SetSync(TAnimSync aSyncMode)
sl@0
   389
	{
sl@0
   390
	if (iAnimSync != aSyncMode)
sl@0
   391
		{
sl@0
   392
		iAnimSync=aSyncMode;	
sl@0
   393
		iLastFrame = -1;
sl@0
   394
		if (iAnimSync != ESyncNone)
sl@0
   395
			iWindow->Screen()->ScheduleAnimation(BestRect(),0,0,0);
sl@0
   396
		if (iAnimSync == ESyncFlash)
sl@0
   397
			iFlashOn = ETrue;
sl@0
   398
		}
sl@0
   399
	}
sl@0
   400
sl@0
   401
void CWsAnim::SetInterval(TInt aInterval)
sl@0
   402
	{
sl@0
   403
	if (iAnimSync!=ESyncNone)
sl@0
   404
		Panic();
sl@0
   405
	iLastFrame = -1;	
sl@0
   406
	if (aInterval < 0)
sl@0
   407
		aInterval = 0;
sl@0
   408
	// convert intervals to milliseconds (there are two intervals per second)
sl@0
   409
	iInterval = aInterval*KOneHalfSecond;
sl@0
   410
	if (iInterval > 0)
sl@0
   411
		{
sl@0
   412
		iWindow->Screen()->ScheduleAnimation(BestRect(),iInterval,0,0);
sl@0
   413
		}
sl@0
   414
	}
sl@0
   415
sl@0
   416
void CWsAnim::SetNextInterval(TInt aInterval)
sl@0
   417
	{
sl@0
   418
	if (iAnimSync!=ESyncNone)
sl@0
   419
		Panic();
sl@0
   420
	aInterval = (aInterval <= 0) ? 1 : aInterval; 
sl@0
   421
	iWindow->Screen()->ScheduleAnimation(BestRect(),aInterval*KOneHalfSecond,0,0);
sl@0
   422
	}
sl@0
   423
sl@0
   424
void CWsAnim::SetRect(const TRect &aRect)
sl@0
   425
	{
sl@0
   426
	if (!iWindow)
sl@0
   427
		Panic();
sl@0
   428
	iRect=aRect;
sl@0
   429
	iWindow->UpdateAnimArea(); // backed up windows only
sl@0
   430
	}
sl@0
   431
sl@0
   432
const TRect& CWsAnim::Rect() const
sl@0
   433
	{
sl@0
   434
	return(iRect);
sl@0
   435
	}
sl@0
   436
sl@0
   437
TDateTime CWsAnim::SystemTime() const
sl@0
   438
	{
sl@0
   439
	TDateTime dt=iWindow->Screen()->Now().DateTime();
sl@0
   440
	TInt hour=dt.Hour();
sl@0
   441
	TInt minute=dt.Minute();
sl@0
   442
	TInt second=dt.Second();
sl@0
   443
	TInt microSecond=dt.MicroSecond();
sl@0
   444
	switch(iAnimSync)
sl@0
   445
		{
sl@0
   446
	case ESyncDay:
sl@0
   447
		hour=0;
sl@0
   448
		minute=0;
sl@0
   449
		/*Fall through*/
sl@0
   450
	case ESyncMinute:
sl@0
   451
		second=0; 
sl@0
   452
		/*Fall through*/
sl@0
   453
	case ESyncNone:
sl@0
   454
	case ESyncFlash:
sl@0
   455
	case ESyncSecond:
sl@0
   456
		microSecond=0;
sl@0
   457
		break;
sl@0
   458
		}
sl@0
   459
	TDateTime dateTime;
sl@0
   460
	dateTime.Set(dt.Year(),dt.Month(),dt.Day(),hour,minute,second,microSecond);
sl@0
   461
	return(dateTime);
sl@0
   462
	}
sl@0
   463
sl@0
   464
TBool CWsAnim::FlashStateOn() const
sl@0
   465
	{
sl@0
   466
	return(iFlashOn);
sl@0
   467
	}
sl@0
   468
sl@0
   469
const RThread &CWsAnim::Client()
sl@0
   470
	{
sl@0
   471
	return(iClient->Client());
sl@0
   472
	}
sl@0
   473
sl@0
   474
void CWsAnim::ReplyBuf(const TDesC8 &aDes)
sl@0
   475
	{
sl@0
   476
	CWsClient::ReplyBuf(aDes);
sl@0
   477
	}
sl@0
   478
sl@0
   479
void CWsAnim::ReplyBuf(const TDesC16 &aDes)
sl@0
   480
	{
sl@0
   481
	CWsClient::ReplyBuf(aDes);
sl@0
   482
	}
sl@0
   483
sl@0
   484
void CWsAnim::Panic() const
sl@0
   485
	{
sl@0
   486
	iClient->PPanic(EWservPanicAnimDll);
sl@0
   487
	}
sl@0
   488
	
sl@0
   489
void CWsAnim::Panic(TClientPanic aPanic) const
sl@0
   490
	{
sl@0
   491
	iClient->PPanic(aPanic);
sl@0
   492
	}
sl@0
   493
	
sl@0
   494
const CFbsScreenDevice *CWsAnim::ScreenDevice()
sl@0
   495
	{
sl@0
   496
	CScreen* screen=NULL;		//To stop a warning
sl@0
   497
	if (iWindow)
sl@0
   498
		screen=iWindow->Screen();
sl@0
   499
	else if (iSprite)
sl@0
   500
		screen=iSprite->Screen();
sl@0
   501
	else
sl@0
   502
		Panic();
sl@0
   503
	return screen->ScreenDevice();
sl@0
   504
	}
sl@0
   505
sl@0
   506
CFbsFont *CWsAnim::DuplicateFontL(TInt aHandle)
sl@0
   507
	{
sl@0
   508
	CFbsFont *font=NULL;
sl@0
   509
	TInt err;
sl@0
   510
	font=CAnimFbsFont::NewL(aHandle,err);
sl@0
   511
	if (err!=KErrNone)
sl@0
   512
		{
sl@0
   513
		WS_ASSERT_DEBUG(font==NULL,EWsPanicFailedToInitialise);
sl@0
   514
		if (err==KErrNoMemory)
sl@0
   515
			User::Leave(err);
sl@0
   516
		iClient->PPanic(EWservPanicFont);
sl@0
   517
		}
sl@0
   518
	return(font);
sl@0
   519
	}
sl@0
   520
sl@0
   521
void CWsAnim::CloseFont(CFbsFont *aFont)
sl@0
   522
	{
sl@0
   523
	if (aFont)
sl@0
   524
		((CAnimFbsFont *)aFont)->Close();
sl@0
   525
	}
sl@0
   526
sl@0
   527
CFbsBitmap *CWsAnim::DuplicateBitmapL(TInt aHandle)
sl@0
   528
	{
sl@0
   529
	CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
sl@0
   530
	TInt err=bitmap->Duplicate(aHandle);
sl@0
   531
	if (err!=KErrNone)
sl@0
   532
		{
sl@0
   533
		delete bitmap;
sl@0
   534
		if (err==KErrNoMemory)
sl@0
   535
			User::Leave(err);
sl@0
   536
		iClient->PPanic(EWservPanicBitmap);
sl@0
   537
		}
sl@0
   538
	return(bitmap);
sl@0
   539
	}
sl@0
   540
sl@0
   541
TSize CWsAnim::WindowSize() const
sl@0
   542
	{
sl@0
   543
	if (!iWindow)
sl@0
   544
		Panic();
sl@0
   545
	return(iWindow->Size());
sl@0
   546
	}
sl@0
   547
sl@0
   548
TBool CWsAnim::IsHidden()
sl@0
   549
	{
sl@0
   550
	if (!iWindow)
sl@0
   551
		Panic();
sl@0
   552
sl@0
   553
	return iWindow->IsHidden();
sl@0
   554
	}
sl@0
   555
sl@0
   556
void CWsAnim::SetVisible(TBool aState)
sl@0
   557
	{	
sl@0
   558
	//The (WsAnimGc->IsActive() && aState) part of the below if statement is in place to accomodate bc with 
sl@0
   559
	//the original wserv. 
sl@0
   560
	//We panic when we call SetVisible(ETrue) and the CWsAnimGc has been activated because the origininal wserv did.
sl@0
   561
	//We don't panic when we call SetVisible(EFalse) and the CWsAnimGc is activated because the original wserv didn't.
sl@0
   562
	if( !iWindow || (WsAnimGc->IsActive() && aState) )
sl@0
   563
		{
sl@0
   564
		Panic();	
sl@0
   565
		}
sl@0
   566
		
sl@0
   567
	iWindow->SetVisible(aState);
sl@0
   568
	
sl@0
   569
	STACK_REGION region;
sl@0
   570
	VisibleRegion(region);
sl@0
   571
	TRect rect = region.BoundingRect();
sl@0
   572
	region.Close();
sl@0
   573
	if(!rect.IsEmpty())
sl@0
   574
		iWindow->Screen()->ScheduleAnimation(rect,0,0,0);
sl@0
   575
	}
sl@0
   576
sl@0
   577
MAnimGeneralFunctions::TAnimSync CWsAnim::Sync() const
sl@0
   578
	{
sl@0
   579
	return(iAnimSync);
sl@0
   580
	}
sl@0
   581
sl@0
   582
void CWsAnim::GetRawEvents(TBool aGetEvents) const
sl@0
   583
	{
sl@0
   584
	if (aGetEvents)
sl@0
   585
		{
sl@0
   586
		if (!iAnimAddedInHandler)
sl@0
   587
			{
sl@0
   588
			TWindowServerEvent::AddEventHandler(iAnim);	
sl@0
   589
			iAnimAddedInHandler = ETrue;
sl@0
   590
			}
sl@0
   591
		}
sl@0
   592
	else
sl@0
   593
		{
sl@0
   594
		if (iAnimAddedInHandler)
sl@0
   595
			{
sl@0
   596
			TWindowServerEvent::RemoveEventHandler(iAnim);
sl@0
   597
			iAnimAddedInHandler = EFalse;
sl@0
   598
			}
sl@0
   599
		}
sl@0
   600
	}
sl@0
   601
sl@0
   602
void CWsAnim::PostRawEvent(const TRawEvent &aRawEvent) const
sl@0
   603
	{
sl@0
   604
	TWindowServerEvent::ProcessRawEvent(aRawEvent);
sl@0
   605
	}
sl@0
   606
sl@0
   607
void CWsAnim::PostKeyEvent(const TKeyEvent &aRawEvent) const
sl@0
   608
	{
sl@0
   609
	TWindowServerEvent::ProcessKeyEvent(aRawEvent,0);
sl@0
   610
	}
sl@0
   611
	
sl@0
   612
/**
sl@0
   613
Generate repeated key events. 
sl@0
   614
*/	
sl@0
   615
void CWsAnim::PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const
sl@0
   616
	{
sl@0
   617
	TWindowServerEvent::ProcessKeyEvent(aRawEvent,aRepeats);
sl@0
   618
 	}
sl@0
   619
sl@0
   620
TInt CWsAnim::RegisterForNotifications(TUint32 aNotifications)
sl@0
   621
	{
sl@0
   622
	if (aNotifications)
sl@0
   623
		{
sl@0
   624
		return TWindowServerEvent::AddNotificationHandler(iAnim,aNotifications);
sl@0
   625
		}
sl@0
   626
	else
sl@0
   627
		{
sl@0
   628
		TWindowServerEvent::RemoveNotificationHandler(iAnim);
sl@0
   629
		return KErrNone;
sl@0
   630
		}
sl@0
   631
	}
sl@0
   632
sl@0
   633
sl@0
   634
const RMessagePtr2* CWsAnim::Message()
sl@0
   635
	{
sl@0
   636
	return iMessage;
sl@0
   637
	}
sl@0
   638
sl@0
   639
void CWsAnim::SetMessage(const RMessagePtr2* aMessage)
sl@0
   640
	{
sl@0
   641
	iMessage=aMessage;
sl@0
   642
	}
sl@0
   643
sl@0
   644
TInt CWsAnim::CommandReply(TInt aOpcode, TAny* aArgs)
sl@0
   645
	{
sl@0
   646
	SetMessage(&iClient->ClientMessage()); // ClientMessage returns a reference, so taking the address of it is okay (it it returned it by value, then taking the address would be taking the address of a temporary which would be dodgey)
sl@0
   647
	TInt returnValue=0;
sl@0
   648
	TRAP(returnValue,returnValue=iAnim->CommandReplyL(aOpcode, aArgs));
sl@0
   649
	SetMessage(NULL);
sl@0
   650
	return returnValue;
sl@0
   651
	}
sl@0
   652
sl@0
   653
TSpriteMember *CWsAnim::GetSpriteMember(TInt aMember) const
sl@0
   654
	{
sl@0
   655
	if (!iSprite)
sl@0
   656
		Panic();
sl@0
   657
	return REINTERPRET_CAST(TSpriteMember*,&(*iSprite->iMembers)[aMember]->iBitmap);		//The 2 classes involved in the cast have exactly the same data members in the same order
sl@0
   658
	}
sl@0
   659
sl@0
   660
void CWsAnim::UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)
sl@0
   661
	{
sl@0
   662
	if (!iSprite)
sl@0
   663
		Panic();
sl@0
   664
	iSprite->Update(aMember,aRect,aFullUpdate);
sl@0
   665
	}
sl@0
   666
sl@0
   667
void CWsAnim::Activate(TBool aActive)
sl@0
   668
	{
sl@0
   669
	if (!iSprite)
sl@0
   670
		Panic();
sl@0
   671
	if (!aActive)
sl@0
   672
		iSprite->Deactivate();
sl@0
   673
	else
sl@0
   674
		{
sl@0
   675
		if (iSprite->IsActive())
sl@0
   676
			Panic();
sl@0
   677
		iSprite->Activate();
sl@0
   678
		}
sl@0
   679
	}
sl@0
   680
sl@0
   681
void CWsAnim::SizeChangedL()
sl@0
   682
	{
sl@0
   683
	if (!iSprite)
sl@0
   684
		Panic();
sl@0
   685
	iSprite->CWsSpriteBase::CompleteL();
sl@0
   686
	}
sl@0
   687
sl@0
   688
void CWsAnim::SetPosition(const TPoint &aPos)
sl@0
   689
	{
sl@0
   690
	iSprite->SetPos(aPos);
sl@0
   691
	}
sl@0
   692
sl@0
   693
TAny* CWsAnim::ExtendedInterface(TInt aInterface)
sl@0
   694
	{
sl@0
   695
	switch(aInterface)
sl@0
   696
		{
sl@0
   697
	case ENumberOfExtendedInterfaces:
sl@0
   698
		return reinterpret_cast<TAny*>(EInterfaceCount-1);
sl@0
   699
	case EWindowExtensionInterface:
sl@0
   700
		return static_cast<MAnimGeneralFunctionsWindowExtension*>(this);
sl@0
   701
	case EEventExtentionInterface:
sl@0
   702
		return static_cast<MAnimGeneralFunctionsEventExtension*>(this);
sl@0
   703
	default:
sl@0
   704
		return NULL;
sl@0
   705
		}
sl@0
   706
	}
sl@0
   707
sl@0
   708
TInt CWsAnim::Screens() const
sl@0
   709
	{
sl@0
   710
	return CWsTop::NumberOfScreens();
sl@0
   711
	}
sl@0
   712
sl@0
   713
TInt CWsAnim::FocusScreens() const
sl@0
   714
	{
sl@0
   715
	return CWsTop::CurrentFocusScreen()->ScreenNumber();
sl@0
   716
	}
sl@0
   717
sl@0
   718
void CWsAnim::SetFocusScreen(TInt aScreenNo)
sl@0
   719
 	{
sl@0
   720
 	if (aScreenNo<CWsTop::NumberOfScreens() && aScreenNo>=0)
sl@0
   721
 		{
sl@0
   722
 		CWsTop::SetCurrentFocusScreen(aScreenNo);
sl@0
   723
 		}
sl@0
   724
 	else
sl@0
   725
 		{
sl@0
   726
 		Panic();
sl@0
   727
 		}
sl@0
   728
 	}
sl@0
   729
sl@0
   730
TInt CWsAnim::WindowGroups(TInt aScreen) const
sl@0
   731
	{
sl@0
   732
	return(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(aScreen)->RootWindow()->Child(),ETrue,0));
sl@0
   733
	}
sl@0
   734
sl@0
   735
TBool CWsAnim::WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const
sl@0
   736
	{
sl@0
   737
	CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
sl@0
   738
	if (!group)
sl@0
   739
		return EFalse;
sl@0
   740
	aInfo.iId=group->Identifier();
sl@0
   741
	if (group->ReceivesFocus() && group->ScreenDeviceValid())
sl@0
   742
		aInfo.iFlags=TWindowGroupInfo::EIsFocusable;
sl@0
   743
	else
sl@0
   744
		aInfo.iFlags=0;
sl@0
   745
	aInfo.iOrdinalPriority=group->OrdinalPriority();
sl@0
   746
	HBufC* groupName=group->GroupName();
sl@0
   747
	aInfo.iNameLength=groupName?group->GroupName()->Length():0;
sl@0
   748
	if (!group->IsChained(aInfo.iParentId))
sl@0
   749
		aInfo.iParentId=-1;
sl@0
   750
	return ETrue;
sl@0
   751
	}
sl@0
   752
sl@0
   753
TInt CWsAnim::WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const
sl@0
   754
	{
sl@0
   755
	CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
sl@0
   756
	if (!group)
sl@0
   757
		return EFalse;
sl@0
   758
	HBufC* name=group->GroupName();
sl@0
   759
	if (name)
sl@0
   760
		aWindowName.Set(*name);
sl@0
   761
	else
sl@0
   762
		aWindowName.Set(NULL,0);
sl@0
   763
	return ETrue;
sl@0
   764
	}
sl@0
   765
sl@0
   766
TInt CWsAnim::SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)
sl@0
   767
	{
sl@0
   768
	CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifier(aWindowGroupId);
sl@0
   769
	if (group)
sl@0
   770
		{
sl@0
   771
		group->SetOrdinalPriority(aPos,aOrdinalPriority);
sl@0
   772
		return KErrNone;
sl@0
   773
		}
sl@0
   774
	return KErrNotFound;
sl@0
   775
	}
sl@0
   776
sl@0
   777
void CWsAnim::WindowConfig(TWindowConfig& aWindowConfig) const
sl@0
   778
	{
sl@0
   779
	aWindowConfig.iFlags = 0x00;
sl@0
   780
	if (iWindow->IsTranslucent())
sl@0
   781
		{
sl@0
   782
		aWindowConfig.iFlags |= TWindowConfig::ETransparencyEnabled;
sl@0
   783
		if (iWindow->HasAlpha())
sl@0
   784
			{
sl@0
   785
			aWindowConfig.iFlags |= TWindowConfig::EAlphaBlendedTransparency;
sl@0
   786
			}		
sl@0
   787
		}
sl@0
   788
	}
sl@0
   789
sl@0
   790
TBool CWsAnim::SpriteCanBeSeen() const
sl@0
   791
	{
sl@0
   792
	if(!iSprite)
sl@0
   793
		Panic();
sl@0
   794
	return iSprite->CanBeSeen();
sl@0
   795
	}
sl@0
   796
sl@0
   797
//
sl@0
   798
sl@0
   799
CObjectConIx* CWsAnimDll::AnimObjectConIx=NULL;
sl@0
   800
sl@0
   801
void CWsAnimDll::InitStaticsL()
sl@0
   802
	{
sl@0
   803
	CWsAnimDll::AnimObjectConIx=CObjectConIx::NewL();
sl@0
   804
	}
sl@0
   805
sl@0
   806
void CWsAnimDll::DeleteStatics()
sl@0
   807
	{
sl@0
   808
	delete CWsAnimDll::AnimObjectConIx;
sl@0
   809
	}
sl@0
   810
sl@0
   811
CWsAnimDll::CWsAnimDll(CWsClient *aOwner) : CWsObject(aOwner,WS_HANDLE_ANIM_DLL)
sl@0
   812
	{
sl@0
   813
	__DECLARE_NAME(_S("CWsAnimDll"));
sl@0
   814
	}
sl@0
   815
sl@0
   816
CWsAnimDll::~CWsAnimDll()
sl@0
   817
	{
sl@0
   818
	delete iInstanceIndex;
sl@0
   819
	AnimObjectConIx->Remove(iInstanceCon);
sl@0
   820
	delete iAnimDll;
sl@0
   821
	iAnimLib.Close();
sl@0
   822
	}
sl@0
   823
sl@0
   824
TInt CWsAnimDll::doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow)
sl@0
   825
	{
sl@0
   826
	iInstanceCon->AddL(aInstance);
sl@0
   827
	aInstance->ConstructL(iAnimDll->CreateInstanceL(aType),aArgs,this,aIsWindow);
sl@0
   828
	return(iInstanceIndex->AddL(aInstance));
sl@0
   829
	}
sl@0
   830
sl@0
   831
TInt CWsAnimDll::CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow)
sl@0
   832
	{
sl@0
   833
	TWindowServerEvent::PotentialEventHandlerL(1);
sl@0
   834
	CWsAnim *instance=new(ELeave) CWsAnim(this);
sl@0
   835
	CleanupClosePushL(*instance);
sl@0
   836
	if (aIsWindow)
sl@0
   837
		{
sl@0
   838
		CWsClientWindow *win;
sl@0
   839
		iWsOwner->HandleToClientWindow(aHandle,&win);
sl@0
   840
		instance->Connect(win);
sl@0
   841
		}
sl@0
   842
	else
sl@0
   843
		{
sl@0
   844
		CWsObject *sprite=iWsOwner->HandleToObj(aHandle, WS_HANDLE_SPRITE);
sl@0
   845
		if (!sprite)
sl@0
   846
			OwnerPanic(EWservPanicSprite);
sl@0
   847
		instance->Connect(STATIC_CAST(CWsSprite*,sprite));
sl@0
   848
		}
sl@0
   849
	TInt handle=doCreateInstanceL(instance, aType, aArgs, aIsWindow);
sl@0
   850
	CleanupStack::Pop(instance);
sl@0
   851
	return(handle);
sl@0
   852
	}
sl@0
   853
sl@0
   854
void CWsAnimDll::LoadL(const TDesC &aDllName)
sl@0
   855
	{
sl@0
   856
	NewObjL();
sl@0
   857
	TFileName name(aDllName);
sl@0
   858
	User::LeaveIfError(iAnimLib.Load(name));
sl@0
   859
	if (wsDebugLog)
sl@0
   860
		{
sl@0
   861
		TBuf<256> buf;
sl@0
   862
		_LIT(KWSERVLoadedAnimDll,"Loaded Anim DLL:  ");
sl@0
   863
		buf.Append(KWSERVLoadedAnimDll);
sl@0
   864
		buf.Append(iAnimLib.FileName());
sl@0
   865
		wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
sl@0
   866
		}
sl@0
   867
	TUidType uid=iAnimLib.Type();
sl@0
   868
	if (uid[1]!=KWservAnimDllUid)
sl@0
   869
		User::Leave(KErrNotSupported);
sl@0
   870
	CreateCAnimDll f;
sl@0
   871
	f=(CreateCAnimDll)User::LeaveIfNull((TAny *)iAnimLib.Lookup(1));
sl@0
   872
	iAnimDll=(*f)();
sl@0
   873
	iInstanceIndex=CObjectIx::NewL();
sl@0
   874
	iInstanceCon=AnimObjectConIx->CreateL();
sl@0
   875
	}
sl@0
   876
sl@0
   877
void CWsAnimDll::Remove(TInt aHandle)
sl@0
   878
	{
sl@0
   879
	iInstanceIndex->Remove(aHandle);
sl@0
   880
	}
sl@0
   881
sl@0
   882
void CWsAnimDll::CommandL(TInt aOpcode, const TAny *aCmdData)
sl@0
   883
	{
sl@0
   884
	TWsAnimDllCmdUnion pData;
sl@0
   885
sl@0
   886
	pData.any=aCmdData;
sl@0
   887
	switch(aOpcode)
sl@0
   888
		{
sl@0
   889
		case EWsAnimDllOpFree:
sl@0
   890
			delete this;
sl@0
   891
			break;
sl@0
   892
		case EWsAnimDllOpCreateInstance:
sl@0
   893
		case EWsAnimDllOpCreateInstanceSprite:
sl@0
   894
			SetReply(CreateInstanceL(*pData.UInt,*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)
sl@0
   895
																					,aOpcode==EWsAnimDllOpCreateInstance));
sl@0
   896
			break;
sl@0
   897
		case EWsAnimDllOpCommandReply:
sl@0
   898
		case EWsAnimDllOpCommand:
sl@0
   899
		case EWsAnimDllOpDestroyInstance:
sl@0
   900
			{
sl@0
   901
			CWsAnim *anim=(CWsAnim *)iInstanceIndex->At(*pData.UInt);
sl@0
   902
			TInt ret;
sl@0
   903
			//Deleting a non existant Anim is allowed as the Anim will be destroyed
sl@0
   904
			//when the window it is on (or a parent of) it destroyed
sl@0
   905
			if (anim==NULL && aOpcode!=EWsAnimDllOpDestroyInstance)
sl@0
   906
				OwnerPanic(EWservPanicAnim);
sl@0
   907
			switch(aOpcode)
sl@0
   908
				{
sl@0
   909
				case EWsAnimDllOpCommandReply:
sl@0
   910
					SetReply(anim->CommandReply(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
sl@0
   911
					CWsAnim::UserDeactivateAnimGc();
sl@0
   912
					break;
sl@0
   913
				case EWsAnimDllOpCommand:
sl@0
   914
					TRAP(ret,anim->Anim()->Command(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
sl@0
   915
					if (ret!=KErrNone && ret!=CWsClient::EPanicLeave)
sl@0
   916
						OwnerPanic(EWservPanicAnimLeave);
sl@0
   917
					CWsAnim::UserDeactivateAnimGc();
sl@0
   918
					break;
sl@0
   919
				case EWsAnimDllOpDestroyInstance:
sl@0
   920
					if (anim) // Added to go with changes described above
sl@0
   921
						Remove(*pData.UInt);
sl@0
   922
					break;
sl@0
   923
				default:
sl@0
   924
					break;
sl@0
   925
				}
sl@0
   926
			}
sl@0
   927
			break;
sl@0
   928
		default:
sl@0
   929
			OwnerPanic(EWservPanicOpcode);
sl@0
   930
		}
sl@0
   931
	}
sl@0
   932
sl@0
   933
CAnimFbsFont::~CAnimFbsFont()
sl@0
   934
	{}
sl@0
   935
sl@0
   936
CAnimFbsFont::CAnimFbsFont()
sl@0
   937
	{}
sl@0
   938
sl@0
   939
CAnimFbsFont* CAnimFbsFont::NewL(TInt aHandle,TInt& aError)
sl@0
   940
	{
sl@0
   941
	CAnimFbsFont *font=new(ELeave) CAnimFbsFont();
sl@0
   942
	font->iAccessCount=1;
sl@0
   943
	aError=font->Duplicate(aHandle);
sl@0
   944
	if (aError!=KErrNone)
sl@0
   945
		{
sl@0
   946
		delete font;
sl@0
   947
		font=NULL;
sl@0
   948
		}
sl@0
   949
	return(font);
sl@0
   950
	}
sl@0
   951
sl@0
   952
void CAnimFbsFont::Open()
sl@0
   953
	{
sl@0
   954
	iAccessCount++;
sl@0
   955
	}
sl@0
   956
sl@0
   957
void CAnimFbsFont::Close()
sl@0
   958
	{
sl@0
   959
	if (--iAccessCount==0)
sl@0
   960
		delete this;
sl@0
   961
	}
sl@0
   962
sl@0
   963
sl@0
   964
/*MAnimGeneralFunctions*/
sl@0
   965
void MAnimGeneralFunctions::Reserved1() const
sl@0
   966
	{}
sl@0
   967
	
sl@0
   968
void MAnimGeneralFunctions::Reserved2() const
sl@0
   969
	{}
sl@0
   970
	
sl@0
   971
void MAnimGeneralFunctions::Reserved3() const
sl@0
   972
	{}
sl@0
   973
sl@0
   974
	
sl@0
   975
/*MAnimGeneralFunctionsExtension*/
sl@0
   976
sl@0
   977
void MAnimGeneralFunctionsWindowExtension::Reserved1() const
sl@0
   978
	{}
sl@0
   979
sl@0
   980
void MAnimGeneralFunctionsWindowExtension::Reserved2() const
sl@0
   981
	{}
sl@0
   982
sl@0
   983
void MAnimGeneralFunctionsWindowExtension::Reserved3() const
sl@0
   984
	{}
sl@0
   985
sl@0
   986
/*MAnimWindowFunctions*/
sl@0
   987
sl@0
   988
void MAnimWindowFunctions::Reserved() const
sl@0
   989
	{}
sl@0
   990
sl@0
   991
void MAnimWindowFunctions::Reserved1() const
sl@0
   992
	{}
sl@0
   993
	
sl@0
   994
void MAnimWindowFunctions::Reserved2() const
sl@0
   995
	{}
sl@0
   996
	
sl@0
   997
void MAnimWindowFunctions::Reserved3() const
sl@0
   998
	{}
sl@0
   999
	
sl@0
  1000
sl@0
  1001
/*MAnimFreeTimerWindowFunctions*/
sl@0
  1002
sl@0
  1003
void MAnimFreeTimerWindowFunctions::Reserved3() const
sl@0
  1004
	{}
sl@0
  1005
sl@0
  1006
sl@0
  1007
/*MAnimSpriteFunctions*/
sl@0
  1008
sl@0
  1009
void MAnimSpriteFunctions::Reserved() const
sl@0
  1010
	{}
sl@0
  1011
sl@0
  1012
void MAnimSpriteFunctions::Reserved2() const
sl@0
  1013
	{}
sl@0
  1014
	
sl@0
  1015
void MAnimSpriteFunctions::Reserved3() const
sl@0
  1016
	{}
sl@0
  1017
	
sl@0
  1018
void MAnimSpriteFunctions::Reserved4() const
sl@0
  1019
	{}	
sl@0
  1020
sl@0
  1021
/*MAnimGeneralFunctionsEventExtension*/
sl@0
  1022
sl@0
  1023
void MAnimGeneralFunctionsEventExtension::Reserved1() const
sl@0
  1024
	{}
sl@0
  1025
	
sl@0
  1026
void MAnimGeneralFunctionsEventExtension::Reserved2() const
sl@0
  1027
	{}