os/graphics/windowing/windowserver/nonnga/SERVER/WINDOW.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) 1994-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
// Window functions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "server.h"
sl@0
    19
#include "rootwin.h"
sl@0
    20
#include "window.h"
sl@0
    21
#include "walkwindowtree.h"
sl@0
    22
#include "wstop.h"
sl@0
    23
#include "ScrDev.H"
sl@0
    24
#include "EVENT.H"
sl@0
    25
#include "ANIM.H"
sl@0
    26
#include "Direct.H"
sl@0
    27
#include "panics.h"
sl@0
    28
#include "backedupwindow.h"
sl@0
    29
#include "wstypes.h"
sl@0
    30
#include "offscreenbitmap.h"
sl@0
    31
sl@0
    32
CWsWindow* CWsWindow::iAccessListRecentEnd = 0;
sl@0
    33
CWsWindow* CWsWindow::iAccessListOldestEnd = 0;
sl@0
    34
sl@0
    35
CWsWindow::CWsWindow(CWsClient* aOwner,WH_HANDLES aType, CScreen* aScreen) : CWsWindowBase(aOwner,aType,aScreen),
sl@0
    36
	iFlags(EFlagHidden),
sl@0
    37
	 iDSAs(_FOFF(CWsDirectScreenAccess,iMultipleDSALink))
sl@0
    38
	{
sl@0
    39
	}
sl@0
    40
sl@0
    41
CWsWindow::~CWsWindow()
sl@0
    42
	{
sl@0
    43
	iFadableRegion.Close();
sl@0
    44
	}
sl@0
    45
sl@0
    46
void CWsWindow::Construct()
sl@0
    47
	{
sl@0
    48
	InsertIntoAccessListOldestEnd();
sl@0
    49
	}
sl@0
    50
sl@0
    51
void CWsWindow::Shutdown()
sl@0
    52
	{
sl@0
    53
	TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EWindowClosing, 0, 0, this));
sl@0
    54
	RemoveFromAccessList();	
sl@0
    55
	CWsAnim::WindowClosing(iAnimList);	// Destroy any animated objects attached to this window
sl@0
    56
	iVisibleRegion.Close();
sl@0
    57
	iScheduledRegion.Close();
sl@0
    58
	AbortAllDSAs();
sl@0
    59
	CWsWindowBase::Shutdown();
sl@0
    60
	SetPointerCursor(NULL);
sl@0
    61
	delete iRedraw;
sl@0
    62
	}
sl@0
    63
sl@0
    64
//
sl@0
    65
// Region and invalid area functions //
sl@0
    66
//
sl@0
    67
sl@0
    68
TRect CWsWindow::FullRect() const
sl@0
    69
	{
sl@0
    70
	return(TRect(iOrigin,iRel.Size()));
sl@0
    71
	}
sl@0
    72
sl@0
    73
//
sl@0
    74
// Normal regions //
sl@0
    75
//
sl@0
    76
sl@0
    77
void CWsWindow::SetNonFading(TBool aNonFade)
sl@0
    78
	{
sl@0
    79
	if (aNonFade)
sl@0
    80
		iFlags|=EFlagNonFadingWindow;
sl@0
    81
	else
sl@0
    82
		iFlags&=(~EFlagNonFadingWindow);
sl@0
    83
	}
sl@0
    84
sl@0
    85
TPoint CWsWindow::InquireOffset(TUint32 aHandle) const
sl@0
    86
	{
sl@0
    87
	CWsWindowBase *win2;
sl@0
    88
	iWsOwner->HandleToWindow(aHandle,&win2);
sl@0
    89
	return(iOrigin-win2->Origin());
sl@0
    90
	}
sl@0
    91
sl@0
    92
TDisplayMode CWsWindow::DisplayMode() const
sl@0
    93
	{
sl@0
    94
	return iScreen->DisplayMode();
sl@0
    95
	}
sl@0
    96
sl@0
    97
void CWsWindow::StatusDump(TDes &aBuf)
sl@0
    98
	{
sl@0
    99
	_LIT(KStatusString1,"CWsWindow[0x%x]RWindow[0x%x,%d],Pos(%d,%d),Size(%d,%d)");
sl@0
   100
	_LIT(KStatusString3,",Mode=%d");
sl@0
   101
	_LIT(KStatusInvisible,",Inv");
sl@0
   102
	aBuf.AppendFormat(KStatusString1,this,iClientHandle,LogHandle(),iRel.iTl.iX,iRel.iTl.iY,Size().iWidth,Size().iHeight);
sl@0
   103
	aBuf.AppendFormat(KStatusString3,(TInt)iScreen->DisplayMode());
sl@0
   104
	if (!IsVisible())
sl@0
   105
		aBuf.Append(KStatusInvisible);
sl@0
   106
	}
