sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Window redraw code, three sorts of redrawing are supported sl@0: // This class deals with drawing from backup bitmap sl@0: // sl@0: // sl@0: sl@0: #include "backedupwindow.h" sl@0: #include "server.h" sl@0: #include "gc.h" sl@0: #include "wstop.h" sl@0: #include "ANIM.H" sl@0: #include "EVQUEUE.H" sl@0: #include sl@0: #include sl@0: #include "panics.h" sl@0: #include "inifile.h" sl@0: #include "rootwin.h" sl@0: #include "EVENT.H" sl@0: #include "playbackgc.h" sl@0: sl@0: CFbsBitGc *CWsBackedUpWindow::iBitGc=NULL; sl@0: sl@0: CWsBackedUpWindow::CWsBackedUpWindow(CWsWindow *aWin, TDisplayMode aDisplayMode) : CWsWindowRedraw(aWin), iDisplayMode(aDisplayMode) sl@0: {} sl@0: sl@0: void CWsBackedUpWindow::StaticInitL() sl@0: { sl@0: iBitGc=CFbsBitGc::NewL(); sl@0: } sl@0: sl@0: void CWsBackedUpWindow::StaticDestroy() sl@0: { sl@0: delete iBitGc; sl@0: iBitGc = 0; sl@0: } sl@0: sl@0: void CWsBackedUpWindow::ActivateGc() sl@0: { sl@0: iBitGc->Activate(iBitmapDevice); sl@0: iBitGc->Reset(); sl@0: iBitGc->SetBrushColor(BackColor()); sl@0: } sl@0: sl@0: TBool CWsBackedUpWindow::DrawCommand(CWsGc*,const TAny*) sl@0: { sl@0: Screen()->AddRedrawRegion(iWsWin->VisibleRegion()); sl@0: return ETrue; sl@0: } sl@0: sl@0: void CWsBackedUpWindow::ConstructL() sl@0: { sl@0: iDisplayMode=iWsWin->DisplayMode(); sl@0: TSize size=iWsWin->Size(); sl@0: iBitmap=new(ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(iBitmap->Create(size, iDisplayMode)); sl@0: iBitmapDevice=CFbsBitmapDevice::NewL(iBitmap); sl@0: SetSizeInTwips(); sl@0: // sl@0: ActivateGc(); sl@0: iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha); sl@0: iBitGc->Clear(TRect(size)); sl@0: iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN); sl@0: WS_ASSERT_DEBUG(iWsWin->WinType()==EWinTypeClient,EWsPanicWindowType); sl@0: } sl@0: sl@0: void CWsBackedUpWindow::PrepareForResizeL(const TSize &aSize, TSize &aOldSize) sl@0: { sl@0: aOldSize=iBitmapDevice->SizeInPixels(); sl@0: if (aOldSize!=aSize) sl@0: { sl@0: User::LeaveIfError(iBitmapDevice->Resize(aSize)); sl@0: SetSizeInTwips(); sl@0: } sl@0: } sl@0: sl@0: void CWsBackedUpWindow::Resize(const TSize &aSize, const TSize &aOldSize) sl@0: { sl@0: ActivateGc(); sl@0: iBitGc->SetClippingRegion(NULL); sl@0: iBitGc->Clear(TRect(aOldSize.iWidth, 0, aSize.iWidth, aOldSize.iHeight)); sl@0: iBitGc->Clear(TRect(0, aOldSize.iHeight,aSize.iWidth, aSize.iHeight)); sl@0: sl@0: static_cast(iWsWin)->ReactivateGcs(); sl@0: } sl@0: sl@0: CWsBackedUpWindow::~CWsBackedUpWindow() sl@0: { sl@0: delete iBitmapDevice; sl@0: delete iBitmap; sl@0: } sl@0: sl@0: TBool CWsBackedUpWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd) sl@0: { sl@0: switch(aOpcode) sl@0: { sl@0: case EWsWinOpUpdateBackupBitmap: sl@0: break; sl@0: case EWsWinOpMaintainBackup: sl@0: break; sl@0: case EWsWinOpBitmapHandle: sl@0: SetReply(iBitmap->Handle()); sl@0: break; sl@0: case EWsWinOpUpdateScreen: sl@0: { sl@0: // Andy - shouldn't this use the base area? Or don't we allow funny shaped sl@0: // backup windows? sl@0: TRegionFix<1> fixRegion(iWsWin->AbsRect()); sl@0: Screen()->AddRedrawRegion(fixRegion); sl@0: } sl@0: break; sl@0: case EWsWinOpUpdateScreenRegion: sl@0: { sl@0: TRegionFix<1> fixRegion(iWsWin->AbsRect()); sl@0: RWsRegion *clientRegion=NULL; sl@0: TRAPD(err,clientRegion=GetRegionFromClientL(iWsWin->WsOwner(), *aCmd.Int)); sl@0: if (err==KErrNone) sl@0: { sl@0: clientRegion->Offset(iWsWin->Origin()); sl@0: clientRegion->ClipRect(iWsWin->AbsRect()); sl@0: Screen()->AddRedrawRegion(*static_cast(clientRegion)); sl@0: clientRegion->Destroy(); sl@0: } sl@0: else sl@0: { sl@0: Screen()->AddRedrawRegion(fixRegion); sl@0: } sl@0: } sl@0: break; sl@0: default: sl@0: return(EFalse); sl@0: } sl@0: return(ETrue); sl@0: } sl@0: sl@0: CWsBackedUpWindow *CWsBackedUpWindow::Backup() const sl@0: { sl@0: return((CWsBackedUpWindow *)this); sl@0: } sl@0: sl@0: CFbsDevice* CWsBackedUpWindow::OutputDevice() const sl@0: { sl@0: return iBitmapDevice; sl@0: } sl@0: sl@0: TRgb CWsBackedUpWindow::BackColor() const sl@0: { sl@0: return(iWsWin->RootWindow()->DefaultBackgroundColor()); sl@0: } sl@0: sl@0: void CWsBackedUpWindow::Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect) sl@0: { sl@0: TRect winBorder=TRect(iWsWin->Size()); sl@0: TRect clipRect=aClipRect; sl@0: TRect srcRect = aRect; sl@0: clipRect.Intersection(winBorder); sl@0: if (!clipRect.IsEmpty()) sl@0: { // If we have to do something (a visible part will change) sl@0: srcRect.Intersection(clipRect); sl@0: sl@0: STACK_REGION regionToClear; sl@0: regionToClear.AddRect(aRect); sl@0: regionToClear.SubRect(srcRect); sl@0: regionToClear.Offset(aOffset); sl@0: sl@0: ActivateGc(); sl@0: iBitGc->SetClippingRect(clipRect); sl@0: iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha); sl@0: iBitGc->CopyRect(aOffset,srcRect); sl@0: for (TInt k=0;kClear(regionToClear[k]); sl@0: } sl@0: iBitGc->SetClippingRect(winBorder); sl@0: iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN); sl@0: TRegionFix<1> fixRegion(iWsWin->AbsRect()); sl@0: Screen()->AddRedrawRegion(fixRegion); sl@0: regionToClear.Close(); sl@0: } sl@0: } sl@0: sl@0: TBool CWsBackedUpWindow::NeedsRedraw() const sl@0: { sl@0: return(EFalse); sl@0: } sl@0: sl@0: TBool CWsBackedUpWindow::GetRedrawRect(TRect &) const sl@0: { sl@0: return(EFalse); sl@0: } sl@0: sl@0: void CWsBackedUpWindow::SetSizeInTwips() sl@0: { sl@0: TSize size=iBitmap->SizeInPixels(); sl@0: size.iWidth=Screen()->ScreenDevice()->HorizontalPixelsToTwips(size.iWidth); sl@0: size.iHeight=Screen()->ScreenDevice()->VerticalPixelsToTwips(size.iHeight); sl@0: iBitmap->SetSizeInTwips(size); sl@0: } sl@0: sl@0: void CWsBackedUpWindow::DrawWindow() sl@0: { sl@0: CFbsBitGc& gc = CPlaybackGc::Instance()->BitGc(); sl@0: gc.SetUserDisplayMode(iWsWin->DisplayMode()); sl@0: gc.SetOrigin(iWsWin->Origin()); sl@0: gc.SetClippingRegion(iGlobalRedrawRegion); sl@0: gc.BitBlt(TPoint(0,0), iBitmap); sl@0: }