os/graphics/windowing/windowserver/nga/SERVER/openwfc/walkwindowtree.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 "ANIM.H"
sl@0
    20
#include "tcursor.h"
sl@0
    21
#include "pointer.h"
sl@0
    22
sl@0
    23
TWalkWindowTreeFocusChanged::TWalkWindowTreeFocusChanged(TBool aNewFocusState) :
sl@0
    24
	iNewFocusState(aNewFocusState)
sl@0
    25
	{
sl@0
    26
	}
sl@0
    27
sl@0
    28
TBool TWalkWindowTreeFocusChanged::DoIt(CWsWindow *aWin)
sl@0
    29
//
sl@0
    30
// Walk all windows that have had their focus state changed
sl@0
    31
//
sl@0
    32
	{
sl@0
    33
	aWin->FocusChanged(iNewFocusState);
sl@0
    34
	return(EFalse);
sl@0
    35
	}
sl@0
    36
sl@0
    37
TResumableWalkWindowTreeFindInvalid::TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult) :
sl@0
    38
	iResult(aResult)
sl@0
    39
	{
sl@0
    40
	}
sl@0
    41
sl@0
    42
TBool TResumableWalkWindowTreeFindInvalid::DoIt(CWsWindow* aWin)
sl@0
    43
//
sl@0
    44
// Find a window with an invalid area
sl@0
    45
//
sl@0
    46
	{
sl@0
    47
	WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowType);
sl@0
    48
	CWsWindowRedraw *redraw=((CWsClientWindow *)aWin)->Redraw();
sl@0
    49
	if (redraw->NeedsRedraw()>0)
sl@0
    50
		{
sl@0
    51
		*iResult=redraw;
sl@0
    52
		return(ETrue);
sl@0
    53
		}
sl@0
    54
	return(EFalse);
sl@0
    55
	}
sl@0
    56
sl@0
    57
TWalkWindowTreeDisconnect::TWalkWindowTreeDisconnect(RWsTextCursor *aCursor) :
sl@0
    58
	iTextCursor(aCursor)
sl@0
    59
	{}
sl@0
    60
sl@0
    61
TBool TWalkWindowTreeDisconnect::DoIt(CWsWindow *aWin)
sl@0
    62
//
sl@0
    63
// Disconnect a window
sl@0
    64
//
sl@0
    65
	{
sl@0
    66
	if (aWin->WinType()==EWinTypeClient)
sl@0
    67
		{
sl@0
    68
		CWsClientWindow *win=(CWsClientWindow *)aWin;
sl@0
    69
		win->iRedraw->WindowClosing();
sl@0
    70
		/* XXX jonas: the defect fix for PDEF114190 moved deactivation of sprites from CWsWindow::Shutdown() to here. Check that DeactivateAllSprites() is equivalent to SpriteManager::DeactivateSprites().
sl@0
    71
		win->SpriteManager()->DeactivateSprites(win);
sl@0
    72
		*/
sl@0
    73
		win->DeactivateAllSprites();
sl@0
    74
sl@0
    75
		if (iTextCursor)
sl@0
    76
			iTextCursor->WindowDisconnected(win);
sl@0
    77
		CWsAnim::WindowClosing(win->iAnimList);	// Destroy any animated objects attached to this window
sl@0
    78
		TWsPointer::WindowDisconnected(aWin);
sl@0
    79
sl@0
    80
		win->iParent=NULL;
sl@0
    81
		win->iSibling=NULL;
sl@0
    82
		win->iChild=NULL;
sl@0
    83
		win->iFlags&=~EFlagActive;
sl@0
    84
		win->ResetHiddenFlag();
sl@0
    85
		}
sl@0
    86
	return(EFalse);
sl@0
    87
	}
sl@0
    88
	
sl@0
    89
TWalkWindowTreeRegionBase::TWalkWindowTreeRegionBase(RWsRegion *aRegion, TTranslucentBehaviour aTranslucentBehaviour) :
sl@0
    90
	iTranslucentBehaviour(aTranslucentBehaviour), iRegion(aRegion), iSubRegion(NULL)
sl@0
    91
	{}
sl@0
    92
sl@0
    93
