Update contrib.
1 // Copyright (c) 1995-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.
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"
27 #include "offscreenbitmap.h"
42 CWsWindowRedraw::CWsWindowRedraw(CWsWindow *aWin) : iWsWin(aWin)
46 CWsWindowRedraw::~CWsWindowRedraw()
48 if (iWsWin->WsOwner())
50 iWsWin->WsOwner()->RedrawQueue()->RemoveInvalid(this);
54 void CWsWindowRedraw::ConstructL()
58 void CWsWindowRedraw::ClipInvalidRegion(const TRect &)
62 void CWsWindowRedraw::Resize(const TSize &, const TSize &)
66 void CWsWindowRedraw::SetReply(TInt aReply)
68 iWsWin->WsOwner()->SetReply(aReply);
71 void CWsWindowRedraw::OwnerPanic(TClientPanic aPanic)
73 iWsWin->OwnerPanic(aPanic);
76 CWsBackedUpWindow *CWsWindowRedraw::Backup() const
81 void CWsWindowRedraw::Scroll(const TRect &, const TPoint &,const TRect &)
85 void CWsWindowRedraw::UpdateAnimArea()
89 void CWsWindowRedraw::PrepareForResizeL(const TSize &, TSize &)
93 TBool CWsWindowRedraw::DrawCommand(CWsGc*,const TAny*)
98 void CWsWindowRedraw::GcAttributeChange(CWsGc*,const TAny*)
102 void CWsWindowRedraw::GcDeactivate(CWsGc*)
106 CFbsDevice* CWsWindowRedraw::OutputDevice() const
108 return iWsWin->Screen()->GetFbsDevice();
111 void CWsWindowRedraw::ClientExposing()
115 void CWsWindowRedraw::ClearRedrawStore(TBool)
118 void CWsWindowRedraw::PreDrawWindow(CFbsBitGc* aGc, const TRegion &aRegion)
120 WS_ASSERT_DEBUG(iGlobalRedrawRegion == NULL, EWsPanicScheduledRedraw);
121 iGlobalRedrawRegion = &aRegion;
122 CPlaybackGc::Instance()->SetTargetRegion(iGlobalRedrawRegion);
123 CWsClient::iCurrentCommand.iOpcode=0; // Andy - urgh - loose me please
124 CPlaybackGc::Instance()->Activate(CliWin(), aGc, iGlobalRedrawRegion);
127 void CWsWindowRedraw::PostDrawWindow(CFbsBitGc* aGc)
129 if(CWsTop::IsFadeEnabled() && iWsWin->FadeCount()>0 && !iWsWin->IsNonFading())
131 //x86gcc compiler needs this syntax to perform
132 //multiple inheritance duplicate common base class declaration resolution
133 //combined with the template resolution.
134 MWsGc* objectInterfaceResolver=CPlaybackGc::Instance();
135 MWsFader* fader = objectInterfaceResolver->ObjectInterface<MWsFader>();
138 TFadingParams parameters;
139 iWsWin->GetFadingParams(parameters.blackMap,parameters.whiteMap);
140 TPckgBuf<TFadingParams> buf(parameters);
141 fader->SetFadingParameters(buf);
142 // Only fade the region that hasn't been faded before
144 fdRgn.Copy( *iGlobalRedrawRegion );
145 fdRgn.Intersect( iWsWin->FadableRegion() );
146 fader->FadeArea( aGc, &fdRgn );
151 CPlaybackGc::Instance()->Deactivate();
153 WS_ASSERT_DEBUG(iGlobalRedrawRegion, EWsPanicScheduledRedraw);
154 DrawAnims(aGc, *iGlobalRedrawRegion);
156 CPlaybackGc::Instance()->SetTargetRegion(NULL);
157 iGlobalRedrawRegion = 0;
160 void CWsWindowRedraw::DrawAnims(CFbsBitGc * aGc, const TRegion& aRegion)
162 if (iWsWin->iAnimList)
164 // If an anim panics, it will leave and set the panic flag on the client
165 // The client itself won't actually panic yet, and we don't want to leave from here.
166 TRAP_IGNORE(DrawAnimsL(aGc, aRegion));
169 // Draw standard text cursor if required
170 RWsTextCursor* const cursor = CWsTop::CurrentTextCursor();
171 if (cursor && cursor->Win() == iWsWin && cursor->IsStandardCursorActive())
173 // Standard text cursor is active on this window
174 const TBool flashing = cursor->IsFlashing();
175 TFlashState flashState = EFlashOff;
178 flashState = Screen()->SpriteManager()->CurrentCursorFlashState();
180 if (flashState == EFlashOn || !flashing)
182 // Cursor should be visible, so draw it
184 cursor->Draw(aGc, aRegion);
188 // Reschedule to flash the standard cursor on or off
189 Screen()->ScheduleAnimation(cursor->RectRelativeToScreen(), Screen()->SpriteManager()->NextCursorFlashStateChange(), 0, 0);
193 for (CWsSpriteBase * sprite = iWsWin->iSpriteList; sprite; sprite = sprite->Next())
196 sprite->Redraw(aGc, aRegion);
200 void CWsWindowRedraw::DrawAnimsL(CFbsBitGc * aGc, const TRegion& aRegion)
202 for (CWsAnim * anim = iWsWin->iAnimList; anim; anim = anim->Next())
205 TRAPD(err,anim->Redraw(aGc, &aRegion));
208 anim->Panic(EWservPanicAnimLeave);
213 TBool CWsWindowRedraw::Contains(const TArray<TGraphicDrawerId>& /*aDrawers*/,const TRegion& aRegion) const
215 // if in doubt, assume we do
216 return !aRegion.IsEmpty();
219 TInt CWsWindowRedraw::DrawBackgroundColor(const TRegion* aRegion)
221 if(Screen()->BltOffScreen())
225 TRgb col = BackColor();
226 if (col.Alpha() == 0)
230 TRect abs(CliWin()->AbsRect());
231 abs.Move(-CliWin()->Origin());
232 TBuf8<sizeof(TRect)> cmd;
233 cmd.Copy(reinterpret_cast<TUint8*>(&abs),sizeof(TRect));
234 CPlaybackGc::Instance()->BitGc().SetClippingRegion(aRegion);
235 CPlaybackGc::Instance()->BitGc().SetBrushColor(col);
236 CPlaybackGc::Instance()->BitGc().SetBrushStyle(CGraphicsContext::ESolidBrush);
237 CPlaybackGc::Instance()->BitGc().SetPenStyle(CGraphicsContext::ENullPen);
238 // Andy - this is pretty ridiculous - can't we just draw using the gc?
239 TRAPD(err,CPlaybackGc::Instance()->CommandL(EWsGcOpDrawRect, cmd)); //Should not leave ###
240 CPlaybackGc::Instance()->BitGc().SetDrawMode(CGraphicsContext::EDrawModePEN);
241 CPlaybackGc::Instance()->BitGc().CancelClippingRegion();
245 TBool CWsWindowRedraw::ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel)
250 void CWsWindowRedraw::VisibleRegionChange()
254 TBool CWsWindowRedraw::ReadyToDraw() const
259 void CWsWindowRedraw::WindowClosing()
263 // Blank up window //
266 CWsBlankWindow::CWsBlankWindow(CWsWindow *aWin) : CWsWindowRedraw(aWin), iColor(iWsWin->RootWindow()->DefaultBackgroundColor()), iNoColor(EFalse)
270 CWsBlankWindow::~CWsBlankWindow()
274 void CWsBlankWindow::SetColor(TRgb aColor)
278 Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
281 TBool CWsBlankWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
285 case EWsWinOpSetColor:
288 case EWsWinOpSetNoBackgroundColor:
289 SetBackgroundClear();
297 TRgb CWsBlankWindow::BackColor() const
302 TBool CWsBlankWindow::GetRedrawRect(TRect &) const
304 if (!iNoColor || iWsWin->iAnimList)
305 iWsWin->Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
309 TBool CWsBlankWindow::NeedsRedraw() const
314 void CWsBlankWindow::DrawWindow()
318 DrawBackgroundColor(iGlobalRedrawRegion);