os/graphics/windowing/windowserver/nonnga/SERVER/walkwindowtree.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) 2006-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
//
sl@0
    15
sl@0
    16
#include "walkwindowtree.h"
sl@0
    17
#include "cliwin.h"
sl@0
    18
#include "rootwin.h"
sl@0
    19
#include "offscreenbitmap.h"
sl@0
    20
#include "ANIM.H"
sl@0
    21
#include "tcursor.h"
sl@0
    22
#include "pointer.h"
sl@0
    23
sl@0
    24
TWalkWindowTreeFocusChanged::TWalkWindowTreeFocusChanged(TBool aNewFocusState) :
sl@0
    25
	iNewFocusState(aNewFocusState)
sl@0
    26
	{
sl@0
    27
	}
sl@0
    28
sl@0
    29
TBool TWalkWindowTreeFocusChanged::DoIt(CWsWindow *aWin)
sl@0
    30
//
sl@0
    31
// Walk all windows that have had their focus state changed
sl@0
    32
//
sl@0
    33
	{
sl@0
    34
	aWin->FocusChanged(iNewFocusState);
sl@0
    35
	return(EFalse);
sl@0
    36
	}
sl@0
    37
sl@0
    38
TResumableWalkWindowTreeFindInvalid::TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult) :
sl@0
    39
	iResult(aResult)
sl@0
    40
	{
sl@0
    41
	}
sl@0
    42
sl@0
    43
TBool TResumableWalkWindowTreeFindInvalid::DoIt(CWsWindow* aWin)
sl@0
    44
//
sl@0
    45
// Find a window with an invalid area
sl@0
    46
//
sl@0
    47
	{
sl@0
    48
	WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowType);
sl@0
    49
	CWsWindowRedraw *redraw=((CWsClientWindow *)aWin)->Redraw();
sl@0
    50
	if (redraw->NeedsRedraw()>0)
sl@0
    51
		{
sl@0
    52
		*iResult=redraw;
sl@0
    53
		return(ETrue);
sl@0
    54
		}
sl@0
    55
	return(EFalse);
sl@0
    56
	}
sl@0
    57
sl@0
    58
TWalkWindowTreeDisconnect::TWalkWindowTreeDisconnect(RWsTextCursor *aCursor) :
sl@0
    59
	iTextCursor(aCursor)
sl@0
    60
	{}
sl@0
    61
sl@0
    62
TBool TWalkWindowTreeDisconnect::DoIt(CWsWindow *aWin)
sl@0
    63
//
sl@0
    64
// Disconnect a window
sl@0
    65
//
sl@0
    66
	{
sl@0
    67
	if (aWin->WinType()==EWinTypeClient)
sl@0
    68
		{
sl@0
    69
		CWsClientWindow *win=(CWsClientWindow *)aWin;
sl@0
    70
		win->iRedraw->WindowClosing();
sl@0
    71
		win->DeactivateAllSprites();
sl@0
    72
sl@0
    73
		if (iTextCursor)
sl@0
    74
			iTextCursor->WindowDisconnected(win);
sl@0
    75
		CWsAnim::WindowClosing(win->iAnimList);	// Destroy any animated objects attached to this window
sl@0
    76
		WsPointer::WindowDisconected(aWin);
sl@0
    77
sl@0
    78
		win->iParent=NULL;
sl@0
    79
		win->iSibling=NULL;
sl@0
    80
		win->iChild=NULL;
sl@0
    81
		win->iFlags&=~EFlagActive;
sl@0
    82
		win->ResetHiddenFlag();
sl@0
    83
		}
sl@0
    84
	return(EFalse);
sl@0
    85
	}
sl@0
    86
	
sl@0
    87
TWalkWindowTreeRegionBase::TWalkWindowTreeRegionBase(RWsRegion *aRegion, TTranslucentBehaviour aTranslucentBehaviour) :
sl@0
    88
	iTranslucentBehaviour(aTranslucentBehaviour), iRegion(aRegion), iSubRegion(NULL)
sl@0
    89
	{}
sl@0
    90
sl@0
    91