TBool TWalkWindowTreeRegionBase::DoIt(CWsWindow *aWin)
sl@0
    94
	{
sl@0
    95
	if (aWin->IsVisible())
sl@0
    96
		{
sl@0
    97
		DoIt2(aWin);
sl@0
    98
		if (aWin->WinType()!=EWinTypeRoot)
sl@0
    99
			{
sl@0
   100
			STACK_REGION tmp;
sl@0
   101
			switch(iTranslucentBehaviour)
sl@0
   102
				{
sl@0
   103
				case EDontWalkTranslucent:
sl@0
   104
					static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(tmp);
sl@0
   105
					iRegion->SubRegion(tmp,iSubRegion);
sl@0
   106
					break;
sl@0
   107
				case EWalkTranslucent:
sl@0
   108
					static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(*iSubRegion);
sl@0
   109
					iSubRegion->Intersect(*iRegion);
sl@0
   110
					if (iSubRegion->Count() > 0)
sl@0
   111
						{
sl@0
   112
						static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(tmp);
sl@0
   113
						iRegion->SubRegion(tmp);
sl@0
   114
						}
sl@0
   115
					break;
sl@0
   116
				}
sl@0
   117
			tmp.Close();
sl@0
   118
			}
sl@0
   119
		else if(iSubRegion)
sl@0
   120
			{
sl@0
   121
			iSubRegion->Copy(*iRegion);
sl@0
   122
			}
sl@0
   123
		if (iSubRegion && (iSubRegion->Count()>0 || iSubRegion->CheckError()))
sl@0
   124
			{
sl@0
   125
			if (DoIt3(aWin))
sl@0
   126
				return ETrue;
sl@0
   127
			iSubRegion->Clear();
sl@0
   128
			}
sl@0
   129
		}
sl@0
   130
	return(iRegion->IsEmpty());
sl@0
   131
	}
sl@0
   132
TBool TWalkWindowTreeRegionBase::DoIt3(CWsWindow*)
sl@0
   133
	{return EFalse;}
sl@0
   134
sl@0
   135
TWalkWindowTreeSchedule::TWalkWindowTreeSchedule() :
sl@0
   136
	TWalkWindowTreeBase(),
sl@0
   137
	iHead(0)
sl@0
   138
	{
sl@0
   139
	}
sl@0
   140
sl@0
   141
CWsWindow * TWalkWindowTreeSchedule::HeadWindow() const
sl@0
   142
	{
sl@0
   143
	return iHead;
sl@0
   144
	}
sl@0
   145
sl@0
   146
TWalkWindowListSchedule::TWalkWindowListSchedule(CWsWindow* aHeadWin, TRegion& aScreenUpdateRegion)
sl@0
   147
	: TWalkWindowTreeSchedule(), iScreenUpdateRegion(aScreenUpdateRegion)
sl@0
   148
	{
sl@0
   149
	iHead = aHeadWin;
sl@0
   150
	}
sl@0
   151
sl@0
   152
void TWalkWindowListSchedule::WalkWindowList()
sl@0
   153
	{
sl@0
   154
	CWsWindow* win = iHead;
sl@0
   155
	CWsWindow* previous = NULL;
sl@0
   156
	while (win)
sl@0
   157
		{
sl@0
   158
		if (!DoIt(win))
sl@0
   159
			{
sl@0
   160
			// Remove win from list, as it doesn't need to be rendered
sl@0
   161
			if (win == iHead)
sl@0
   162
				{
sl@0
   163
				iHead = win->NextScheduled();
sl@0
   164
				}
sl@0
   165
			else
sl@0
   166
				{
sl@0
   167
				WS_ASSERT_DEBUG(previous,EWsPanicWindowNull);
sl@0
   168
				previous->SetNextScheduled(win->NextScheduled());
sl@0
   169
				}
sl@0
   170
			}
sl@0
   171
		else
sl@0
   172
			{
sl@0
   173
			previous = win;
sl@0
   174
			}
sl@0
   175
		win = win->NextScheduled();
sl@0
   176
		}
sl@0
   177
	}
sl@0
   178
sl@0
   179
/**
sl@0
   180
@return ETrue if aWin has content that needs to be rendered, otherwise EFalse. 
sl@0
   181
*/
sl@0
   182
TBool TWalkWindowListSchedule::DoIt(CWsWindow* aWin)
sl@0
   183
	{
sl@0
   184
	if (aWin->IsVisible())
sl@0
   185
		{
sl@0
   186
		//In case we don't have all content, queue a request for the client to provide it.
sl@0
   187
		CWsWindowRedraw& redrawWin = *(aWin->Redraw());
sl@0
   188
		if(!redrawWin.InvalidArea().IsEmpty())
sl@0
   189
			{
sl@0
   190
			redrawWin.QueueRedraw();
sl@0
   191
			}
sl@0
   192
			
sl@0
   193
		//Schedule all we got for now
sl@0
   194
		const TBool scheduledWindowContent = DoWindow(*aWin);
sl@0
   195
		const TBool scheduledSpriteContent = DoSprites(*aWin);
sl@0
   196
		return (scheduledWindowContent || scheduledSpriteContent);
sl@0
   197
		}
sl@0
   198
	return EFalse;
sl@0
   199
	}