sl@0
   107
sl@0
   108
TDblQue<TPointerKeyList> *CWsWindow::PointerKeyList() const
sl@0
   109
	{
sl@0
   110
	return(NULL);
sl@0
   111
	}
sl@0
   112
sl@0
   113
void CWsWindow::AbortAllDSAs()
sl@0
   114
	{
sl@0
   115
	iScreen->AbortDSAs(RDirectScreenAccess::ETerminateRegion,iDSAs);
sl@0
   116
	}
sl@0
   117
sl@0
   118
void CWsWindow::PossibleVisibilityChangedEvent(TBool aForceSend)
sl@0
   119
	{
sl@0
   120
	// notify plugin
sl@0
   121
	//
sl@0
   122
	TWservCrEvent crEvent(TWservCrEvent::EWindowVisibilityChanged, HasBeenDrawnToScreen(), IsVisible()? &iVisibleRegion : NULL, this);
sl@0
   123
	TWindowServerEvent::NotifyDrawer(crEvent);
sl@0
   124
	
sl@0
   125
	if (!(iFlags & EFlagGeneratesVisibilityEvents))
sl@0
   126
		return;
sl@0
   127
sl@0
   128
	if (!IsVisible())
sl@0
   129
		{
sl@0
   130
		goto notvisible;
sl@0
   131
		}
sl@0
   132
sl@0
   133
	if (iVisibleRegion.Count() == 0)
sl@0
   134
		{
sl@0
   135
		goto notvisible;
sl@0
   136
		}
sl@0
   137
sl@0
   138
		{// braces here to avoid gccxml error
sl@0
   139
		TInt visibleArea = 0;
sl@0
   140
		TInt count = iVisibleRegion.Count();
sl@0
   141
		TInt ii;
sl@0
   142
		for (ii = 0; ii < count; ii++)
sl@0
   143
			{
sl@0
   144
			visibleArea+= iVisibleRegion[ii].Width() * iVisibleRegion[ii].Height();
sl@0
   145
			}
sl@0
   146
sl@0
   147
		const TRegion* baseRegion = (static_cast<CWsClientWindow*>(this))->BaseArea();
sl@0
   148
		TInt baseArea = 0;
sl@0
   149
		count = baseRegion->Count();
sl@0
   150
		for (ii = 0; ii < count; ii++)
sl@0
   151
			{
sl@0
   152
			const TRect& rect = (*baseRegion)[ii];
sl@0
   153
			baseArea+= rect.Width() * rect.Height();
sl@0
   154
			}
sl@0
   155
sl@0
   156
		if (visibleArea == baseArea)
sl@0
   157
			{
sl@0
   158
			goto fullyvisible;
sl@0
   159
			}
sl@0
   160
		else
sl@0
   161
			{
sl@0
   162
			goto partiallyvisible;
sl@0
   163
			}
sl@0
   164
		}
sl@0
   165
sl@0
   166
fullyvisible:
sl@0
   167
	if (aForceSend || !(iFlags & EFlagNotCantBeSeen) || !(iFlags & EFlagCanBeSeen))
sl@0
   168
		{
sl@0
   169
		iFlags |= (EFlagCanBeSeen | EFlagNotCantBeSeen);
sl@0
   170
		TWindowServerEvent::SendVisibilityChangedEvents(this, TWsVisibilityChangedEvent::EPartiallyVisible | TWsVisibilityChangedEvent::EFullyVisible);
sl@0
   171
		// we have to set EPartiallyVisible too for compatibility reasons
sl@0
   172
		}
sl@0
   173
	return;
sl@0
   174
sl@0
   175
partiallyvisible:
sl@0
   176
	if (aForceSend || !(iFlags & EFlagCanBeSeen) || (iFlags & EFlagNotCantBeSeen))
sl@0
   177
		{
sl@0
   178
		iFlags |= EFlagCanBeSeen;
sl@0
   179
		iFlags &= ~EFlagNotCantBeSeen;
sl@0
   180
		TWindowServerEvent::SendVisibilityChangedEvents(this, TWsVisibilityChangedEvent::EPartiallyVisible);
sl@0
   181
		}
sl@0
   182
	return;
sl@0
   183
sl@0
   184
notvisible:
sl@0
   185
	if (aForceSend || (iFlags & EFlagCanBeSeen) || (iFlags & EFlagNotCantBeSeen))
sl@0
   186
		{
sl@0
   187
		iFlags &= ~(EFlagCanBeSeen | EFlagNotCantBeSeen);
sl@0
   188
		TWindowServerEvent::SendVisibilityChangedEvents(this, TWsVisibilityChangedEvent::ENotVisible);
sl@0
   189
		}
sl@0
   190
	return;
sl@0
   191
	}