TBool TWalkWindowTreeRegionBase::DoIt(CWsWindow *aWin)
sl@0
    92
	{
sl@0
    93
	if (aWin->IsVisible())
sl@0
    94
		{
sl@0
    95
		DoIt2(aWin);
sl@0
    96
		if (aWin->WinType()!=EWinTypeRoot)
sl@0
    97
			{
sl@0
    98
			STACK_REGION tmp;
sl@0
    99
			switch(iTranslucentBehaviour)
sl@0
   100
				{
sl@0
   101
				case EDontWalkTranslucent:
sl@0
   102
					static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(tmp);
sl@0
   103
					iRegion->SubRegion(tmp,iSubRegion);
sl@0
   104
					break;
sl@0
   105
				case EWalkTranslucent:
sl@0
   106
					static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(*iSubRegion);
sl@0
   107
					iSubRegion->Intersect(*iRegion);
sl@0
   108
					if (iSubRegion->Count() > 0)
sl@0
   109
						{
sl@0
   110
						static_cast<CWsClientWindow *>(aWin)->SetOpaqueClippedBaseArea(tmp);
sl@0
   111
						iRegion->SubRegion(tmp);
sl@0
   112
						}
sl@0
   113
					break;
sl@0
   114
				}
sl@0
   115
			tmp.Close();
sl@0
   116
			}
sl@0
   117
		else if(iSubRegion)
sl@0
   118
			{
sl@0
   119
			iSubRegion->Copy(*iRegion);
sl@0
   120
			}
sl@0
   121
		if (iSubRegion && (iSubRegion->Count()>0 || iSubRegion->CheckError()))
sl@0
   122
			{
sl@0
   123
			if (DoIt3(aWin))
sl@0
   124
				return ETrue;
sl@0
   125
			iSubRegion->Clear();
sl@0
   126
			}
sl@0
   127
		}
sl@0
   128
	return(iRegion->IsEmpty());
sl@0
   129
	}
sl@0
   130
TBool TWalkWindowTreeRegionBase::DoIt3(CWsWindow*)
sl@0
   131
	{return EFalse;}
sl@0
   132
sl@0
   133
TWalkWindowTreeSchedule::TWalkWindowTreeSchedule() :
sl@0
   134
	TWalkWindowTreeBase(),
sl@0
   135
	iHead(0)
sl@0
   136
	{
sl@0
   137
	}
sl@0
   138
sl@0
   139
CWsWindow * TWalkWindowTreeSchedule::HeadWindow() const
sl@0
   140
	{
sl@0
   141
	return iHead;
sl@0
   142
	}
sl@0
   143
sl@0
   144
TWalkWindowTreeScheduleRegions::TWalkWindowTreeScheduleRegions(RWsRegion *aRegion, const TRegion& aTopLayer) :
sl@0
   145
	TWalkWindowTreeSchedule(),
sl@0
   146
	iRegion(aRegion),
sl@0
   147
	iTopLayer(aTopLayer),
sl@0
   148
	iScheduledRegionsOk(ETrue)
sl@0
   149
	{
sl@0
   150
	}
sl@0
   151
sl@0
   152
// This is similar to TWalkWindowTreeRegionBase::DoIt
sl@0
   153
