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 // This class deals with drawing from backup bitmap
19 #include "backedupwindow.h"
31 #include "playbackgc.h"
33 CFbsBitGc *CWsBackedUpWindow::iBitGc=NULL;
35 CWsBackedUpWindow::CWsBackedUpWindow(CWsWindow *aWin, TDisplayMode aDisplayMode) : CWsWindowRedraw(aWin), iDisplayMode(aDisplayMode)
38 void CWsBackedUpWindow::StaticInitL()
40 iBitGc=CFbsBitGc::NewL();
43 void CWsBackedUpWindow::StaticDestroy()
49 void CWsBackedUpWindow::ActivateGc()
51 iBitGc->Activate(iBitmapDevice);
53 iBitGc->SetBrushColor(BackColor());
56 TBool CWsBackedUpWindow::DrawCommand(CWsGc*,const TAny*)
58 Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
62 void CWsBackedUpWindow::ConstructL()
64 iDisplayMode=iWsWin->DisplayMode();
65 TSize size=iWsWin->Size();
66 iBitmap=new(ELeave) CFbsBitmap();
67 User::LeaveIfError(iBitmap->Create(size, iDisplayMode));
68 iBitmapDevice=CFbsBitmapDevice::NewL(iBitmap);
72 iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
73 iBitGc->Clear(TRect(size));
74 iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
75 WS_ASSERT_DEBUG(iWsWin->WinType()==EWinTypeClient,EWsPanicWindowType);
78 void CWsBackedUpWindow::PrepareForResizeL(const TSize &aSize, TSize &aOldSize)
80 aOldSize=iBitmapDevice->SizeInPixels();
83 User::LeaveIfError(iBitmapDevice->Resize(aSize));
88 void CWsBackedUpWindow::Resize(const TSize &aSize, const TSize &aOldSize)
91 iBitGc->SetClippingRegion(NULL);
92 iBitGc->Clear(TRect(aOldSize.iWidth, 0, aSize.iWidth, aOldSize.iHeight));
93 iBitGc->Clear(TRect(0, aOldSize.iHeight,aSize.iWidth, aSize.iHeight));
95 static_cast<CWsClientWindow *>(iWsWin)->ReactivateGcs();
98 CWsBackedUpWindow::~CWsBackedUpWindow()
100 delete iBitmapDevice;
104 TBool CWsBackedUpWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
108 case EWsWinOpUpdateBackupBitmap:
110 case EWsWinOpMaintainBackup:
112 case EWsWinOpBitmapHandle:
113 SetReply(iBitmap->Handle());
115 case EWsWinOpUpdateScreen:
117 // Andy - shouldn't this use the base area? Or don't we allow funny shaped
119 TRegionFix<1> fixRegion(iWsWin->AbsRect());
120 Screen()->AddRedrawRegion(fixRegion);
123 case EWsWinOpUpdateScreenRegion:
125 TRegionFix<1> fixRegion(iWsWin->AbsRect());
126 RWsRegion *clientRegion=NULL;
127 TRAPD(err,clientRegion=GetRegionFromClientL(iWsWin->WsOwner(), *aCmd.Int));
130 clientRegion->Offset(iWsWin->Origin());
131 clientRegion->ClipRect(iWsWin->AbsRect());
132 Screen()->AddRedrawRegion(*static_cast<TRegion*>(clientRegion));
133 clientRegion->Destroy();
137 Screen()->AddRedrawRegion(fixRegion);
147 CWsBackedUpWindow *CWsBackedUpWindow::Backup() const
149 return((CWsBackedUpWindow *)this);
152 CFbsDevice* CWsBackedUpWindow::OutputDevice() const
154 return iBitmapDevice;
157 TRgb CWsBackedUpWindow::BackColor() const
159 return(iWsWin->RootWindow()->DefaultBackgroundColor());
162 void CWsBackedUpWindow::Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect)
164 TRect winBorder=TRect(iWsWin->Size());
165 TRect clipRect=aClipRect;
166 TRect srcRect = aRect;
167 clipRect.Intersection(winBorder);
168 if (!clipRect.IsEmpty())
169 { // If we have to do something (a visible part will change)
170 srcRect.Intersection(clipRect);
172 STACK_REGION regionToClear;
173 regionToClear.AddRect(aRect);
174 regionToClear.SubRect(srcRect);
175 regionToClear.Offset(aOffset);
178 iBitGc->SetClippingRect(clipRect);
179 iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
180 iBitGc->CopyRect(aOffset,srcRect);
181 for (TInt k=0;k<regionToClear.Count();k++)
183 iBitGc->Clear(regionToClear[k]);
185 iBitGc->SetClippingRect(winBorder);
186 iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
187 TRegionFix<1> fixRegion(iWsWin->AbsRect());
188 Screen()->AddRedrawRegion(fixRegion);
189 regionToClear.Close();
193 TBool CWsBackedUpWindow::NeedsRedraw() const
198 TBool CWsBackedUpWindow::GetRedrawRect(TRect &) const
203 void CWsBackedUpWindow::SetSizeInTwips()
205 TSize size=iBitmap->SizeInPixels();
206 size.iWidth=Screen()->ScreenDevice()->HorizontalPixelsToTwips(size.iWidth);
207 size.iHeight=Screen()->ScreenDevice()->VerticalPixelsToTwips(size.iHeight);
208 iBitmap->SetSizeInTwips(size);
211 void CWsBackedUpWindow::DrawWindow()
213 CFbsBitGc& gc = CPlaybackGc::Instance()->BitGc();
214 gc.SetUserDisplayMode(iWsWin->DisplayMode());
215 gc.SetOrigin(iWsWin->Origin());
216 gc.SetClippingRegion(iGlobalRedrawRegion);
217 gc.BitBlt(TPoint(0,0), iBitmap);