sl@0
   200
sl@0
   201
TBool TWalkWindowListSchedule::DoWindow(CWsWindow& aWin)
sl@0
   202
	{
sl@0
   203
	if (!aWin.DirtyWindowRegion().IsEmpty())
sl@0
   204
		{
sl@0
   205
		//Schedule
sl@0
   206
		aWin.ScheduleDirtyWindowRegion();
sl@0
   207
		//And ensure this part of the screen is updated
sl@0
   208
		iScreenUpdateRegion.Union(aWin.ScheduledRegion());
sl@0
   209
		return ETrue;
sl@0
   210
		}
sl@0
   211
	return EFalse;
sl@0
   212
	} 
sl@0
   213
sl@0
   214
TBool TWalkWindowListSchedule::DoSprites(CWsWindow& aWin)
sl@0
   215
	{
sl@0
   216
	if (!aWin.DirtySpriteRegion().IsEmpty())
sl@0
   217
		{
sl@0
   218
		//Schedule
sl@0
   219
		aWin.ScheduleDirtySpriteRegion();
sl@0
   220
		//And ensure this part of the screen is updated
sl@0
   221
		iScreenUpdateRegion.Union(aWin.ScheduledSpriteRegion());
sl@0
   222
		return ETrue;
sl@0
   223
		}
sl@0
   224
	return EFalse;
sl@0
   225
	}
sl@0
   226
sl@0
   227
const TRegion& TWalkWindowListSchedule::WindowRegion(const CWsWindow& aWin) const
sl@0
   228
	{
sl@0
   229
	return aWin.ScheduledRegion();
sl@0
   230
	}
sl@0
   231
sl@0
   232
const TRegion& TWalkWindowListSchedule::SpriteRegion(const CWsWindow& aWin) const
sl@0
   233
	{
sl@0
   234
	return aWin.ScheduledSpriteRegion();
sl@0
   235
	}
sl@0
   236
sl@0
   237
TWalkWindowTreeScheduleRegions::TWalkWindowTreeScheduleRegions(TRegion& aRegion, const TRegion& aTopElement) :
sl@0
   238
	TWalkWindowTreeSchedule(),
sl@0
   239
	iRegion(aRegion),
sl@0
   240
	iTopElement(aTopElement),
sl@0
   241
	iScheduledRegionsOk(ETrue)
sl@0
   242
	{
sl@0
   243
	}
sl@0
   244
sl@0
   245
// This is similar to TWalkWindowTreeRegionBase::DoIt
sl@0
   246
TBool TWalkWindowTreeScheduleRegions::DoIt(CWsWindow *aWin)
sl@0
   247
	{
sl@0
   248
	WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
sl@0
   249
	if (aWin->IsVisible())
sl@0
   250
		{
sl@0
   251
		// Calculate the region we care about for this window:
sl@0
   252
		STACK_REGION region;
sl@0
   253
		if (aWin->WinType()==EWinTypeRoot)
sl@0
   254
			{
sl@0
   255
			region.Copy(iRegion);
sl@0
   256
			}
sl@0
   257
		else
sl@0
   258
			{
sl@0
   259
			static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(region);
sl@0
   260
			region.Intersect(iRegion);
sl@0
   261
			}
sl@0
   262
		// If there is a region we care about, remember the window:
sl@0
   263
		// NOTE: Even if there are no redraw segments (ReadyToDraw is false) the window should
sl@0
   264
		//       be scheduled if it has a element so that the background surface is made visible
sl@0
   265
		//  or if it has some animations which should be redrawn via the PostDrawWindow method (cf def131912)
sl@0
   266
		if (!region.IsEmpty() && (aWin->ReadyToDraw() || aWin->HasElement() || aWin->HasAnimation() || aWin->HasSprite()) )
sl@0
   267
			{
sl@0
   268
			// Add window to linked list:
sl@0
   269
			aWin->SetNextScheduled(iHead);
sl@0
   270
			iHead = aWin;
sl@0
   271
			// Set the window scheduled region to something appropriate:
sl@0
   272
			if (iScheduledRegionsOk)
sl@0
   273
				{
sl@0
   274
				if (region.CheckError())
sl@0
   275
					{
sl@0
   276
					iScheduledRegionsOk = EFalse;
sl@0
   277
					}
sl@0
   278
				else
sl@0
   279
					{
sl@0
   280
					iScheduledRegionsOk = aWin->SetScheduledRegion(region);
sl@0
   281
					}
sl@0
   282
				}
sl@0
   283
			}
sl@0
   284
		if (aWin->WinType()!=EWinTypeRoot)
sl@0
   285
			{
sl@0
   286
			// Remove the opaque part from our working region:
sl@0
   287
			STACK_REGION opaqueRegion;
sl@0
   288
			static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(opaqueRegion);
sl@0
   289
			iRegion.SubRegion(opaqueRegion);
sl@0
   290
			opaqueRegion.Close();
sl@0
   291
			
sl@0
   292
			// Where we were drawing transparent and doing top element only, remove
sl@0
   293
			// that bit too:
sl@0
   294
			if (!iTopElement.IsEmpty())
sl@0
   295
				{
sl@0
   296
				region.Intersect(iTopElement);
sl@0
   297
				iRegion.SubRegion(region);
sl@0
   298
				}
sl@0
   299
			}
sl@0
   300
		region.Close();
sl@0
   301
		}
sl@0
   302
sl@0
   303
	return(iRegion.IsEmpty() || !iScheduledRegionsOk);
sl@0
   304
	}
