os/graphics/windowing/windowserver/nonnga/SERVER/wnredraw.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/wnredraw.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,320 @@
     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 +// Sending a redraw message to the client (see redrawmsgwindow.cpp)
    1.19 +// Drawing from backup bitmap
    1.20 +// Simply clearing the window
    1.21 +// 
    1.22 +//
    1.23 +
    1.24 +#include "wnredraw.h"
    1.25 +#include "server.h"
    1.26 +#include "playbackgc.h"
    1.27 +#include "wstop.h"
    1.28 +#include "ANIM.H"
    1.29 +#include "EVQUEUE.H"
    1.30 +#include "offscreenbitmap.h"
    1.31 +#include <s32mem.h>
    1.32 +#include <gdi.h>
    1.33 +#include "panics.h"
    1.34 +#include "inifile.h"
    1.35 +#include "rootwin.h"
    1.36 +#include "EVENT.H"
    1.37 +#include "wstypes.h"
    1.38 +
    1.39 +struct TFadingParams
    1.40 +	{
    1.41 +	TUint8 blackMap;
    1.42 +	TUint8 whiteMap;
    1.43 +	};
    1.44 +
    1.45 +CWsWindowRedraw::CWsWindowRedraw(CWsWindow *aWin) : iWsWin(aWin)
    1.46 +	{
    1.47 +	}
    1.48 +
    1.49 +CWsWindowRedraw::~CWsWindowRedraw()
    1.50 +	{
    1.51 +	if (iWsWin->WsOwner())
    1.52 +		{
    1.53 +		iWsWin->WsOwner()->RedrawQueue()->RemoveInvalid(this);
    1.54 +		}
    1.55 +	}
    1.56 +
    1.57 +void CWsWindowRedraw::ConstructL()
    1.58 +	{
    1.59 +	}
    1.60 +
    1.61 +void CWsWindowRedraw::ClipInvalidRegion(const TRect &)
    1.62 +	{
    1.63 +	}
    1.64 +
    1.65 +void CWsWindowRedraw::Resize(const TSize &, const TSize &)
    1.66 +	{
    1.67 +	}
    1.68 +
    1.69 +void CWsWindowRedraw::SetReply(TInt aReply)
    1.70 +	{
    1.71 +	iWsWin->WsOwner()->SetReply(aReply);
    1.72 +	}
    1.73 +
    1.74 +void CWsWindowRedraw::OwnerPanic(TClientPanic aPanic)
    1.75 +	{
    1.76 +	iWsWin->OwnerPanic(aPanic);
    1.77 +	}
    1.78 +
    1.79 +CWsBackedUpWindow *CWsWindowRedraw::Backup() const
    1.80 +	{
    1.81 +	return(NULL);
    1.82 +	}
    1.83 +
    1.84 +void CWsWindowRedraw::Scroll(const TRect &, const TPoint &,const TRect &)
    1.85 +	{
    1.86 +	}
    1.87 +
    1.88 +void CWsWindowRedraw::UpdateAnimArea()
    1.89 +	{
    1.90 +	}
    1.91 +
    1.92 +void CWsWindowRedraw::PrepareForResizeL(const TSize &, TSize &)
    1.93 +	{
    1.94 +	}
    1.95 +
    1.96 +TBool CWsWindowRedraw::DrawCommand(CWsGc*,const TAny*)
    1.97 +	{
    1.98 +	return ETrue;
    1.99 +	}
   1.100 +
   1.101 +void CWsWindowRedraw::GcAttributeChange(CWsGc*,const TAny*)
   1.102 +	{
   1.103 +	}
   1.104 +
   1.105 +void CWsWindowRedraw::GcDeactivate(CWsGc*)
   1.106 +	{
   1.107 +	}
   1.108 +
   1.109 +CFbsDevice* CWsWindowRedraw::OutputDevice() const
   1.110 +	{
   1.111 +	return iWsWin->Screen()->GetFbsDevice();
   1.112 +	}
   1.113 +
   1.114 +void CWsWindowRedraw::ClientExposing()
   1.115 +	{
   1.116 +	}
   1.117 +
   1.118 +void CWsWindowRedraw::ClearRedrawStore(TBool)
   1.119 +	{}
   1.120 +
   1.121 +void CWsWindowRedraw::PreDrawWindow(CFbsBitGc* aGc, const TRegion &aRegion)
   1.122 +	{
   1.123 +	WS_ASSERT_DEBUG(iGlobalRedrawRegion == NULL, EWsPanicScheduledRedraw);
   1.124 +	iGlobalRedrawRegion = &aRegion;
   1.125 +	CPlaybackGc::Instance()->SetTargetRegion(iGlobalRedrawRegion);
   1.126 +	CWsClient::iCurrentCommand.iOpcode=0; // Andy - urgh - loose me please
   1.127 +	CPlaybackGc::Instance()->Activate(CliWin(), aGc, iGlobalRedrawRegion);
   1.128 +	}
   1.129 +
   1.130 +void CWsWindowRedraw::PostDrawWindow(CFbsBitGc* aGc)
   1.131 +	{	
   1.132 +	if(CWsTop::IsFadeEnabled() && iWsWin->FadeCount()>0 && !iWsWin->IsNonFading())
   1.133 +		{
   1.134 +		//x86gcc compiler needs this syntax to perform 
   1.135 +		//multiple inheritance duplicate common base class declaration resolution
   1.136 +		//combined with the template resolution.
   1.137 +		MWsGc* objectInterfaceResolver=CPlaybackGc::Instance();
   1.138 +		MWsFader* fader = objectInterfaceResolver->ObjectInterface<MWsFader>();
   1.139 +		if(fader)
   1.140 +			{
   1.141 +	      	TFadingParams parameters;
   1.142 +	      	iWsWin->GetFadingParams(parameters.blackMap,parameters.whiteMap);
   1.143 +	      	TPckgBuf<TFadingParams> buf(parameters);
   1.144 +	      	fader->SetFadingParameters(buf);
   1.145 +	      	// Only fade the region that hasn't been faded before
   1.146 +      		STACK_REGION fdRgn;
   1.147 +      		fdRgn.Copy( *iGlobalRedrawRegion );
   1.148 +      		fdRgn.Intersect( iWsWin->FadableRegion() );
   1.149 +      		fader->FadeArea( aGc, &fdRgn );
   1.150 +      		fdRgn.Close();
   1.151 +	      	}
   1.152 +		}
   1.153 +
   1.154 +	CPlaybackGc::Instance()->Deactivate();
   1.155 +	
   1.156 +	WS_ASSERT_DEBUG(iGlobalRedrawRegion, EWsPanicScheduledRedraw);
   1.157 +	DrawAnims(aGc, *iGlobalRedrawRegion);
   1.158 +	
   1.159 +	CPlaybackGc::Instance()->SetTargetRegion(NULL);
   1.160 +	iGlobalRedrawRegion = 0;
   1.161 +	}
   1.162 +	
   1.163 +void CWsWindowRedraw::DrawAnims(CFbsBitGc * aGc, const TRegion& aRegion)
   1.164 +	{
   1.165 +	if (iWsWin->iAnimList)
   1.166 +		{
   1.167 +		// If an anim panics, it will leave and set the panic flag on the client
   1.168 +		// The client itself won't actually panic yet, and we don't want to leave from here.
   1.169 +		TRAP_IGNORE(DrawAnimsL(aGc, aRegion));
   1.170 +		}
   1.171 +
   1.172 +	// Draw standard text cursor if required
   1.173 +	RWsTextCursor* const cursor = CWsTop::CurrentTextCursor();
   1.174 +	if (cursor && cursor->Win() == iWsWin && cursor->IsStandardCursorActive())
   1.175 +		{
   1.176 +		// Standard text cursor is active on this window
   1.177 +		const TBool flashing = cursor->IsFlashing();
   1.178 +		TFlashState flashState = EFlashOff;
   1.179 +		if (flashing)
   1.180 +			{
   1.181 +			flashState = Screen()->SpriteManager()->CurrentCursorFlashState();
   1.182 +			}
   1.183 +		if (flashState == EFlashOn || !flashing)
   1.184 +			{
   1.185 +			// Cursor should be visible, so draw it
   1.186 +			aGc->Reset();
   1.187 +			cursor->Draw(aGc, aRegion);
   1.188 +			}
   1.189 +		if (flashing)
   1.190 +			{
   1.191 +			// Reschedule to flash the standard cursor on or off
   1.192 +			Screen()->ScheduleAnimation(cursor->RectRelativeToScreen(), Screen()->SpriteManager()->NextCursorFlashStateChange(), 0, 0);
   1.193 +			}
   1.194 +		}
   1.195 +
   1.196 +	for (CWsSpriteBase * sprite = iWsWin->iSpriteList; sprite; sprite = sprite->Next())
   1.197 +		{
   1.198 +		aGc->Reset();
   1.199 +		sprite->Redraw(aGc, aRegion);
   1.200 +		}
   1.201 +	}
   1.202 +
   1.203 +void CWsWindowRedraw::DrawAnimsL(CFbsBitGc * aGc, const TRegion& aRegion)
   1.204 +	{
   1.205 +	for (CWsAnim * anim = iWsWin->iAnimList; anim; anim = anim->Next())
   1.206 +		{
   1.207 +		// This can leave
   1.208 +		TRAPD(err,anim->Redraw(aGc, &aRegion));
   1.209 +		if(err!=KErrNone)
   1.210 +			{
   1.211 +			anim->Panic(EWservPanicAnimLeave);
   1.212 +			}
   1.213 +		}
   1.214 +	}
   1.215 +
   1.216 +TBool CWsWindowRedraw::Contains(const TArray<TGraphicDrawerId>& /*aDrawers*/,const TRegion& aRegion) const
   1.217 +	{
   1.218 +	// if in doubt, assume we do
   1.219 +	return !aRegion.IsEmpty();
   1.220 +	}
   1.221 +
   1.222 +TInt CWsWindowRedraw::DrawBackgroundColor(const TRegion* aRegion)
   1.223 +	{
   1.224 +	if(Screen()->BltOffScreen())
   1.225 +		{
   1.226 +		return KErrNone;
   1.227 +		}
   1.228 +	TRgb col = BackColor();
   1.229 +	if (col.Alpha() == 0)
   1.230 +		{
   1.231 +		return KErrNone;
   1.232 +		}
   1.233 +	TRect abs(CliWin()->AbsRect());
   1.234 +	abs.Move(-CliWin()->Origin());
   1.235 +	TBuf8<sizeof(TRect)> cmd;
   1.236 +	cmd.Copy(reinterpret_cast<TUint8*>(&abs),sizeof(TRect));
   1.237 +	CPlaybackGc::Instance()->BitGc().SetClippingRegion(aRegion);
   1.238 +	CPlaybackGc::Instance()->BitGc().SetBrushColor(col);
   1.239 +	CPlaybackGc::Instance()->BitGc().SetBrushStyle(CGraphicsContext::ESolidBrush);
   1.240 +	CPlaybackGc::Instance()->BitGc().SetPenStyle(CGraphicsContext::ENullPen);
   1.241 +	// Andy - this is pretty ridiculous - can't we just draw using the gc?
   1.242 +	TRAPD(err,CPlaybackGc::Instance()->CommandL(EWsGcOpDrawRect, cmd));		//Should not leave ###
   1.243 +	CPlaybackGc::Instance()->BitGc().SetDrawMode(CGraphicsContext::EDrawModePEN);
   1.244 +	CPlaybackGc::Instance()->BitGc().CancelClippingRegion();
   1.245 +	return err;
   1.246 +	}
   1.247 +
   1.248 +TBool CWsWindowRedraw::ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel)
   1.249 +	{
   1.250 +	return EFalse;
   1.251 +	}
   1.252 +
   1.253 +void CWsWindowRedraw::VisibleRegionChange()
   1.254 +	{
   1.255 +	}
   1.256 +	
   1.257 +TBool CWsWindowRedraw::ReadyToDraw() const
   1.258 +	{
   1.259 +	return ETrue;
   1.260 +	}
   1.261 +
   1.262 +void CWsWindowRedraw::WindowClosing()
   1.263 +	{}
   1.264 +	
   1.265 +//
   1.266 +// Blank up window //
   1.267 +//
   1.268 +
   1.269 +CWsBlankWindow::CWsBlankWindow(CWsWindow *aWin) : CWsWindowRedraw(aWin), iColor(iWsWin->RootWindow()->DefaultBackgroundColor()), iNoColor(EFalse)
   1.270 +	{
   1.271 +	}
   1.272 +
   1.273 +CWsBlankWindow::~CWsBlankWindow()
   1.274 +	{
   1.275 +	}
   1.276 +
   1.277 +void CWsBlankWindow::SetColor(TRgb aColor)
   1.278 +	{
   1.279 +	iColor=aColor;
   1.280 +	iNoColor=EFalse;
   1.281 +	Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
   1.282 +	}
   1.283 +
   1.284 +TBool CWsBlankWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
   1.285 +	{
   1.286 +	switch(aOpcode)
   1.287 +		{
   1.288 +		case EWsWinOpSetColor:
   1.289 +			SetColor(*aCmd.rgb);
   1.290 +			break;
   1.291 +		case EWsWinOpSetNoBackgroundColor:
   1.292 +			SetBackgroundClear();
   1.293 +			break;
   1.294 +		default:
   1.295 +			return(EFalse);
   1.296 +		}
   1.297 +	return(ETrue);
   1.298 +	}
   1.299 +
   1.300 +TRgb CWsBlankWindow::BackColor() const
   1.301 +	{
   1.302 +	return(iColor);
   1.303 +	}
   1.304 +
   1.305 +TBool CWsBlankWindow::GetRedrawRect(TRect &) const
   1.306 +	{
   1.307 +	if (!iNoColor || iWsWin->iAnimList)
   1.308 +		iWsWin->Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
   1.309 +	return(EFalse);
   1.310 +	}
   1.311 +
   1.312 +TBool CWsBlankWindow::NeedsRedraw() const
   1.313 +	{
   1.314 +	return(EFalse);
   1.315 +	}
   1.316 +
   1.317 +void CWsBlankWindow::DrawWindow()
   1.318 +	{
   1.319 +	if (!iNoColor)
   1.320 +		{
   1.321 +		DrawBackgroundColor(iGlobalRedrawRegion);
   1.322 +		}
   1.323 +	}