TBool TWalkWindowTreeScheduleRegions::DoIt(CWsWindow *aWin)
sl@0
   154
	{
sl@0
   155
	WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
sl@0
   156
	if (aWin->IsVisible())
sl@0
   157
		{
sl@0
   158
		// Calculate the region we care about for this window:
sl@0
   159
		STACK_REGION region;
sl@0
   160
		if (aWin->WinType()==EWinTypeRoot)
sl@0
   161
			{
sl@0
   162
			region.Copy(*iRegion);
sl@0
   163
			}
sl@0
   164
		else
sl@0
   165
			{
sl@0
   166
			static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(region);
sl@0
   167
			region.Intersect(*iRegion);
sl@0
   168
			}
sl@0
   169
		// If there is a region we care about, remember the window:
sl@0
   170
		// NOTE: Even if there are no redraw segments (ReadyToDraw is false) the window should
sl@0
   171
		//   be scheduled if it has some animations which will be redrawn via PostDrawWindow (cf def131912)
sl@0
   172
		if (!region.IsEmpty() && (aWin->ReadyToDraw() || aWin->HasAnimation() || aWin->HasSprite()) )
sl@0
   173
			{
sl@0
   174
			// Add window to linked list:
sl@0
   175
			aWin->SetNextScheduled(iHead);
sl@0
   176
			iHead = aWin;
sl@0
   177
			// Set the window scheduled region to something appropriate:
sl@0
   178
			if (iScheduledRegionsOk)
sl@0
   179
				{
sl@0
   180
				if (region.CheckError())
sl@0
   181
					{
sl@0
   182
					iScheduledRegionsOk = EFalse;
sl@0
   183
					}
sl@0
   184
				else
sl@0
   185
					{
sl@0
   186
					iScheduledRegionsOk = aWin->SetScheduledRegion(region);
sl@0
   187
					}
sl@0
   188
				}
sl@0
   189
			}
sl@0
   190
		if (aWin->WinType()!=EWinTypeRoot)
sl@0
   191
			{
sl@0
   192
			// Remove the opaque part from our working region:
sl@0
   193
			STACK_REGION opaqueRegion;
sl@0
   194
			static_cast<CWsClientWindow *>(aWin)->SetOpaqueClippedBaseArea(opaqueRegion);
sl@0
   195
			iRegion->SubRegion(opaqueRegion);
sl@0
   196
			opaqueRegion.Close();
sl@0
   197
			
sl@0
   198
			// Where we were drawing transparent and doing top layer only, remove
sl@0
   199
			// that bit too:
sl@0
   200
			if (!iTopLayer.IsEmpty())
sl@0
   201
				{
sl@0
   202
				region.Intersect(iTopLayer);
sl@0
   203
				iRegion->SubRegion(region);
sl@0
   204
				}
sl@0
   205
			}
sl@0
   206
		region.Close();
sl@0
   207
		}
sl@0
   208
sl@0
   209
	return(iRegion->IsEmpty() || !iScheduledRegionsOk);
sl@0
   210
	}
sl@0
   211
sl@0
   212
const TRegion * TWalkWindowTreeScheduleRegions::Region(const CWsWindow* aWin) const
sl@0
   213
	{
sl@0
   214
	WS_ASSERT_DEBUG(iScheduledRegionsOk, EWsPanicScheduledRedraw);
sl@0
   215
	return aWin->ScheduledRegion();
sl@0
   216
	}
sl@0
   217
sl@0
   218
TBool TWalkWindowTreeScheduleRegions::ScheduledRegionsOk() const
sl@0
   219
	{
sl@0
   220
	return iScheduledRegionsOk;
sl@0
   221
	}
sl@0
   222
sl@0
   223
TWalkWindowTreeScheduleFallback::TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap) :
sl@0
   224
	TWalkWindowTreeSchedule(),
sl@0
   225
	iFallbackMap(aFallbackMap)
sl@0
   226
	{
sl@0
   227
	}
sl@0
   228
sl@0
   229
// This is similar to TWalkWindowTreeRegionBase::DoIt
sl@0
   230
TBool TWalkWindowTreeScheduleFallback::DoIt(CWsWindow *aWin)
sl@0
   231
	{
sl@0
   232
	WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
sl@0
   233
	if (aWin->IsVisible())
sl@0
   234
		{
sl@0
   235
		if (aWin == aWin->RootWindow())
sl@0
   236
			{
sl@0
   237
			aWin->SetNextScheduled(iHead);
sl@0
   238
			return ETrue;
sl@0
   239
			}
sl@0
   240
		else
sl@0
   241
			{
sl@0
   242
			TBool addWindow = EFalse;
sl@0
   243
			CWsClientWindow* cliWin = static_cast<CWsClientWindow *>(aWin);
sl@0
   244
			if (cliWin->IsTranslucent())
sl@0
   245
				{
sl@0
   246
				addWindow = ETrue; // costs more to work out than it is worth
sl@0
   247
				const TRegion * opaque = cliWin->GetUserOpaqueRegion();
sl@0
   248
				if (opaque && !opaque->CheckError())
sl@0
   249
					iFallbackMap->FillRegion(*opaque);
sl@0
   250
				}
sl@0
   251
			else
sl@0
   252
				{
sl@0
   253
				addWindow = iFallbackMap->FillRegion(*cliWin->BaseArea());
sl@0
   254
				}
sl@0
   255
			if (addWindow)
sl@0
   256
				{
sl@0
   257
				aWin->SetNextScheduled(iHead);
sl@0
   258
				iHead = aWin;
sl@0
   259
				}
sl@0
   260
			}
sl@0
   261
		}
sl@0
   262
sl@0
   263
	return(iFallbackMap->Count() < 1);
sl@0
   264
	}