sl@0
   192
sl@0
   193
TPoint CWsWindow::Origin() const
sl@0
   194
	{
sl@0
   195
	return iOrigin;
sl@0
   196
	}
sl@0
   197
sl@0
   198
TRect CWsWindow::AbsRect() const
sl@0
   199
	{
sl@0
   200
	return iAbs;
sl@0
   201
	}
sl@0
   202
	
sl@0
   203
TSize CWsWindow::Size() const
sl@0
   204
	{
sl@0
   205
	return iRel.Size();
sl@0
   206
	}
sl@0
   207
sl@0
   208
TBool CWsWindow::SetScheduledRegion(const RWsRegion& aRegion)
sl@0
   209
	{
sl@0
   210
	iScheduledRegion.Copy(aRegion);
sl@0
   211
	return !iScheduledRegion.CheckError();
sl@0
   212
	}
sl@0
   213
sl@0
   214
void CWsWindow::ClearScheduledRegion()
sl@0
   215
	{
sl@0
   216
	iScheduledRegion.Clear();
sl@0
   217
	}
sl@0
   218
sl@0
   219
void CWsWindow::SetFadeBehind(TBool aFade)
sl@0
   220
	{
sl@0
   221
	if (aFade != ((iFlags & EFlagFadeBehind) != 0))
sl@0
   222
		{
sl@0
   223
		iFlags ^= EFlagFadeBehind;
sl@0
   224
		}
sl@0
   225
	}
sl@0
   226
sl@0
   227
void CWsWindow::FocusChanged(TBool aNewFocusState)
sl@0
   228
	{
sl@0
   229
	TRAPD(err,FocusChangedL(aNewFocusState));
sl@0
   230
	if (err!=KErrNone)
sl@0
   231
		OwnerPanic(EWservPanicAnimLeave);
sl@0
   232
	}
sl@0
   233
sl@0
   234
void CWsWindow::FocusChangedL(TBool aNewFocusState)
sl@0
   235
	{
sl@0
   236
	for (CWsAnim * anim = iAnimList; anim; anim = anim->Next())
sl@0
   237
		{
sl@0
   238
		anim->FocusChanged(aNewFocusState);
sl@0
   239
		}
sl@0
   240
	}
sl@0
   241
sl@0
   242
// Moves a window to the recent end of the accessed list
sl@0
   243
void CWsWindow::Accessed()
sl@0
   244
	{
sl@0
   245
	WS_ASSERT_DEBUG(iAccessListRecentEnd && iAccessListOldestEnd, EWsPanicAccessList);
sl@0
   246
sl@0
   247
	RemoveFromAccessList();	
sl@0
   248
	InsertIntoAccessListRecentEnd();
sl@0
   249
	}
sl@0
   250
sl@0
   251
void CWsWindow::InsertIntoAccessListOldestEnd()
sl@0
   252
	{
sl@0
   253
	iAccessListPrev = 0;
sl@0
   254
	iAccessListNext = iAccessListOldestEnd;
sl@0
   255
	if (iAccessListNext)
sl@0
   256
		iAccessListNext->iAccessListPrev = this;
sl@0
   257
	iAccessListOldestEnd = this;
sl@0
   258
	if (!iAccessListRecentEnd)
sl@0
   259
		iAccessListRecentEnd = this;
sl@0
   260
	}
sl@0
   261
sl@0
   262
void CWsWindow::InsertIntoAccessListRecentEnd()
sl@0
   263
	{
sl@0
   264
	iAccessListNext = 0;
sl@0
   265
	iAccessListPrev = iAccessListRecentEnd;
sl@0
   266
	if (iAccessListPrev)
sl@0
   267
		iAccessListPrev->iAccessListNext = this;
sl@0
   268
	iAccessListRecentEnd = this;
sl@0
   269
	if (!iAccessListOldestEnd)
sl@0
   270
		iAccessListOldestEnd = this;
sl@0
   271
	}
