First public contribution.
1 // Copyright (c) 1995-2010 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.
14 // Window redraw code, three sorts of redrawing are supported
15 // Sending a redraw message to the client (see redrawmsgwindow.cpp)
16 // Drawing from backup bitmap
17 // Simply clearing the window
23 #include "playbackgc.h"
34 #include <graphics/surface.h>
35 #include <graphics/wselement.h>
36 #include <graphics/wsscreendevice.h>
37 #include "windowelementset.h"
45 CWsWindowRedraw::CWsWindowRedraw(CWsWindow *aWin) : iWsWin(aWin)
49 CWsWindowRedraw::~CWsWindowRedraw()
51 if (iWsWin->WsOwner())
53 iWsWin->WsOwner()->RedrawQueue()->RemoveInvalid(this);
57 iWsWin->Screen()->WindowElements().ReleaseAllElements(*CliWin());
61 void CWsWindowRedraw::ConstructL()
65 const TRegion& CWsWindowRedraw::InvalidArea() const
70 const TRegion &CWsWindowRedraw::BaseDrawRegion() const
72 return(iWsWin->VisibleRegion());
75 void CWsWindowRedraw::ClipInvalidRegion(const TRect &)
79 void CWsWindowRedraw::Resize(const TSize &, const TSize &)
83 void CWsWindowRedraw::SetReply(TInt aReply)
85 iWsWin->WsOwner()->SetReply(aReply);
88 void CWsWindowRedraw::OwnerPanic(TClientPanic aPanic)
90 iWsWin->OwnerPanic(aPanic);
93 CWsBackedUpWindow *CWsWindowRedraw::Backup() const
98 void CWsWindowRedraw::Scroll(const TRect &, const TPoint &,const TRect &)
102 void CWsWindowRedraw::UpdateAnimArea()
106 void CWsWindowRedraw::PrepareForResizeL(const TSize& /* aNewSize */, TSize& /* aOldSize */)
110 TBool CWsWindowRedraw::DrawCommand(CWsGc*,const TAny*)
115 void CWsWindowRedraw::GcAttributeChange(CWsGc*,const TAny*)
119 void CWsWindowRedraw::GcDeactivate(CWsGc*)
123 CFbsDevice* CWsWindowRedraw::OutputDevice() const
128 void CWsWindowRedraw::ClientExposing()
132 void CWsWindowRedraw::ClearRedrawStore(TBool)
135 void CWsWindowRedraw::PreDrawWindow(MWsGraphicsContext* aGc, const TRegion& aWindowRegion)
137 WS_ASSERT_DEBUG(iRedrawRegion == NULL, EWsPanicScheduledRedraw);
138 iRedrawRegion = &aWindowRegion;
139 CPlaybackGc::Instance()->SetTargetRegion(iRedrawRegion);
140 CWsClient::iCurrentCommand.iOpcode=0;
141 CPlaybackGc::Instance()->Activate(CliWin(), aGc, iRedrawRegion);
144 void CWsWindowRedraw::PostDrawWindow(MWsGraphicsContext* aGc, const TRegion& aWindowChildNodeRegion)
146 WS_ASSERT_DEBUG(iRedrawRegion, EWsPanicScheduledRedraw);
147 CPlaybackGc::Instance()->Deactivate();
148 CPlaybackGc::Instance()->SetTargetRegion(NULL);
150 if(!Screen()->ChangeTracking())
152 DoFade(*iRedrawRegion);
155 AnnotateWindowRedrawEnd(*iWsWin);
157 DrawWindowAnims(aGc, aWindowChildNodeRegion);
158 DrawCursorAndSprites(aGc, aWindowChildNodeRegion);
162 void CWsWindowRedraw::Fade(MWsGraphicsContext * aGc, const TRegion& aRegion)
164 LOG_WINDOW_FADE_START(WsWin());
165 AnnotateWindowRedrawStart(*iWsWin, aRegion);
170 AnnotateWindowRedrawEnd(*iWsWin);
171 LOG_WINDOW_FADE_END(WsWin());
174 void CWsWindowRedraw::DoFade(const TRegion& aRegion)
176 if( CWsTop::IsFadeEnabled() && iWsWin && iWsWin->FadeCount()>0 && !(iWsWin->IsNonFading()) && !(iWsWin->FadableRegion().IsEmpty()) && !(iWsWin->IsDSAHost()) )
178 MWsFader* fader = static_cast<MWsFader*>(iWsWin->Screen()->ResolveObjectInterface(KMWsFader));
181 TFadingParams parameters;
182 iWsWin->GetFadingParams(parameters.blackMap,parameters.whiteMap);
183 TPckgBuf<TFadingParams> buf(parameters);
184 fader->SetFadingParameters(buf);
185 // Only fade the region that hasn't been faded before
187 fdRgn.Copy( aRegion );
188 fdRgn.Intersect( iWsWin->FadableRegion() );
189 if(!fdRgn.CheckError())
191 fader->FadeArea( fdRgn );
192 LOG_WINDOW_FADE_REGION(&fdRgn);
199 void CWsWindowRedraw::DrawWindowAnims(MWsGraphicsContext * aGc, const TRegion& aRegion)
201 if (iWsWin->iAnimList)
203 // If an anim panics, it will leave and set the panic flag on the client
204 // The client itself won't actually panic yet, and we don't want to leave from here.
205 TRAP_IGNORE(DrawWindowAnimsL(aGc, aRegion));
209 void CWsWindowRedraw::DrawWindowAnimsL(MWsGraphicsContext * aGc, const TRegion& aRegion)
211 for (CWsAnim * anim = iWsWin->iAnimList; anim; anim = anim->Next())
213 AnnotateWindowAnimRedrawStart(*iWsWin, *anim, aRegion);
216 TRAPD(err,anim->RedrawWindowAnimL(Screen()->Now(), aGc, &aRegion));
219 AnnotateWindowAnimRedrawEnd(*iWsWin, *anim);
220 anim->Panic(EWservPanicAnimLeave);
224 AnnotateWindowAnimRedrawEnd(*iWsWin, *anim);
228 void CWsWindowRedraw::DrawCursorAndSprites(MWsGraphicsContext * aGc, const TRegion& aRegion)
230 // Draw standard text cursor if required
231 RWsTextCursor* const cursor = CWsTop::CurrentTextCursor();
232 if (!iWsWin->Screen()->ChangeTracking() && cursor && cursor->Win() == iWsWin && cursor->IsStandardCursorActive())
234 // Standard text cursor is active on this window
235 const TBool flashing = cursor->IsFlashing();
236 TFlashState flashState = EFlashOn;
239 flashState = cursor->CurrentCursorFlashState();
241 if (flashState == EFlashOn)
243 // Cursor should be visible, so draw it
244 cursor->Draw(aRegion);
248 // Reschedule to flash the standard cursor on or off
249 Screen()->ScheduleAnimation(ETextCursor, cursor->RectRelativeToScreen(), Screen()->SpriteManager()->NextCursorFlashStateChange(), 0, 0, iWsWin);
253 for (CWsSpriteBase * sprite = iWsWin->iSpriteList; sprite; sprite = sprite->Next())
255 TBool hasRedrawBegun = EFalse;
256 STACK_REGION redrawRegion;
257 sprite->CalcRedrawRegion(aRegion, redrawRegion);
258 if(redrawRegion.CheckError() || !redrawRegion.IsEmpty())
260 if (sprite->IsFlashingEnabled() || sprite->IsDirty() || sprite->HasAnimation())
262 if (sprite->IsDirty() || sprite->HasAnimation())
264 AnnotateSpriteRedrawStart(*iWsWin, *sprite, redrawRegion);
265 hasRedrawBegun = ETrue;
268 if(sprite->HasAnimation())
270 CWsAnim* anim = static_cast<CWsSprite*>(sprite)->iAnim;
271 WS_ASSERT_DEBUG(anim,EWsPanicAnim);
274 TRAPD(err, anim->AnimateSpriteAnimL(Screen()->Now()));
277 AnnotateSpriteRedrawEnd(*iWsWin, *sprite);
278 anim->Panic(EWservPanicAnimLeave);
283 //...call Redraw on the sprite
288 sprite->Redraw(aGc, redrawRegion);
292 AnnotateSpriteRedrawEnd(*iWsWin, *sprite);
296 redrawRegion.Close();
300 TBool CWsWindowRedraw::Contains(const TArray<TGraphicDrawerId>& /*aDrawers*/,const TRegion& aRegion) const
302 // if in doubt, assume we do
303 return !aRegion.IsEmpty();
306 TInt CWsWindowRedraw::DrawBackgroundColor(const TRegion& aRegion, TBool aDoFillColor)
308 if (BackColor().Alpha() == 0 && !HasElement())
311 if(aRegion.IsEmpty())
314 TRect winAbs(CliWin()->AbsRect()); //fill size for background color fill
315 TRect surfaceAbs(0,0,0,0); //fill size for background surface fill - initially disabled
319 TBackgroundAttributes* backgroundAttributes = CliWin()->Screen()->WindowElements().FindBackgroundElement(*CliWin());
320 WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
322 if (backgroundAttributes->iElement)
324 if (backgroundAttributes->ExplicitExtent())
326 backgroundAttributes->iElement->GetDestinationRectangle(surfaceAbs);
327 surfaceAbs.Intersection(winAbs);
328 if (surfaceAbs==winAbs)
330 winAbs.iBr.iX=winAbs.iTl.iX; //disable background color fill
336 winAbs.iBr.iX=winAbs.iTl.iX; //disable background color fill
341 winAbs.iBr.iX=winAbs.iTl.iX; //disable background color fill
345 CPlaybackGc* playback = CPlaybackGc::Instance();
346 MWsGraphicsContext* gc = static_cast<MWsGraphicsContext*>(playback->ResolveObjectInterface(KMWsGraphicsContext));
347 gc->SetClippingRegion(aRegion);
348 gc->SetBrushStyle(MWsGraphicsContext::ESolidBrush);
349 gc->SetPenStyle(MWsGraphicsContext::ENullPen);
351 if (!winAbs.IsEmpty())
353 gc->SetBrushColor(BackColor());
354 gc->DrawRect(winAbs);
356 if (!surfaceAbs.IsEmpty())
358 gc->SetDrawMode(MWsGraphicsContext::EDrawModeWriteAlpha);
359 gc->SetBrushColor(TRgb(0,0,0,0));
360 gc->DrawRect(surfaceAbs);
361 gc->SetBrushColor(BackColor()); //leave in a sensible state
362 gc->SetDrawMode(MWsGraphicsContext::EDrawModePEN);
364 gc->ResetClippingRegion();
368 TBool CWsWindowRedraw::ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel)
373 void CWsWindowRedraw::VisibleRegionChange()
377 TBool CWsWindowRedraw::ReadyToDraw() const
382 TBool CWsWindowRedraw::RedrawingInProgress() const
387 void CWsWindowRedraw::WindowClosing()
389 ReleaseBackgroundElement();
392 TBool CWsWindowRedraw::HasDsaElement() const
394 TBool hasDsaElement = EFalse;
398 CWsClientWindow* cliWin = CliWin();
399 CWindowElementSet& set = cliWin->Screen()->WindowElements();
400 TBackgroundAttributes* backgroundAttributes = set.FindBackgroundElement(*cliWin);
401 WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
403 if (backgroundAttributes->iElement)
405 MWsElement& element = *(backgroundAttributes->iElement);
406 hasDsaElement = (element.ConnectedSurface() == cliWin->Screen()->DsaSurface());
410 return hasDsaElement;
413 void CWsWindowRedraw::SetDsaElementL()
415 TRect extent(TPoint(0,0), WsWin()->Screen()->DSASizeInPixels());
416 MWsDisplayMapping *dispMap = WsWin()->Screen()->DisplayMapping();
421 dispMap->MapCoordinates(EDirectScreenAccessSpace,extent,EApplicationSpace,extentOut);
422 //DSA extent in application space intersects window extent in application space
423 extentOut.Intersection(WsWin()->FullRect());
424 if(extentOut.IsEmpty())
426 extentOut.SetRect(0,0,0,0);
428 //use DSA coordinates to determine the viewport
429 dispMap->MapCoordinates(EApplicationSpace, extentOut, EDirectScreenAccessSpace, extentInDSA);
434 extentInDSA = extent;
435 extentOut.Intersection(WsWin()->FullRect());
437 if (!HasDsaElement())
439 WsWin()->Screen()->ClearDsaSurface(extent, BackColor());
442 TSurfaceConfiguration sc;
443 sc.SetSurfaceId(WsWin()->Screen()->DsaSurface());
444 sc.SetExtent(extentOut.Size());
445 sc.SetViewport(extentInDSA);
447 SetBackgroundSurfaceL(sc, ETrue, ETrue);
450 TBackgroundAttributes& CWsWindowRedraw::AcquireBackgroundElementL()
452 // Only client windows can have elements set
453 WS_ASSERT_DEBUG(iWsWin->WinType() == EWinTypeClient,EWsPanicWindowType);
454 CWsClientWindow* cliWin = static_cast<CWsClientWindow*>(iWsWin);
455 CScreen* screen = cliWin->Screen();
456 WS_ASSERT_DEBUG(screen,EWsPanicNoScreen);
458 CWindowElementSet& set = screen->WindowElements();
459 SetHasElement(EFalse);
460 TBackgroundAttributes& backgroundAttributes = set.AcquireBackgroundElementL(*cliWin);
461 MWsElement& element = *(backgroundAttributes.iElement);
462 element.SetGlobalAlpha(cliWin->IsVisible() ? 0xFF : 0);
463 SetHasElement(ETrue);
464 screen->ElementAdded();
466 return backgroundAttributes;
469 void CWsWindowRedraw::SetBackgroundSurfaceL(const TSurfaceId& aSurface)
471 if (aSurface.Type() == TSurfaceId::EScreenSurface || aSurface.IsNull())
473 OwnerPanic(EWservPanicInvalidSurface);
476 CWsClientWindow* cliWin = CliWin();
477 CScreen* screen = cliWin->Screen();
478 CWindowElementSet& set = screen->WindowElements();
479 TBackgroundAttributes& backgroundAttributes = AcquireBackgroundElementL();
480 MWsElement& element = *(backgroundAttributes.iElement);
481 TInt err = set.RegisterSurface(aSurface);
484 ReleaseBackgroundElement();
487 err = element.ConnectSurface(aSurface);
490 set.UnregisterSurface(aSurface);
491 ReleaseBackgroundElement();
495 TRect winExtent = cliWin->FullRect();
496 element.SetDestinationRectangle(winExtent);
498 // By default Element's source rectangle is set to its surface rectangle
500 element.GetSourceRectangle(srcRect);
501 cliWin->SetOriginalSrcElementRect(srcRect);
502 cliWin->SetOriginalDestElementRect(winExtent);
504 SetMayContainElementFlags();
506 MWsWindowTreeObserver* windowTreeObserver = Screen()->WindowTreeObserver();
507 if (windowTreeObserver)
509 windowTreeObserver->ElementAdded(*iWsWin, element);
513 void CWsWindowRedraw::SetBackgroundSurfaceL(const TSurfaceConfiguration& aConfiguration, TBool aTriggerRedraw, TBool aAllowScreenSurface)
515 if (aConfiguration.Size() < sizeof(TSurfaceConfiguration))
517 __ASSERT_COMPILE(sizeof(TSurfaceConfiguration2)==sizeof(TSurfaceConfiguration));
518 if (aConfiguration.Size() != sizeof(TSurfaceConfiguration1))
520 OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
524 TSurfaceId surfaceId;
525 aConfiguration.GetSurfaceId(surfaceId);
526 if ((surfaceId.Type() == TSurfaceId::EScreenSurface && !aAllowScreenSurface) || surfaceId.IsNull())
528 OwnerPanic(EWservPanicInvalidSurface);
531 CFbsBitGc::TGraphicsOrientation tempOrientation = aConfiguration.Orientation();
532 __ASSERT_COMPILE(CFbsBitGc::EGraphicsOrientationNormal==0 &&
533 CFbsBitGc::EGraphicsOrientationRotated270 == 3);
534 if(tempOrientation < CFbsBitGc::EGraphicsOrientationNormal ||
535 tempOrientation > CFbsBitGc::EGraphicsOrientationRotated270)
537 OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
540 CWsClientWindow* cliWin = CliWin();
541 CScreen* screen = cliWin->Screen();
542 __ASSERT_DEBUG(screen, Panic(EWsPanicNoScreen));
544 CWindowElementSet& set = screen->WindowElements();
545 TBool mustRegister = ETrue;
546 TRect oldExtent(0,0,0,0);
547 MWsElement::TElementRotation oldRotation = MWsElement::EElementAntiClockwise0;
548 TBool oldFlip = EFalse;
549 TRect oldViewport(0,0,0,0);
550 TSurfaceId oldSurfaceId = TSurfaceId::CreateNullId();
552 // If a element has already been set
555 TBackgroundAttributes* backgroundAttributes = set.FindBackgroundElement(*cliWin);
556 WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
558 if (backgroundAttributes->iElement)
560 MWsElement& element = *(backgroundAttributes->iElement);
561 element.GetDestinationRectangle(oldExtent);
562 element.GetSourceRectangle(oldViewport);
563 oldRotation = element.SourceRotation();
564 oldFlip = element.SourceFlipping();
565 oldSurfaceId = element.ConnectedSurface();
566 mustRegister = EFalse;
567 // If it is a different surface, flag to register the new surface
568 if (element.ConnectedSurface() != surfaceId)
570 mustRegister = ETrue;
575 //the call to AcquireBackgroundElementL() will remove any existing background element
576 TBackgroundAttributes& backgroundAttributes = mustRegister ?
577 AcquireBackgroundElementL() : *(set.FindBackgroundElement(*cliWin));
578 MWsElement& element = *(backgroundAttributes.iElement);
582 err = set.RegisterSurface(surfaceId);
586 // Invalid surface IDs have to return KErrArgument
591 ReleaseBackgroundElement();
596 // No need to release layer here since session closure will do it
597 // automatically when the client thread is panicked.
598 OwnerPanic(EWservPanicInvalidSurface);
601 err = element.ConnectSurface(surfaceId);
604 set.UnregisterSurface(surfaceId);
605 ReleaseBackgroundElement(); //Releasing new empty element
609 if (screen->DsaSurface() == surfaceId)
612 element.GetRenderStageFlags(flags);
613 flags |= MWsElement::EElementIsDirectlyRenderedUserInterface;
614 element.SetRenderStageFlags(flags);
618 SetHasElement(ETrue); //set element flag
619 SetMayContainElementFlags();
621 err = CWindowElement::SetElement(element,aConfiguration,ETrue); //set viewport and orientation
622 if (err == KErrArgument)
624 OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
627 aConfiguration.GetViewport(srcRect);
628 if (!srcRect.IsEmpty())
629 backgroundAttributes.SetExplicitViewPort();
630 element.GetSourceRectangle(srcRect);
631 cliWin->SetOriginalSrcElementRect(srcRect);
635 aConfiguration.GetExtent(newExtent);
636 SetElementExtentL(newExtent, backgroundAttributes);
637 cliWin->SetOriginalDestElementRect(newExtent);
639 MWsWindowTreeObserver* windowTreeObserver = Screen()->WindowTreeObserver();
640 if (windowTreeObserver && mustRegister)
642 windowTreeObserver->ElementAdded(*iWsWin, element);
649 aConfiguration.GetViewport(newViewport);
650 CFbsBitGc::TGraphicsOrientation orientation = aConfiguration.Orientation();
651 MWsElement::TElementRotation newRotation = GcToElementRotation(orientation);
652 TBool newFlip = aConfiguration.Flip();
654 //The following parameter guarantees that update will be scheduled.
655 //This will trigger the composition.
656 TBool alwaysScheduleUpdate = (oldSurfaceId != surfaceId) ||
657 (oldExtent != newExtent) ||
658 (oldViewport != newViewport) ||
659 (oldRotation != newRotation)||
660 (oldFlip != newFlip);
662 ElementRedraw(oldExtent,newExtent,alwaysScheduleUpdate);
667 Sets the EMayContainElement flag for parent window.
668 Sets the flag for all ancestor windows.
670 void CWsWindowRedraw::SetMayContainElementFlags()
672 CWsWindowBase* parent = CliWin()->BaseParent();
673 TInt type = parent->WinType();
674 while(type ==EWinTypeClient)
676 CWsClientWindow* win = static_cast<CWsClientWindow*>(parent);
677 win->Redraw()->iStateFlags |= EMayContainElement;
678 parent=parent->BaseParent();
679 type = parent->WinType();
683 void CWsWindowRedraw::SetElementExtentL(TRect& aNewExtent, TBackgroundAttributes& aAttributes)
685 CWsClientWindow* cliWin = CliWin();
686 MWsElement& element = *(aAttributes.iElement);
687 if (aNewExtent.IsEmpty())
689 aNewExtent = cliWin->FullRect();
690 aAttributes.SetExplicitExtent(EFalse);
694 TRect tempWindowPosition = cliWin->FullRect(); //get window absolute coordinates
695 aNewExtent.Move(tempWindowPosition.iTl); //shift user defined extent to absolute coordinates
696 aAttributes.SetExplicitExtent(ETrue);
698 element.SetDestinationRectangle(aNewExtent);
701 void CWsWindowRedraw::ElementRedraw(const TRect& aOldExtent, const TRect& aNewExtent, TBool aAlwaysScheduleUpdate)
703 if (!aOldExtent.IsEmpty())
705 //If the previous extent was different
706 if (aOldExtent != aNewExtent)
708 STACK_REGION tempRegion;
709 tempRegion.AddRect(aOldExtent);
710 tempRegion.AddRect(aNewExtent);
712 //Calculate the difference between
713 TRect tempRect = aOldExtent;
714 tempRect.Intersection(aNewExtent); //intersect both regions
715 tempRegion.SubRect(tempRect); //cut unaltered region
716 Screen()->ScheduleRegionUpdate(&tempRegion);
722 if(aAlwaysScheduleUpdate)
724 TTimeIntervalMicroSeconds interval(0);
725 Screen()->ScheduleRender(interval);
731 TRegionFix<1> region(aNewExtent);
732 Screen()->ScheduleRegionUpdate(®ion);
736 void CWsWindowRedraw::RemoveBackgroundSurface(TBool aTriggerRedraw)
740 TBackgroundAttributes* backgroundAttributes = CliWin()->Screen()->
741 WindowElements().FindBackgroundElement(*CliWin());
742 WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
743 if (backgroundAttributes->iElement)
745 RemoveBackgroundElement(aTriggerRedraw);
750 void CWsWindowRedraw::RemoveBackgroundElement(TBool aTriggerRedraw)
752 CWsClientWindow* cliWin = CliWin();
753 CScreen* screen = cliWin->Screen();
757 TBackgroundAttributes* backgroundAttributes = screen->WindowElements().FindBackgroundElement(*CliWin());
758 WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
759 if (backgroundAttributes->ExplicitExtent())
761 backgroundAttributes->iElement->GetDestinationRectangle(tempRect);
762 backgroundAttributes->SetExplicitExtent(EFalse);
766 tempRect = cliWin->FullRect();
769 ReleaseBackgroundElement();
772 if (screen->ChangeTracking())
774 TTimeIntervalMicroSeconds interval(0);
775 screen->ScheduleRender(interval);
779 TRegionFix<1> region(tempRect);
780 screen->ScheduleRegionUpdate(®ion);
785 void CWsWindowRedraw::GetBackgroundSurfaceL(TSurfaceConfiguration& aConfiguration)
787 if (aConfiguration.Size() < sizeof(TSurfaceConfiguration))
789 __ASSERT_COMPILE(sizeof(TSurfaceConfiguration2)==sizeof(TSurfaceConfiguration));
790 if (aConfiguration.Size() != sizeof(TSurfaceConfiguration1))
792 OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
796 CWsClientWindow* cliWin = CliWin();
797 TBackgroundAttributes* backgroundAttributes = NULL;
801 backgroundAttributes = cliWin->Screen()->WindowElements().FindBackgroundElement(*cliWin);
802 WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
803 if (!backgroundAttributes->iElement)
805 User::Leave(KErrNotFound);
810 User::Leave(KErrNotFound);
813 MWsElement& element = *(backgroundAttributes->iElement);
815 TInt errCode=CWindowElementSet::GetConfiguration(aConfiguration,element);
818 if (errCode>=KErrNone)
820 if (!backgroundAttributes->ExplicitViewPort())
822 aConfiguration.SetViewport(TRect());
826 TRect tempExtent = cliWin->GetOriginalSrcElementRect();
827 aConfiguration.SetViewport(tempExtent);
831 //Convert and copy extent
832 if (errCode>=KErrNone)
834 if (!backgroundAttributes->ExplicitExtent())
836 aConfiguration.SetExtent(TRect());
838 else //translate to window coordinates
840 TRect tempExtent = cliWin->GetOriginalDestElementRect();
841 tempExtent.Move(-cliWin->Origin());
842 aConfiguration.SetExtent(tempExtent);
847 void CWsWindowRedraw::ReleaseBackgroundElement()
851 CWsClientWindow* cliWin = CliWin();
852 CScreen* screen = cliWin->Screen();
853 screen->WindowElements().ReleaseBackgroundElement(*cliWin, ETrue);
854 screen->ElementRemoved();
862 CWsBlankWindow::CWsBlankWindow(CWsWindow *aWin) : CWsWindowRedraw(aWin), iColor(iWsWin->RootWindow()->DefaultBackgroundColor()), iNoColor(EFalse)
866 CWsBlankWindow::~CWsBlankWindow()
870 void CWsBlankWindow::ConstructL()
872 CWsWindowRedraw::ConstructL();
873 if (Screen()->ChangeTracking())
875 STACK_REGION dirtyRegion;
876 dirtyRegion.Copy(iWsWin->WindowArea());
877 dirtyRegion.Offset(-iWsWin->Origin());
878 iWsWin->AddDirtyWindowRegion(dirtyRegion);
883 void CWsBlankWindow::SetColor(TRgb aColor)
887 if (Screen()->ChangeTracking())
889 STACK_REGION dirtyRegion;
890 dirtyRegion.Copy(iWsWin->WindowArea());
891 dirtyRegion.Offset(-iWsWin->Origin());
892 iWsWin->AddDirtyWindowRegion(dirtyRegion);
895 if (iWsWin->IsActive() && iWsWin->IsVisible())
897 Screen()->ScheduleWindow(iWsWin);
902 Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
906 TBool CWsBlankWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
910 case EWsWinOpSetBackgroundSurface:
911 SetBackgroundSurfaceL(*aCmd.Surface);
913 case EWsWinOpSetBackgroundSurfaceConfig:
914 SetBackgroundSurfaceL(aCmd.SurfaceConfigurationAndTrigger->surfaceConfig, aCmd.SurfaceConfigurationAndTrigger->triggerRedraw, EFalse);
916 case EWsWinOpRemoveBackgroundSurface:
917 RemoveBackgroundSurface(*aCmd.Bool);
919 case EWsWinOpGetBackgroundSurfaceConfig:
921 TSurfaceConfiguration tempConfiguration = *aCmd.SurfaceConfiguration;
922 GetBackgroundSurfaceL(tempConfiguration);
923 TInt tempSize = aCmd.SurfaceConfiguration->Size();
924 if (sizeof(TSurfaceConfiguration)<tempSize)
925 tempSize = sizeof(TSurfaceConfiguration);
926 CWsClient::ReplyBuf(&tempConfiguration,tempSize);
929 case EWsWinOpSetColor:
932 case EWsWinOpSetNoBackgroundColor:
933 SetBackgroundClear();
941 TRgb CWsBlankWindow::BackColor() const
946 TBool CWsBlankWindow::GetRedrawRect(TRect &) const
948 if (!iNoColor || iWsWin->iAnimList)
949 iWsWin->Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
953 TBool CWsBlankWindow::NeedsRedraw() const
958 void CWsBlankWindow::DrawWindow()
960 if ((!iNoColor)||HasElement())
962 DrawBackgroundColor(*iRedrawRegion,!iNoColor);