sl@0
   265
sl@0
   266
const TRegion * TWalkWindowTreeScheduleFallback::Region(const CWsWindow* aWin) const
sl@0
   267
	{
sl@0
   268
	if (aWin == aWin->RootWindow())
sl@0
   269
		return iFallbackMap->Region();
sl@0
   270
	else
sl@0
   271
		{
sl@0
   272
		const CWsClientWindow* win = static_cast<const CWsClientWindow *>(aWin);
sl@0
   273
		const TRegion* region = win->VisibleRegionIfValid();
sl@0
   274
		if (!region)
sl@0
   275
			region = win->BaseArea();
sl@0
   276
		return region;
sl@0
   277
		}
sl@0
   278
	}
sl@0
   279
sl@0
   280
TWalkWindowTreeIsObscured::TWalkWindowTreeIsObscured(TBool &aResult) :
sl@0
   281
	iResult(&aResult)
sl@0
   282
	{
sl@0
   283
	aResult=ETrue;
sl@0
   284
	}
sl@0
   285
sl@0
   286
TBool TWalkWindowTreeIsObscured::DoIt(CWsWindow *aWin)
sl@0
   287
	{
sl@0
   288
	if (!aWin->VisibleRegion().IsEmpty())
sl@0
   289
		{
sl@0
   290
		*iResult=EFalse;
sl@0
   291
		return(ETrue);
sl@0
   292
		}
sl@0
   293
	return(EFalse);
sl@0
   294
	}
sl@0
   295
sl@0
   296
TWalkWindowTreeSetNonFading::TWalkWindowTreeSetNonFading(TBool aNonFading) :
sl@0
   297
	iNonFading(aNonFading)
sl@0
   298
	{}
sl@0
   299
TBool TWalkWindowTreeSetNonFading::DoIt(CWsWindow *aWin)
sl@0
   300
	{
sl@0
   301
	aWin->SetNonFading(iNonFading); 
sl@0
   302
	return EFalse;
sl@0
   303
	}
sl@0
   304
sl@0
   305
TWalkWindowTreeSetFaded::TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap) :
sl@0
   306
	iBlackMap(aBlackMap), iWhiteMap(aWhiteMap), iFaded(aFaded), iGroup(aWin->WinGroup())
sl@0
   307
	{
sl@0
   308
	}
sl@0
   309
	
sl@0
   310
TBool TWalkWindowTreeSetFaded::DoIt(CWsWindow *aWin)
sl@0
   311
	{
sl@0
   312
	if (aWin->WinGroup()!=iGroup)
sl@0
   313
		return ETrue;
sl@0
   314
	((CWsClientWindow*)aWin)->SetFaded(iFaded,iBlackMap,iWhiteMap); 
sl@0
   315
	return EFalse;
sl@0
   316
	}
sl@0
   317
sl@0
   318
TWalkWindowTreePurgeEvents::TWalkWindowTreePurgeEvents()
sl@0
   319
	{}
sl@0
   320
TBool TWalkWindowTreePurgeEvents::DoIt(CWsWindow *aWin)
sl@0
   321
	{
sl@0
   322
	aWin->PurgeEvents();
sl@0
   323
	return EFalse;
sl@0
   324
	}
sl@0
   325
sl@0
   326
TWalkWindowTreeCalcInvalidGraphics::TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid):
sl@0
   327
	TWalkWindowTreeRegionBase(aRegion, EWalkTranslucent),
sl@0
   328
	iDirty(aDirty),
sl@0
   329
	iInvalid(aInvalid)
sl@0
   330
	{
sl@0
   331
	}
sl@0
   332
sl@0
   333
