1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/walkwindowtree.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,561 @@
1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "walkwindowtree.h"
1.20 +#include "cliwin.h"
1.21 +#include "rootwin.h"
1.22 +#include "offscreenbitmap.h"
1.23 +#include "ANIM.H"
1.24 +#include "tcursor.h"
1.25 +#include "pointer.h"
1.26 +
1.27 +TWalkWindowTreeFocusChanged::TWalkWindowTreeFocusChanged(TBool aNewFocusState) :
1.28 + iNewFocusState(aNewFocusState)
1.29 + {
1.30 + }
1.31 +
1.32 +TBool TWalkWindowTreeFocusChanged::DoIt(CWsWindow *aWin)
1.33 +//
1.34 +// Walk all windows that have had their focus state changed
1.35 +//
1.36 + {
1.37 + aWin->FocusChanged(iNewFocusState);
1.38 + return(EFalse);
1.39 + }
1.40 +
1.41 +TResumableWalkWindowTreeFindInvalid::TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult) :
1.42 + iResult(aResult)
1.43 + {
1.44 + }
1.45 +
1.46 +TBool TResumableWalkWindowTreeFindInvalid::DoIt(CWsWindow* aWin)
1.47 +//
1.48 +// Find a window with an invalid area
1.49 +//
1.50 + {
1.51 + WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowType);
1.52 + CWsWindowRedraw *redraw=((CWsClientWindow *)aWin)->Redraw();
1.53 + if (redraw->NeedsRedraw()>0)
1.54 + {
1.55 + *iResult=redraw;
1.56 + return(ETrue);
1.57 + }
1.58 + return(EFalse);
1.59 + }
1.60 +
1.61 +TWalkWindowTreeDisconnect::TWalkWindowTreeDisconnect(RWsTextCursor *aCursor) :
1.62 + iTextCursor(aCursor)
1.63 + {}
1.64 +
1.65 +TBool TWalkWindowTreeDisconnect::DoIt(CWsWindow *aWin)
1.66 +//
1.67 +// Disconnect a window
1.68 +//
1.69 + {
1.70 + if (aWin->WinType()==EWinTypeClient)
1.71 + {
1.72 + CWsClientWindow *win=(CWsClientWindow *)aWin;
1.73 + win->iRedraw->WindowClosing();
1.74 + win->DeactivateAllSprites();
1.75 +
1.76 + if (iTextCursor)
1.77 + iTextCursor->WindowDisconnected(win);
1.78 + CWsAnim::WindowClosing(win->iAnimList); // Destroy any animated objects attached to this window
1.79 + WsPointer::WindowDisconected(aWin);
1.80 +
1.81 + win->iParent=NULL;
1.82 + win->iSibling=NULL;
1.83 + win->iChild=NULL;
1.84 + win->iFlags&=~EFlagActive;
1.85 + win->ResetHiddenFlag();
1.86 + }
1.87 + return(EFalse);
1.88 + }
1.89 +
1.90 +TWalkWindowTreeRegionBase::TWalkWindowTreeRegionBase(RWsRegion *aRegion, TTranslucentBehaviour aTranslucentBehaviour) :
1.91 + iTranslucentBehaviour(aTranslucentBehaviour), iRegion(aRegion), iSubRegion(NULL)
1.92 + {}
1.93 +
1.94 +TBool TWalkWindowTreeRegionBase::DoIt(CWsWindow *aWin)
1.95 + {
1.96 + if (aWin->IsVisible())
1.97 + {
1.98 + DoIt2(aWin);
1.99 + if (aWin->WinType()!=EWinTypeRoot)
1.100 + {
1.101 + STACK_REGION tmp;
1.102 + switch(iTranslucentBehaviour)
1.103 + {
1.104 + case EDontWalkTranslucent:
1.105 + static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(tmp);
1.106 + iRegion->SubRegion(tmp,iSubRegion);
1.107 + break;
1.108 + case EWalkTranslucent:
1.109 + static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(*iSubRegion);
1.110 + iSubRegion->Intersect(*iRegion);
1.111 + if (iSubRegion->Count() > 0)
1.112 + {
1.113 + static_cast<CWsClientWindow *>(aWin)->SetOpaqueClippedBaseArea(tmp);
1.114 + iRegion->SubRegion(tmp);
1.115 + }
1.116 + break;
1.117 + }
1.118 + tmp.Close();
1.119 + }
1.120 + else if(iSubRegion)
1.121 + {
1.122 + iSubRegion->Copy(*iRegion);
1.123 + }
1.124 + if (iSubRegion && (iSubRegion->Count()>0 || iSubRegion->CheckError()))
1.125 + {
1.126 + if (DoIt3(aWin))
1.127 + return ETrue;
1.128 + iSubRegion->Clear();
1.129 + }
1.130 + }
1.131 + return(iRegion->IsEmpty());
1.132 + }
1.133 +TBool TWalkWindowTreeRegionBase::DoIt3(CWsWindow*)
1.134 + {return EFalse;}
1.135 +
1.136 +TWalkWindowTreeSchedule::TWalkWindowTreeSchedule() :
1.137 + TWalkWindowTreeBase(),
1.138 + iHead(0)
1.139 + {
1.140 + }
1.141 +
1.142 +CWsWindow * TWalkWindowTreeSchedule::HeadWindow() const
1.143 + {
1.144 + return iHead;
1.145 + }
1.146 +
1.147 +TWalkWindowTreeScheduleRegions::TWalkWindowTreeScheduleRegions(RWsRegion *aRegion, const TRegion& aTopLayer) :
1.148 + TWalkWindowTreeSchedule(),
1.149 + iRegion(aRegion),
1.150 + iTopLayer(aTopLayer),
1.151 + iScheduledRegionsOk(ETrue)
1.152 + {
1.153 + }
1.154 +
1.155 +// This is similar to TWalkWindowTreeRegionBase::DoIt
1.156 +TBool TWalkWindowTreeScheduleRegions::DoIt(CWsWindow *aWin)
1.157 + {
1.158 + WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
1.159 + if (aWin->IsVisible())
1.160 + {
1.161 + // Calculate the region we care about for this window:
1.162 + STACK_REGION region;
1.163 + if (aWin->WinType()==EWinTypeRoot)
1.164 + {
1.165 + region.Copy(*iRegion);
1.166 + }
1.167 + else
1.168 + {
1.169 + static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(region);
1.170 + region.Intersect(*iRegion);
1.171 + }
1.172 + // If there is a region we care about, remember the window:
1.173 + // NOTE: Even if there are no redraw segments (ReadyToDraw is false) the window should
1.174 + // be scheduled if it has some animations which will be redrawn via PostDrawWindow (cf def131912)
1.175 + if (!region.IsEmpty() && (aWin->ReadyToDraw() || aWin->HasAnimation() || aWin->HasSprite()) )
1.176 + {
1.177 + // Add window to linked list:
1.178 + aWin->SetNextScheduled(iHead);
1.179 + iHead = aWin;
1.180 + // Set the window scheduled region to something appropriate:
1.181 + if (iScheduledRegionsOk)
1.182 + {
1.183 + if (region.CheckError())
1.184 + {
1.185 + iScheduledRegionsOk = EFalse;
1.186 + }
1.187 + else
1.188 + {
1.189 + iScheduledRegionsOk = aWin->SetScheduledRegion(region);
1.190 + }
1.191 + }
1.192 + }
1.193 + if (aWin->WinType()!=EWinTypeRoot)
1.194 + {
1.195 + // Remove the opaque part from our working region:
1.196 + STACK_REGION opaqueRegion;
1.197 + static_cast<CWsClientWindow *>(aWin)->SetOpaqueClippedBaseArea(opaqueRegion);
1.198 + iRegion->SubRegion(opaqueRegion);
1.199 + opaqueRegion.Close();
1.200 +
1.201 + // Where we were drawing transparent and doing top layer only, remove
1.202 + // that bit too:
1.203 + if (!iTopLayer.IsEmpty())
1.204 + {
1.205 + region.Intersect(iTopLayer);
1.206 + iRegion->SubRegion(region);
1.207 + }
1.208 + }
1.209 + region.Close();
1.210 + }
1.211 +
1.212 + return(iRegion->IsEmpty() || !iScheduledRegionsOk);
1.213 + }
1.214 +
1.215 +const TRegion * TWalkWindowTreeScheduleRegions::Region(const CWsWindow* aWin) const
1.216 + {
1.217 + WS_ASSERT_DEBUG(iScheduledRegionsOk, EWsPanicScheduledRedraw);
1.218 + return aWin->ScheduledRegion();
1.219 + }
1.220 +
1.221 +TBool TWalkWindowTreeScheduleRegions::ScheduledRegionsOk() const
1.222 + {
1.223 + return iScheduledRegionsOk;
1.224 + }
1.225 +
1.226 +TWalkWindowTreeScheduleFallback::TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap) :
1.227 + TWalkWindowTreeSchedule(),
1.228 + iFallbackMap(aFallbackMap)
1.229 + {
1.230 + }
1.231 +
1.232 +// This is similar to TWalkWindowTreeRegionBase::DoIt
1.233 +TBool TWalkWindowTreeScheduleFallback::DoIt(CWsWindow *aWin)
1.234 + {
1.235 + WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
1.236 + if (aWin->IsVisible())
1.237 + {
1.238 + if (aWin == aWin->RootWindow())
1.239 + {
1.240 + aWin->SetNextScheduled(iHead);
1.241 + return ETrue;
1.242 + }
1.243 + else
1.244 + {
1.245 + TBool addWindow = EFalse;
1.246 + CWsClientWindow* cliWin = static_cast<CWsClientWindow *>(aWin);
1.247 + if (cliWin->IsTranslucent())
1.248 + {
1.249 + addWindow = ETrue; // costs more to work out than it is worth
1.250 + const TRegion * opaque = cliWin->GetUserOpaqueRegion();
1.251 + if (opaque && !opaque->CheckError())
1.252 + iFallbackMap->FillRegion(*opaque);
1.253 + }
1.254 + else
1.255 + {
1.256 + addWindow = iFallbackMap->FillRegion(*cliWin->BaseArea());
1.257 + }
1.258 + if (addWindow)
1.259 + {
1.260 + aWin->SetNextScheduled(iHead);
1.261 + iHead = aWin;
1.262 + }
1.263 + }
1.264 + }
1.265 +
1.266 + return(iFallbackMap->Count() < 1);
1.267 + }
1.268 +
1.269 +const TRegion * TWalkWindowTreeScheduleFallback::Region(const CWsWindow* aWin) const
1.270 + {
1.271 + if (aWin == aWin->RootWindow())
1.272 + return iFallbackMap->Region();
1.273 + else
1.274 + {
1.275 + const CWsClientWindow* win = static_cast<const CWsClientWindow *>(aWin);
1.276 + const TRegion* region = win->VisibleRegionIfValid();
1.277 + if (!region)
1.278 + region = win->BaseArea();
1.279 + return region;
1.280 + }
1.281 + }
1.282 +
1.283 +TWalkWindowTreeIsObscured::TWalkWindowTreeIsObscured(TBool &aResult) :
1.284 + iResult(&aResult)
1.285 + {
1.286 + aResult=ETrue;
1.287 + }
1.288 +
1.289 +TBool TWalkWindowTreeIsObscured::DoIt(CWsWindow *aWin)
1.290 + {
1.291 + if (!aWin->VisibleRegion().IsEmpty())
1.292 + {
1.293 + *iResult=EFalse;
1.294 + return(ETrue);
1.295 + }
1.296 + return(EFalse);
1.297 + }
1.298 +
1.299 +TWalkWindowTreeSetNonFading::TWalkWindowTreeSetNonFading(TBool aNonFading) :
1.300 + iNonFading(aNonFading)
1.301 + {}
1.302 +TBool TWalkWindowTreeSetNonFading::DoIt(CWsWindow *aWin)
1.303 + {
1.304 + aWin->SetNonFading(iNonFading);
1.305 + return EFalse;
1.306 + }
1.307 +
1.308 +TWalkWindowTreeSetFaded::TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap) :
1.309 + iBlackMap(aBlackMap), iWhiteMap(aWhiteMap), iFaded(aFaded), iGroup(aWin->WinGroup())
1.310 + {
1.311 + }
1.312 +
1.313 +TBool TWalkWindowTreeSetFaded::DoIt(CWsWindow *aWin)
1.314 + {
1.315 + if (aWin->WinGroup()!=iGroup)
1.316 + return ETrue;
1.317 + ((CWsClientWindow*)aWin)->SetFaded(iFaded,iBlackMap,iWhiteMap);
1.318 + return EFalse;
1.319 + }
1.320 +
1.321 +TWalkWindowTreePurgeEvents::TWalkWindowTreePurgeEvents()
1.322 + {}
1.323 +TBool TWalkWindowTreePurgeEvents::DoIt(CWsWindow *aWin)
1.324 + {
1.325 + aWin->PurgeEvents();
1.326 + return EFalse;
1.327 + }
1.328 +
1.329 +TWalkWindowTreeCalcInvalidGraphics::TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid):
1.330 + TWalkWindowTreeRegionBase(aRegion, EWalkTranslucent),
1.331 + iDirty(aDirty),
1.332 + iInvalid(aInvalid)
1.333 + {
1.334 + }
1.335 +
1.336 +void TWalkWindowTreeCalcInvalidGraphics::DestroyRegions()
1.337 + {
1.338 + if(iSubRegion)
1.339 + {
1.340 + iSubRegion->Close();
1.341 + }
1.342 + delete iSubRegion;
1.343 + iSubRegion = NULL;
1.344 + iDirty.Clear();
1.345 + }
1.346 +
1.347 +void TWalkWindowTreeCalcInvalidGraphics::CalcInvalid(CScreen& aScreen)
1.348 + {
1.349 + if(aScreen.RootWindow())
1.350 + {
1.351 + aScreen.RootWindow()->WalkWindowTree(*this,EWalkChildren);
1.352 + if(iRegion->CheckError())
1.353 + {
1.354 + iDirty.ForceError();
1.355 + }
1.356 + }
1.357 + }
1.358 +
1.359 +TBool TWalkWindowTreeCalcInvalidGraphics::CreateSubRegion()
1.360 + {
1.361 + iSubRegion=new RWsRegion;
1.362 + return iSubRegion!=NULL;
1.363 + }
1.364 +
1.365 +TBool TWalkWindowTreeCalcInvalidGraphics::DoIt3(CWsWindow *aWin)
1.366 + {
1.367 + if (!iDirty.CheckError() && aWin->Redraw() && aWin->Redraw()->Contains(iInvalid,aWin->VisibleRegion()))
1.368 + {
1.369 + STACK_REGION intersection;
1.370 + intersection.Intersection(*iSubRegion,aWin->VisibleRegion());
1.371 + iDirty.Union(intersection);
1.372 + intersection.Close();
1.373 + }
1.374 + return iDirty.CheckError();
1.375 + }
1.376 +
1.377 +#if defined(_DEBUG)
1.378 +
1.379 +TBool TWalkWindowTreeCheck::DoIt(CWsWindow *aWin)
1.380 + {
1.381 + if (aWin->WinType()==EWinTypeRoot)
1.382 + {
1.383 + WS_ASSERT_DEBUG(aWin->BaseParent()==NULL, EWsPanicWindowCheck);
1.384 + WS_ASSERT_DEBUG(aWin->NextSibling()==NULL, EWsPanicWindowCheck);
1.385 + }
1.386 + else
1.387 + {
1.388 + WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowCheck);
1.389 + }
1.390 + if (aWin->BaseChild())
1.391 + {
1.392 + WS_ASSERT_DEBUG(aWin->BaseChild()->BaseParent()==aWin, EWsPanicWindowCheck);
1.393 + }
1.394 + if (aWin->NextSibling())
1.395 + {
1.396 + WS_ASSERT_DEBUG(aWin->NextSibling()->GetPrevSibling()==aWin, EWsPanicWindowCheck);
1.397 + }
1.398 + return(EFalse);
1.399 + }
1.400 +
1.401 +TBool TWalkWindowTreeFindWithFlag::DoIt(CWsWindow *aWin)
1.402 + {
1.403 + if (aWin->iFlags & iFlag)
1.404 + {
1.405 + iFound = aWin;
1.406 + return ETrue;
1.407 + }
1.408 + return EFalse;
1.409 + }
1.410 +
1.411 +#endif
1.412 +
1.413 +#include "wnredraw.h"
1.414 +TWalkWindowTreeRedrawStoreSize::TWalkWindowTreeRedrawStoreSize() : iTotalSize(0)
1.415 + {
1.416 + }
1.417 +
1.418 +TBool TWalkWindowTreeRedrawStoreSize::DoIt(CWsWindow *aWin)
1.419 + {
1.420 + iTotalSize += aWin->Redraw()->SizeInBytes();
1.421 + return EFalse;
1.422 + }
1.423 +
1.424 +
1.425 +TBool TWalkWindowTreeFindByHandle::DoIt(CWsWindow *aWin)
1.426 + {
1.427 + if (aWin->ClientHandle() == iHandle)
1.428 + {
1.429 + iFound = aWin;
1.430 + return ETrue;
1.431 + }
1.432 + return EFalse;
1.433 + }
1.434 +
1.435 +TWalkWindowTreeUpdateRegions::TWalkWindowTreeUpdateRegions(CScreen & aScreen) :
1.436 + iScreen(aScreen)
1.437 + {
1.438 + }
1.439 +
1.440 +void TWalkWindowTreeUpdateRegions::Walk()
1.441 + {
1.442 + STACK_REGION floatingSpriteRgn;
1.443 + iScreen.SpriteManager()->CalcFloatingSpriteRgn( floatingSpriteRgn, iScreen.RootWindow()->AbsRect() );
1.444 + iVisible.AddRect(iScreen.RootWindow()->AbsRect());
1.445 + iTop.AddRect(iScreen.RootWindow()->AbsRect());
1.446 + iRemainsOfFadableScreen.AddRect( iScreen.RootWindow()->AbsRect() );
1.447 + iTop.SubRegion(floatingSpriteRgn);
1.448 + iScreen.RootWindow()->WalkWindowTree(*this, EWalkChildren);
1.449 + iTop.Close();
1.450 + iVisible.Close();
1.451 + iRemainsOfFadableScreen.Close();
1.452 + floatingSpriteRgn.Close();
1.453 + }
1.454 +
1.455 +TBool TWalkWindowTreeUpdateRegions::DoIt(CWsWindow * aWin)
1.456 + {
1.457 + if (aWin->IsVisible() && !iVisible.IsEmpty())
1.458 + {
1.459 + // Calculate the region we care about for this window:
1.460 + STACK_REGION newVisibleRegion;
1.461 + STACK_REGION newFadableRegion;
1.462 + if (aWin->WinType()==EWinTypeRoot)
1.463 + {
1.464 + newVisibleRegion.Copy(iVisible);
1.465 + }
1.466 + else
1.467 + {
1.468 + static_cast<CWsClientWindow *>(aWin)->SetClippedBaseArea(newVisibleRegion);
1.469 + newVisibleRegion.Intersect(iVisible);
1.470 + if (!aWin->IsTranslucent())
1.471 + {
1.472 + iVisible.SubRegion(newVisibleRegion);
1.473 + }
1.474 + else
1.475 + {
1.476 + STACK_REGION opaque;
1.477 + static_cast<CWsClientWindow *>(aWin)->SetOpaqueClippedBaseArea(opaque);
1.478 + iVisible.SubRegion(opaque);
1.479 + opaque.Close();
1.480 + }
1.481 + //If the window has been faded calculate what region actually needs fading
1.482 + //(i.e. subtract what has already been faded)
1.483 + if ( aWin->FadeCount() && !aWin->IsNonFading() && aWin->IsVisible() && !iRemainsOfFadableScreen.IsEmpty() )
1.484 + {
1.485 + newFadableRegion.Copy( newVisibleRegion );
1.486 + newFadableRegion.Intersect( iRemainsOfFadableScreen );
1.487 + }
1.488 + }
1.489 + aWin->SetVisibleRegion(newVisibleRegion, &iTop, newFadableRegion);
1.490 + iTop.SubRegion(newVisibleRegion);
1.491 + iRemainsOfFadableScreen.SubRegion( newFadableRegion ); // Subtract the new faded region
1.492 + newFadableRegion.Close();
1.493 + newVisibleRegion.Close();
1.494 + }
1.495 + else
1.496 + {
1.497 + if (!aWin->VisibleRegion().IsEmpty())
1.498 + {
1.499 + aWin->ClearVisibleRegion();
1.500 + }
1.501 + }
1.502 + return(EFalse);
1.503 + }
1.504 +
1.505 +TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws():
1.506 + iScheduleRedrawFilter( ERedrawFilterNoFilter )
1.507 + {
1.508 + }
1.509 +
1.510 +TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws( TUint32 aFilter ):
1.511 + iScheduleRedrawFilter( aFilter )
1.512 + { }
1.513 +
1.514 +TBool TWalkWindowTreeScheduleRedraws::DoIt(CWsWindow * aWin)
1.515 + {
1.516 + if (aWin->WinType() != EWinTypeClient || static_cast<CWsClientWindow *>(aWin)->HasBeenDrawnToScreen())
1.517 + {
1.518 + TBool ban = (iScheduleRedrawFilter & ERedrawFilterOmitDSA) && ( aWin->IsDSAHost() );
1.519 + if ( !ban )
1.520 + {
1.521 + aWin->Screen()->AddRedrawRegion(aWin->VisibleRegion());
1.522 + }
1.523 + }
1.524 + return EFalse;
1.525 + }
1.526 +
1.527 +TWalkWindowTreeOffsetTransparentRegions::TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset) :
1.528 + iOffset(aOffset)
1.529 + {
1.530 + }
1.531 +
1.532 +TBool TWalkWindowTreeOffsetTransparentRegions::DoIt(CWsWindow * aWin)
1.533 + {
1.534 + if (aWin != aWin->RootWindow())
1.535 + static_cast<CWsClientWindow *>(aWin)->OffsetUserTransparentRegion(iOffset);
1.536 + return EFalse;
1.537 + }
1.538 +
1.539 +TWalkWindowTreeRecalcOpaque::TWalkWindowTreeRecalcOpaque()
1.540 + {
1.541 + }
1.542 +
1.543 +TBool TWalkWindowTreeRecalcOpaque::DoIt(CWsWindow * aWin)
1.544 + {
1.545 + if (aWin != aWin->RootWindow())
1.546 + static_cast<CWsClientWindow *>(aWin)->SetUserOpaqueRegion();
1.547 + return EFalse;
1.548 + }
1.549 +
1.550 +TBool TWalkWindowTreeReactivateGcs::DoIt(CWsWindow *aWin)
1.551 + {
1.552 + if (aWin != aWin->RootWindow())
1.553 + static_cast<CWsClientWindow *>(aWin)->ReactivateGcs();
1.554 + return EFalse;
1.555 + }
1.556 +
1.557 +TWalkWindowTreeScheduleFadeNoRedraw::TWalkWindowTreeScheduleFadeNoRedraw()
1.558 + { } // empty
1.559 +
1.560 +TBool TWalkWindowTreeScheduleFadeNoRedraw::DoIt(CWsWindow *aWin)
1.561 + {
1.562 + aWin->Screen()->ScheduleRegionUpdate( aWin->VisibleRegionIfValid() );
1.563 + return EFalse;
1.564 + }