Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "walkwindowtree.h"
23 TWalkWindowTreeFocusChanged::TWalkWindowTreeFocusChanged(TBool aNewFocusState) :
24 iNewFocusState(aNewFocusState)
28 TBool TWalkWindowTreeFocusChanged::DoIt(CWsWindow *aWin)
30 // Walk all windows that have had their focus state changed
33 aWin->FocusChanged(iNewFocusState);
37 TResumableWalkWindowTreeFindInvalid::TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult) :
42 TBool TResumableWalkWindowTreeFindInvalid::DoIt(CWsWindow* aWin)
44 // Find a window with an invalid area
47 WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowType);
48 CWsWindowRedraw *redraw=((CWsClientWindow *)aWin)->Redraw();
49 if (redraw->NeedsRedraw()>0)
57 TWalkWindowTreeDisconnect::TWalkWindowTreeDisconnect(RWsTextCursor *aCursor) :
61 TBool TWalkWindowTreeDisconnect::DoIt(CWsWindow *aWin)
63 // Disconnect a window
66 if (aWin->WinType()==EWinTypeClient)
68 CWsClientWindow *win=(CWsClientWindow *)aWin;
69 win->iRedraw->WindowClosing();
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().
71 win->SpriteManager()->DeactivateSprites(win);
73 win->DeactivateAllSprites();
76 iTextCursor->WindowDisconnected(win);
77 CWsAnim::WindowClosing(win->iAnimList); // Destroy any animated objects attached to this window
78 TWsPointer::WindowDisconnected(aWin);
83 win->iFlags&=~EFlagActive;
84 win->ResetHiddenFlag();
89 TWalkWindowTreeRegionBase::TWalkWindowTreeRegionBase(RWsRegion *aRegion, TTranslucentBehaviour aTranslucentBehaviour) :
90 iTranslucentBehaviour(aTranslucentBehaviour), iRegion(aRegion), iSubRegion(NULL)
93 TBool TWalkWindowTreeRegionBase::DoIt(CWsWindow *aWin)
95 if (aWin->IsVisible())
98 if (aWin->WinType()!=EWinTypeRoot)
101 switch(iTranslucentBehaviour)
103 case EDontWalkTranslucent:
104 static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(tmp);
105 iRegion->SubRegion(tmp,iSubRegion);
107 case EWalkTranslucent:
108 static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(*iSubRegion);
109 iSubRegion->Intersect(*iRegion);
110 if (iSubRegion->Count() > 0)
112 static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(tmp);
113 iRegion->SubRegion(tmp);
121 iSubRegion->Copy(*iRegion);
123 if (iSubRegion && (iSubRegion->Count()>0 || iSubRegion->CheckError()))
130 return(iRegion->IsEmpty());
132 TBool TWalkWindowTreeRegionBase::DoIt3(CWsWindow*)
135 TWalkWindowTreeSchedule::TWalkWindowTreeSchedule() :
136 TWalkWindowTreeBase(),
141 CWsWindow * TWalkWindowTreeSchedule::HeadWindow() const
146 TWalkWindowListSchedule::TWalkWindowListSchedule(CWsWindow* aHeadWin, TRegion& aScreenUpdateRegion)
147 : TWalkWindowTreeSchedule(), iScreenUpdateRegion(aScreenUpdateRegion)
152 void TWalkWindowListSchedule::WalkWindowList()
154 CWsWindow* win = iHead;
155 CWsWindow* previous = NULL;
160 // Remove win from list, as it doesn't need to be rendered
163 iHead = win->NextScheduled();
167 WS_ASSERT_DEBUG(previous,EWsPanicWindowNull);
168 previous->SetNextScheduled(win->NextScheduled());
175 win = win->NextScheduled();
180 @return ETrue if aWin has content that needs to be rendered, otherwise EFalse.
182 TBool TWalkWindowListSchedule::DoIt(CWsWindow* aWin)
184 if (aWin->IsVisible())
186 //In case we don't have all content, queue a request for the client to provide it.
187 CWsWindowRedraw& redrawWin = *(aWin->Redraw());
188 if(!redrawWin.InvalidArea().IsEmpty())
190 redrawWin.QueueRedraw();
193 //Schedule all we got for now
194 const TBool scheduledWindowContent = DoWindow(*aWin);
195 const TBool scheduledSpriteContent = DoSprites(*aWin);
196 return (scheduledWindowContent || scheduledSpriteContent);
201 TBool TWalkWindowListSchedule::DoWindow(CWsWindow& aWin)
203 if (!aWin.DirtyWindowRegion().IsEmpty())
206 aWin.ScheduleDirtyWindowRegion();
207 //And ensure this part of the screen is updated
208 iScreenUpdateRegion.Union(aWin.ScheduledRegion());
214 TBool TWalkWindowListSchedule::DoSprites(CWsWindow& aWin)
216 if (!aWin.DirtySpriteRegion().IsEmpty())
219 aWin.ScheduleDirtySpriteRegion();
220 //And ensure this part of the screen is updated
221 iScreenUpdateRegion.Union(aWin.ScheduledSpriteRegion());
227 const TRegion& TWalkWindowListSchedule::WindowRegion(const CWsWindow& aWin) const
229 return aWin.ScheduledRegion();
232 const TRegion& TWalkWindowListSchedule::SpriteRegion(const CWsWindow& aWin) const
234 return aWin.ScheduledSpriteRegion();
237 TWalkWindowTreeScheduleRegions::TWalkWindowTreeScheduleRegions(TRegion& aRegion, const TRegion& aTopElement) :
238 TWalkWindowTreeSchedule(),
240 iTopElement(aTopElement),
241 iScheduledRegionsOk(ETrue)
245 // This is similar to TWalkWindowTreeRegionBase::DoIt
246 TBool TWalkWindowTreeScheduleRegions::DoIt(CWsWindow *aWin)
248 WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
249 if (aWin->IsVisible())
251 // Calculate the region we care about for this window:
253 if (aWin->WinType()==EWinTypeRoot)
255 region.Copy(iRegion);
259 static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(region);
260 region.Intersect(iRegion);
262 // If there is a region we care about, remember the window:
263 // NOTE: Even if there are no redraw segments (ReadyToDraw is false) the window should
264 // be scheduled if it has a element so that the background surface is made visible
265 // or if it has some animations which should be redrawn via the PostDrawWindow method (cf def131912)
266 if (!region.IsEmpty() && (aWin->ReadyToDraw() || aWin->HasElement() || aWin->HasAnimation() || aWin->HasSprite()) )
268 // Add window to linked list:
269 aWin->SetNextScheduled(iHead);
271 // Set the window scheduled region to something appropriate:
272 if (iScheduledRegionsOk)
274 if (region.CheckError())
276 iScheduledRegionsOk = EFalse;
280 iScheduledRegionsOk = aWin->SetScheduledRegion(region);
284 if (aWin->WinType()!=EWinTypeRoot)
286 // Remove the opaque part from our working region:
287 STACK_REGION opaqueRegion;
288 static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(opaqueRegion);
289 iRegion.SubRegion(opaqueRegion);
290 opaqueRegion.Close();
292 // Where we were drawing transparent and doing top element only, remove
294 if (!iTopElement.IsEmpty())
296 region.Intersect(iTopElement);
297 iRegion.SubRegion(region);
303 return(iRegion.IsEmpty() || !iScheduledRegionsOk);
306 const TRegion& TWalkWindowTreeScheduleRegions::WindowRegion(const CWsWindow& aWin) const
308 WS_ASSERT_DEBUG(iScheduledRegionsOk, EWsPanicScheduledRedraw);
309 return aWin.ScheduledRegion();
312 const TRegion& TWalkWindowTreeScheduleRegions::SpriteRegion(const CWsWindow& aWin) const
314 //Intentionally returning WindowRegion as TWalkWindowTreeScheduleRegions do not
315 //make use of ScheduledSpriteRegion
316 return aWin.ScheduledRegion();
319 TBool TWalkWindowTreeScheduleRegions::ScheduledRegionsOk() const
321 return iScheduledRegionsOk;
324 TWalkWindowTreeScheduleFallback::TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap) :
325 TWalkWindowTreeSchedule(),
326 iFallbackMap(aFallbackMap)
330 // This is similar to TWalkWindowTreeRegionBase::DoIt
331 TBool TWalkWindowTreeScheduleFallback::DoIt(CWsWindow *aWin)
333 WS_ASSERT_DEBUG((aWin != iHead), EWsPanicScheduledRedraw);
334 if (aWin->IsVisible())
336 if (aWin == aWin->RootWindow())
338 aWin->SetNextScheduled(iHead);
343 TBool addWindow = EFalse;
344 CWsClientWindow* cliWin = static_cast<CWsClientWindow *>(aWin);
345 if (cliWin->IsTranslucent())
347 addWindow = ETrue; // costs more to work out than it is worth
348 const TRegion * opaque = cliWin->GetUserOpaqueRegion();
349 if (opaque && !opaque->CheckError())
350 iFallbackMap->FillRegion(*opaque);
354 addWindow = iFallbackMap->FillRegion(*cliWin->BaseArea());
358 aWin->SetNextScheduled(iHead);
364 return(iFallbackMap->Count() < 1);
367 const TRegion& TWalkWindowTreeScheduleFallback::WindowRegion(const CWsWindow& aWin) const
369 if (&aWin == aWin.RootWindow())
370 return *(iFallbackMap->Region());
373 const CWsClientWindow& win = static_cast<const CWsClientWindow&>(aWin);
374 const TRegion* region = win.VisibleRegionIfValid();
376 region = win.BaseArea();
381 const TRegion& TWalkWindowTreeScheduleFallback::SpriteRegion(const CWsWindow& aWin) const
383 return WindowRegion(aWin);
386 TWalkWindowTreeIsObscured::TWalkWindowTreeIsObscured(TBool &aResult) :
392 TBool TWalkWindowTreeIsObscured::DoIt(CWsWindow *aWin)
394 if (!aWin->VisibleRegion().IsEmpty())
402 TWalkWindowTreeSetupVisibleRegionTracking::TWalkWindowTreeSetupVisibleRegionTracking(TBool aRegister) : iRegister(aRegister)
406 TBool TWalkWindowTreeSetupVisibleRegionTracking::DoIt(CWsWindow *aWin)
408 ASSERT(aWin->WinType() == EWinTypeClient);
409 if(aWin->WinType() == EWinTypeClient)
411 aWin->SetupVisibleRegionTracking(iRegister);
416 TWalkWindowTreeSetNonFading::TWalkWindowTreeSetNonFading(TBool aNonFading) :
417 iNonFading(aNonFading)
419 TBool TWalkWindowTreeSetNonFading::DoIt(CWsWindow *aWin)
421 aWin->SetNonFading(iNonFading);
425 TWalkWindowTreeSetFaded::TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap) :
426 iBlackMap(aBlackMap), iWhiteMap(aWhiteMap), iFaded(aFaded), iGroup(aWin->WinGroup())
430 TBool TWalkWindowTreeSetFaded::DoIt(CWsWindow *aWin)
432 if (aWin->WinGroup()!=iGroup)
435 const TBool KNotifyObserver = ETrue;
436 TBool dummy; //not used in this case
437 ((CWsClientWindow*)aWin)->SetFaded(iFaded, iBlackMap, iWhiteMap, KNotifyObserver, dummy);
441 TWalkWindowTreeSetSystemFaded::TWalkWindowTreeSetSystemFaded(TBool aFaded, CWsWindowBase* aWin, TUint8 aBlackMap, TUint8 aWhiteMap, TBool& aStateChanged) :
442 TWalkWindowTreeSetFaded(aFaded, aWin, aBlackMap, aWhiteMap),
443 iStateChanged(aStateChanged)
447 TBool TWalkWindowTreeSetSystemFaded::DoIt(CWsWindow *aWin)
449 if (aWin->WinGroup()!=iGroup)
452 const TBool KNotifyObserver = EFalse; //don't send fade state change notification
454 TBool stateChanged = EFalse;
455 ((CWsClientWindow*)aWin)->SetFaded(iFaded, iBlackMap, iWhiteMap, KNotifyObserver, stateChanged);
456 iStateChanged = iStateChanged || stateChanged;
461 TWalkWindowTreePurgeEvents::TWalkWindowTreePurgeEvents()
464 TBool TWalkWindowTreePurgeEvents::DoIt(CWsWindow *aWin)
470 TWalkWindowTreeCalcInvalidGraphics::TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid):
471 TWalkWindowTreeRegionBase(aRegion, EWalkTranslucent),
477 void TWalkWindowTreeCalcInvalidGraphics::DestroyRegions()
488 void TWalkWindowTreeCalcInvalidGraphics::CalcInvalid(CScreen& aScreen)
490 if(aScreen.RootWindow())
492 aScreen.RootWindow()->WalkWindowTree(*this,EWalkChildren);
493 if(iRegion->CheckError())
500 TBool TWalkWindowTreeCalcInvalidGraphics::CreateSubRegion()
502 iSubRegion=new RWsRegion;
503 return iSubRegion!=NULL;
506 TBool TWalkWindowTreeCalcInvalidGraphics::DoIt3(CWsWindow *aWin)
508 if (!iDirty.CheckError() && aWin->Redraw() &&
509 aWin->Redraw()->Contains(iInvalid,aWin->VisibleRegion()) &&
510 !aWin->Redraw()->RedrawingInProgress())
512 STACK_REGION intersection;
513 intersection.Intersection(*iSubRegion,aWin->VisibleRegion());
514 iDirty.Union(intersection);
515 intersection.Close();
518 return iDirty.CheckError(); //causes pessimistic full-screen redraw if failed
523 TBool TWalkWindowTreeCheck::DoIt(CWsWindow *aWin)
525 if (aWin->WinType()==EWinTypeRoot)
527 WS_ASSERT_DEBUG(aWin->BaseParent()==NULL, EWsPanicWindowCheck);
528 WS_ASSERT_DEBUG(aWin->NextSibling()==NULL, EWsPanicWindowCheck);
532 WS_ASSERT_DEBUG(aWin->WinType()==EWinTypeClient, EWsPanicWindowCheck);
534 if (aWin->BaseChild())
536 WS_ASSERT_DEBUG(aWin->BaseChild()->BaseParent()==aWin, EWsPanicWindowCheck);
538 if (aWin->NextSibling())
540 WS_ASSERT_DEBUG(aWin->NextSibling()->GetPrevSibling()==aWin, EWsPanicWindowCheck);
545 TBool TWalkWindowTreeFindWithFlag::DoIt(CWsWindow *aWin)
547 if (aWin->iFlags & iFlag)
557 #include "wnredraw.h"
558 TWalkWindowTreeRedrawStoreSize::TWalkWindowTreeRedrawStoreSize() : iTotalSize(0)
562 TBool TWalkWindowTreeRedrawStoreSize::DoIt(CWsWindow *aWin)
564 iTotalSize += aWin->Redraw()->SizeInBytes();
569 TBool TWalkWindowTreeFindByHandle::DoIt(CWsWindow *aWin)
571 if (aWin->ClientHandle() == iHandle)
579 TWalkWindowTreeUpdateRegions::TWalkWindowTreeUpdateRegions(CScreen & aScreen) :
584 void TWalkWindowTreeUpdateRegions::Walk()
586 STACK_REGION floatingSpriteRgn;
587 iScreen.SpriteManager()->CalcFloatingSpriteRgn( floatingSpriteRgn, iScreen.RootWindow()->AbsRect() );
588 iVisible.AddRect(iScreen.RootWindow()->AbsRect());
589 iTop.AddRect(iScreen.RootWindow()->AbsRect());
590 iRemainsOfFadableScreen.AddRect( iScreen.RootWindow()->AbsRect() );
591 iTop.SubRegion(floatingSpriteRgn);
592 iScreen.RootWindow()->WalkWindowTree(*this, EWalkChildren);
595 iRemainsOfFadableScreen.Close();
596 floatingSpriteRgn.Close();
599 TBool TWalkWindowTreeUpdateRegions::DoIt(CWsWindow * aWin)
601 if (aWin->IsVisible() && !iVisible.IsEmpty())
603 // Calculate the region we care about for this window:
604 STACK_REGION newVisibleRegion;
605 STACK_REGION newFadableRegion;
606 if (aWin->WinType()==EWinTypeRoot)
608 newVisibleRegion.Copy(iVisible);
612 static_cast<CWsClientWindow *>(aWin)->GetClippedBaseArea(newVisibleRegion);
613 newVisibleRegion.Intersect(iVisible);
614 if (!aWin->IsTranslucent())
616 iVisible.SubRegion(newVisibleRegion);
621 static_cast<CWsClientWindow *>(aWin)->GetOpaqueClippedBaseArea(opaque);
622 iVisible.SubRegion(opaque);
625 //If the window has been faded calculate what region actually needs fading
626 //(i.e. subtract what has already been faded)
627 if ( aWin->FadeCount() && !aWin->IsNonFading() && aWin->IsVisible() && !iRemainsOfFadableScreen.IsEmpty() )
629 newFadableRegion.Copy( newVisibleRegion );
630 newFadableRegion.Intersect( iRemainsOfFadableScreen );
633 aWin->SetVisibleRegion(newVisibleRegion, &iTop);
634 aWin->SetFadeableRegion(newFadableRegion, iTop);
636 iRemainsOfFadableScreen.SubRegion( newFadableRegion );
637 newFadableRegion.Close();
639 iTop.SubRegion(newVisibleRegion);
640 newVisibleRegion.Close();
644 if (!aWin->VisibleRegion().IsEmpty())
646 aWin->ClearVisibleRegion();
652 TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws():
653 iScheduleRedrawFilter( ERedrawFilterNoFilter )
657 TWalkWindowTreeScheduleRedraws::TWalkWindowTreeScheduleRedraws( TUint32 aFilter ):
658 iScheduleRedrawFilter( aFilter )
662 TBool TWalkWindowTreeScheduleRedraws::DoIt(CWsWindow * aWin)
664 if (aWin->WinType() != EWinTypeClient || static_cast<CWsClientWindow *>(aWin)->HasBeenDrawnToScreen())
666 TBool ban = (iScheduleRedrawFilter & ERedrawFilterOmitDSA) && ( aWin->IsDSAHost() );
669 aWin->Screen()->AddRedrawRegion(aWin->VisibleRegion());
675 TWalkWindowTreeOffsetTransparentRegions::TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset) :
680 TBool TWalkWindowTreeOffsetTransparentRegions::DoIt(CWsWindow * aWin)
682 if (aWin != aWin->RootWindow())
683 static_cast<CWsClientWindow *>(aWin)->OffsetUserTransparentRegion(iOffset);
687 TWalkWindowTreeRecalcOpaque::TWalkWindowTreeRecalcOpaque()
691 TBool TWalkWindowTreeRecalcOpaque::DoIt(CWsWindow * aWin)
693 if (aWin != aWin->RootWindow())
694 static_cast<CWsClientWindow *>(aWin)->SetUserOpaqueRegion();
698 TWalkWindowTreeSendState::TWalkWindowTreeSendState(MWsWindowTreeObserver& aWindowTreeObserver)
699 : iWindowTreeObserver(aWindowTreeObserver)
703 TBool TWalkWindowTreeSendState::DoIt(CWsWindow * aWin)
705 aWin->SendState(iWindowTreeObserver);