void TWalkWindowTreeCalcInvalidGraphics::DestroyRegions()
sl@0
   334
	{
sl@0
   335
	if(iSubRegion)
sl@0
   336
		{
sl@0
   337
		iSubRegion->Close();
sl@0
   338
		}
sl@0
   339
	delete iSubRegion;
sl@0
   340
	iSubRegion = NULL;	
sl@0
   341
	iDirty.Clear();
sl@0
   342
	}	
sl@0
   343
sl@0
   344
void TWalkWindowTreeCalcInvalidGraphics::CalcInvalid(CScreen& aScreen)
sl@0
   345
	{
sl@0
   346
	if(aScreen.RootWindow())
sl@0
   347
		{
sl@0
   348
		aScreen.RootWindow()->WalkWindowTree(*this,EWalkChildren);
sl@0
   349
		if(iRegion->CheckError())
sl@0
   350
			{
sl@0
   351
			iDirty.ForceError();
sl@0
   352
			}
sl@0
   353
		}
sl@0
   354
	}
sl@0
   355
sl@0
   356
TBool TWalkWindowTreeCalcInvalidGraphics::CreateSubRegion()
sl@0
   357
	{
sl@0
   358
	iSubRegion=new RWsRegion;
sl@0
   359
	return iSubRegion!=NULL;
sl@0
   360
	}
sl@0
   361
sl@0
   362
TBool TWalkWindowTreeCalcInvalidGraphics::DoIt3(CWsWindow *aWin) 
sl@0
   363
	{
sl@0
   364
	if (!iDirty.CheckError() && aWin->Redraw() && aWin->Redraw()->Contains(iInvalid,aWin->VisibleRegion()))
sl@0
   365
		{
sl@0
   366
		STACK_REGION intersection;
sl@0
   367
		intersection.Intersection(*iSubRegion,aWin->VisibleRegion());
sl@0
   368
		iDirty.Union(intersection);
sl@0
   369
		intersection.Close();
sl@0
   370
		}
sl@0
   371
	return iDirty.CheckError();
sl@0
   372
	}
sl@0
   373
	
sl@0
   374
#if defined(_DEBUG)
sl@0
   375
sl@0
   376
TBool TWalkWindowTreeCheck::DoIt(CWsWindow *aWin)
sl@0
   377
	{
sl@0
   378
	if (aWin->WinType()==EWinTypeRoot)
sl@0
   379
		{
sl@0
   380
		WS_ASSERT_DEBUG(aWin->BaseParent()==NULL, EWsPanicWindowCheck);
sl@0
   381
		WS_ASSERT_DEBUG(aWin->NextSibling()==NULL, EWsPanicWindowCheck);
sl@0
   382
		}
sl@0
   383
	else
sl@0
   384
		{
sl@0
   385
		WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowCheck);
sl@0
   386
		}
sl@0
   387
	if (aWin->BaseChild())
sl@0
   388
		{
sl@0
   389
		WS_ASSERT_DEBUG(aWin->BaseChild()->BaseParent()==aWin, EWsPanicWindowCheck);
sl@0
   390
		}
sl@0
   391
	if (aWin->NextSibling())
sl@0
   392
		{
sl@0
   393
		WS_ASSERT_DEBUG(aWin->NextSibling()->GetPrevSibling()==aWin, EWsPanicWindowCheck);
sl@0
   394
		}
sl@0
   395
	return(EFalse);
sl@0
   396
	}
sl@0
   397
sl@0
   398
TBool TWalkWindowTreeFindWithFlag::DoIt(CWsWindow *aWin)
sl@0
   399
	{
sl@0
   400
	if (aWin->iFlags & iFlag)
sl@0
   401
		{
sl@0
   402
		iFound = aWin;
sl@0
   403
		return ETrue;
sl@0
   404
		}
sl@0
   405
	return EFalse;
sl@0
   406
	}
sl@0
   407
	
sl@0
   408
#endif
sl@0
   409
sl@0
   410
#include "wnredraw.h"	
sl@0
   411
TWalkWindowTreeRedrawStoreSize::TWalkWindowTreeRedrawStoreSize() : iTotalSize(0)
sl@0
   412
	{
sl@0
   413
	}
sl@0
   414
sl@0
   415