sl@0
   272
sl@0
   273
void CWsWindow::RemoveFromAccessList()
sl@0
   274
	{
sl@0
   275
	if (iAccessListOldestEnd == this)
sl@0
   276
		iAccessListOldestEnd = iAccessListNext;
sl@0
   277
	if (iAccessListRecentEnd == this)
sl@0
   278
		iAccessListRecentEnd = iAccessListPrev;
sl@0
   279
	if (iAccessListPrev)
sl@0
   280
		iAccessListPrev->iAccessListNext = iAccessListNext;
sl@0
   281
	if (iAccessListNext)
sl@0
   282
		iAccessListNext->iAccessListPrev = iAccessListPrev;
sl@0
   283
	}
sl@0
   284
	
sl@0
   285
TBool CWsWindow::ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel)
sl@0
   286
	{
sl@0
   287
	for (CWsWindow * access = iAccessListOldestEnd; access; access = access->iAccessListNext)
sl@0
   288
		{
sl@0
   289
		if(access->Redraw())
sl@0
   290
			{
sl@0
   291
			if (access->Redraw()->ReleaseMemory(aLevel))
sl@0
   292
				return ETrue;
sl@0
   293
			}
sl@0
   294
		}
sl@0
   295
	return EFalse;
sl@0
   296
	}
sl@0
   297
sl@0
   298
const TRegion& CWsWindow::VisibleRegion() const
sl@0
   299
	{
sl@0
   300
	return(iVisibleRegion);
sl@0
   301
	}
sl@0
   302
sl@0
   303
TBool CWsWindow::IsDSAHost() const
sl@0
   304
	{
sl@0
   305
	TBool res = EFalse; 
sl@0
   306
	if ( !iDSAs.IsEmpty() )
sl@0
   307
		{
sl@0
   308
		TSglQueIter<CWsDirectScreenAccess> iter( (TSglQueBase&)iDSAs );
sl@0
   309
		iter.SetToFirst();
sl@0
   310
		CWsDirectScreenAccess* dsa;
sl@0
   311
		while ( (dsa = iter++) != NULL && !res )
sl@0
   312
			{
sl@0
   313
			res = dsa->IsVisible() || dsa->IsSyncTimeoutPending();
sl@0
   314
			}
sl@0
   315
		}
sl@0
   316
	return res;
sl@0
   317
	}
sl@0
   318
sl@0
   319
void CWsWindow::ResetVisibleRegion()
sl@0
   320
	{
sl@0
   321
	if (!iVisibleRegion.IsEmpty())
sl@0
   322
		{
sl@0
   323
		iVisibleRegion.Clear();
sl@0
   324
		}
sl@0
   325
	iFadableRegion.Clear();
sl@0
   326
	}
sl@0
   327
sl@0
   328
void CWsWindow::SetVisibleRegion(const TRegion& aNewRegion, const TRegion* aTop, TRegion& aNewFadableRegion)
sl@0
   329
	{
sl@0
   330
	STACK_REGION difference;
sl@0
   331
	TBool diffs = EFalse;
sl@0
   332
sl@0
   333
	difference.Copy(iVisibleRegion);
sl@0
   334
	difference.SubRegion(aNewRegion);
sl@0
   335
	if (!difference.IsEmpty())
sl@0
   336
		{
sl@0
   337
		diffs = ETrue;
sl@0
   338
		if (IsTranslucent())
sl@0
   339
			{
sl@0
   340
			// Andy - If this is a client window (what else could it be) we can also subtract the
sl@0
   341
			// user defined opaque region before doing this:
sl@0
   342
			iScreen->AddRedrawRegion(difference, EFalse);
sl@0
   343
			}
sl@0
   344
		}
sl@0
   345
sl@0
   346
	difference.Copy(aNewRegion);
sl@0
   347
	if (HasBeenDrawnToScreen())
sl@0
   348
		{
sl@0
   349
		difference.SubRegion(iVisibleRegion);
sl@0
   350
		}
sl@0
   351
	if (!difference.IsEmpty())
sl@0
   352
		{
sl@0
   353
		diffs = ETrue;
sl@0
   354
		STACK_REGION topDiff;
sl@0
   355
		topDiff.Copy(difference);
sl@0
   356
		WS_ASSERT_DEBUG(aTop,EWsPanicRegion);
sl@0
   357
		topDiff.Intersect(*aTop);
sl@0
   358
		difference.SubRegion(topDiff);
sl@0
   359
		iScreen->AddRedrawRegion(topDiff, EFalse, ERedrawTopOnly);
sl@0
   360
		iScreen->AddRedrawRegion(difference, EFalse, ERedrawAll);
sl@0
   361
		topDiff.Close();
sl@0
   362
		}
sl@0
   363
sl@0
   364
	difference.Close();
sl@0
   365
sl@0
   366
	AbortDsaIfRequired(aNewRegion, aTop);
sl@0
   367
sl@0
   368
	if (diffs)
sl@0
   369
		{
sl@0
   370
		ResetVisibleRegion();
sl@0
   371
		iVisibleRegion.Copy(aNewRegion);
sl@0
   372
		PossibleVisibilityChangedEvent(EFalse);
sl@0
   373
		}
sl@0
   374
sl@0
   375
	iFadableRegion.Copy( aNewFadableRegion );
sl@0
   376
	
sl@0
   377
	// Just because the visible region (screen coordinates) didn't change doesn't
sl@0
   378
	// mean the invalid region (window coordinates) didn't change, so we always call this.
sl@0
   379
	iRedraw->VisibleRegionChange();
sl@0
   380
	}