sl@0
   305
sl@0
   306
const TRegion& TWalkWindowTreeScheduleRegions::WindowRegion(const CWsWindow& aWin) const
sl@0
   307
	{
sl@0
   308
	WS_ASSERT_DEBUG(iScheduledRegionsOk, EWsPanicScheduledRedraw);
sl@0
   309
	return aWin.ScheduledRegion();
sl@0
   310
	}
sl@0
   311
sl@0
   312
const TRegion& TWalkWindowTreeScheduleRegions::SpriteRegion(const CWsWindow& aWin) const
sl@0
   313
	{
sl@0
   314
	//Intentionally returning WindowRegion as TWalkWindowTreeScheduleRegions do not
sl@0
   315
	//make use of ScheduledSpriteRegion
sl@0
   316
	return aWin.ScheduledRegion();
sl@0
   317
	}
sl@0
   318
sl@0
   319
TBool TWalkWindowTreeScheduleRegions::ScheduledRegionsOk() const
sl@0
   320
	{
sl@0
   321
	return iScheduledRegionsOk;
sl@0
   322
	}
sl@0
   323
sl@0
   324
TWalkWindowTreeScheduleFallback::TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap) :
sl@0
   325
	TWalkWindowTreeSchedule(),
sl@0
   326
	iFallbackMap(aFallbackMap)
sl@0
   327
	{
sl@0
   328
	}
sl@0
   329
sl@0
   330
// This is similar to TWalkWindowTreeRegionBase::DoIt
sl@0
   331
TBool TWalkWindowTreeScheduleFallback::DoIt(CWsWindow *aWin)
sl@0
   332
	{
sl@0
   333
	WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
sl@0
   334
	if (aWin->IsVisible())
sl@0
   335
		{
sl@0
   336
		if (aWin == aWin->RootWindow())
sl@0
   337
			{
sl@0
   338
			aWin->SetNextScheduled(iHead);
sl@0
   339
			return ETrue;
sl@0
   340
			}
sl@0
   341
		else
sl@0
   342
			{
sl@0
   343
			TBool addWindow = EFalse;
sl@0
   344
			CWsClientWindow* cliWin = static_cast<CWsClientWindow *>(aWin);
sl@0
   345
			if (cliWin->IsTranslucent())
sl@0
   346
				{
sl@0
   347
				addWindow = ETrue; // costs more to work out than it is worth
sl@0
   348
				const TRegion * opaque = cliWin->GetUserOpaqueRegion();
sl@0
   349
				if (opaque && !opaque->CheckError())
sl@0
   350
					iFallbackMap->FillRegion(*opaque);
sl@0
   351
				}
sl@0
   352
			else
sl@0
   353
				{
sl@0
   354
				addWindow = iFallbackMap->FillRegion(*cliWin->BaseArea());
sl@0
   355
				}
sl@0
   356
			if (addWindow)
sl@0
   357
				{
sl@0
   358
				aWin->SetNextScheduled(iHead);
sl@0
   359
				iHead = aWin;
sl@0
   360
				}
sl@0
   361
			}
sl@0
   362
		}
sl@0
   363
sl@0
   364
	return(iFallbackMap->Count() < 1);
sl@0
   365
	}
sl@0
   366
sl@0
   367