TBool TWalkWindowTreeRedrawStoreSize::DoIt(CWsWindow *aWin)
sl@0
   416
	{
sl@0
   417
	iTotalSize += aWin->Redraw()->SizeInBytes();
sl@0
   418
	return EFalse;
sl@0
   419
	}
sl@0
   420
sl@0
   421
sl@0
   422
TBool TWalkWindowTreeFindByHandle::DoIt(CWsWindow *aWin)
sl@0
   423
	{
sl@0
   424
	if (aWin->ClientHandle() == iHandle)
sl@0
   425
		{
sl@0
   426
		iFound = aWin;
sl@0
   427
		return ETrue;
sl@0
   428
		}
sl@0
   429
	return EFalse;
sl@0
   430
	}
sl@0
   431
sl@0
   432
TWalkWindowTreeUpdateRegions::TWalkWindowTreeUpdateRegions(CScreen & aScreen) :
sl@0
   433
	iScreen(aScreen)
sl@0
   434
	{
sl@0
   435
	}
sl@0
   436
sl@0
   437
void TWalkWindowTreeUpdateRegions::Walk()
sl@0
   438
	{
sl@0
   439
	STACK_REGION floatingSpriteRgn;
sl@0
   440
	iScreen.SpriteManager()->CalcFloatingSpriteRgn( floatingSpriteRgn, iScreen.RootWindow()->AbsRect() );
sl@0
   441
	iVisible.AddRect(iScreen.RootWindow()->AbsRect());
sl@0
   442
	iTop.AddRect(iScreen.RootWindow()->AbsRect());
sl@0
   443
	iRemainsOfFadableScreen.AddRect( iScreen.RootWindow()->AbsRect() );
sl@0
   444
	iTop.SubRegion(floatingSpriteRgn);
sl@0
   445
	iScreen.RootWindow()->WalkWindowTree(*this, EWalkChildren);
sl@0
   446
	iTop.Close();
sl@0
   447
	iVisible.Close();	
sl@0
   448
	iRemainsOfFadableScreen.Close();
sl@0
   449
	floatingSpriteRgn.Close();
sl@0
   450
	}
sl@0
   451
sl@0
   452
TBool TWalkWindowTreeUpdateRegions::DoIt(CWsWindow * aWin)
sl@0
   453
	{
sl@0
   454
	if (aWin->IsVisible() && !iVisible.IsEmpty())
sl@0
   455
		{
sl@0
   456
		// Calculate the region we care about for this window:
sl@0
   457
		STACK_REGION newVisibleRegion;
sl@0
   458
		STACK_REGION newFadableRegion;
sl@0
   459
		if (aWin->WinType()==EWinTypeRoot)
sl@0
   460
			{
sl@0
   461
			newVisibleRegion.Copy(iVisible);
sl@0
   462
			}
sl@0
   463
		else
sl@0
   464
			{
sl@0
   465
			static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(newVisibleRegion);
sl@0
   466
			newVisibleRegion.Intersect(iVisible);
sl@0
   467
			if (!aWin->IsTranslucent())
sl@0
   468
				{
sl@0
   469
				iVisible.SubRegion(newVisibleRegion);
sl@0
   470
				}
sl@0
   471
			else
sl@0
   472
				{
sl@0
   473
				STACK_REGION opaque;
sl@0
   474
				static_cast<CWsClientWindow *>(aWin)->SetOpaqueClippedBaseArea(opaque);
sl@0
   475
				iVisible.SubRegion(opaque);
sl@0
   476
				opaque.Close();
sl@0
   477
				}
sl@0
   478
			//If the window has been faded calculate what region actually needs fading 
sl@0
   479
			//(i.e. subtract what has already been faded)
sl@0
   480
			if ( aWin->FadeCount() && !aWin->IsNonFading() && aWin->IsVisible()  && !iRemainsOfFadableScreen.IsEmpty() )
sl@0
   481
				{
sl@0
   482
				newFadableRegion.Copy( newVisibleRegion );
sl@0
   483
				newFadableRegion.Intersect( iRemainsOfFadableScreen );
sl@0
   484
				}
sl@0
   485
			}
sl@0
   486
		aWin->SetVisibleRegion(newVisibleRegion, &iTop, newFadableRegion);
sl@0
   487
		iTop.SubRegion(newVisibleRegion);
sl@0
   488
		iRemainsOfFadableScreen.SubRegion( newFadableRegion ); // Subtract the new faded region
sl@0
   489
		newFadableRegion.Close();
sl@0
   490
		newVisibleRegion.Close();
sl@0
   491
		}
sl@0
   492
	else
sl@0
   493
		{
sl@0
   494
		if (!aWin->VisibleRegion().IsEmpty())
sl@0
   495
			{
sl@0
   496
			aWin->ClearVisibleRegion();
sl@0
   497
			}
sl@0
   498
		}
sl@0
   499
	return(EFalse);
sl@0
   500
	}