sl@0
   381
	
sl@0
   382
void CWsWindow::ClearVisibleRegion()
sl@0
   383
	{
sl@0
   384
	AbortAllDSAs();         
sl@0
   385
	iScreen->AddRedrawRegion(VisibleRegion(), EFalse);
sl@0
   386
	ResetVisibleRegion();
sl@0
   387
	PossibleVisibilityChangedEvent(EFalse);
sl@0
   388
	iFlags &= ~EFlagDrawnToScreen;
sl@0
   389
	}
sl@0
   390
sl@0
   391
void CWsWindow::AbortDsaIfRequired(const TRegion& aNewRegion, const TRegion* aTop)
sl@0
   392
	{
sl@0
   393
	if (!iDSAs.IsEmpty())
sl@0
   394
		{
sl@0
   395
		// If the top visible region of this window has changed, DSA clients may need
sl@0
   396
		// to be sent a DSA abort, as they may be drawing to a different region
sl@0
   397
		STACK_REGION newTopVisible;
sl@0
   398
		newTopVisible.Copy(aNewRegion); // new visible region
sl@0
   399
		if (aTop!=NULL)
sl@0
   400
			{
sl@0
   401
			newTopVisible.Intersect(*aTop); // area of new visible region not obscured by any other opaque or translucent windows
sl@0
   402
			}
sl@0
   403
		// Build a list of DSA clients that need to be sent a DSA abort
sl@0
   404
		TSglQue<CWsDirectScreenAccess> dsaList(_FOFF(CWsDirectScreenAccess,iAbortLink));
sl@0
   405
		TSglQueIter<CWsDirectScreenAccess> iter(iDSAs);
sl@0
   406
		CWsDirectScreenAccess* dsa;
sl@0
   407
		while ((dsa=iter++)!=NULL)
sl@0
   408
			{
sl@0
   409
			if (dsa->IsAbortRequired(newTopVisible))
sl@0
   410
				{
sl@0
   411
				dsaList.AddLast(*dsa);
sl@0
   412
				}
sl@0
   413
			}
sl@0
   414
		if (!dsaList.IsEmpty())
sl@0
   415
			{
sl@0
   416
			iScreen->AbortDSAs(RDirectScreenAccess::ETerminateRegion, dsaList);
sl@0
   417
			}
sl@0
   418
		newTopVisible.Close();
sl@0
   419
		}
sl@0
   420
	}
sl@0
   421
sl@0
   422
const TRegion* CWsWindow::VisibleRegionIfValid() const
sl@0
   423
	{
sl@0
   424
	return iVisibleRegion.CheckError() ? NULL : &iVisibleRegion;
sl@0
   425
	}
sl@0
   426
	
sl@0
   427
TBool CWsWindow::ReadyToDraw() const
sl@0
   428
	{
sl@0
   429
	return iRedraw->ReadyToDraw();
sl@0
   430
	}
sl@0
   431
sl@0
   432
/**
sl@0
   433
This function draws the region specified
sl@0
   434
Andy - I would be happier if no region was specified here - the GC should incorporate that information
sl@0
   435
*/
sl@0
   436