const TRegion& TWalkWindowTreeScheduleFallback::WindowRegion(const CWsWindow& aWin) const
sl@0
   368
	{
sl@0
   369
	if (&aWin == aWin.RootWindow())
sl@0
   370
		return *(iFallbackMap->Region());
sl@0
   371
	else
sl@0
   372
		{
sl@0
   373
		const CWsClientWindow& win = static_cast<const CWsClientWindow&>(aWin);
sl@0
   374
		const TRegion* region = win.VisibleRegionIfValid();
sl@0
   375
		if (!region)
sl@0
   376
			region = win.BaseArea();
sl@0
   377
		return *region;
sl@0
   378
		}
sl@0
   379
	}
sl@0
   380
sl@0
   381
const TRegion& TWalkWindowTreeScheduleFallback::SpriteRegion(const CWsWindow& aWin) const
sl@0
   382
	{
sl@0
   383
	return WindowRegion(aWin);
sl@0
   384
	}
sl@0
   385
sl@0
   386
TWalkWindowTreeIsObscured::TWalkWindowTreeIsObscured(TBool &aResult) :
sl@0
   387
	iResult(&aResult)
sl@0
   388
	{
sl@0
   389
	aResult=ETrue;
sl@0
   390
	}
sl@0
   391
sl@0
   392
TBool TWalkWindowTreeIsObscured::DoIt(CWsWindow *aWin)
sl@0
   393
	{
sl@0
   394
	if (!aWin->VisibleRegion().IsEmpty())
sl@0
   395
		{
sl@0
   396
		*iResult=EFalse;
sl@0
   397
		return(ETrue);
sl@0
   398
		}
sl@0
   399
	return(EFalse);
sl@0
   400
	}
sl@0
   401
sl@0
   402
TWalkWindowTreeSetupVisibleRegionTracking::TWalkWindowTreeSetupVisibleRegionTracking(TBool aRegister) : iRegister(aRegister)
sl@0
   403
	{
sl@0
   404
	}
sl@0
   405
sl@0
   406
TBool TWalkWindowTreeSetupVisibleRegionTracking::DoIt(CWsWindow *aWin)
sl@0
   407
	{
sl@0
   408
	ASSERT(aWin->WinType() == EWinTypeClient);
sl@0
   409
	if(aWin->WinType() == EWinTypeClient)
sl@0
   410
		{
sl@0
   411
		aWin->SetupVisibleRegionTracking(iRegister);
sl@0
   412
		}
sl@0
   413
	return(EFalse);
sl@0
   414
	}
sl@0
   415
sl@0
   416
TWalkWindowTreeSetNonFading::TWalkWindowTreeSetNonFading(TBool aNonFading) :
sl@0
   417
	iNonFading(aNonFading)
sl@0
   418
	{}
sl@0
   419
TBool TWalkWindowTreeSetNonFading::DoIt(CWsWindow *aWin)
sl@0
   420
	{
sl@0
   421
	aWin->SetNonFading(iNonFading); 
sl@0
   422
	return EFalse;
sl@0
   423
	}
sl@0
   424
sl@0
   425
TWalkWindowTreeSetFaded::TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap) :
sl@0
   426
	iBlackMap(aBlackMap), iWhiteMap(aWhiteMap), iFaded(aFaded), iGroup(aWin->WinGroup())
sl@0
   427
	{
sl@0
   428
	}
sl@0
   429
	
sl@0
   430
TBool TWalkWindowTreeSetFaded::DoIt(CWsWindow *aWin)
sl@0
   431
	{
sl@0
   432
	if (aWin->WinGroup()!=iGroup)
sl@0
   433
		return ETrue;
sl@0
   434
	
sl@0
   435
	const TBool KNotifyObserver = ETrue;
sl@0
   436
	TBool dummy; //not used in this case
sl@0
   437
	((CWsClientWindow*)aWin)->SetFaded(iFaded, iBlackMap, iWhiteMap, KNotifyObserver, dummy); 
sl@0
   438
	return EFalse;
sl@0
   439
	}
sl@0
   440
sl@0
   441
TWalkWindowTreeSetSystemFaded::TWalkWindowTreeSetSystemFaded(TBool aFaded, CWsWindowBase* aWin, TUint8 aBlackMap, TUint8 aWhiteMap, TBool& aStateChanged) :
sl@0
   442
	TWalkWindowTreeSetFaded(aFaded, aWin, aBlackMap, aWhiteMap), 
sl@0
   443
	iStateChanged(aStateChanged)
sl@0
   444
	{
sl@0
   445
	}
sl@0
   446
sl@0
   447
