os/graphics/windowing/windowserver/nonnga/SERVER/screen.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/screen.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,1499 @@
     1.4 +// Copyright (c) 2006-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 +//
    1.18 +
    1.19 +#include "screen.h"
    1.20 +
    1.21 +#include <hal.h>
    1.22 +
    1.23 +#include "server.h"
    1.24 +#include "wstop.h"
    1.25 +#include "rootwin.h"
    1.26 +#include "walkwindowtree.h"
    1.27 +#include "offscreenbitmap.h"
    1.28 +#include "EVENT.H"
    1.29 +#include "windowgroup.h"
    1.30 +#include "gc.h"
    1.31 +#include "inifile.h"
    1.32 +#include "pointer.h"
    1.33 +
    1.34 +#include "debugbar.h"
    1.35 +#include "ScreenRedraw.h"
    1.36 +#include "wspluginmanager.h"
    1.37 +
    1.38 +GLREF_D CDebugLogBase *wsDebugLog;
    1.39 +GLREF_D TDisplayMode ParseDisplayMode(const TDesC& aModeName);
    1.40 +
    1.41 +LOCAL_D TBool FindNextValue(TLex& aLex, TInt& aValue) // assumes the list cannot contain *negative* integers
    1.42 +	{
    1.43 +	while (!aLex.Eos())
    1.44 +		{
    1.45 +		const TUint character=aLex.Peek();
    1.46 +		if (Rng(TUint('0'), character, TUint('9')) || (character=='-'))
    1.47 +			{
    1.48 +			break;
    1.49 +			}
    1.50 +		aLex.Inc();
    1.51 +		}
    1.52 +
    1.53 +	return (aLex.Val(aValue)==KErrNone);
    1.54 +	}
    1.55 +
    1.56 +CScreen::CFallbackMap * CScreen::CFallbackMap::NewL(CScreen* aScreen)
    1.57 +	{
    1.58 +	CFallbackMap * self = new (ELeave) CFallbackMap(aScreen);
    1.59 +	CleanupStack::PushL(self);
    1.60 +	self->ConstructL();
    1.61 +	CleanupStack::Pop(self);
    1.62 +	return self;
    1.63 +	}
    1.64 +	
    1.65 +CScreen::CFallbackMap::CFallbackMap(CScreen* aScreen) :
    1.66 +	iScreen(aScreen),
    1.67 +	iRegion(TRect(TPoint(0,0), TSize(1,1))),
    1.68 +	iCount(0)
    1.69 +	{
    1.70 +	}
    1.71 +	
    1.72 +CScreen::CFallbackMap::~CFallbackMap()
    1.73 +	{
    1.74 +	delete iMap;
    1.75 +	}
    1.76 +	
    1.77 +void CScreen::CFallbackMap::ConstructL()
    1.78 +	{
    1.79 +	iMapSize = 0;
    1.80 +	
    1.81 +	for (TInt num = 0; num < iScreen->NumScreenSizeModes(); ++num)
    1.82 +		{
    1.83 +		if (iScreen->IsValidScreenSizeMode(num))
    1.84 +			{
    1.85 +			const TSizeMode & mode = iScreen->ScreenSizeModeData(num);
    1.86 +			TInt width = mode.iScreenSize.iWidth / 32;
    1.87 +			if (mode.iScreenSize.iWidth & (32 - 1))
    1.88 +				++width;
    1.89 +			TInt size = width * mode.iScreenSize.iHeight;
    1.90 +			if (size > iMapSize)
    1.91 +				iMapSize = size;
    1.92 +			}
    1.93 +		}
    1.94 +		
    1.95 +	iMap = new (ELeave) TInt [iMapSize];
    1.96 +	}
    1.97 +
    1.98 +void CScreen::CFallbackMap::Prepare()
    1.99 +	{
   1.100 +	const TSizeMode & mode = iScreen->ScreenSizeModeData();
   1.101 +	Mem::FillZ(iMap, iMapSize * sizeof(TInt));
   1.102 +	iCount = mode.iScreenSize.iHeight * mode.iScreenSize.iWidth;
   1.103 +	WS_ASSERT_DEBUG(iRegion.Count() == 1, EWsPanicScreenFallback);
   1.104 +	iRegion.Clear();
   1.105 +	iRegion.AddRect(TRect(mode.iOrigin, mode.iScreenSize));
   1.106 +	}
   1.107 +
   1.108 +TBool CScreen::CFallbackMap::FillRegion(const TRegion& aRegion)
   1.109 +	{
   1.110 +	WS_ASSERT_DEBUG(!aRegion.CheckError(), EWsPanicScreenFallback);
   1.111 +	if (aRegion.Count() > 20 || aRegion.CheckError())
   1.112 +		return ETrue;
   1.113 +	TBool hit = EFalse;
   1.114 +	if (iCount > 0)
   1.115 +		{
   1.116 +		const TRect * rect = aRegion.RectangleList();
   1.117 +		for (TInt num = 0; num < aRegion.Count(); ++num)
   1.118 +			{
   1.119 +			hit = FillRect(*rect) || hit;
   1.120 +			if (iCount < 1)
   1.121 +				break;
   1.122 +			++rect;
   1.123 +			}
   1.124 +		}
   1.125 +	return hit;
   1.126 +	}
   1.127 +	
   1.128 +// x >> 5 is equivalent to x / 32
   1.129 +// 0x1F is the rounding error when dividing by 32
   1.130 +// 0x20 is 32.
   1.131 +// The compiler might do all the optimizations for us - not checked.
   1.132 +TBool CScreen::CFallbackMap::FillRect(const TRect& aRect)
   1.133 +	{
   1.134 +	TBool hit = EFalse;
   1.135 +	const TSizeMode & mode = iScreen->ScreenSizeModeData();
   1.136 +	TRect scrrect(mode.iOrigin, mode.iScreenSize);
   1.137 +	TRect rect = aRect;
   1.138 +	rect.Intersection(scrrect);
   1.139 +	TInt rowWidthInInts = mode.iScreenSize.iWidth;
   1.140 +	if (rowWidthInInts & 0x1F)
   1.141 +		rowWidthInInts += 0x20;
   1.142 +	rowWidthInInts >>= 5;
   1.143 +
   1.144 +	TInt colStartInInts = rect.iTl.iX >> 5;
   1.145 +	TInt firstOffsetInBits = rect.iTl.iX & 0x1F;
   1.146 +
   1.147 +	for(TInt row = rect.iTl.iY; row < rect.iBr.iY; ++row)
   1.148 +		{
   1.149 +		TInt * map = iMap + row * rowWidthInInts + colStartInInts;
   1.150 +		TInt offsetShift = 31 - firstOffsetInBits;
   1.151 +		for (TInt col = rect.iTl.iX; col < rect.iBr.iX; ++col)
   1.152 +			{
   1.153 +			WS_ASSERT_DEBUG(map - iMap < iMapSize, EWsPanicScreenFallback);
   1.154 +			if (!(*map & 1 << offsetShift))
   1.155 +				{
   1.156 +				--iCount;
   1.157 +				hit = ETrue;
   1.158 +				if (iCount < 1)
   1.159 +					break;
   1.160 +				(*map) |= (1 << offsetShift);
   1.161 +				}
   1.162 +			--offsetShift;
   1.163 +			if (offsetShift < 0)
   1.164 +				{
   1.165 +				offsetShift = 31;
   1.166 +				++map;
   1.167 +				}
   1.168 +			}
   1.169 +		}
   1.170 +	return hit;
   1.171 +	}
   1.172 +
   1.173 +TInt CScreen::CFallbackMap::Count() const
   1.174 +	{
   1.175 +	return iCount;
   1.176 +	}
   1.177 +
   1.178 +const TRect * CScreen::CFallbackMap::Rect() const
   1.179 +	{
   1.180 +	return iRegion.RectangleList();
   1.181 +	}
   1.182 +	
   1.183 +const RRegion * CScreen::CFallbackMap::Region() const
   1.184 +	{
   1.185 +	return &iRegion;
   1.186 +	}
   1.187 +	
   1.188 +//
   1.189 +// CScreen
   1.190 +//
   1.191 +CScreen::CScreen(): iDirects(_FOFF(CWsDirectScreenAccess,iLink)), iMaxContrast(-1), iMaxBrightness(-1)
   1.192 +	{
   1.193 +	}
   1.194 +
   1.195 +CScreen::~CScreen()
   1.196 +	{
   1.197 +	delete iDebugBar;
   1.198 +	delete iOffScreenBitmap;
   1.199 +	delete iScreenGdi;
   1.200 +	TInt ii;
   1.201 +	if(iModes)
   1.202 +		{
   1.203 +		for(ii=iNumScreenSizeModes-1;ii>=0;--ii)
   1.204 +			{
   1.205 +			delete (*iModes)[ii];
   1.206 +			}
   1.207 +		iModes->Close();
   1.208 +		delete iModes;
   1.209 +		}
   1.210 +	delete iRootWindow;
   1.211 +	delete iScreenDevice;
   1.212 +	delete iFallbackMap;
   1.213 +	delete iSpriteManager;
   1.214 +	delete iRedraw;
   1.215 +	}
   1.216 +
   1.217 +void CScreen::ConstructL(const TRect& aDigitiserArea, TInt aScreenNumber )
   1.218 +	{
   1.219 +	iScreenNumber = aScreenNumber ;
   1.220 +
   1.221 +	if (wsDebugLog)
   1.222 +		{
   1.223 +		_LIT(KWSERVInitScreen,"Initialising for Screen %d");
   1.224 +		wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, KWSERVInitScreen, aScreenNumber);
   1.225 +		}
   1.226 +
   1.227 +	CreateScreenDeviceL();
   1.228 +	iScreenDevice->SetAutoUpdate(EFalse);
   1.229 +	iPhysicalScreenSize=iScreenDevice->SizeInPixels();
   1.230 +	LoadScreenSizesL(iPhysicalScreenSize);
   1.231 +	// mode 0 might not be available, get the first/lowest valid mode
   1.232 +	SetInitialScreenSizeMode();
   1.233 +	
   1.234 +	iFallbackMap = CFallbackMap::NewL(this);
   1.235 +//
   1.236 +	iScreenGdi=CFbsBitGc::NewL();
   1.237 +	iScreenGdi->Activate(iScreenDevice);
   1.238 +	LoadScreenSizeProperties();
   1.239 +	SetDigitiserAreas(iScreenDevice->SizeInPixels(),aDigitiserArea);
   1.240 +//
   1.241 +	iScreenGdi->SetOrientation(Orientation());
   1.242 +	const TSizeMode& sizeMode=ScreenSizeModeData(ScreenSizeMode());
   1.243 +	iScreenDevice->SetScalingFactor(sizeMode.iOrigin,sizeMode.iScreenScale.iWidth,sizeMode.iScreenScale.iHeight,1,1);
   1.244 +	iScreenDevice->ChangeScreenDevice(NULL);    //This is necessary to initialise the screen
   1.245 +//
   1.246 +	// Off Screen Bitmaps
   1.247 +	iOffScreenBitmap=CWsOffScreenBitmap::NewL(this);
   1.248 +	TSize osbSize(iOffScreenBitmap->Bitmap()->SizeInPixels());
   1.249 +	TSize osbTwips(sizeMode.iScreenTwipsSize);
   1.250 +	if (osbSize!=sizeMode.iScreenSize)
   1.251 +		{
   1.252 +		// The specified screen twips size is for the specified screen pixel size, however the OSB
   1.253 +		// is potentially larger as it needs to hold the maximum possible screen size, so we need
   1.254 +		// to scale the twips size up correspondingly.
   1.255 +		osbTwips.iWidth=sizeMode.iScreenTwipsSize.iWidth*osbSize.iWidth/sizeMode.iScreenSize.iWidth;
   1.256 +		osbTwips.iHeight=sizeMode.iScreenTwipsSize.iHeight*osbSize.iHeight/sizeMode.iScreenSize.iHeight;
   1.257 +		}
   1.258 +	iOffScreenBitmap->Bitmap()->SetSizeInTwips(osbTwips);		
   1.259 +
   1.260 +	TInt autoClear = 1;
   1.261 +	_LIT(KWSERVIniFileVarAutoClear,"AUTOCLEAR");
   1.262 +	WsIniFile->FindVar(iScreenNumber,KWSERVIniFileVarAutoClear,autoClear);
   1.263 +	if (autoClear != 0)
   1.264 +		{
   1.265 +		iFlags|=EAutoClear;
   1.266 +		}
   1.267 +
   1.268 +	_LIT(KBackLight,"BACKLIGHTCONTROL");
   1.269 +	iBackLightFlag=WsIniFile->FindVar( iScreenNumber, KBackLight);
   1.270 +
   1.271 +	_LIT(KWSERVIniFileVarBlankScreen, "BLANKSCREENONROTATION");
   1.272 +	if (WsIniFile->FindVar(iScreenNumber, KWSERVIniFileVarBlankScreen))
   1.273 +		{
   1.274 +		iFlags|=EBlankScreenOnRotation;
   1.275 +		}
   1.276 +
   1.277 +	SetShadowVector(TPoint(EDefaultShadowX,EDefaultShadowY));
   1.278 +
   1.279 +	iRedraw = CScreenRedraw::NewL(*this);
   1.280 +
   1.281 +	iRootWindow = new (ELeave) CWsRootWindow(NULL, this);
   1.282 +	iRootWindow->ConstructL();
   1.283 +
   1.284 +	TInt refreshRate = 1000000;
   1.285 +	_LIT(KDebugBar, "DEBUGBAR");
   1.286 +	if (WsIniFile->FindVar(refreshRate, KDebugBar))
   1.287 +		{
   1.288 +		if (refreshRate < 100000)
   1.289 +			refreshRate = 50000;
   1.290 +		const TPoint origin = CurrentScreenModeOrigin();
   1.291 +		iDebugBar = CDebugBar::NewL(this, TRect(origin.iX,origin.iY,origin.iX+CurrentScreenSize().iWidth,origin.iY+16), refreshRate);
   1.292 +		}
   1.293 +	// Default fading parameters
   1.294 +	iBlackMap=128;
   1.295 +	iWhiteMap=255;
   1.296 +	
   1.297 +	iSpriteManager = CWsSpriteManager::NewL();
   1.298 +	//Look for fading plugins here.
   1.299 +	_LIT(KDefaultFaderPluginName, "wsfader");
   1.300 +  	_LIT(KFaderPluginIni,"FADER");
   1.301 +	CWsPluginManager* mgr = CWsTop::WindowServer()->PluginManager();
   1.302 +	if (mgr)
   1.303 +		{
   1.304 +	  	TPtrC faderName;
   1.305 +  		if (WsIniFile->FindVar(iScreenNumber, KFaderPluginIni, faderName))
   1.306 +      		iFader = mgr->FindNamedImplementation<MWsFader>(faderName);
   1.307 +    	else	
   1.308 +		  	iFader = mgr->FindNamedImplementation<MWsFader>(KDefaultFaderPluginName);
   1.309 +		}
   1.310 +	
   1.311 +	_LIT(KBltOffScreenBitmap,"BLTOFFSCREENBITMAP");
   1.312 +	if (WsIniFile->FindVar(iScreenNumber, KBltOffScreenBitmap))
   1.313 +		{
   1.314 +		iFlags|=EBltOffScreenBitmap;
   1.315 +		}	
   1.316 +	}
   1.317 +
   1.318 +void CScreen::CreateScreenDeviceL()
   1.319 +	{
   1.320 +	_LIT(KScreenMode,"SCREENMODE");
   1.321 +	_LIT(KWindowMode,"WINDOWMODE");
   1.322 +	TPtrC screenModeName;
   1.323 +	TDisplayMode screenMode = ENone;
   1.324 +	if (WsIniFile->FindVar(iScreenNumber, KScreenMode, screenModeName))
   1.325 +		{
   1.326 +		screenMode = ParseDisplayMode(screenModeName);
   1.327 +		}
   1.328 +	else if (WsIniFile->FindVar(iScreenNumber, KWindowMode, screenModeName))
   1.329 +		{
   1.330 +		screenMode = ParseDisplayMode(screenModeName);
   1.331 +		}
   1.332 +
   1.333 +	if (screenMode != ENone)
   1.334 +		{
   1.335 +		if(DoCreateScreenDevice(screenMode))
   1.336 +			return;
   1.337 +		}
   1.338 +
   1.339 +	// No screen mode was specified, or we failed creating the specified screen
   1.340 +	// mode. Default to as high display mode as possible.
   1.341 +
   1.342 +	// Check if the screen device supports 16M colors (it can only support one of
   1.343 +	// 16M, 16MU, 16MA, 16MAP, or none of them)
   1.344 +	screenMode = CFbsDevice::DisplayMode16M();
   1.345 +	if(screenMode != ENone)
   1.346 +		{
   1.347 +		if(DoCreateScreenDevice(screenMode))
   1.348 +			return;
   1.349 +		}
   1.350 +	
   1.351 +	// Try creating the screen device with all available display modes, going from best to worst
   1.352 +	__ASSERT_COMPILE(EColorLast == 14); // if any display mode is added to TDisplayMode we must update the list below
   1.353 +	// (the list below contains all enums in TDisplayMode except ENone, ERgb, EColorLast)
   1.354 +	if(DoCreateScreenDevice(EColor16MAP))
   1.355 +		return;
   1.356 +	if(DoCreateScreenDevice(EColor16MA))
   1.357 +		return;
   1.358 +	if(DoCreateScreenDevice(EColor16MU))
   1.359 +		return;
   1.360 +	if(DoCreateScreenDevice(EColor16M))
   1.361 +		return;
   1.362 +	if(DoCreateScreenDevice(EColor64K))
   1.363 +		return;
   1.364 +	if(DoCreateScreenDevice(EColor4K))
   1.365 +		return;
   1.366 +	if(DoCreateScreenDevice(EColor256))
   1.367 +		return;
   1.368 +	if(DoCreateScreenDevice(EColor16))
   1.369 +		return;
   1.370 +	if(DoCreateScreenDevice(EGray256))
   1.371 +		return;
   1.372 +	if(DoCreateScreenDevice(EGray16))
   1.373 +		return;
   1.374 +	if(DoCreateScreenDevice(EGray4))
   1.375 +		return;
   1.376 +	if(DoCreateScreenDevice(EGray2))
   1.377 +		return;
   1.378 +		
   1.379 +	User::Leave(KErrNotSupported);
   1.380 +	}
   1.381 +
   1.382 +TBool CScreen::DoCreateScreenDevice(TDisplayMode aScreenMode)
   1.383 +	{
   1.384 +	TRAPD(err, iScreenDevice = CFbsScreenDevice::NewL(iScreenNumber, aScreenMode));
   1.385 +	return (err == KErrNone);
   1.386 +	}
   1.387 +
   1.388 +void CScreen::AbortDSAs(RDirectScreenAccess::TTerminationReasons aReason,TSglQue<CWsDirectScreenAccess>& aDirects)
   1.389 +	{
   1.390 +	if (aDirects.IsEmpty())
   1.391 +		return;
   1.392 +	TInt nofDSAs = 0;
   1.393 +	TSglQueIter<CWsDirectScreenAccess> iter(aDirects);
   1.394 +	CWsDirectScreenAccess* direct;
   1.395 +	while (( direct=iter++)!=NULL )
   1.396 +		{
   1.397 +		nofDSAs++;
   1.398 +		direct->SignalAbort( aReason );
   1.399 +		}
   1.400 +
   1.401 +	TRequestStatus timerStatus;
   1.402 +	RTimer& timer=CWsTop::Timer();
   1.403 +	timer.Cancel();
   1.404 +	
   1.405 +	TRequestStatus** cancelReqList = (TRequestStatus**) User::AllocZ( sizeof( TRequestStatus* ) * (nofDSAs + 1)  );  
   1.406 +	if ( NULL != cancelReqList  )
   1.407 +		{		
   1.408 +			TInt dsaNo = 1; 
   1.409 +		
   1.410 +			timer.After( timerStatus, KDSAAbortingImmediateRespAwaitFrameMicrosec );		
   1.411 +
   1.412 +			iter.SetToFirst();
   1.413 +			while (( direct=iter++)!=NULL )
   1.414 +				{
   1.415 +					cancelReqList[ dsaNo ] =  &direct->AbortStatus();
   1.416 +					dsaNo++;
   1.417 +				}
   1.418 +			cancelReqList[ 0 ] = &timerStatus;
   1.419 +			
   1.420 +			User::WaitForNRequest( cancelReqList, nofDSAs + 1 );
   1.421 +			
   1.422 +			iter.SetToFirst();
   1.423 +			while (( direct=iter++)!=NULL )
   1.424 +				{
   1.425 +				if ( direct->AbortStatus() != KRequestPending )
   1.426 +					direct->CancelAbortObject(); // responded
   1.427 +				else
   1.428 +					direct->Abort();
   1.429 +				}
   1.430 +
   1.431 +			if (timerStatus == KRequestPending)
   1.432 +				{
   1.433 +				timer.Cancel();
   1.434 +				User::WaitForRequest( timerStatus );
   1.435 +				}
   1.436 +			
   1.437 +			User::Free( cancelReqList );
   1.438 +		}
   1.439 +	else
   1.440 +		{
   1.441 +		iter.SetToFirst();
   1.442 +		while ((direct=iter++) != NULL)
   1.443 +			{
   1.444 +		
   1.445 +			TRequestStatus timerStatus;
   1.446 +			RTimer& timer=CWsTop::Timer();
   1.447 +			timer.Cancel();
   1.448 +			timer.After(timerStatus, KDSAAbortingImmediateRespAwaitFrameMicrosec);
   1.449 +			//wait for response or timeout
   1.450 +			User::WaitForRequest(direct->AbortStatus(), timerStatus);
   1.451 +		
   1.452 +			if (direct->AbortStatus() != KRequestPending)
   1.453 +				direct->CancelAbortObject(); //responded
   1.454 +			else
   1.455 +				direct->Abort(); //timed out
   1.456 +
   1.457 +			if (timerStatus == KRequestPending)
   1.458 +				{
   1.459 +				timer.Cancel();
   1.460 +				User::WaitForRequest(timerStatus);
   1.461 +				}
   1.462 +			}
   1.463 +		}
   1.464 +	}
   1.465 +
   1.466 +void CScreen::AbortAllDirectDrawing(RDirectScreenAccess::TTerminationReasons aReason)
   1.467 +	{
   1.468 +	AbortDSAs(aReason,iDirects);
   1.469 +	}
   1.470 +
   1.471 +void CScreen::AddDirect(CWsDirectScreenAccess& aDirect)
   1.472 +	{
   1.473 +	TBool emptyBefore = iDirects.IsEmpty();
   1.474 +	iDirects.AddLast(aDirect);
   1.475 +	TBool emptyAfter = iDirects.IsEmpty();
   1.476 +	if (emptyBefore && ! emptyAfter)
   1.477 +		{
   1.478 +		TWsEvent wsevent;
   1.479 +		wsevent.SetType(EEventDirectScreenAccessBegin);
   1.480 +		*(wsevent.Int()) = iScreenNumber;
   1.481 +		TWindowServerEvent::PublishNotification(wsevent);
   1.482 +		}
   1.483 +
   1.484 +	if (iDsaDrawState==EDsaDrawStateIdle && aDirect.IsVisible())
   1.485 +		{
   1.486 +		iDsaDrawState = EDsaDrawStateDrawing;
   1.487 +		TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EDsaDrawingBegin, iScreenNumber));
   1.488 +		}
   1.489 +	}
   1.490 +
   1.491 +void CScreen::RemoveDirect(CWsDirectScreenAccess& aDirect)
   1.492 +	{
   1.493 +	TBool emptyBefore = iDirects.IsEmpty();
   1.494 +	iDirects.Remove(aDirect);
   1.495 +	TBool emptyAfter = iDirects.IsEmpty();
   1.496 +	if (emptyAfter && ! emptyBefore)
   1.497 +		{
   1.498 +		TWsEvent wsevent;
   1.499 +		wsevent.SetType(EEventDirectScreenAccessEnd);
   1.500 +		*(wsevent.Int()) = iScreenNumber;
   1.501 +		TWindowServerEvent::PublishNotification(wsevent);
   1.502 +		}
   1.503 +
   1.504 +	if (iDsaDrawState==EDsaDrawStateDrawing && aDirect.IsVisible() && !HasVisibleDirectOnQueue())
   1.505 +		{
   1.506 +		iDsaDrawState = EDsaDrawStateIdle;
   1.507 +		TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EDsaDrawingEnd, iScreenNumber));
   1.508 +		}
   1.509 +	}
   1.510 +
   1.511 +TBool CScreen::HasVisibleDirectOnQueue()
   1.512 +	{
   1.513 +	if (iDirects.IsEmpty())
   1.514 +		return EFalse;
   1.515 +
   1.516 +	TSglQueIter<CWsDirectScreenAccess> iter(iDirects);
   1.517 +	CWsDirectScreenAccess* dsa;
   1.518 +	while ((dsa=iter++)!=NULL)
   1.519 +		{
   1.520 +		if (dsa->IsVisible())
   1.521 +			return ETrue;
   1.522 +		}
   1.523 +
   1.524 +	return EFalse;
   1.525 +	}
   1.526 +
   1.527 +#if defined(_DEBUG)
   1.528 +TBool CScreen::IsDirectOnQueue(const CWsDirectScreenAccess* aDirect)
   1.529 +	{
   1.530 +	TSglQueIter<CWsDirectScreenAccess> iter(iDirects);
   1.531 +	CWsDirectScreenAccess* direct;
   1.532 +	while ((direct=iter++)!=NULL)
   1.533 +		{
   1.534 +		if (direct==aDirect)
   1.535 +			return ETrue;
   1.536 +		}
   1.537 +	return EFalse;
   1.538 +	}
   1.539 +
   1.540 +#if defined(__WINS__)
   1.541 +void CScreen::UpdateOffScreenBitmap()
   1.542 +	{
   1.543 +	if (iOffScreenBitmap)
   1.544 +		iOffScreenBitmap->Update();
   1.545 +	}
   1.546 +#endif
   1.547 +#endif
   1.548 +
   1.549 +void CScreen::KillForegroundSession()
   1.550 +	{
   1.551 +	if (iCurrentFocus)
   1.552 +		{
   1.553 +		_LIT(KWSERVKillWinGp,"Killing Session owning Window Group with Id=%d");
   1.554 +		if (wsDebugLog)
   1.555 +			wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVKillWinGp,iCurrentFocus->Identifier());
   1.556 +		iCurrentFocus->WsOwner()->SessionTerminate();
   1.557 +		}
   1.558 +	}
   1.559 +
   1.560 +CWsWindowGroup* CScreen::FindNewFocus(CWsRootWindow* aRootWindow)
   1.561 +	{
   1.562 +	CWsWindowGroup* newFocus;
   1.563 +	for(newFocus=aRootWindow->Child();newFocus && newFocus->CanReceiveFocus()==EFalse;newFocus=newFocus->NextSibling()) {}
   1.564 +
   1.565 +	return newFocus;
   1.566 +	}
   1.567 +
   1.568 +void CScreen::ResetFocus(CWsWindowGroup* aClosingWindow)
   1.569 +	{
   1.570 +	CWsWindowGroup* oldFocus=iCurrentFocus;
   1.571 +	CWsWindowGroup* newFocus=NULL;
   1.572 +	CScreen* newFocusedScreen=NULL;
   1.573 +	iCurrentFocus=FindNewFocus(iRootWindow);
   1.574 +	TBool focusedScreen= EFalse;
   1.575 +	/*Focus policy is specified in the wsini.ini file using the keyword 'MULTIFOCUSPOLICY'.
   1.576 +	If the keyword is not specified, then the default policy is run.
   1.577 +	*/
   1.578 +	if(!CWsTop::MultiFocusPolicy())
   1.579 +		{
   1.580 +		focusedScreen=(this==CWsTop::CurrentFocusScreen()); //check if this screen is the focus screen
   1.581 +		if (!iCurrentFocus && focusedScreen)
   1.582 +			{
   1.583 +			/*If this screen is the focused screen but does not have a focusable window group, then search for the
   1.584 +			next screen that has a focusable window group and set that screen as the focused screen.
   1.585 +			*/
   1.586 +			CScreen* screen=NULL;
   1.587 +			TInt screenNo;
   1.588 +			for (screenNo=0; screenNo<CWsTop::NumberOfScreens() && !newFocus; ++screenNo)
   1.589 +				{
   1.590 +				if (screenNo!=iScreenNumber)
   1.591 +					{
   1.592 +					screen=CWsTop::Screen(screenNo);
   1.593 +					newFocus=FindNewFocus(screen->RootWindow());
   1.594 +					}
   1.595 +				}
   1.596 +			if (newFocus)
   1.597 +				newFocusedScreen=screen;
   1.598 +			}
   1.599 +		}
   1.600 +	/*Scenario A: multi-focus policy
   1.601 +			newFocusedScreen is NULL
   1.602 +			focusedScreen is EFalse
   1.603 +			CWsTop::MultiFocusPolicy() returns ETrue
   1.604 +			Check if the new focusable window group is not the same, send focus lost message to window group
   1.605 +			that has just lost focus and send focus gain message to window group that can receive focus.
   1.606 +	  Scenario B: single-focus policy (default)
   1.607 +			CWsTop::MultiFocusPolicy() returns EFalse
   1.608 +			Check if the new focusable window group is not the same or if there is a new focused screen, send focus lost
   1.609 +			message to window group that has just lost focus and send focus gain message to window group that can receive focus.
   1.610 +	*/
   1.611 +	if (iCurrentFocus!=oldFocus || newFocusedScreen)
   1.612 +		{
   1.613 +		if (oldFocus && (focusedScreen||CWsTop::MultiFocusPolicy()) && oldFocus!=aClosingWindow)
   1.614 +			{
   1.615 +			oldFocus->LostFocus();
   1.616 +			}
   1.617 +		if (newFocusedScreen)
   1.618 +			{
   1.619 +			CWsTop::SetCurrentFocusScreen(newFocusedScreen);
   1.620 +			newFocus->ReceivedFocus();
   1.621 +			}
   1.622 +		else if (iCurrentFocus && (focusedScreen||CWsTop::MultiFocusPolicy()))
   1.623 +			{
   1.624 +			iCurrentFocus->ReceivedFocus();
   1.625 +			}
   1.626 +		WsPointer::UpdatePointerCursor();
   1.627 +		TWindowServerEvent::SendFocusChangedEvents();
   1.628 +		}
   1.629 +	TWindowServerEvent::SendGroupListChangedEvents();
   1.630 +	}
   1.631 +
   1.632 +void CScreen::SetShadowVector(const TPoint &aShadowShift)
   1.633 +	{
   1.634 +	iShadowShift=aShadowShift;
   1.635 +	}
   1.636 +
   1.637 +void CScreen::RemoveFromDefaultOwningList(CWsWindowGroup *aDestroyedGroup)
   1.638 +	{
   1.639 +	for (CWsWindowGroup **group=&iDefaultOwningWindow;*group;group=(*group)->NextDefaultOwningWindowPtr())
   1.640 +		{
   1.641 +		if (*group==aDestroyedGroup)
   1.642 +			{
   1.643 +			*group=*aDestroyedGroup->NextDefaultOwningWindowPtr();
   1.644 +			break;
   1.645 +			}
   1.646 +		}
   1.647 +	}
   1.648 +
   1.649 +void CScreen::SetDefaultOwningWindow(CWsWindowGroup *aGroup)
   1.650 +	{
   1.651 +	RemoveFromDefaultOwningList(aGroup);
   1.652 +	aGroup->SetNextDefaultOwningWindow(iDefaultOwningWindow);
   1.653 +	iDefaultOwningWindow=aGroup;
   1.654 +	}
   1.655 +
   1.656 +void CScreen::GetScanLine(const TWsSdCmdGetScanLine *aGetScanLine)
   1.657 +	{
   1.658 +	TRgb buf[EGetScanLineBufLen];
   1.659 +	TPtr8 des((TUint8 *)&buf[0],EGetScanLineBufLen*sizeof(TRgb));
   1.660 +	TPoint pos(aGetScanLine->pos);
   1.661 +	TInt read=0;
   1.662 +	TInt len=(des.MaxLength()*EGetScanLineBufLen)/CFbsBitmap::ScanLineLength(EGetScanLineBufLen,aGetScanLine->dispMode);
   1.663 +	if (aGetScanLine->len < 0 || (CFbsBitmap::ScanLineLength(aGetScanLine->len, aGetScanLine->dispMode) >
   1.664 +									CWsClient::CurrentClient()->ClientMessage().GetDesMaxLength(1)))
   1.665 +		{
   1.666 +		CWsClient::PanicCurrentClient(EWservPanicInvalidParameter);
   1.667 +		}
   1.668 +	FOREVER
   1.669 +		{
   1.670 +		if ((aGetScanLine->len-read)<len)
   1.671 +			len=aGetScanLine->len-read;
   1.672 +		iScreenDevice->GetScanLine(des,pos,len,aGetScanLine->dispMode);
   1.673 +		CWsClient::ReplyBuf(des);
   1.674 +		read+=len;
   1.675 +		if (read==aGetScanLine->len)
   1.676 +			break;
   1.677 +		pos.iX+=len;
   1.678 +		}
   1.679 +	}
   1.680 +
   1.681 +void CScreen::MaxNumColors(TInt& aColors,TInt& aGrays)
   1.682 +	{
   1.683 +	aGrays=0;
   1.684 +	aColors=TDisplayModeUtils::NumDisplayModeColors(DisplayMode());
   1.685 +	if (!TDisplayModeUtils::IsDisplayModeColor(DisplayMode()))
   1.686 +		{
   1.687 +		aGrays=aColors;
   1.688 +		aColors=0;
   1.689 +		}
   1.690 +	}
   1.691 +
   1.692 +#define MODE_TO_FLAG(x) 1<<(x-1)
   1.693 +#define ROTATION_TO_FLAG(x) 1<<x
   1.694 +TInt CScreen::ColorModesFlag()
   1.695 +	{
   1.696 +	return MODE_TO_FLAG(DisplayMode());
   1.697 +	}
   1.698 +
   1.699 +void CScreen::Update()
   1.700 +	{
   1.701 +#if defined(__WINS__) && defined(_DEBUG)
   1.702 +	if (iOffScreenBitmap)
   1.703 +		iOffScreenBitmap->Update();
   1.704 +#endif
   1.705 +
   1.706 +	if (iRedirectGc)
   1.707 +		TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EScreenUpdated, iScreenNumber));
   1.708 +	else
   1.709 +		iScreenDevice->Update();
   1.710 +	}
   1.711 +
   1.712 +void CScreen::UpdateGcs()
   1.713 +	{
   1.714 +	iScreenGdi->Activate(iScreenDevice);
   1.715 +	}
   1.716 +
   1.717 +void CScreen::ChangeDisplayModeForAllOffScreenBitmap(TBool aSwapWidthAndHeight/*=EFalse*/)
   1.718 +	{
   1.719 +	TInt err;
   1.720 +	if (iOffScreenBitmap)
   1.721 +		{
   1.722 +		err=iOffScreenBitmap->DisplayModeChanged(aSwapWidthAndHeight);
   1.723 +		if(err!=KErrNone)
   1.724 +			{
   1.725 +			delete iOffScreenBitmap;
   1.726 +			iOffScreenBitmap=NULL;
   1.727 +			}
   1.728 +		}
   1.729 +	}
   1.730 +
   1.731 +CFbsScreenDevice *CScreen::ScreenDevice()
   1.732 +	{
   1.733 +	return(iScreenDevice);
   1.734 +	}
   1.735 +
   1.736 +void CScreen::UpdateOrientation()
   1.737 +	{
   1.738 +	CFbsBitGc::TGraphicsOrientation orientation=Orientation();
   1.739 +	iScreenGdi->SetOrientation(orientation);
   1.740 +	TWservCrEvent crEvent(TWservCrEvent::EScreenOrientationChanged,iScreenNumber,&orientation);
   1.741 +	TWindowServerEvent::NotifyDrawer(crEvent);
   1.742 +	}
   1.743 +
   1.744 +void CScreen::SetPointerCursorArea(TInt aMode,const TRect& aRect)
   1.745 +	{
   1.746 +	(*iModes)[aMode]->iPointerCursorArea=aRect;
   1.747 +	WsPointer::SetPointerCursorPos(WsPointer::PointerCursorPos());
   1.748 +	}
   1.749 +
   1.750 +CFbsBitGc::TGraphicsOrientation CScreen::Orientation()
   1.751 +	{
   1.752 +  	WS_ASSERT_DEBUG(IsValidScreenSizeMode(iScreenSizeMode),EWsPanicInvalidScreenSizeMode);
   1.753 +	return (*iModes)[iScreenSizeMode]->iRotation;
   1.754 +	}
   1.755 +
   1.756 +TRect CScreen::DrawableArea() const
   1.757 +	{
   1.758 +	TRect drawRect;
   1.759 +	iScreenDevice->GetDrawRect(drawRect);
   1.760 +	return drawRect;
   1.761 +	}
   1.762 +
   1.763 +TClientPanic CScreen::SetModeRotation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation)
   1.764 +	{
   1.765 +	if (!IsValidScreenSizeMode(aMode))
   1.766 +		return EWservPanicScreenModeNumber;
   1.767 +	TSizeMode& mode=*(*iModes)[aMode];
   1.768 +	if (!(ROTATION_TO_FLAG(aRotation)&mode.iAlternativeRotations))
   1.769 +		return EWservPanicRotation;
   1.770 +	TInt oldRotation=mode.iRotation;
   1.771 +	mode.iRotation=aRotation;
   1.772 +	CWsWindowGroup::NewOrientation(aMode,aRotation, iRootWindow);
   1.773 +	if (aMode==ScreenSizeMode())
   1.774 +		{
   1.775 +		UpdateOrientation();
   1.776 +		TBool shouldSwapWidthAndHeight=ShouldSwapWidthAndHeightOffScBitmap(oldRotation);
   1.777 +		ChangeDisplayModeForAllOffScreenBitmap(shouldSwapWidthAndHeight);
   1.778 +		iRootWindow->OrientationChanged();
   1.779 +		}
   1.780 +	return EWservNoPanic;
   1.781 +	}
   1.782 +
   1.783 +void CScreen::CycleDisplaySize()
   1.784 +	{
   1.785 +	TInt newMode = iScreenSizeMode;
   1.786 +	TSizeMode* sizeMode = NULL;
   1.787 +	do
   1.788 +		{
   1.789 +		newMode = (newMode+1)%iModes->Count();
   1.790 +		sizeMode = (*iModes)[newMode];
   1.791 +		}
   1.792 +	while (sizeMode==NULL);
   1.793 +	doSetScreenMode(newMode);
   1.794 +	}
   1.795 +
   1.796 +inline TBool CScreen::ShouldSwapWidthAndHeightOffScBitmap(TInt aOldRotation)
   1.797 +	{
   1.798 +	TInt rot=Abs((*iModes)[iScreenSizeMode]->iRotation-aOldRotation);
   1.799 +	return (rot==1||rot==3);
   1.800 +	}
   1.801 +
   1.802 +void CScreen::doSetScreenMode(TInt aMode)
   1.803 +	{
   1.804 +  	WS_ASSERT_DEBUG(IsValidScreenSizeMode(aMode),EWsPanicInvalidScreenSizeMode);
   1.805 +
   1.806 +	TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EScreenSizeModeAboutToChange, aMode));
   1.807 +
   1.808 +	TInt oldRotation=(*iModes)[iScreenSizeMode]->iRotation;
   1.809 +	iScreenSizeMode=aMode;
   1.810 +	TBool shouldSwapWidthAndHeight=ShouldSwapWidthAndHeightOffScBitmap(oldRotation);
   1.811 +	CWsWindowGroup::SetScreenDeviceValidStates(ETrue,shouldSwapWidthAndHeight,this);
   1.812 +	if (shouldSwapWidthAndHeight)
   1.813 +		{
   1.814 +		SetPhysicalScreenSize();
   1.815 +		}
   1.816 +	TWindowServerEvent::SendScreenDeviceChangedEvents(this);
   1.817 +	ResetFocus(NULL);
   1.818 +	}
   1.819 +
   1.820 +void CScreen::UpdateOffScreenBitmapGc(const TBool aSwapWidthAndHeight)
   1.821 +	{
   1.822 +	if (iOffScreenBitmap)
   1.823 +		{
   1.824 +		iOffScreenBitmap->UpdateGc(aSwapWidthAndHeight);
   1.825 +		}
   1.826 +	}
   1.827 +
   1.828 +void CScreen::CycleOrientation()
   1.829 +	{
   1.830 +  	WS_ASSERT_DEBUG(IsValidScreenSizeMode(iScreenSizeMode),EWsPanicInvalidScreenSizeMode);
   1.831 +	TSizeMode& currentSizeMode=*(*iModes)[iScreenSizeMode];
   1.832 +	TUint rotations=currentSizeMode.iAlternativeRotations;
   1.833 +	TInt currentRotation=currentSizeMode.iRotation;
   1.834 +	TInt rotation=currentRotation+1;
   1.835 +	while (rotation!=currentRotation)
   1.836 +		{
   1.837 +		if (rotation>CFbsBitGc::EGraphicsOrientationRotated270)
   1.838 +			rotation=CFbsBitGc::EGraphicsOrientationNormal;
   1.839 +		if (ROTATION_TO_FLAG(rotation)&rotations)
   1.840 +			break;
   1.841 +		++rotation;
   1.842 +		}
   1.843 +	if (rotation==currentRotation)
   1.844 +		{
   1.845 +		if (rotation>CFbsBitGc::EGraphicsOrientationRotated90)
   1.846 +			rotation-=2;
   1.847 +		else
   1.848 +			rotation+=2;
   1.849 +		}
   1.850 +	currentSizeMode.iRotation=REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,rotation);
   1.851 +	CWsWindowGroup::NewOrientation(iScreenSizeMode,currentSizeMode.iRotation, iRootWindow);
   1.852 +
   1.853 +	UpdateOrientation();
   1.854 +	TBool shouldSwapWidthAndHeight=ShouldSwapWidthAndHeightOffScBitmap(currentRotation);
   1.855 +	ChangeDisplayModeForAllOffScreenBitmap(shouldSwapWidthAndHeight);
   1.856 +	if (shouldSwapWidthAndHeight)
   1.857 +		{
   1.858 +		SetPhysicalScreenSize();
   1.859 +		}
   1.860 +	iRootWindow->OrientationChanged();
   1.861 +	}
   1.862 +
   1.863 +TPoint CScreen::PhysicalToLogical(TPoint aPhysicalPt)
   1.864 +	{
   1.865 +	const TSizeMode& mode=ScreenSizeModeData();
   1.866 +	TPoint logicalPt;
   1.867 +	logicalPt=aPhysicalPt-mode.iOrigin;
   1.868 +	if (mode.iScreenScale.iWidth!=1)
   1.869 +		logicalPt.iX=(logicalPt.iX>=0 ? logicalPt.iX/mode.iScreenScale.iWidth : (logicalPt.iX-(mode.iScreenScale.iWidth-1))/mode.iScreenScale.iWidth);
   1.870 +	if (mode.iScreenScale.iHeight!=1)
   1.871 +		logicalPt.iY=(logicalPt.iY>=0 ? logicalPt.iY/mode.iScreenScale.iHeight : (logicalPt.iY-(mode.iScreenScale.iHeight-1))/mode.iScreenScale.iHeight);
   1.872 +	return logicalPt;
   1.873 +	}
   1.874 +
   1.875 +void CScreen::LoadScreenSizesL(TSize aScreenSize)
   1.876 +	{
   1.877 +	_LIT(KWSERVNumScrSizeMode, "NUMSCREENMODES");
   1.878 +	TBool allowScrGap=WsIniFile->FindVar(iScreenNumber, KWSERVNumScrSizeMode, iNumScreenSizeModes);
   1.879 +	iModes=new(ELeave) RPointerArray<TSizeMode>(1);
   1.880 +	WS_ASSERT_DEBUG(!allowScrGap || (allowScrGap && iNumScreenSizeModes>0), EWsPanicInvalidScreenSizeMode);
   1.881 +	TInt screenNum=0;
   1.882 +	FOREVER
   1.883 +		{
   1.884 +		++screenNum;
   1.885 +		TBuf<32> varNameWidth;
   1.886 +		TBuf<32> varNameHeight;
   1.887 +		_LIT(KWSERVScreenWidthPattern,"SCR_WIDTH%d");
   1.888 +		varNameWidth.Format(KWSERVScreenWidthPattern,screenNum);
   1.889 +		_LIT(KWSERVScreenHeightPattern,"SCR_HEIGHT%d");
   1.890 +		varNameHeight.Format(KWSERVScreenHeightPattern,screenNum);
   1.891 +		TSize screenSize;
   1.892 +		if (!WsIniFile->FindVar(iScreenNumber, varNameWidth, screenSize.iWidth) ||
   1.893 +			!WsIniFile->FindVar(iScreenNumber, varNameHeight, screenSize.iHeight))
   1.894 +			{
   1.895 +			if (allowScrGap && screenNum<=iNumScreenSizeModes)
   1.896 +				{
   1.897 +				iModes->AppendL(NULL);
   1.898 +				continue;
   1.899 +				}
   1.900 +			else
   1.901 +				break;
   1.902 +			}
   1.903 +		if (screenSize.iWidth==0 && screenSize.iHeight==0)
   1.904 +			screenSize=aScreenSize;
   1.905 +		TSizeMode* newSizeMode=new(ELeave) TSizeMode(screenSize);
   1.906 +		CleanupStack::PushL(newSizeMode);
   1.907 +		iModes->AppendL(newSizeMode);
   1.908 +		CleanupStack::Pop(newSizeMode);
   1.909 +		++iNumSupportedScreenSizeModes;
   1.910 +		}
   1.911 +	// If sparse index is enabled and no screen size mode defined, all iModes entries will be NULL
   1.912 +	// Otherwise iModes will be empty
   1.913 +	if (iModes->Count()==0 || iNumSupportedScreenSizeModes==0)
   1.914 +		{
   1.915 +		TSizeMode* defaultSizeMode=new(ELeave) TSizeMode(aScreenSize);
   1.916 +		if (iModes->Count()>0)
   1.917 +			(*iModes)[0]=defaultSizeMode;
   1.918 +		else
   1.919 +			{
   1.920 +			CleanupStack::PushL(defaultSizeMode);
   1.921 +			iModes->AppendL(defaultSizeMode);
   1.922 +			CleanupStack::Pop(defaultSizeMode);
   1.923 +			}
   1.924 +		++iNumSupportedScreenSizeModes;
   1.925 +		}
   1.926 +	if (!allowScrGap)
   1.927 +		iNumScreenSizeModes=iNumSupportedScreenSizeModes;
   1.928 +	}
   1.929 +
   1.930 +void CScreen::LoadScreenSizeProperties()
   1.931 +	{
   1.932 +	TBool orientations[4];
   1.933 +	TUint allowableRotations=0;
   1.934 +	TInt ii;
   1.935 +	iScreenGdi->OrientationsAvailable(orientations);
   1.936 +	for (ii=0;ii<4;++ii)
   1.937 +		{
   1.938 +		if (orientations[ii])
   1.939 +			allowableRotations|=ROTATION_TO_FLAG(ii);
   1.940 +		}
   1.941 +	TBuf<32> xScale;
   1.942 +	TBuf<32> yScale;
   1.943 +	_LIT(KWSERVScreenXScale,"SCR_XSCALE%d");
   1.944 +	_LIT(KWSERVScreenYScale,"SCR_YSCALE%d");
   1.945 +	for(TInt sizeLoop=0;sizeLoop<iModes->Count();sizeLoop++)
   1.946 +		{
   1.947 +		TSizeMode* modePtr=(*iModes)[sizeLoop];
   1.948 +		if (!modePtr)
   1.949 +			continue;
   1.950 +		TSizeMode& mode=*modePtr;
   1.951 +		TBuf<32> varLeft;
   1.952 +		TBuf<32> varTop;
   1.953 +		TBuf<32> varRotation;
   1.954 +		TBuf<32> varNameWidth;
   1.955 +		TBuf<32> varNameHeight;
   1.956 +		TBuf<32> varDisplayMode;
   1.957 +		_LIT(KWSERVScreenLeftPattern,"SCR_LEFT%d");
   1.958 +		varLeft.Format(KWSERVScreenLeftPattern,sizeLoop+1);
   1.959 +		_LIT(KWSERVScreenTopPattern,"SCR_TOP%d");
   1.960 +		varTop.Format(KWSERVScreenTopPattern,sizeLoop+1);
   1.961 +		_LIT(KWSERVScreenRotationPattern,"SCR_ROTATION%d");
   1.962 +		varRotation.Format(KWSERVScreenRotationPattern,sizeLoop+1);
   1.963 +		_LIT(KWSERVScreenTwipWidthPattern,"SCR_TWIP_WIDTH%d");
   1.964 +		varNameWidth.Format(KWSERVScreenTwipWidthPattern,sizeLoop+1);
   1.965 +		_LIT(KWSERVScreenTwipHeightPattern,"SCR_TWIP_HEIGHT%d");
   1.966 +		varNameHeight.Format(KWSERVScreenTwipHeightPattern,sizeLoop+1);
   1.967 +		_LIT(KWSERVScreenDisplayModePattern,"SCR_WINDOWMODE%d");
   1.968 +		varDisplayMode.Format(KWSERVScreenDisplayModePattern,sizeLoop+1);
   1.969 +		xScale.Format(KWSERVScreenXScale,sizeLoop+1);
   1.970 +		yScale.Format(KWSERVScreenYScale,sizeLoop+1);
   1.971 +		if (!WsIniFile->FindVar(iScreenNumber,xScale,mode.iScreenScale.iWidth))
   1.972 +			{
   1.973 +			mode.iScreenScale.iWidth=1;
   1.974 +			}
   1.975 +		if (!WsIniFile->FindVar(iScreenNumber,yScale,mode.iScreenScale.iHeight))
   1.976 +			{
   1.977 +			mode.iScreenScale.iHeight=1;
   1.978 +			}
   1.979 +		if (!WsIniFile->FindVar( iScreenNumber, varLeft,mode.iOrigin.iX))
   1.980 +			{
   1.981 +			mode.iOrigin.iX=0;
   1.982 +			}
   1.983 +		if (!WsIniFile->FindVar( iScreenNumber, varTop,mode.iOrigin.iY))
   1.984 +			{
   1.985 +			mode.iOrigin.iY=0;
   1.986 +			}
   1.987 +		TPtrC displayModeName(NULL,0);
   1.988 +		mode.iDefaultDisplayMode = iScreenDevice->DisplayMode();
   1.989 +		TInt rotation=CFbsBitGc::EGraphicsOrientationNormal;
   1.990 +		TUint allRotations=0;
   1.991 +		TPtrC rotList(NULL,0);
   1.992 +		if (WsIniFile->FindVar( iScreenNumber, varRotation,rotList))
   1.993 +			{
   1.994 +			TLex lex(rotList);
   1.995 +			TBool foundOne=EFalse;
   1.996 +			TInt rot;
   1.997 +
   1.998 +			while (!lex.Eos())
   1.999 +				{
  1.1000 +				if (!FindNextValue(lex, rot))
  1.1001 +					{
  1.1002 +					break;
  1.1003 +					}
  1.1004 +				if (rot<0 || rot>360)
  1.1005 +					{
  1.1006 +					continue;
  1.1007 +					}
  1.1008 +				if (rot>4)
  1.1009 +					{
  1.1010 +					rot/=90;
  1.1011 +					}
  1.1012 +				if (!foundOne)
  1.1013 +					{
  1.1014 +					rotation=rot;
  1.1015 +					foundOne=ETrue;
  1.1016 +					}
  1.1017 +				if (rot<=CFbsBitGc::EGraphicsOrientationRotated270)
  1.1018 +					{
  1.1019 +					allRotations|=ROTATION_TO_FLAG(rot);
  1.1020 +					}
  1.1021 +				}
  1.1022 +			}
  1.1023 +		if (allRotations==0)
  1.1024 +			allRotations=ROTATION_TO_FLAG(rotation);
  1.1025 +		WS_ASSERT_ALWAYS((ROTATION_TO_FLAG(rotation)&allowableRotations)>0, EWsPanicFailedToInitialise);
  1.1026 +		mode.iRotation=(CFbsBitGc::TGraphicsOrientation&)rotation;
  1.1027 +		mode.iAlternativeRotations=allRotations & allowableRotations;
  1.1028 +		
  1.1029 +		TSize twipsSize;
  1.1030 +		TSize pixels(mode.iScreenSize);
  1.1031 +		
  1.1032 +		switch(mode.iRotation)
  1.1033 +			{
  1.1034 +			// CFbsBitGc::TGraphicsOrientation
  1.1035 +			case CFbsBitGc::EGraphicsOrientationRotated90:
  1.1036 +			case CFbsBitGc::EGraphicsOrientationRotated270:
  1.1037 +				{
  1.1038 +				//swap the axes in order to use the correct twips per pixel ratio, as CFbsScreenDevice
  1.1039 +				//does not take into consideration rotation, when converting pixels to twips
  1.1040 +				if (!WsIniFile->FindVar( iScreenNumber, varNameWidth,twipsSize.iWidth))
  1.1041 +					twipsSize.iWidth=iScreenDevice->VerticalPixelsToTwips(pixels.iWidth);
  1.1042 +				if (!WsIniFile->FindVar( iScreenNumber, varNameHeight,twipsSize.iHeight))
  1.1043 +					twipsSize.iHeight=iScreenDevice->HorizontalPixelsToTwips(pixels.iHeight);
  1.1044 +				break;
  1.1045 +				}
  1.1046 +			case CFbsBitGc::EGraphicsOrientationNormal:
  1.1047 +			case CFbsBitGc::EGraphicsOrientationRotated180:
  1.1048 +				{
  1.1049 +				if (!WsIniFile->FindVar( iScreenNumber, varNameWidth,twipsSize.iWidth))
  1.1050 +					twipsSize.iWidth=iScreenDevice->HorizontalPixelsToTwips(pixels.iWidth);
  1.1051 +				if (!WsIniFile->FindVar( iScreenNumber, varNameHeight,twipsSize.iHeight))
  1.1052 +					twipsSize.iHeight=iScreenDevice->VerticalPixelsToTwips(pixels.iHeight);
  1.1053 +				break;
  1.1054 +				}
  1.1055 +			default:
  1.1056 +				WS_PANIC_ALWAYS(EWsPanicFailedToInitialise);
  1.1057 +				break;			
  1.1058 +			}
  1.1059 +		mode.iScreenTwipsSize=twipsSize;
  1.1060 +		}
  1.1061 +//
  1.1062 +	TInt intForFindVar=0;
  1.1063 +	_LIT(KWSERVIniFileVarSizeMode,"SIZE_MODE");
  1.1064 +	WsIniFile->FindVar( iScreenNumber, KWSERVIniFileVarSizeMode,intForFindVar);
  1.1065 +	iSizeEnforcementMode=(TScreenModeEnforcement)intForFindVar;
  1.1066 +	}
  1.1067 +
  1.1068 +void CScreen::SetDigitiserAreas(const TSize& aScreenSize,const TRect& aDigitiserArea)
  1.1069 +	{
  1.1070 +	for(TInt sizeLoop=0;sizeLoop<iModes->Count();sizeLoop++)
  1.1071 +		{
  1.1072 +		TSizeMode* modePtr=(*iModes)[sizeLoop];
  1.1073 +		if (!modePtr)
  1.1074 +			continue;
  1.1075 +		TSizeMode& mode=*modePtr;
  1.1076 +		switch (mode.iRotation)
  1.1077 +			{
  1.1078 +			case CFbsBitGc::EGraphicsOrientationNormal:
  1.1079 +				mode.iPointerCursorArea=aDigitiserArea;
  1.1080 +				continue;
  1.1081 +			case CFbsBitGc::EGraphicsOrientationRotated90:
  1.1082 +				mode.iPointerCursorArea.SetRect(aDigitiserArea.iTl.iY,aScreenSize.iWidth-aDigitiserArea.iBr.iX,
  1.1083 +																aDigitiserArea.iBr.iY,aScreenSize.iWidth-aDigitiserArea.iTl.iX);
  1.1084 +				break;
  1.1085 +			case CFbsBitGc::EGraphicsOrientationRotated180:
  1.1086 +				mode.iPointerCursorArea.SetRect(-(aDigitiserArea.iBr-aScreenSize),-(aDigitiserArea.iTl-aScreenSize));
  1.1087 +				break;
  1.1088 +			case CFbsBitGc::EGraphicsOrientationRotated270:
  1.1089 +				mode.iPointerCursorArea.SetRect(aScreenSize.iHeight-aDigitiserArea.iBr.iY,aDigitiserArea.iTl.iX,
  1.1090 +																aScreenSize.iHeight-aDigitiserArea.iTl.iY,aDigitiserArea.iBr.iX);
  1.1091 +				break;
  1.1092 +			}
  1.1093 +		}
  1.1094 +	}
  1.1095 +
  1.1096 +void CScreen::GetScreenSizeAndRotation(TPixelsTwipsAndRotation &aSar, TInt aScreenMode)
  1.1097 +	{
  1.1098 +	TSizeMode& mode=*(*iModes)[aScreenMode];
  1.1099 +	aSar.iRotation=mode.iRotation;
  1.1100 +	aSar.iPixelSize=mode.iScreenSize;
  1.1101 +	aSar.iTwipsSize=mode.iScreenTwipsSize;
  1.1102 +	if (aSar.iTwipsSize.iWidth==0)
  1.1103 +		{
  1.1104 +		aSar.iTwipsSize.iWidth=iScreenDevice->HorizontalPixelsToTwips(aSar.iPixelSize.iWidth);
  1.1105 +		aSar.iTwipsSize.iHeight=iScreenDevice->VerticalPixelsToTwips(aSar.iPixelSize.iHeight);
  1.1106 +		}
  1.1107 +	}
  1.1108 +
  1.1109 +void CScreen::GetScreenSizeAndRotation(TPixelsAndRotation &aSar, TInt aScreenMode)
  1.1110 +	{
  1.1111 +	TSizeMode& mode=*(*iModes)[aScreenMode];
  1.1112 +	aSar.iRotation=mode.iRotation;
  1.1113 +	aSar.iPixelSize=mode.iScreenSize;
  1.1114 +	}
  1.1115 +
  1.1116 +TBool CScreen::SetScreenModeEnforcement(TInt aMode)
  1.1117 +	{
  1.1118 +	if (aMode<0 || aMode>ESizeEnforcementPixelsTwipsAndRotation)
  1.1119 +		return EFalse;
  1.1120 +	TScreenModeEnforcement newMode=(TScreenModeEnforcement)aMode;
  1.1121 +	if (newMode!=iSizeEnforcementMode)
  1.1122 +		{
  1.1123 +		iSizeEnforcementMode=newMode;
  1.1124 +		CWsWindowGroup::SetScreenDeviceValidStates(EFalse,EFalse,this);
  1.1125 +		ResetFocus(NULL);
  1.1126 +		}
  1.1127 +	return ETrue;
  1.1128 +	}
  1.1129 +
  1.1130 +CWsOffScreenBitmap* CScreen::OffScreenBitmap()
  1.1131 +	{
  1.1132 +	return iOffScreenBitmap;
  1.1133 +	}
  1.1134 +
  1.1135 +CFbsDevice * CScreen::DrawDevice()
  1.1136 +	{
  1.1137 +	if (iOffScreenBitmap)
  1.1138 +		return iOffScreenBitmap->BitmapDevice();
  1.1139 +	else
  1.1140 +		return ScreenDevice();
  1.1141 +	}
  1.1142 +
  1.1143 +void CScreen::FreeOffScreenBitmap()
  1.1144 +	{
  1.1145 +	// for Flicker Free test
  1.1146 +	/** Andy - this either needs to talk to render stages or simply be removed.
  1.1147 +	Deleting the OSB when CRPs already know it exists is one thing - we dont do it while
  1.1148 +	testing ones that can't cope - deleting it when render stages use it is something else.
  1.1149 +	Fortunately we never actually use it.
  1.1150 +	if (iOffScreenBitmap)
  1.1151 +		{
  1.1152 +		delete iOffScreenBitmap;
  1.1153 +		iOffScreenBitmap = NULL;
  1.1154 +		}
  1.1155 +	*/
  1.1156 +	}
  1.1157 +
  1.1158 +void CScreen::IncContrast()
  1.1159 +	{
  1.1160 +	TInt contrast;
  1.1161 +	if (iMaxContrast<0)			//If failed to get it sofar get it again
  1.1162 +		TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Get(iScreenNumber,HALData::EDisplayContrastMax,iMaxContrast));
  1.1163 +	if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Get(iScreenNumber,HALData::EDisplayContrast,contrast)))
  1.1164 +		return;
  1.1165 +	if (contrast==iMaxContrast)
  1.1166 +		contrast=-1;
  1.1167 +	TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Set(iScreenNumber,HALData::EDisplayContrast,++contrast));
  1.1168 +	}
  1.1169 +
  1.1170 +void CScreen::DecContrast()
  1.1171 +	{
  1.1172 +	TInt contrast;
  1.1173 +	if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Get(iScreenNumber,HALData::EDisplayContrast,contrast)))
  1.1174 +		return;
  1.1175 +	if (contrast==0)
  1.1176 +		{
  1.1177 +		if (iMaxContrast<0 && TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast,
  1.1178 +															HAL::Get(iScreenNumber,HALData::EDisplayContrastMax,iMaxContrast)))
  1.1179 +			return;
  1.1180 +		contrast=iMaxContrast+1;
  1.1181 +		}
  1.1182 +	TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Set(iScreenNumber,HALData::EDisplayContrast,--contrast));
  1.1183 +	}
  1.1184 +
  1.1185 +void CScreen::IncBrightness()
  1.1186 +	{
  1.1187 +	TInt brightness;
  1.1188 +	if (iMaxBrightness<0)			//If failed to get it sofar get it again
  1.1189 +		TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(iScreenNumber,HALData::EDisplayBrightnessMax,iMaxBrightness));
  1.1190 +	if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(iScreenNumber,HALData::EDisplayBrightness,brightness)))
  1.1191 +		return;
  1.1192 +	if (brightness==iMaxBrightness)
  1.1193 +		brightness=-1;
  1.1194 +	TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(iScreenNumber,HALData::EDisplayBrightness,++brightness));
  1.1195 +	}
  1.1196 +
  1.1197 +void CScreen::DecBrightness()
  1.1198 +	{
  1.1199 +	TInt brightness;
  1.1200 +	if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(iScreenNumber,HALData::EDisplayBrightness,brightness)))
  1.1201 +		return;
  1.1202 +	if (brightness==0)
  1.1203 +		{
  1.1204 +		if (iMaxBrightness<0 && TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight,
  1.1205 +													HAL::Get(iScreenNumber,HALData::EDisplayBrightnessMax,iMaxBrightness)))
  1.1206 +			return;
  1.1207 +		brightness=iMaxBrightness+1;
  1.1208 +		}
  1.1209 +	TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(iScreenNumber,HALData::EDisplayBrightness,--brightness));
  1.1210 +	}
  1.1211 +
  1.1212 +TInt CScreen::GetScreenSizeModeListL()
  1.1213 +	{
  1.1214 +	RArray<TInt> list(iNumScreenSizeModes);
  1.1215 +	CleanupClosePushL(list);
  1.1216 +	TInt index;
  1.1217 +	for (index=0; index<iModes->Count(); ++index)
  1.1218 +		{
  1.1219 +		TSizeMode* modePtr=(*iModes)[index];
  1.1220 +		if (modePtr)
  1.1221 +			list.AppendL(index);
  1.1222 +		}
  1.1223 +	TInt count=list.Count();
  1.1224 +	CWsClient::ReplyBuf(&list[0], count*sizeof(TInt));
  1.1225 +	CleanupStack::PopAndDestroy(&list);
  1.1226 +	return count;
  1.1227 +	}
  1.1228 +
  1.1229 +void CScreen::SetInitialScreenSizeMode()
  1.1230 +	{
  1.1231 +	// get first/lowest valid screen size mode, if mode 0 not available
  1.1232 +	TInt index;
  1.1233 +	for (index=0; index<iModes->Count(); ++index)
  1.1234 +		{
  1.1235 +		TSizeMode* modePtr=(*iModes)[index];
  1.1236 +		if (modePtr)
  1.1237 +			{
  1.1238 +			iScreenSizeMode=index;
  1.1239 +			break;
  1.1240 +			}
  1.1241 +		}
  1.1242 +	}
  1.1243 +
  1.1244 +TDisplayMode CScreen::FirstDefaultDisplayMode() const
  1.1245 +	{
  1.1246 +	TInt mode=-1;
  1.1247 +	while ((*iModes)[++mode]==NULL)
  1.1248 +		{
  1.1249 +		WS_ASSERT_DEBUG(mode<iModes->Count()-1,EWsPanicInvalidScreenSizeMode);
  1.1250 +		}
  1.1251 +	return((*iModes)[mode]->iDefaultDisplayMode);
  1.1252 +	}
  1.1253 +
  1.1254 +CFbsDevice* CScreen::GetFbsDevice()
  1.1255 +	{
  1.1256 +	if (iRedirectGc)
  1.1257 +		{
  1.1258 +		WS_ASSERT_DEBUG(iRedirectGc->Device(), EWsPanicNullDeviceHandle);
  1.1259 +		return static_cast<CFbsDevice*>(iRedirectGc->Device());
  1.1260 +		}
  1.1261 +	else
  1.1262 +		{
  1.1263 +		return iScreenDevice;
  1.1264 +		}
  1.1265 +	}
  1.1266 +
  1.1267 +void CScreen::AddRedrawRegion(const TRegion& aRegion, TBool aSchedule, TRedrawDepth aDepth)
  1.1268 +	{
  1.1269 +	iRedraw->AddRedrawRegion(aRegion, aSchedule, aDepth);
  1.1270 +	}
  1.1271 +
  1.1272 +void CScreen::DoRedrawNow()
  1.1273 +	{
  1.1274 +	iRedraw->DoRedrawNow();
  1.1275 +	}
  1.1276 +
  1.1277 +// implementing MWsScreen
  1.1278 +
  1.1279 +const TTime& CScreen::Now() const
  1.1280 +	{
  1.1281 +	return iRedraw->Now();
  1.1282 +	}
  1.1283 +
  1.1284 +void CScreen::ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop)
  1.1285 +	{
  1.1286 +	iRedraw->ScheduleAnimation(aRect,aFromNow,aFreq,aStop);
  1.1287 +	}
  1.1288 +
  1.1289 +void CScreen::OnAnimation()
  1.1290 +	{
  1.1291 +	iRedraw->OnAnimation();
  1.1292 +	}
  1.1293 +	
  1.1294 +void CScreen::Redraw()
  1.1295 +	{
  1.1296 +	STACK_REGION bounds;
  1.1297 +	bounds.AddRect(DrawableArea());
  1.1298 +	AddRedrawRegion(bounds);
  1.1299 +	bounds.Close();
  1.1300 +	}
  1.1301 +
  1.1302 +TBool CScreen::RedrawInvalid(const TArray<TGraphicDrawerId>& aInvalid)
  1.1303 +	{
  1.1304 +	TBool wasDirty = EFalse;
  1.1305 +	STACK_REGION bounds;
  1.1306 +	bounds.AddRect(DrawableArea());
  1.1307 +	STACK_REGION dirty;
  1.1308 +	TWalkWindowTreeCalcInvalidGraphics calc(&bounds,dirty,aInvalid);
  1.1309 +	if(calc.CreateSubRegion())
  1.1310 +		{
  1.1311 +		calc.CalcInvalid(*this);
  1.1312 +		if(dirty.CheckError() || dirty.Count())
  1.1313 +			{
  1.1314 +			Redraw();
  1.1315 +			wasDirty = ETrue;
  1.1316 +			}
  1.1317 +		calc.DestroyRegions();
  1.1318 +		}
  1.1319 +	dirty.Close();
  1.1320 +	bounds.Close();
  1.1321 +	return wasDirty;
  1.1322 +	}
  1.1323 +
  1.1324 +/**
  1.1325 + Overidding MWsObjectProvider
  1.1326 +*/
  1.1327 +TAny* CScreen::ResolveObjectInterface(TUint aTypeId)
  1.1328 +	{
  1.1329 +	TAny* interface = NULL;
  1.1330 +
  1.1331 +	switch (aTypeId)
  1.1332 +		{
  1.1333 +		case MWsScreenConfig::EWsObjectInterfaceId:
  1.1334 +			interface = static_cast<MWsScreenConfig*>(this);
  1.1335 +			break;
  1.1336 +		case MWsFrontBuffer::EWsObjectInterfaceId:
  1.1337 +			interface = static_cast<MWsFrontBuffer*>(this);
  1.1338 +			break;	
  1.1339 +		case MWsWindow::EWsObjectInterfaceId:
  1.1340 +			interface = static_cast<MWsWindow*>(RootWindow());
  1.1341 +			break;
  1.1342 +		}
  1.1343 +	
  1.1344 +	if (!interface && iOffScreenBitmap)
  1.1345 +		interface = iOffScreenBitmap->ResolveObjectInterface(aTypeId);
  1.1346 +
  1.1347 +	if (!interface)
  1.1348 +		interface = iRedraw->ResolveObjectInterface(aTypeId);
  1.1349 +
  1.1350 +	return interface;
  1.1351 +	}
  1.1352 +
  1.1353 +/**
  1.1354 + Implementing MWsScreenConfig
  1.1355 +*/
  1.1356 +TDisplayMode CScreen::DisplayMode() const
  1.1357 +	{
  1.1358 +	return iScreenDevice->DisplayMode();
  1.1359 +	}
  1.1360 +
  1.1361 +TSize CScreen::SizeInPixels() const
  1.1362 +	{
  1.1363 +	return iScreenDevice->SizeInPixels();
  1.1364 +	}
  1.1365 +
  1.1366 +TSize CScreen::ScreenModeSizeInPixels() const
  1.1367 +	{
  1.1368 +	return (*iModes)[iScreenSizeMode]->iScreenSize;
  1.1369 +	}
  1.1370 +
  1.1371 +TInt CScreen::Stride() const
  1.1372 +	{
  1.1373 +	return iScreenDevice->Stride();
  1.1374 +	}
  1.1375 +
  1.1376 +CFbsBitGc::TGraphicsOrientation CScreen::Orientation() const
  1.1377 +	{
  1.1378 +	return iScreenDevice->Orientation();
  1.1379 +	}
  1.1380 +
  1.1381 +TInt CScreen::SizeMode() const
  1.1382 +	{
  1.1383 +	return iScreenSizeMode;
  1.1384 +	}
  1.1385 +
  1.1386 +TSize CScreen::ScalingFactor() const
  1.1387 +	{
  1.1388 +	return (*iModes)[iScreenSizeMode]->iScreenScale;
  1.1389 +	}
  1.1390 +
  1.1391 +TPoint CScreen::Origin() const
  1.1392 +	{
  1.1393 +	return (*iModes)[iScreenSizeMode]->iOrigin;
  1.1394 +	}
  1.1395 +
  1.1396 +TPoint CScreen::ScaledOrigin() const
  1.1397 +	{
  1.1398 +	return (*iModes)[iScreenSizeMode]->ScaledOrigin();
  1.1399 +	}
  1.1400 +
  1.1401 +/**
  1.1402 + Implementing MWsFrontBuffer
  1.1403 +*/
  1.1404 +const TAny* CScreen::GetBits()
  1.1405 +	{
  1.1406 +	return iScreenDevice->Bits();
  1.1407 +	}
  1.1408 +
  1.1409 +CFbsBitGc* CScreen::GetBitGc()
  1.1410 +	{
  1.1411 +	return iScreenGdi;
  1.1412 +	}
  1.1413 +
  1.1414 +CFbsBitGc* CScreen::GetBitGcCurrent()
  1.1415 +	{
  1.1416 +	if (iRedirectGc)
  1.1417 +		return iRedirectGc;
  1.1418 +	else
  1.1419 +		return iScreenGdi;
  1.1420 +	}
  1.1421 +	
  1.1422 +/**
  1.1423 + Redirect screen drawing to specified gc. Passing NULL will stop redirection.
  1.1424 +*/
  1.1425 +TInt CScreen::SetBitGc(CFbsBitGc* aBitGc)
  1.1426 +	{
  1.1427 +	if (aBitGc && (aBitGc==iScreenGdi || aBitGc==iRedirectGc))
  1.1428 +		return KErrAlreadyExists;
  1.1429 +
  1.1430 +	if (aBitGc && !aBitGc->Device())
  1.1431 +		return KErrArgument;
  1.1432 +
  1.1433 +	// screen shall not be redirected when there is at least one DSA client is actively drawing
  1.1434 +	if (aBitGc && iDsaDrawState==EDsaDrawStateDrawing)
  1.1435 +		return KErrInUse;
  1.1436 +
  1.1437 +	iRedirectGc = aBitGc;
  1.1438 +	
  1.1439 +	// Redraw window CWindowGC objects have CFbsBitGcs active on the screen device and need reactivating:
  1.1440 +	TWalkWindowTreeReactivateGcs wwt;
  1.1441 +	RootWindow()->WalkWindowTree(wwt, EWalkChildren);
  1.1442 +	
  1.1443 +	// Andy - should we do something with the CPlaybackGc here?  Can they be active at this point?
  1.1444 +	// if so, do they care, or should it already be handled for them?
  1.1445 +
  1.1446 +	return KErrNone;
  1.1447 +	}
  1.1448 +
  1.1449 +TInt CScreen::SetBitGc(CFbsBitGc* aBitGc, TBool aInvalidateScreen)
  1.1450 +	{
  1.1451 +	const TInt err = SetBitGc(aBitGc);
  1.1452 +
  1.1453 +	if (err==KErrNone && aInvalidateScreen)
  1.1454 +		iRootWindow->InvalidateWholeScreen();
  1.1455 +
  1.1456 +	return err;
  1.1457 +	}
  1.1458 +
  1.1459 +void CScreen::DiscardAllSchedules()
  1.1460 +	{
  1.1461 +	iRedraw->DiscardAllSchedules();
  1.1462 +	}
  1.1463 +
  1.1464 +void CScreen::ScheduleRegionUpdate(const TRegion* aDefinitelyDirty)
  1.1465 +	{
  1.1466 +	iRedraw->ScheduleRegionUpdate(aDefinitelyDirty);
  1.1467 +	}
  1.1468 +void	CScreen::DSARegionSyncStart( CWsDirectScreenAccess& aDSA )
  1.1469 +	{
  1.1470 +	iRedraw->BanThisRegionUpdate( aDSA.RegionUnderSync() );
  1.1471 +	}
  1.1472 +
  1.1473 +void	CScreen::DSARegionSyncOver( CWsDirectScreenAccess& aDSA  )
  1.1474 +	{
  1.1475 +	iRedraw->LiftRegionUpdateBan( aDSA.RegionUnderSync()  );
  1.1476 +	}
  1.1477 +
  1.1478 +TBool CScreen::IsUpdatePending()
  1.1479 +	{
  1.1480 +	return iRedraw->IsUpdatePending();
  1.1481 +	}
  1.1482 +
  1.1483 +TBool 	CScreen::IsDSAClientWindow( const CWsClientWindow* aWin ) const
  1.1484 +	{
  1.1485 +	TBool res = EFalse; 
  1.1486 +	if ( ! iDirects.IsEmpty() )
  1.1487 +		{
  1.1488 +		TSglQueIter<CWsDirectScreenAccess> iter( (TSglQueBase&)iDirects );
  1.1489 +		iter.SetToFirst();
  1.1490 +		CWsDirectScreenAccess* dsa;
  1.1491 +		while ( (dsa = iter++) != NULL && !res )
  1.1492 +			{
  1.1493 +			res =  (dsa->ClientWindow() == aWin ) && ( dsa->IsVisible() || dsa->IsSyncTimeoutPending() );
  1.1494 +			}
  1.1495 +		}
  1.1496 +	return res;	
  1.1497 +	}
  1.1498 +
  1.1499 +void CScreen::AcceptFadeRequest( CWsWindow* aWin, TBool aIsFaded, TBool aIsBehind, TBool aIncludeChildren )
  1.1500 +	{
  1.1501 +	iRedraw->AcceptFadeRequest( aWin, aIsFaded, aIsBehind, aIncludeChildren );
  1.1502 +	}