void CWsWindow::Render(CFbsBitGc * aGc, const TRegion& aRegion)
sl@0
   437
	{
sl@0
   438
	WS_ASSERT_DEBUG(IsVisible() || (WinType() == EWinTypeRoot), EWsPanicScheduledRedraw);
sl@0
   439
	
sl@0
   440
	Accessed();
sl@0
   441
	iFlags |= EFlagDrawnToScreen;
sl@0
   442
	
sl@0
   443
	iRedraw->PreDrawWindow(aGc, aRegion);
sl@0
   444
	iRedraw->DrawWindow();
sl@0
   445
	iRedraw->PostDrawWindow(aGc);
sl@0
   446
	}
sl@0
   447
sl@0
   448
void CWsWindow::SetNextScheduled(CWsWindow * aWin)
sl@0
   449
	{
sl@0
   450
	iNextScheduled = aWin;
sl@0
   451
	}
sl@0
   452
	
sl@0
   453
CWsWindow * CWsWindow::NextScheduled()  const
sl@0
   454
	{
sl@0
   455
	return iNextScheduled;
sl@0
   456
	}
sl@0
   457
sl@0
   458
void CWsWindow::AddSprite(CWsSpriteBase * aSprite)
sl@0
   459
	{
sl@0
   460
	aSprite->SetNext(iSpriteList);
sl@0
   461
	iSpriteList = aSprite;
sl@0
   462
	}
sl@0
   463
	
sl@0
   464
void CWsWindow::RemoveSprite(CWsSpriteBase * aSprite)
sl@0
   465
	{
sl@0
   466
	if (aSprite == iSpriteList)
sl@0
   467
		{
sl@0
   468
		iSpriteList = aSprite->Next();
sl@0
   469
		}
sl@0
   470
	else
sl@0
   471
		{
sl@0
   472
		for (CWsSpriteBase * sprite = iSpriteList; sprite; sprite = sprite->Next())
sl@0
   473
			{
sl@0
   474
			if (sprite->Next() == aSprite)
sl@0
   475
				{
sl@0
   476
				sprite->SetNext(aSprite->Next());
sl@0
   477
				}
sl@0
   478
			}
sl@0
   479
		}
sl@0
   480
	aSprite->SetNext(0);
sl@0
   481
	}
sl@0
   482
sl@0
   483
void CWsWindow::DeactivateAllSprites()
sl@0
   484
	{
sl@0
   485
	CWsSpriteBase * current = iSpriteList;
sl@0
   486
	while (current)
sl@0
   487
		{
sl@0
   488
		CWsSpriteBase * next = current->Next();
sl@0
   489
		current->Deactivate();
sl@0
   490
		current = next;
sl@0
   491
		}
sl@0
   492
	}
sl@0
   493
sl@0
   494
void CWsWindow::ClipRectToViewport(TRect& aRect) const
sl@0
   495
	{
sl@0
   496
	const CWsWindowBase * win = this;
sl@0
   497
	while (win)
sl@0
   498
		{
sl@0
   499
		if (win->WinType() != EWinTypeGroup)
sl@0
   500
			{
sl@0
   501
			aRect.Intersection(win->AbsRect());
sl@0
   502
			}
sl@0
   503
		win = win->BaseParent();
sl@0
   504
		}
sl@0
   505
	}
sl@0
   506
sl@0
   507
const TRegion& CWsWindow::FadableRegion() const
sl@0
   508
	{
sl@0
   509
	return iFadableRegion;
sl@0
   510
	}
sl@0
   511
sl@0
   512
/**
sl@0
   513
MWsWindow
sl@0
   514
*/
sl@0
   515
MWsWindow * CWsWindow::FindChildByHandle(TUint32 aHandle)
sl@0
   516
	{
sl@0
   517
	TWalkWindowTreeFindByHandle wwt(aHandle);
sl@0
   518
	WalkWindowTree(wwt, EWalkChildren);
sl@0
   519
	return wwt.Found();
sl@0
   520
	}
sl@0
   521
sl@0
   522
TUint32 CWsWindow::Handle() const
sl@0
   523
	{
sl@0
   524
	return ClientHandle();
sl@0
   525
	}
sl@0
   526
sl@0
   527
MWsScreen * CWsWindow::WsScreen() const
sl@0
   528
	{
sl@0
   529
	return iScreen;
sl@0
   530
	}
sl@0
   531
sl@0
   532
TInt CWsWindow::OrdinalPriority() const
sl@0
   533
	{
sl@0
   534
	return iOrdinalPriority;
sl@0
   535
	}