TBool TWalkWindowTreeSetSystemFaded::DoIt(CWsWindow *aWin)
sl@0
   448
	{
sl@0
   449
	if (aWin->WinGroup()!=iGroup)
sl@0
   450
		return ETrue;
sl@0
   451
	
sl@0
   452
	const TBool KNotifyObserver = EFalse; //don't send fade state change notification
sl@0
   453
	
sl@0
   454
	TBool stateChanged = EFalse; 
sl@0
   455
	((CWsClientWindow*)aWin)->SetFaded(iFaded, iBlackMap, iWhiteMap, KNotifyObserver, stateChanged);
sl@0
   456
	iStateChanged = iStateChanged || stateChanged;
sl@0
   457
	
sl@0
   458
	return EFalse;
sl@0
   459
	}
sl@0
   460
sl@0
   461
TWalkWindowTreePurgeEvents::TWalkWindowTreePurgeEvents()
sl@0
   462
	{}
sl@0
   463
sl@0
   464
TBool TWalkWindowTreePurgeEvents::DoIt(CWsWindow *aWin)
sl@0
   465
	{
sl@0
   466
	aWin->PurgeEvents();
sl@0
   467
	return EFalse;
sl@0
   468
	}
sl@0
   469
sl@0
   470
TWalkWindowTreeCalcInvalidGraphics::TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid):
sl@0
   471
	TWalkWindowTreeRegionBase(aRegion, EWalkTranslucent),
sl@0
   472
	iDirty(aDirty),
sl@0
   473
	iInvalid(aInvalid)
sl@0
   474
	{
sl@0
   475
	}
sl@0
   476
sl@0
   477
void TWalkWindowTreeCalcInvalidGraphics::DestroyRegions()
sl@0
   478
	{
sl@0
   479
	if(iSubRegion)
sl@0
   480
		{
sl@0
   481
		iSubRegion->Close();
sl@0
   482
		}
sl@0
   483
	delete iSubRegion;
sl@0
   484
	iSubRegion = NULL;	
sl@0
   485
	iDirty.Clear();
sl@0
   486
	}	
sl@0
   487
sl@0
   488
void TWalkWindowTreeCalcInvalidGraphics::CalcInvalid(CScreen& aScreen)
sl@0
   489
	{
sl@0
   490
	if(aScreen.RootWindow())
sl@0
   491
		{
sl@0
   492
		aScreen.RootWindow()->WalkWindowTree(*this,EWalkChildren);
sl@0
   493
		if(iRegion->CheckError())
sl@0
   494
			{
sl@0
   495
			iDirty.ForceError();
sl@0
   496
			}
sl@0
   497
		}
sl@0
   498
	}
sl@0
   499
sl@0
   500
TBool TWalkWindowTreeCalcInvalidGraphics::CreateSubRegion()
sl@0
   501
	{
sl@0
   502
	iSubRegion=new RWsRegion;
sl@0
   503
	return iSubRegion!=NULL;
sl@0
   504
	}
sl@0
   505
sl@0
   506
TBool TWalkWindowTreeCalcInvalidGraphics::DoIt3(CWsWindow *aWin) 
sl@0
   507
	{
sl@0
   508
	if (!iDirty.CheckError() && aWin->Redraw() && 
sl@0
   509
				aWin->Redraw()->Contains(iInvalid,aWin->VisibleRegion()) &&
sl@0
   510
				!aWin->Redraw()->RedrawingInProgress())
sl@0
   511
		{
sl@0
   512
		STACK_REGION intersection;
sl@0
   513
		intersection.Intersection(*iSubRegion,aWin->VisibleRegion());
sl@0
   514
		iDirty.Union(intersection);
sl@0
   515
		intersection.Close();
sl@0
   516
		}
sl@0
   517
sl@0
   518
	return iDirty.CheckError();	//causes pessimistic full-screen redraw if failed
sl@0
   519
	}
sl@0
   520
sl@0
   521
#if defined(_DEBUG)
sl@0
   522
sl@0
   523
TBool TWalkWindowTreeCheck::DoIt(CWsWindow *aWin)
sl@0
   524
	{
sl@0
   525
	if (aWin->WinType()==EWinTypeRoot)
sl@0
   526
		{
sl@0
   527
		WS_ASSERT_DEBUG(aWin->BaseParent()==NULL, EWsPanicWindowCheck);
sl@0
   528
		WS_ASSERT_DEBUG(aWin->NextSibling()==NULL, EWsPanicWindowCheck);
sl@0
   529
		}
sl@0
   530
	else
sl@0
   531
		{
sl@0
   532
		WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowCheck);
sl@0
   533
		}
sl@0
   534
	if (aWin->BaseChild())
sl@0
   535
		{
sl@0
   536
		WS_ASSERT_DEBUG(aWin->BaseChild()->BaseParent()==aWin, EWsPanicWindowCheck);
sl@0
   537
		}