sl@0
   501
sl@0
   502
TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws():
sl@0
   503
	iScheduleRedrawFilter( ERedrawFilterNoFilter )
sl@0
   504
	{
sl@0
   505
	}
sl@0
   506
sl@0
   507
TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws( TUint32 aFilter ):
sl@0
   508
	iScheduleRedrawFilter( aFilter )
sl@0
   509
	{ }
sl@0
   510
sl@0
   511
TBool TWalkWindowTreeScheduleRedraws::DoIt(CWsWindow * aWin)
sl@0
   512
	{
sl@0
   513
	if (aWin->WinType() != EWinTypeClient || static_cast<CWsClientWindow *>(aWin)->HasBeenDrawnToScreen())
sl@0
   514
		{
sl@0
   515
		TBool ban = (iScheduleRedrawFilter & ERedrawFilterOmitDSA) && ( aWin->IsDSAHost() );
sl@0
   516
		if ( !ban )
sl@0
   517
			{
sl@0
   518
			aWin->Screen()->AddRedrawRegion(aWin->VisibleRegion());
sl@0
   519
			}
sl@0
   520
		}
sl@0
   521
	return EFalse;
sl@0
   522
	}
sl@0
   523
sl@0
   524
TWalkWindowTreeOffsetTransparentRegions::TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset) :
sl@0
   525
	iOffset(aOffset)
sl@0
   526
	{
sl@0
   527
	}
sl@0
   528
sl@0
   529
TBool TWalkWindowTreeOffsetTransparentRegions::DoIt(CWsWindow * aWin)
sl@0
   530
	{
sl@0
   531
	if (aWin != aWin->RootWindow())
sl@0
   532
		static_cast<CWsClientWindow *>(aWin)->OffsetUserTransparentRegion(iOffset);
sl@0
   533
	return EFalse;
sl@0
   534
	}
sl@0
   535
sl@0
   536
TWalkWindowTreeRecalcOpaque::TWalkWindowTreeRecalcOpaque()
sl@0
   537
	{
sl@0
   538
	}
sl@0
   539
sl@0
   540
TBool TWalkWindowTreeRecalcOpaque::DoIt(CWsWindow * aWin)
sl@0
   541
	{
sl@0
   542
	if (aWin != aWin->RootWindow())
sl@0
   543
		static_cast<CWsClientWindow *>(aWin)->SetUserOpaqueRegion();
sl@0
   544
	return EFalse;
sl@0
   545
	}
sl@0
   546
sl@0
   547
TBool TWalkWindowTreeReactivateGcs::DoIt(CWsWindow *aWin)
sl@0
   548
	{
sl@0
   549
	if (aWin != aWin->RootWindow())
sl@0
   550
		static_cast<CWsClientWindow *>(aWin)->ReactivateGcs();
sl@0
   551
	return EFalse;
sl@0
   552
	}
sl@0
   553
sl@0
   554
TWalkWindowTreeScheduleFadeNoRedraw::TWalkWindowTreeScheduleFadeNoRedraw()
sl@0
   555
	{ } // empty
sl@0
   556
sl@0
   557
TBool TWalkWindowTreeScheduleFadeNoRedraw::DoIt(CWsWindow *aWin)
sl@0
   558
	{
sl@0
   559
	aWin->Screen()->ScheduleRegionUpdate( aWin->VisibleRegionIfValid() );
sl@0
   560
	return EFalse;	
sl@0
   561
	}