os/graphics/windowing/windowserver/nonnga/SERVER/backedupwindow.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/backedupwindow.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,218 @@
     1.4 +// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Window redraw code, three sorts of redrawing are supported
    1.18 +// This class deals with drawing from backup bitmap
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include "backedupwindow.h"
    1.23 +#include "server.h"
    1.24 +#include "gc.h"
    1.25 +#include "wstop.h"
    1.26 +#include "ANIM.H"
    1.27 +#include "EVQUEUE.H"
    1.28 +#include <s32mem.h>
    1.29 +#include <gdi.h>
    1.30 +#include "panics.h"
    1.31 +#include "inifile.h"
    1.32 +#include "rootwin.h"
    1.33 +#include "EVENT.H"
    1.34 +#include "playbackgc.h"
    1.35 +
    1.36 +CFbsBitGc *CWsBackedUpWindow::iBitGc=NULL;
    1.37 +
    1.38 +CWsBackedUpWindow::CWsBackedUpWindow(CWsWindow *aWin, TDisplayMode aDisplayMode) : CWsWindowRedraw(aWin), iDisplayMode(aDisplayMode)
    1.39 +	{}
    1.40 +
    1.41 +void CWsBackedUpWindow::StaticInitL()
    1.42 +	{
    1.43 +	iBitGc=CFbsBitGc::NewL();
    1.44 +	}
    1.45 +
    1.46 +void CWsBackedUpWindow::StaticDestroy()
    1.47 +	{
    1.48 +	delete iBitGc;
    1.49 +	iBitGc = 0;
    1.50 +	}
    1.51 +
    1.52 +void CWsBackedUpWindow::ActivateGc()
    1.53 +	{
    1.54 +	iBitGc->Activate(iBitmapDevice);
    1.55 +	iBitGc->Reset();
    1.56 +	iBitGc->SetBrushColor(BackColor());
    1.57 +	}
    1.58 +
    1.59 +TBool CWsBackedUpWindow::DrawCommand(CWsGc*,const TAny*)
    1.60 +	{
    1.61 +	Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
    1.62 +	return ETrue;
    1.63 +	}
    1.64 +
    1.65 +void CWsBackedUpWindow::ConstructL()
    1.66 +	{
    1.67 +	iDisplayMode=iWsWin->DisplayMode();
    1.68 +	TSize size=iWsWin->Size();
    1.69 +	iBitmap=new(ELeave) CFbsBitmap();
    1.70 +	User::LeaveIfError(iBitmap->Create(size, iDisplayMode));
    1.71 +	iBitmapDevice=CFbsBitmapDevice::NewL(iBitmap);
    1.72 +	SetSizeInTwips();
    1.73 +//
    1.74 +	ActivateGc();
    1.75 +	iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
    1.76 +	iBitGc->Clear(TRect(size));
    1.77 +	iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
    1.78 +	WS_ASSERT_DEBUG(iWsWin->WinType()==EWinTypeClient,EWsPanicWindowType);
    1.79 +	}
    1.80 +
    1.81 +void CWsBackedUpWindow::PrepareForResizeL(const TSize &aSize, TSize &aOldSize)
    1.82 +	{
    1.83 +	aOldSize=iBitmapDevice->SizeInPixels();
    1.84 +	if (aOldSize!=aSize)
    1.85 +		{
    1.86 +		User::LeaveIfError(iBitmapDevice->Resize(aSize));
    1.87 +		SetSizeInTwips();
    1.88 +		}
    1.89 +	}
    1.90 +
    1.91 +void CWsBackedUpWindow::Resize(const TSize &aSize, const TSize &aOldSize)
    1.92 +	{
    1.93 +	ActivateGc();
    1.94 +	iBitGc->SetClippingRegion(NULL);
    1.95 +	iBitGc->Clear(TRect(aOldSize.iWidth, 0, aSize.iWidth, aOldSize.iHeight));
    1.96 +	iBitGc->Clear(TRect(0, aOldSize.iHeight,aSize.iWidth, aSize.iHeight));
    1.97 +	
    1.98 +	static_cast<CWsClientWindow *>(iWsWin)->ReactivateGcs();
    1.99 +	}
   1.100 +
   1.101 +CWsBackedUpWindow::~CWsBackedUpWindow()
   1.102 +	{
   1.103 +	delete iBitmapDevice;
   1.104 +	delete iBitmap;
   1.105 +	}
   1.106 +
   1.107 +TBool CWsBackedUpWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
   1.108 +	{
   1.109 +	switch(aOpcode)
   1.110 +		{
   1.111 +		case EWsWinOpUpdateBackupBitmap:
   1.112 +			break;
   1.113 +		case EWsWinOpMaintainBackup:
   1.114 +			break;
   1.115 +		case EWsWinOpBitmapHandle:
   1.116 +			SetReply(iBitmap->Handle());
   1.117 +			break;
   1.118 +		case EWsWinOpUpdateScreen:
   1.119 +			{
   1.120 +			// Andy - shouldn't this use the base area?  Or don't we allow funny shaped
   1.121 +			// backup windows?
   1.122 +			TRegionFix<1> fixRegion(iWsWin->AbsRect());
   1.123 +			Screen()->AddRedrawRegion(fixRegion);
   1.124 +			}
   1.125 +			break;
   1.126 +		case EWsWinOpUpdateScreenRegion:
   1.127 +			{
   1.128 +			TRegionFix<1> fixRegion(iWsWin->AbsRect());
   1.129 +			RWsRegion *clientRegion=NULL;
   1.130 +			TRAPD(err,clientRegion=GetRegionFromClientL(iWsWin->WsOwner(), *aCmd.Int));
   1.131 +			if (err==KErrNone)
   1.132 +				{
   1.133 +				clientRegion->Offset(iWsWin->Origin());
   1.134 +				clientRegion->ClipRect(iWsWin->AbsRect());
   1.135 +				Screen()->AddRedrawRegion(*static_cast<TRegion*>(clientRegion));
   1.136 +				clientRegion->Destroy();
   1.137 +				}
   1.138 +			else
   1.139 +				{
   1.140 +				Screen()->AddRedrawRegion(fixRegion);
   1.141 +				}
   1.142 +			}
   1.143 +			break;
   1.144 +		default:
   1.145 +			return(EFalse);
   1.146 +		}
   1.147 +	return(ETrue);
   1.148 +	}
   1.149 +
   1.150 +CWsBackedUpWindow *CWsBackedUpWindow::Backup() const
   1.151 +	{
   1.152 +	return((CWsBackedUpWindow *)this);
   1.153 +	}
   1.154 +
   1.155 +CFbsDevice* CWsBackedUpWindow::OutputDevice() const
   1.156 +	{
   1.157 +	return iBitmapDevice;
   1.158 +	}
   1.159 +
   1.160 +TRgb CWsBackedUpWindow::BackColor() const
   1.161 +	{
   1.162 +	return(iWsWin->RootWindow()->DefaultBackgroundColor());
   1.163 +	}
   1.164 +
   1.165 +void CWsBackedUpWindow::Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect)
   1.166 +	{
   1.167 +	TRect winBorder=TRect(iWsWin->Size());
   1.168 +	TRect clipRect=aClipRect;
   1.169 +	TRect srcRect = aRect;		
   1.170 +	clipRect.Intersection(winBorder);	
   1.171 +	if (!clipRect.IsEmpty())
   1.172 +		{	// If we have to do something (a visible part will change)
   1.173 +		srcRect.Intersection(clipRect);
   1.174 +
   1.175 +		STACK_REGION regionToClear;
   1.176 +		regionToClear.AddRect(aRect);
   1.177 +		regionToClear.SubRect(srcRect);
   1.178 +		regionToClear.Offset(aOffset);
   1.179 +		
   1.180 +		ActivateGc();
   1.181 +		iBitGc->SetClippingRect(clipRect);
   1.182 +		iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
   1.183 +		iBitGc->CopyRect(aOffset,srcRect);				
   1.184 +		for (TInt k=0;k<regionToClear.Count();k++)
   1.185 +			{
   1.186 +			iBitGc->Clear(regionToClear[k]);
   1.187 +			}
   1.188 +		iBitGc->SetClippingRect(winBorder);
   1.189 +		iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
   1.190 +		TRegionFix<1> fixRegion(iWsWin->AbsRect());
   1.191 +		Screen()->AddRedrawRegion(fixRegion);		
   1.192 +		regionToClear.Close();
   1.193 +		}
   1.194 +	}
   1.195 +
   1.196 +TBool CWsBackedUpWindow::NeedsRedraw() const
   1.197 +	{
   1.198 +	return(EFalse);
   1.199 +	}
   1.200 +
   1.201 +TBool CWsBackedUpWindow::GetRedrawRect(TRect &) const
   1.202 +	{
   1.203 +	return(EFalse);
   1.204 +	}
   1.205 +
   1.206 +void CWsBackedUpWindow::SetSizeInTwips()
   1.207 +	{
   1.208 +	TSize size=iBitmap->SizeInPixels();
   1.209 +	size.iWidth=Screen()->ScreenDevice()->HorizontalPixelsToTwips(size.iWidth);
   1.210 +	size.iHeight=Screen()->ScreenDevice()->VerticalPixelsToTwips(size.iHeight);
   1.211 +	iBitmap->SetSizeInTwips(size);
   1.212 +	}
   1.213 +
   1.214 +void CWsBackedUpWindow::DrawWindow()
   1.215 +	{
   1.216 +	CFbsBitGc& gc = CPlaybackGc::Instance()->BitGc();
   1.217 +	gc.SetUserDisplayMode(iWsWin->DisplayMode());
   1.218 +	gc.SetOrigin(iWsWin->Origin());
   1.219 +	gc.SetClippingRegion(iGlobalRedrawRegion);
   1.220 +	gc.BitBlt(TPoint(0,0), iBitmap);
   1.221 +	}