sl@0
   538
	if (aWin->NextSibling())
sl@0
   539
		{
sl@0
   540
		WS_ASSERT_DEBUG(aWin->NextSibling()->GetPrevSibling()==aWin, EWsPanicWindowCheck);
sl@0
   541
		}
sl@0
   542
	return(EFalse);
sl@0
   543
	}
sl@0
   544
sl@0
   545
TBool TWalkWindowTreeFindWithFlag::DoIt(CWsWindow *aWin)
sl@0
   546
	{
sl@0
   547
	if (aWin->iFlags & iFlag)
sl@0
   548
		{
sl@0
   549
		iFound = aWin;
sl@0
   550
		return ETrue;
sl@0
   551
		}
sl@0
   552
	return EFalse;
sl@0
   553
	}
sl@0
   554
	
sl@0
   555
#endif
sl@0
   556
sl@0
   557
#include "wnredraw.h"	
sl@0
   558
TWalkWindowTreeRedrawStoreSize::TWalkWindowTreeRedrawStoreSize() : iTotalSize(0)
sl@0
   559
	{
sl@0
   560
	}
sl@0
   561
sl@0
   562
TBool TWalkWindowTreeRedrawStoreSize::DoIt(CWsWindow *aWin)
sl@0
   563
	{
sl@0
   564
	iTotalSize += aWin->Redraw()->SizeInBytes();
sl@0
   565
	return EFalse;
sl@0
   566
	}
sl@0
   567
sl@0
   568
sl@0
   569
TBool TWalkWindowTreeFindByHandle::DoIt(CWsWindow *aWin)
sl@0
   570
	{
sl@0
   571
	if (aWin->ClientHandle() == iHandle)
sl@0
   572
		{
sl@0
   573
		iFound = aWin;
sl@0
   574
		return ETrue;
sl@0
   575
		}
sl@0
   576
	return EFalse;
sl@0
   577
	}
sl@0
   578
sl@0
   579
TWalkWindowTreeUpdateRegions::TWalkWindowTreeUpdateRegions(CScreen & aScreen) :
sl@0
   580
	iScreen(aScreen)
sl@0
   581
	{
sl@0
   582
	}
sl@0
   583
sl@0
   584
void TWalkWindowTreeUpdateRegions::Walk()
sl@0
   585
	{
sl@0
   586
	STACK_REGION floatingSpriteRgn;
sl@0
   587
	iScreen.SpriteManager()->CalcFloatingSpriteRgn( floatingSpriteRgn, iScreen.RootWindow()->AbsRect() );
sl@0
   588
	iVisible.AddRect(iScreen.RootWindow()->AbsRect());
sl@0
   589
	iTop.AddRect(iScreen.RootWindow()->AbsRect());
sl@0
   590
	iRemainsOfFadableScreen.AddRect( iScreen.RootWindow()->AbsRect() );
sl@0
   591
	iTop.SubRegion(floatingSpriteRgn);
sl@0
   592
	iScreen.RootWindow()->WalkWindowTree(*this, EWalkChildren);
sl@0
   593
	iTop.Close();
sl@0
   594
	iVisible.Close();	
sl@0
   595
	iRemainsOfFadableScreen.Close();
sl@0
   596
	floatingSpriteRgn.Close();
sl@0
   597
	}
sl@0
   598
sl@0
   599
