1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/walkwindowtree.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,707 @@
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 "ANIM.H"
1.23 +#include "tcursor.h"
1.24 +#include "pointer.h"
1.25 +
1.26 +TWalkWindowTreeFocusChanged::TWalkWindowTreeFocusChanged(TBool aNewFocusState) :
1.27 + iNewFocusState(aNewFocusState)
1.28 + {
1.29 + }
1.30 +
1.31 +TBool TWalkWindowTreeFocusChanged::DoIt(CWsWindow *aWin)
1.32 +//
1.33 +// Walk all windows that have had their focus state changed
1.34 +//
1.35 + {
1.36 + aWin->FocusChanged(iNewFocusState);
1.37 + return(EFalse);
1.38 + }
1.39 +
1.40 +TResumableWalkWindowTreeFindInvalid::TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult) :
1.41 + iResult(aResult)
1.42 + {
1.43 + }
1.44 +
1.45 +TBool TResumableWalkWindowTreeFindInvalid::DoIt(CWsWindow* aWin)
1.46 +//
1.47 +// Find a window with an invalid area
1.48 +//
1.49 + {
1.50 + WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowType);
1.51 + CWsWindowRedraw *redraw=((CWsClientWindow *)aWin)->Redraw();
1.52 + if (redraw->NeedsRedraw()>0)
1.53 + {
1.54 + *iResult=redraw;
1.55 + return(ETrue);
1.56 + }
1.57 + return(EFalse);
1.58 + }
1.59 +
1.60 +TWalkWindowTreeDisconnect::TWalkWindowTreeDisconnect(RWsTextCursor *aCursor) :
1.61 + iTextCursor(aCursor)
1.62 + {}
1.63 +
1.64 +TBool TWalkWindowTreeDisconnect::DoIt(CWsWindow *aWin)
1.65 +//
1.66 +// Disconnect a window
1.67 +//
1.68 + {
1.69 + if (aWin->WinType()==EWinTypeClient)
1.70 + {
1.71 + CWsClientWindow *win=(CWsClientWindow *)aWin;
1.72 + win->iRedraw->WindowClosing();
1.73 + /* XXX jonas: the defect fix for PDEF114190 moved deactivation of sprites from CWsWindow::Shutdown() to here. Check that DeactivateAllSprites() is equivalent to SpriteManager::DeactivateSprites().
1.74 + win->SpriteManager()->DeactivateSprites(win);
1.75 + */
1.76 + win->DeactivateAllSprites();
1.77 +
1.78 + if (iTextCursor)
1.79 + iTextCursor->WindowDisconnected(win);
1.80 + CWsAnim::WindowClosing(win->iAnimList); // Destroy any animated objects attached to this window
1.81 + TWsPointer::WindowDisconnected(aWin);
1.82 +
1.83 + win->iParent=NULL;
1.84 + win->iSibling=NULL;
1.85 + win->iChild=NULL;
1.86 + win->iFlags&=~EFlagActive;
1.87 + win->ResetHiddenFlag();
1.88 + }
1.89 + return(EFalse);
1.90 + }
1.91 +
1.92 +TWalkWindowTreeRegionBase::TWalkWindowTreeRegionBase(RWsRegion *aRegion, TTranslucentBehaviour aTranslucentBehaviour) :
1.93 + iTranslucentBehaviour(aTranslucentBehaviour), iRegion(aRegion), iSubRegion(NULL)
1.94 + {}
1.95 +
1.96 +TBool TWalkWindowTreeRegionBase::DoIt(CWsWindow *aWin)
1.97 + {
1.98 + if (aWin->IsVisible())
1.99 + {
1.100 + DoIt2(aWin);
1.101 + if (aWin->WinType()!=EWinTypeRoot)
1.102 + {
1.103 + STACK_REGION tmp;
1.104 + switch(iTranslucentBehaviour)
1.105 + {
1.106 + case EDontWalkTranslucent:
1.107 + static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(tmp);
1.108 + iRegion->SubRegion(tmp,iSubRegion);
1.109 + break;
1.110 + case EWalkTranslucent:
1.111 + static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(*iSubRegion);
1.112 + iSubRegion->Intersect(*iRegion);
1.113 + if (iSubRegion->Count() > 0)
1.114 + {
1.115 + static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(tmp);
1.116 + iRegion->SubRegion(tmp);
1.117 + }
1.118 + break;
1.119 + }
1.120 + tmp.Close();
1.121 + }
1.122 + else if(iSubRegion)
1.123 + {
1.124 + iSubRegion->Copy(*iRegion);
1.125 + }
1.126 + if (iSubRegion && (iSubRegion->Count()>0 || iSubRegion->CheckError()))
1.127 + {
1.128 + if (DoIt3(aWin))
1.129 + return ETrue;
1.130 + iSubRegion->Clear();
1.131 + }
1.132 + }
1.133 + return(iRegion->IsEmpty());
1.134 + }
1.135 +TBool TWalkWindowTreeRegionBase::DoIt3(CWsWindow*)
1.136 + {return EFalse;}
1.137 +
1.138 +TWalkWindowTreeSchedule::TWalkWindowTreeSchedule() :
1.139 + TWalkWindowTreeBase(),
1.140 + iHead(0)
1.141 + {
1.142 + }
1.143 +
1.144 +CWsWindow * TWalkWindowTreeSchedule::HeadWindow() const
1.145 + {
1.146 + return iHead;
1.147 + }
1.148 +
1.149 +TWalkWindowListSchedule::TWalkWindowListSchedule(CWsWindow* aHeadWin, TRegion& aScreenUpdateRegion)
1.150 + : TWalkWindowTreeSchedule(), iScreenUpdateRegion(aScreenUpdateRegion)
1.151 + {
1.152 + iHead = aHeadWin;
1.153 + }
1.154 +
1.155 +void TWalkWindowListSchedule::WalkWindowList()
1.156 + {
1.157 + CWsWindow* win = iHead;
1.158 + CWsWindow* previous = NULL;
1.159 + while (win)
1.160 + {
1.161 + if (!DoIt(win))
1.162 + {
1.163 + // Remove win from list, as it doesn't need to be rendered
1.164 + if (win == iHead)
1.165 + {
1.166 + iHead = win->NextScheduled();
1.167 + }
1.168 + else
1.169 + {
1.170 + WS_ASSERT_DEBUG(previous,EWsPanicWindowNull);
1.171 + previous->SetNextScheduled(win->NextScheduled());
1.172 + }
1.173 + }
1.174 + else
1.175 + {
1.176 + previous = win;
1.177 + }
1.178 + win = win->NextScheduled();
1.179 + }
1.180 + }
1.181 +
1.182 +/**
1.183 +@return ETrue if aWin has content that needs to be rendered, otherwise EFalse.
1.184 +*/
1.185 +TBool TWalkWindowListSchedule::DoIt(CWsWindow* aWin)
1.186 + {
1.187 + if (aWin->IsVisible())
1.188 + {
1.189 + //In case we don't have all content, queue a request for the client to provide it.
1.190 + CWsWindowRedraw& redrawWin = *(aWin->Redraw());
1.191 + if(!redrawWin.InvalidArea().IsEmpty())
1.192 + {
1.193 + redrawWin.QueueRedraw();
1.194 + }
1.195 +
1.196 + //Schedule all we got for now
1.197 + const TBool scheduledWindowContent = DoWindow(*aWin);
1.198 + const TBool scheduledSpriteContent = DoSprites(*aWin);
1.199 + return (scheduledWindowContent || scheduledSpriteContent);
1.200 + }
1.201 + return EFalse;
1.202 + }
1.203 +
1.204 +TBool TWalkWindowListSchedule::DoWindow(CWsWindow& aWin)
1.205 + {
1.206 + if (!aWin.DirtyWindowRegion().IsEmpty())
1.207 + {
1.208 + //Schedule
1.209 + aWin.ScheduleDirtyWindowRegion();
1.210 + //And ensure this part of the screen is updated
1.211 + iScreenUpdateRegion.Union(aWin.ScheduledRegion());
1.212 + return ETrue;
1.213 + }
1.214 + return EFalse;
1.215 + }
1.216 +
1.217 +TBool TWalkWindowListSchedule::DoSprites(CWsWindow& aWin)
1.218 + {
1.219 + if (!aWin.DirtySpriteRegion().IsEmpty())
1.220 + {
1.221 + //Schedule
1.222 + aWin.ScheduleDirtySpriteRegion();
1.223 + //And ensure this part of the screen is updated
1.224 + iScreenUpdateRegion.Union(aWin.ScheduledSpriteRegion());
1.225 + return ETrue;
1.226 + }
1.227 + return EFalse;
1.228 + }
1.229 +
1.230 +const TRegion& TWalkWindowListSchedule::WindowRegion(const CWsWindow& aWin) const
1.231 + {
1.232 + return aWin.ScheduledRegion();
1.233 + }
1.234 +
1.235 +const TRegion& TWalkWindowListSchedule::SpriteRegion(const CWsWindow& aWin) const
1.236 + {
1.237 + return aWin.ScheduledSpriteRegion();
1.238 + }
1.239 +
1.240 +TWalkWindowTreeScheduleRegions::TWalkWindowTreeScheduleRegions(TRegion& aRegion, const TRegion& aTopElement) :
1.241 + TWalkWindowTreeSchedule(),
1.242 + iRegion(aRegion),
1.243 + iTopElement(aTopElement),
1.244 + iScheduledRegionsOk(ETrue)
1.245 + {
1.246 + }
1.247 +
1.248 +// This is similar to TWalkWindowTreeRegionBase::DoIt
1.249 +TBool TWalkWindowTreeScheduleRegions::DoIt(CWsWindow *aWin)
1.250 + {
1.251 + WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
1.252 + if (aWin->IsVisible())
1.253 + {
1.254 + // Calculate the region we care about for this window:
1.255 + STACK_REGION region;
1.256 + if (aWin->WinType()==EWinTypeRoot)
1.257 + {
1.258 + region.Copy(iRegion);
1.259 + }
1.260 + else
1.261 + {
1.262 + static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(region);
1.263 + region.Intersect(iRegion);
1.264 + }
1.265 + // If there is a region we care about, remember the window:
1.266 + // NOTE: Even if there are no redraw segments (ReadyToDraw is false) the window should
1.267 + // be scheduled if it has a element so that the background surface is made visible
1.268 + // or if it has some animations which should be redrawn via the PostDrawWindow method (cf def131912)
1.269 + if (!region.IsEmpty() && (aWin->ReadyToDraw() || aWin->HasElement() || aWin->HasAnimation() || aWin->HasSprite()) )
1.270 + {
1.271 + // Add window to linked list:
1.272 + aWin->SetNextScheduled(iHead);
1.273 + iHead = aWin;
1.274 + // Set the window scheduled region to something appropriate:
1.275 + if (iScheduledRegionsOk)
1.276 + {
1.277 + if (region.CheckError())
1.278 + {
1.279 + iScheduledRegionsOk = EFalse;
1.280 + }
1.281 + else
1.282 + {
1.283 + iScheduledRegionsOk = aWin->SetScheduledRegion(region);
1.284 + }
1.285 + }
1.286 + }
1.287 + if (aWin->WinType()!=EWinTypeRoot)
1.288 + {
1.289 + // Remove the opaque part from our working region:
1.290 + STACK_REGION opaqueRegion;
1.291 + static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(opaqueRegion);
1.292 + iRegion.SubRegion(opaqueRegion);
1.293 + opaqueRegion.Close();
1.294 +
1.295 + // Where we were drawing transparent and doing top element only, remove
1.296 + // that bit too:
1.297 + if (!iTopElement.IsEmpty())
1.298 + {
1.299 + region.Intersect(iTopElement);
1.300 + iRegion.SubRegion(region);
1.301 + }
1.302 + }
1.303 + region.Close();
1.304 + }
1.305 +
1.306 + return(iRegion.IsEmpty() || !iScheduledRegionsOk);
1.307 + }
1.308 +
1.309 +const TRegion& TWalkWindowTreeScheduleRegions::WindowRegion(const CWsWindow& aWin) const
1.310 + {
1.311 + WS_ASSERT_DEBUG(iScheduledRegionsOk, EWsPanicScheduledRedraw);
1.312 + return aWin.ScheduledRegion();
1.313 + }
1.314 +
1.315 +const TRegion& TWalkWindowTreeScheduleRegions::SpriteRegion(const CWsWindow& aWin) const
1.316 + {
1.317 + //Intentionally returning WindowRegion as TWalkWindowTreeScheduleRegions do not
1.318 + //make use of ScheduledSpriteRegion
1.319 + return aWin.ScheduledRegion();
1.320 + }
1.321 +
1.322 +TBool TWalkWindowTreeScheduleRegions::ScheduledRegionsOk() const
1.323 + {
1.324 + return iScheduledRegionsOk;
1.325 + }
1.326 +
1.327 +TWalkWindowTreeScheduleFallback::TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap) :
1.328 + TWalkWindowTreeSchedule(),
1.329 + iFallbackMap(aFallbackMap)
1.330 + {
1.331 + }
1.332 +
1.333 +// This is similar to TWalkWindowTreeRegionBase::DoIt
1.334 +TBool TWalkWindowTreeScheduleFallback::DoIt(CWsWindow *aWin)
1.335 + {
1.336 + WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
1.337 + if (aWin->IsVisible())
1.338 + {
1.339 + if (aWin == aWin->RootWindow())
1.340 + {
1.341 + aWin->SetNextScheduled(iHead);
1.342 + return ETrue;
1.343 + }
1.344 + else
1.345 + {
1.346 + TBool addWindow = EFalse;
1.347 + CWsClientWindow* cliWin = static_cast<CWsClientWindow *>(aWin);
1.348 + if (cliWin->IsTranslucent())
1.349 + {
1.350 + addWindow = ETrue; // costs more to work out than it is worth
1.351 + const TRegion * opaque = cliWin->GetUserOpaqueRegion();
1.352 + if (opaque && !opaque->CheckError())
1.353 + iFallbackMap->FillRegion(*opaque);
1.354 + }
1.355 + else
1.356 + {
1.357 + addWindow = iFallbackMap->FillRegion(*cliWin->BaseArea());
1.358 + }
1.359 + if (addWindow)
1.360 + {
1.361 + aWin->SetNextScheduled(iHead);
1.362 + iHead = aWin;
1.363 + }
1.364 + }
1.365 + }
1.366 +
1.367 + return(iFallbackMap->Count() < 1);
1.368 + }
1.369 +
1.370 +const TRegion& TWalkWindowTreeScheduleFallback::WindowRegion(const CWsWindow& aWin) const
1.371 + {
1.372 + if (&aWin == aWin.RootWindow())
1.373 + return *(iFallbackMap->Region());
1.374 + else
1.375 + {
1.376 + const CWsClientWindow& win = static_cast<const CWsClientWindow&>(aWin);
1.377 + const TRegion* region = win.VisibleRegionIfValid();
1.378 + if (!region)
1.379 + region = win.BaseArea();
1.380 + return *region;
1.381 + }
1.382 + }
1.383 +
1.384 +const TRegion& TWalkWindowTreeScheduleFallback::SpriteRegion(const CWsWindow& aWin) const
1.385 + {
1.386 + return WindowRegion(aWin);
1.387 + }
1.388 +
1.389 +TWalkWindowTreeIsObscured::TWalkWindowTreeIsObscured(TBool &aResult) :
1.390 + iResult(&aResult)
1.391 + {
1.392 + aResult=ETrue;
1.393 + }
1.394 +
1.395 +TBool TWalkWindowTreeIsObscured::DoIt(CWsWindow *aWin)
1.396 + {
1.397 + if (!aWin->VisibleRegion().IsEmpty())
1.398 + {
1.399 + *iResult=EFalse;
1.400 + return(ETrue);
1.401 + }
1.402 + return(EFalse);
1.403 + }
1.404 +
1.405 +TWalkWindowTreeSetupVisibleRegionTracking::TWalkWindowTreeSetupVisibleRegionTracking(TBool aRegister) : iRegister(aRegister)
1.406 + {
1.407 + }
1.408 +
1.409 +TBool TWalkWindowTreeSetupVisibleRegionTracking::DoIt(CWsWindow *aWin)
1.410 + {
1.411 + ASSERT(aWin->WinType() == EWinTypeClient);
1.412 + if(aWin->WinType() == EWinTypeClient)
1.413 + {
1.414 + aWin->SetupVisibleRegionTracking(iRegister);
1.415 + }
1.416 + return(EFalse);
1.417 + }
1.418 +
1.419 +TWalkWindowTreeSetNonFading::TWalkWindowTreeSetNonFading(TBool aNonFading) :
1.420 + iNonFading(aNonFading)
1.421 + {}
1.422 +TBool TWalkWindowTreeSetNonFading::DoIt(CWsWindow *aWin)
1.423 + {
1.424 + aWin->SetNonFading(iNonFading);
1.425 + return EFalse;
1.426 + }
1.427 +
1.428 +TWalkWindowTreeSetFaded::TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap) :
1.429 + iBlackMap(aBlackMap), iWhiteMap(aWhiteMap), iFaded(aFaded), iGroup(aWin->WinGroup())
1.430 + {
1.431 + }
1.432 +
1.433 +TBool TWalkWindowTreeSetFaded::DoIt(CWsWindow *aWin)
1.434 + {
1.435 + if (aWin->WinGroup()!=iGroup)
1.436 + return ETrue;
1.437 +
1.438 + const TBool KNotifyObserver = ETrue;
1.439 + TBool dummy; //not used in this case
1.440 + ((CWsClientWindow*)aWin)->SetFaded(iFaded, iBlackMap, iWhiteMap, KNotifyObserver, dummy);
1.441 + return EFalse;
1.442 + }
1.443 +
1.444 +TWalkWindowTreeSetSystemFaded::TWalkWindowTreeSetSystemFaded(TBool aFaded, CWsWindowBase* aWin, TUint8 aBlackMap, TUint8 aWhiteMap, TBool& aStateChanged) :
1.445 + TWalkWindowTreeSetFaded(aFaded, aWin, aBlackMap, aWhiteMap),
1.446 + iStateChanged(aStateChanged)
1.447 + {
1.448 + }
1.449 +
1.450 +TBool TWalkWindowTreeSetSystemFaded::DoIt(CWsWindow *aWin)
1.451 + {
1.452 + if (aWin->WinGroup()!=iGroup)
1.453 + return ETrue;
1.454 +
1.455 + const TBool KNotifyObserver = EFalse; //don't send fade state change notification
1.456 +
1.457 + TBool stateChanged = EFalse;
1.458 + ((CWsClientWindow*)aWin)->SetFaded(iFaded, iBlackMap, iWhiteMap, KNotifyObserver, stateChanged);
1.459 + iStateChanged = iStateChanged || stateChanged;
1.460 +
1.461 + return EFalse;
1.462 + }
1.463 +
1.464 +TWalkWindowTreePurgeEvents::TWalkWindowTreePurgeEvents()
1.465 + {}
1.466 +
1.467 +TBool TWalkWindowTreePurgeEvents::DoIt(CWsWindow *aWin)
1.468 + {
1.469 + aWin->PurgeEvents();
1.470 + return EFalse;
1.471 + }
1.472 +
1.473 +TWalkWindowTreeCalcInvalidGraphics::TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid):
1.474 + TWalkWindowTreeRegionBase(aRegion, EWalkTranslucent),
1.475 + iDirty(aDirty),
1.476 + iInvalid(aInvalid)
1.477 + {
1.478 + }
1.479 +
1.480 +void TWalkWindowTreeCalcInvalidGraphics::DestroyRegions()
1.481 + {
1.482 + if(iSubRegion)
1.483 + {
1.484 + iSubRegion->Close();
1.485 + }
1.486 + delete iSubRegion;
1.487 + iSubRegion = NULL;
1.488 + iDirty.Clear();
1.489 + }
1.490 +
1.491 +void TWalkWindowTreeCalcInvalidGraphics::CalcInvalid(CScreen& aScreen)
1.492 + {
1.493 + if(aScreen.RootWindow())
1.494 + {
1.495 + aScreen.RootWindow()->WalkWindowTree(*this,EWalkChildren);
1.496 + if(iRegion->CheckError())
1.497 + {
1.498 + iDirty.ForceError();
1.499 + }
1.500 + }
1.501 + }
1.502 +
1.503 +TBool TWalkWindowTreeCalcInvalidGraphics::CreateSubRegion()
1.504 + {
1.505 + iSubRegion=new RWsRegion;
1.506 + return iSubRegion!=NULL;
1.507 + }
1.508 +
1.509 +TBool TWalkWindowTreeCalcInvalidGraphics::DoIt3(CWsWindow *aWin)
1.510 + {
1.511 + if (!iDirty.CheckError() && aWin->Redraw() &&
1.512 + aWin->Redraw()->Contains(iInvalid,aWin->VisibleRegion()) &&
1.513 + !aWin->Redraw()->RedrawingInProgress())
1.514 + {
1.515 + STACK_REGION intersection;
1.516 + intersection.Intersection(*iSubRegion,aWin->VisibleRegion());
1.517 + iDirty.Union(intersection);
1.518 + intersection.Close();
1.519 + }
1.520 +
1.521 + return iDirty.CheckError(); //causes pessimistic full-screen redraw if failed
1.522 + }
1.523 +
1.524 +#if defined(_DEBUG)
1.525 +
1.526 +TBool TWalkWindowTreeCheck::DoIt(CWsWindow *aWin)
1.527 + {
1.528 + if (aWin->WinType()==EWinTypeRoot)
1.529 + {
1.530 + WS_ASSERT_DEBUG(aWin->BaseParent()==NULL, EWsPanicWindowCheck);
1.531 + WS_ASSERT_DEBUG(aWin->NextSibling()==NULL, EWsPanicWindowCheck);
1.532 + }
1.533 + else
1.534 + {
1.535 + WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowCheck);
1.536 + }
1.537 + if (aWin->BaseChild())
1.538 + {
1.539 + WS_ASSERT_DEBUG(aWin->BaseChild()->BaseParent()==aWin, EWsPanicWindowCheck);
1.540 + }
1.541 + if (aWin->NextSibling())
1.542 + {
1.543 + WS_ASSERT_DEBUG(aWin->NextSibling()->GetPrevSibling()==aWin, EWsPanicWindowCheck);
1.544 + }
1.545 + return(EFalse);
1.546 + }
1.547 +
1.548 +TBool TWalkWindowTreeFindWithFlag::DoIt(CWsWindow *aWin)
1.549 + {
1.550 + if (aWin->iFlags & iFlag)
1.551 + {
1.552 + iFound = aWin;
1.553 + return ETrue;
1.554 + }
1.555 + return EFalse;
1.556 + }
1.557 +
1.558 +#endif
1.559 +
1.560 +#include "wnredraw.h"
1.561 +TWalkWindowTreeRedrawStoreSize::TWalkWindowTreeRedrawStoreSize() : iTotalSize(0)
1.562 + {
1.563 + }
1.564 +
1.565 +TBool TWalkWindowTreeRedrawStoreSize::DoIt(CWsWindow *aWin)
1.566 + {
1.567 + iTotalSize += aWin->Redraw()->SizeInBytes();
1.568 + return EFalse;
1.569 + }
1.570 +
1.571 +
1.572 +TBool TWalkWindowTreeFindByHandle::DoIt(CWsWindow *aWin)
1.573 + {
1.574 + if (aWin->ClientHandle() == iHandle)
1.575 + {
1.576 + iFound = aWin;
1.577 + return ETrue;
1.578 + }
1.579 + return EFalse;
1.580 + }
1.581 +
1.582 +TWalkWindowTreeUpdateRegions::TWalkWindowTreeUpdateRegions(CScreen & aScreen) :
1.583 + iScreen(aScreen)
1.584 + {
1.585 + }
1.586 +
1.587 +void TWalkWindowTreeUpdateRegions::Walk()
1.588 + {
1.589 + STACK_REGION floatingSpriteRgn;
1.590 + iScreen.SpriteManager()->CalcFloatingSpriteRgn( floatingSpriteRgn, iScreen.RootWindow()->AbsRect() );
1.591 + iVisible.AddRect(iScreen.RootWindow()->AbsRect());
1.592 + iTop.AddRect(iScreen.RootWindow()->AbsRect());
1.593 + iRemainsOfFadableScreen.AddRect( iScreen.RootWindow()->AbsRect() );
1.594 + iTop.SubRegion(floatingSpriteRgn);
1.595 + iScreen.RootWindow()->WalkWindowTree(*this, EWalkChildren);
1.596 + iTop.Close();
1.597 + iVisible.Close();
1.598 + iRemainsOfFadableScreen.Close();
1.599 + floatingSpriteRgn.Close();
1.600 + }
1.601 +
1.602 +TBool TWalkWindowTreeUpdateRegions::DoIt(CWsWindow * aWin)
1.603 + {
1.604 + if (aWin->IsVisible() && !iVisible.IsEmpty())
1.605 + {
1.606 + // Calculate the region we care about for this window:
1.607 + STACK_REGION newVisibleRegion;
1.608 + STACK_REGION newFadableRegion;
1.609 + if (aWin->WinType()==EWinTypeRoot)
1.610 + {
1.611 + newVisibleRegion.Copy(iVisible);
1.612 + }
1.613 + else
1.614 + {
1.615 + static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(newVisibleRegion);
1.616 + newVisibleRegion.Intersect(iVisible);
1.617 + if (!aWin->IsTranslucent())
1.618 + {
1.619 + iVisible.SubRegion(newVisibleRegion);
1.620 + }
1.621 + else
1.622 + {
1.623 + STACK_REGION opaque;
1.624 + static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(opaque);
1.625 + iVisible.SubRegion(opaque);
1.626 + opaque.Close();
1.627 + }
1.628 + //If the window has been faded calculate what region actually needs fading
1.629 + //(i.e. subtract what has already been faded)
1.630 + if ( aWin->FadeCount() && !aWin->IsNonFading() && aWin->IsVisible() && !iRemainsOfFadableScreen.IsEmpty() )
1.631 + {
1.632 + newFadableRegion.Copy( newVisibleRegion );
1.633 + newFadableRegion.Intersect( iRemainsOfFadableScreen );
1.634 + }
1.635 + }
1.636 + aWin->SetVisibleRegion(newVisibleRegion, &iTop);
1.637 + aWin->SetFadeableRegion(newFadableRegion, iTop);
1.638 +
1.639 + iRemainsOfFadableScreen.SubRegion( newFadableRegion );
1.640 + newFadableRegion.Close();
1.641 +
1.642 + iTop.SubRegion(newVisibleRegion);
1.643 + newVisibleRegion.Close();
1.644 + }
1.645 + else
1.646 + {
1.647 + if (!aWin->VisibleRegion().IsEmpty())
1.648 + {
1.649 + aWin->ClearVisibleRegion();
1.650 + }
1.651 + }
1.652 + return(EFalse);
1.653 + }
1.654 +
1.655 +TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws():
1.656 + iScheduleRedrawFilter( ERedrawFilterNoFilter )
1.657 + {
1.658 + }
1.659 +
1.660 +TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws( TUint32 aFilter ):
1.661 + iScheduleRedrawFilter( aFilter )
1.662 + {
1.663 + }
1.664 +
1.665 +TBool TWalkWindowTreeScheduleRedraws::DoIt(CWsWindow * aWin)
1.666 + {
1.667 + if (aWin->WinType() != EWinTypeClient || static_cast<CWsClientWindow *>(aWin)->HasBeenDrawnToScreen())
1.668 + {
1.669 + TBool ban = (iScheduleRedrawFilter & ERedrawFilterOmitDSA) && ( aWin->IsDSAHost() );
1.670 + if ( !ban )
1.671 + {
1.672 + aWin->Screen()->AddRedrawRegion(aWin->VisibleRegion());
1.673 + }
1.674 + }
1.675 + return EFalse;
1.676 + }
1.677 +
1.678 +TWalkWindowTreeOffsetTransparentRegions::TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset) :
1.679 + iOffset(aOffset)
1.680 + {
1.681 + }
1.682 +
1.683 +TBool TWalkWindowTreeOffsetTransparentRegions::DoIt(CWsWindow * aWin)
1.684 + {
1.685 + if (aWin != aWin->RootWindow())
1.686 + static_cast<CWsClientWindow *>(aWin)->OffsetUserTransparentRegion(iOffset);
1.687 + return EFalse;
1.688 + }
1.689 +
1.690 +TWalkWindowTreeRecalcOpaque::TWalkWindowTreeRecalcOpaque()
1.691 + {
1.692 + }
1.693 +
1.694 +TBool TWalkWindowTreeRecalcOpaque::DoIt(CWsWindow * aWin)
1.695 + {
1.696 + if (aWin != aWin->RootWindow())
1.697 + static_cast<CWsClientWindow *>(aWin)->SetUserOpaqueRegion();
1.698 + return EFalse;
1.699 + }
1.700 +
1.701 +TWalkWindowTreeSendState::TWalkWindowTreeSendState(MWsWindowTreeObserver& aWindowTreeObserver)
1.702 + : iWindowTreeObserver(aWindowTreeObserver)
1.703 + {
1.704 + }
1.705 +
1.706 +TBool TWalkWindowTreeSendState::DoIt(CWsWindow * aWin)
1.707 + {
1.708 + aWin->SendState(iWindowTreeObserver);
1.709 + return EFalse;
1.710 + }