TBool TWalkWindowTreeUpdateRegions::DoIt(CWsWindow * aWin)
sl@0
   600
	{	
sl@0
   601
	if (aWin->IsVisible() && !iVisible.IsEmpty())
sl@0
   602
		{
sl@0
   603
		// Calculate the region we care about for this window:
sl@0
   604
		STACK_REGION newVisibleRegion;
sl@0
   605
		STACK_REGION newFadableRegion;
sl@0
   606
		if (aWin->WinType()==EWinTypeRoot)
sl@0
   607
			{
sl@0
   608
			newVisibleRegion.Copy(iVisible);
sl@0
   609
			}
sl@0
   610
		else
sl@0
   611
			{
sl@0
   612
			static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(newVisibleRegion);
sl@0
   613
			newVisibleRegion.Intersect(iVisible);
sl@0
   614
			if (!aWin->IsTranslucent())
sl@0
   615
				{
sl@0
   616
				iVisible.SubRegion(newVisibleRegion);
sl@0
   617
				}
sl@0
   618
			else
sl@0
   619
				{
sl@0
   620
				STACK_REGION opaque;
sl@0
   621
				static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(opaque);
sl@0
   622
				iVisible.SubRegion(opaque);				
sl@0
   623
				opaque.Close();
sl@0
   624
				}
sl@0
   625
			//If the window has been faded calculate what region actually needs fading 
sl@0
   626
			//(i.e. subtract what has already been faded)
sl@0
   627
			if ( aWin->FadeCount() && !aWin->IsNonFading() && aWin->IsVisible()  && !iRemainsOfFadableScreen.IsEmpty() )
sl@0
   628
				{
sl@0
   629
				newFadableRegion.Copy( newVisibleRegion );
sl@0
   630
				newFadableRegion.Intersect( iRemainsOfFadableScreen );
sl@0
   631
				}
sl@0
   632
			}
sl@0
   633
		aWin->SetVisibleRegion(newVisibleRegion, &iTop);
sl@0
   634
		aWin->SetFadeableRegion(newFadableRegion, iTop);
sl@0
   635
		
sl@0
   636
		iRemainsOfFadableScreen.SubRegion( newFadableRegion );
sl@0
   637
		newFadableRegion.Close();
sl@0
   638
		
sl@0
   639
		iTop.SubRegion(newVisibleRegion);
sl@0
   640
		newVisibleRegion.Close();
sl@0
   641
		}
sl@0
   642
	else
sl@0
   643
		{
sl@0
   644
		if (!aWin->VisibleRegion().IsEmpty())
sl@0
   645
			{
sl@0
   646
			aWin->ClearVisibleRegion();
sl@0
   647
			}
sl@0
   648
		}	
sl@0
   649
	return(EFalse);
sl@0
   650
	}
sl@0
   651
sl@0
   652
TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws():
sl@0
   653
	iScheduleRedrawFilter( ERedrawFilterNoFilter )
sl@0
   654
	{
sl@0
   655
	}
sl@0
   656
sl@0
   657
TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws( TUint32 aFilter ):
sl@0
   658
	iScheduleRedrawFilter( aFilter )
sl@0
   659
	{
sl@0
   660
	}
sl@0
   661
sl@0
   662
TBool TWalkWindowTreeScheduleRedraws::DoIt(CWsWindow * aWin)
sl@0
   663
	{
sl@0
   664
	if (aWin->WinType() != EWinTypeClient || static_cast<CWsClientWindow *>(aWin)->HasBeenDrawnToScreen())
sl@0
   665
		{
sl@0
   666
		TBool ban = (iScheduleRedrawFilter & ERedrawFilterOmitDSA) && ( aWin->IsDSAHost() );
sl@0
   667
		if ( !ban )
sl@0
   668
			{
sl@0
   669
			aWin->Screen()->AddRedrawRegion(aWin->VisibleRegion());
sl@0
   670
			}
sl@0
   671
		}
sl@0
   672
	return EFalse;
sl@0
   673
	}
sl@0
   674
sl@0
   675
TWalkWindowTreeOffsetTransparentRegions::TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset) :
sl@0
   676
	iOffset(aOffset)
sl@0
   677
	{
sl@0
   678
	}
sl@0
   679
sl@0
   680
TBool TWalkWindowTreeOffsetTransparentRegions::DoIt(CWsWindow * aWin)
sl@0
   681
	{
sl@0
   682
	if (aWin != aWin->RootWindow())
sl@0
   683
		static_cast<CWsClientWindow *>(aWin)->OffsetUserTransparentRegion(iOffset);
sl@0
   684
	return EFalse;
sl@0
   685
	}
sl@0
   686
sl@0
   687
TWalkWindowTreeRecalcOpaque::TWalkWindowTreeRecalcOpaque()
sl@0
   688
	{
sl@0
   689
	}
sl@0
   690
sl@0
   691
TBool TWalkWindowTreeRecalcOpaque::DoIt(CWsWindow * aWin)
sl@0
   692
	{
sl@0
   693
	if (aWin != aWin->RootWindow())
sl@0
   694
		static_cast<CWsClientWindow *>(aWin)->SetUserOpaqueRegion();
sl@0
   695
	return EFalse;
sl@0
   696
	}
sl@0
   697
sl@0
   698
TWalkWindowTreeSendState::TWalkWindowTreeSendState(MWsWindowTreeObserver& aWindowTreeObserver)
sl@0
   699
	: iWindowTreeObserver(aWindowTreeObserver)
sl@0
   700
	{
sl@0
   701
	}
sl@0
   702
sl@0
   703
TBool TWalkWindowTreeSendState::DoIt(CWsWindow * aWin)
sl@0
   704
	{
sl@0
   705
	aWin->SendState(iWindowTreeObserver);
sl@0
   706
	return EFalse;
sl@0
   707
	}