Update contrib.
1 // Copyright (c) 2006-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.
23 #include "walkwindowtree.h"
24 #include "offscreenbitmap.h"
26 #include "windowgroup.h"
32 #include "ScreenRedraw.h"
33 #include "wspluginmanager.h"
35 GLREF_D CDebugLogBase *wsDebugLog;
36 GLREF_D TDisplayMode ParseDisplayMode(const TDesC& aModeName);
38 LOCAL_D TBool FindNextValue(TLex& aLex, TInt& aValue) // assumes the list cannot contain *negative* integers
42 const TUint character=aLex.Peek();
43 if (Rng(TUint('0'), character, TUint('9')) || (character=='-'))
50 return (aLex.Val(aValue)==KErrNone);
53 CScreen::CFallbackMap * CScreen::CFallbackMap::NewL(CScreen* aScreen)
55 CFallbackMap * self = new (ELeave) CFallbackMap(aScreen);
56 CleanupStack::PushL(self);
58 CleanupStack::Pop(self);
62 CScreen::CFallbackMap::CFallbackMap(CScreen* aScreen) :
64 iRegion(TRect(TPoint(0,0), TSize(1,1))),
69 CScreen::CFallbackMap::~CFallbackMap()
74 void CScreen::CFallbackMap::ConstructL()
78 for (TInt num = 0; num < iScreen->NumScreenSizeModes(); ++num)
80 if (iScreen->IsValidScreenSizeMode(num))
82 const TSizeMode & mode = iScreen->ScreenSizeModeData(num);
83 TInt width = mode.iScreenSize.iWidth / 32;
84 if (mode.iScreenSize.iWidth & (32 - 1))
86 TInt size = width * mode.iScreenSize.iHeight;
92 iMap = new (ELeave) TInt [iMapSize];
95 void CScreen::CFallbackMap::Prepare()
97 const TSizeMode & mode = iScreen->ScreenSizeModeData();
98 Mem::FillZ(iMap, iMapSize * sizeof(TInt));
99 iCount = mode.iScreenSize.iHeight * mode.iScreenSize.iWidth;
100 WS_ASSERT_DEBUG(iRegion.Count() == 1, EWsPanicScreenFallback);
102 iRegion.AddRect(TRect(mode.iOrigin, mode.iScreenSize));
105 TBool CScreen::CFallbackMap::FillRegion(const TRegion& aRegion)
107 WS_ASSERT_DEBUG(!aRegion.CheckError(), EWsPanicScreenFallback);
108 if (aRegion.Count() > 20 || aRegion.CheckError())
113 const TRect * rect = aRegion.RectangleList();
114 for (TInt num = 0; num < aRegion.Count(); ++num)
116 hit = FillRect(*rect) || hit;
125 // x >> 5 is equivalent to x / 32
126 // 0x1F is the rounding error when dividing by 32
128 // The compiler might do all the optimizations for us - not checked.
129 TBool CScreen::CFallbackMap::FillRect(const TRect& aRect)
132 const TSizeMode & mode = iScreen->ScreenSizeModeData();
133 TRect scrrect(mode.iOrigin, mode.iScreenSize);
135 rect.Intersection(scrrect);
136 TInt rowWidthInInts = mode.iScreenSize.iWidth;
137 if (rowWidthInInts & 0x1F)
138 rowWidthInInts += 0x20;
139 rowWidthInInts >>= 5;
141 TInt colStartInInts = rect.iTl.iX >> 5;
142 TInt firstOffsetInBits = rect.iTl.iX & 0x1F;
144 for(TInt row = rect.iTl.iY; row < rect.iBr.iY; ++row)
146 TInt * map = iMap + row * rowWidthInInts + colStartInInts;
147 TInt offsetShift = 31 - firstOffsetInBits;
148 for (TInt col = rect.iTl.iX; col < rect.iBr.iX; ++col)
150 WS_ASSERT_DEBUG(map - iMap < iMapSize, EWsPanicScreenFallback);
151 if (!(*map & 1 << offsetShift))
157 (*map) |= (1 << offsetShift);
170 TInt CScreen::CFallbackMap::Count() const
175 const TRect * CScreen::CFallbackMap::Rect() const
177 return iRegion.RectangleList();
180 const RRegion * CScreen::CFallbackMap::Region() const
188 CScreen::CScreen(): iDirects(_FOFF(CWsDirectScreenAccess,iLink)), iMaxContrast(-1), iMaxBrightness(-1)
195 delete iOffScreenBitmap;
200 for(ii=iNumScreenSizeModes-1;ii>=0;--ii)
202 delete (*iModes)[ii];
208 delete iScreenDevice;
210 delete iSpriteManager;
214 void CScreen::ConstructL(const TRect& aDigitiserArea, TInt aScreenNumber )
216 iScreenNumber = aScreenNumber ;
220 _LIT(KWSERVInitScreen,"Initialising for Screen %d");
221 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant, KWSERVInitScreen, aScreenNumber);
224 CreateScreenDeviceL();
225 iScreenDevice->SetAutoUpdate(EFalse);
226 iPhysicalScreenSize=iScreenDevice->SizeInPixels();
227 LoadScreenSizesL(iPhysicalScreenSize);
228 // mode 0 might not be available, get the first/lowest valid mode
229 SetInitialScreenSizeMode();
231 iFallbackMap = CFallbackMap::NewL(this);
233 iScreenGdi=CFbsBitGc::NewL();
234 iScreenGdi->Activate(iScreenDevice);
235 LoadScreenSizeProperties();
236 SetDigitiserAreas(iScreenDevice->SizeInPixels(),aDigitiserArea);
238 iScreenGdi->SetOrientation(Orientation());
239 const TSizeMode& sizeMode=ScreenSizeModeData(ScreenSizeMode());
240 iScreenDevice->SetScalingFactor(sizeMode.iOrigin,sizeMode.iScreenScale.iWidth,sizeMode.iScreenScale.iHeight,1,1);
241 iScreenDevice->ChangeScreenDevice(NULL); //This is necessary to initialise the screen
243 // Off Screen Bitmaps
244 iOffScreenBitmap=CWsOffScreenBitmap::NewL(this);
245 TSize osbSize(iOffScreenBitmap->Bitmap()->SizeInPixels());
246 TSize osbTwips(sizeMode.iScreenTwipsSize);
247 if (osbSize!=sizeMode.iScreenSize)
249 // The specified screen twips size is for the specified screen pixel size, however the OSB
250 // is potentially larger as it needs to hold the maximum possible screen size, so we need
251 // to scale the twips size up correspondingly.
252 osbTwips.iWidth=sizeMode.iScreenTwipsSize.iWidth*osbSize.iWidth/sizeMode.iScreenSize.iWidth;
253 osbTwips.iHeight=sizeMode.iScreenTwipsSize.iHeight*osbSize.iHeight/sizeMode.iScreenSize.iHeight;
255 iOffScreenBitmap->Bitmap()->SetSizeInTwips(osbTwips);
258 _LIT(KWSERVIniFileVarAutoClear,"AUTOCLEAR");
259 WsIniFile->FindVar(iScreenNumber,KWSERVIniFileVarAutoClear,autoClear);
265 _LIT(KBackLight,"BACKLIGHTCONTROL");
266 iBackLightFlag=WsIniFile->FindVar( iScreenNumber, KBackLight);
268 _LIT(KWSERVIniFileVarBlankScreen, "BLANKSCREENONROTATION");
269 if (WsIniFile->FindVar(iScreenNumber, KWSERVIniFileVarBlankScreen))
271 iFlags|=EBlankScreenOnRotation;
274 SetShadowVector(TPoint(EDefaultShadowX,EDefaultShadowY));
276 iRedraw = CScreenRedraw::NewL(*this);
278 iRootWindow = new (ELeave) CWsRootWindow(NULL, this);
279 iRootWindow->ConstructL();
281 TInt refreshRate = 1000000;
282 _LIT(KDebugBar, "DEBUGBAR");
283 if (WsIniFile->FindVar(refreshRate, KDebugBar))
285 if (refreshRate < 100000)
287 const TPoint origin = CurrentScreenModeOrigin();
288 iDebugBar = CDebugBar::NewL(this, TRect(origin.iX,origin.iY,origin.iX+CurrentScreenSize().iWidth,origin.iY+16), refreshRate);
290 // Default fading parameters
294 iSpriteManager = CWsSpriteManager::NewL();
295 //Look for fading plugins here.
296 _LIT(KDefaultFaderPluginName, "wsfader");
297 _LIT(KFaderPluginIni,"FADER");
298 CWsPluginManager* mgr = CWsTop::WindowServer()->PluginManager();
302 if (WsIniFile->FindVar(iScreenNumber, KFaderPluginIni, faderName))
303 iFader = mgr->FindNamedImplementation<MWsFader>(faderName);
305 iFader = mgr->FindNamedImplementation<MWsFader>(KDefaultFaderPluginName);
308 _LIT(KBltOffScreenBitmap,"BLTOFFSCREENBITMAP");
309 if (WsIniFile->FindVar(iScreenNumber, KBltOffScreenBitmap))
311 iFlags|=EBltOffScreenBitmap;
315 void CScreen::CreateScreenDeviceL()
317 _LIT(KScreenMode,"SCREENMODE");
318 _LIT(KWindowMode,"WINDOWMODE");
319 TPtrC screenModeName;
320 TDisplayMode screenMode = ENone;
321 if (WsIniFile->FindVar(iScreenNumber, KScreenMode, screenModeName))
323 screenMode = ParseDisplayMode(screenModeName);
325 else if (WsIniFile->FindVar(iScreenNumber, KWindowMode, screenModeName))
327 screenMode = ParseDisplayMode(screenModeName);
330 if (screenMode != ENone)
332 if(DoCreateScreenDevice(screenMode))
336 // No screen mode was specified, or we failed creating the specified screen
337 // mode. Default to as high display mode as possible.
339 // Check if the screen device supports 16M colors (it can only support one of
340 // 16M, 16MU, 16MA, 16MAP, or none of them)
341 screenMode = CFbsDevice::DisplayMode16M();
342 if(screenMode != ENone)
344 if(DoCreateScreenDevice(screenMode))
348 // Try creating the screen device with all available display modes, going from best to worst
349 __ASSERT_COMPILE(EColorLast == 14); // if any display mode is added to TDisplayMode we must update the list below
350 // (the list below contains all enums in TDisplayMode except ENone, ERgb, EColorLast)
351 if(DoCreateScreenDevice(EColor16MAP))
353 if(DoCreateScreenDevice(EColor16MA))
355 if(DoCreateScreenDevice(EColor16MU))
357 if(DoCreateScreenDevice(EColor16M))
359 if(DoCreateScreenDevice(EColor64K))
361 if(DoCreateScreenDevice(EColor4K))
363 if(DoCreateScreenDevice(EColor256))
365 if(DoCreateScreenDevice(EColor16))
367 if(DoCreateScreenDevice(EGray256))
369 if(DoCreateScreenDevice(EGray16))
371 if(DoCreateScreenDevice(EGray4))
373 if(DoCreateScreenDevice(EGray2))
376 User::Leave(KErrNotSupported);
379 TBool CScreen::DoCreateScreenDevice(TDisplayMode aScreenMode)
381 TRAPD(err, iScreenDevice = CFbsScreenDevice::NewL(iScreenNumber, aScreenMode));
382 return (err == KErrNone);
385 void CScreen::AbortDSAs(RDirectScreenAccess::TTerminationReasons aReason,TSglQue<CWsDirectScreenAccess>& aDirects)
387 if (aDirects.IsEmpty())
390 TSglQueIter<CWsDirectScreenAccess> iter(aDirects);
391 CWsDirectScreenAccess* direct;
392 while (( direct=iter++)!=NULL )
395 direct->SignalAbort( aReason );
398 TRequestStatus timerStatus;
399 RTimer& timer=CWsTop::Timer();
402 TRequestStatus** cancelReqList = (TRequestStatus**) User::AllocZ( sizeof( TRequestStatus* ) * (nofDSAs + 1) );
403 if ( NULL != cancelReqList )
407 timer.After( timerStatus, KDSAAbortingImmediateRespAwaitFrameMicrosec );
410 while (( direct=iter++)!=NULL )
412 cancelReqList[ dsaNo ] = &direct->AbortStatus();
415 cancelReqList[ 0 ] = &timerStatus;
417 User::WaitForNRequest( cancelReqList, nofDSAs + 1 );
420 while (( direct=iter++)!=NULL )
422 if ( direct->AbortStatus() != KRequestPending )
423 direct->CancelAbortObject(); // responded
428 if (timerStatus == KRequestPending)
431 User::WaitForRequest( timerStatus );
434 User::Free( cancelReqList );
439 while ((direct=iter++) != NULL)
442 TRequestStatus timerStatus;
443 RTimer& timer=CWsTop::Timer();
445 timer.After(timerStatus, KDSAAbortingImmediateRespAwaitFrameMicrosec);
446 //wait for response or timeout
447 User::WaitForRequest(direct->AbortStatus(), timerStatus);
449 if (direct->AbortStatus() != KRequestPending)
450 direct->CancelAbortObject(); //responded
452 direct->Abort(); //timed out
454 if (timerStatus == KRequestPending)
457 User::WaitForRequest(timerStatus);
463 void CScreen::AbortAllDirectDrawing(RDirectScreenAccess::TTerminationReasons aReason)
465 AbortDSAs(aReason,iDirects);
468 void CScreen::AddDirect(CWsDirectScreenAccess& aDirect)
470 TBool emptyBefore = iDirects.IsEmpty();
471 iDirects.AddLast(aDirect);
472 TBool emptyAfter = iDirects.IsEmpty();
473 if (emptyBefore && ! emptyAfter)
476 wsevent.SetType(EEventDirectScreenAccessBegin);
477 *(wsevent.Int()) = iScreenNumber;
478 TWindowServerEvent::PublishNotification(wsevent);
481 if (iDsaDrawState==EDsaDrawStateIdle && aDirect.IsVisible())
483 iDsaDrawState = EDsaDrawStateDrawing;
484 TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EDsaDrawingBegin, iScreenNumber));
488 void CScreen::RemoveDirect(CWsDirectScreenAccess& aDirect)
490 TBool emptyBefore = iDirects.IsEmpty();
491 iDirects.Remove(aDirect);
492 TBool emptyAfter = iDirects.IsEmpty();
493 if (emptyAfter && ! emptyBefore)
496 wsevent.SetType(EEventDirectScreenAccessEnd);
497 *(wsevent.Int()) = iScreenNumber;
498 TWindowServerEvent::PublishNotification(wsevent);
501 if (iDsaDrawState==EDsaDrawStateDrawing && aDirect.IsVisible() && !HasVisibleDirectOnQueue())
503 iDsaDrawState = EDsaDrawStateIdle;
504 TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EDsaDrawingEnd, iScreenNumber));
508 TBool CScreen::HasVisibleDirectOnQueue()
510 if (iDirects.IsEmpty())
513 TSglQueIter<CWsDirectScreenAccess> iter(iDirects);
514 CWsDirectScreenAccess* dsa;
515 while ((dsa=iter++)!=NULL)
517 if (dsa->IsVisible())
525 TBool CScreen::IsDirectOnQueue(const CWsDirectScreenAccess* aDirect)
527 TSglQueIter<CWsDirectScreenAccess> iter(iDirects);
528 CWsDirectScreenAccess* direct;
529 while ((direct=iter++)!=NULL)
537 #if defined(__WINS__)
538 void CScreen::UpdateOffScreenBitmap()
540 if (iOffScreenBitmap)
541 iOffScreenBitmap->Update();
546 void CScreen::KillForegroundSession()
550 _LIT(KWSERVKillWinGp,"Killing Session owning Window Group with Id=%d");
552 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything,KWSERVKillWinGp,iCurrentFocus->Identifier());
553 iCurrentFocus->WsOwner()->SessionTerminate();
557 CWsWindowGroup* CScreen::FindNewFocus(CWsRootWindow* aRootWindow)
559 CWsWindowGroup* newFocus;
560 for(newFocus=aRootWindow->Child();newFocus && newFocus->CanReceiveFocus()==EFalse;newFocus=newFocus->NextSibling()) {}
565 void CScreen::ResetFocus(CWsWindowGroup* aClosingWindow)
567 CWsWindowGroup* oldFocus=iCurrentFocus;
568 CWsWindowGroup* newFocus=NULL;
569 CScreen* newFocusedScreen=NULL;
570 iCurrentFocus=FindNewFocus(iRootWindow);
571 TBool focusedScreen= EFalse;
572 /*Focus policy is specified in the wsini.ini file using the keyword 'MULTIFOCUSPOLICY'.
573 If the keyword is not specified, then the default policy is run.
575 if(!CWsTop::MultiFocusPolicy())
577 focusedScreen=(this==CWsTop::CurrentFocusScreen()); //check if this screen is the focus screen
578 if (!iCurrentFocus && focusedScreen)
580 /*If this screen is the focused screen but does not have a focusable window group, then search for the
581 next screen that has a focusable window group and set that screen as the focused screen.
583 CScreen* screen=NULL;
585 for (screenNo=0; screenNo<CWsTop::NumberOfScreens() && !newFocus; ++screenNo)
587 if (screenNo!=iScreenNumber)
589 screen=CWsTop::Screen(screenNo);
590 newFocus=FindNewFocus(screen->RootWindow());
594 newFocusedScreen=screen;
597 /*Scenario A: multi-focus policy
598 newFocusedScreen is NULL
599 focusedScreen is EFalse
600 CWsTop::MultiFocusPolicy() returns ETrue
601 Check if the new focusable window group is not the same, send focus lost message to window group
602 that has just lost focus and send focus gain message to window group that can receive focus.
603 Scenario B: single-focus policy (default)
604 CWsTop::MultiFocusPolicy() returns EFalse
605 Check if the new focusable window group is not the same or if there is a new focused screen, send focus lost
606 message to window group that has just lost focus and send focus gain message to window group that can receive focus.
608 if (iCurrentFocus!=oldFocus || newFocusedScreen)
610 if (oldFocus && (focusedScreen||CWsTop::MultiFocusPolicy()) && oldFocus!=aClosingWindow)
612 oldFocus->LostFocus();
614 if (newFocusedScreen)
616 CWsTop::SetCurrentFocusScreen(newFocusedScreen);
617 newFocus->ReceivedFocus();
619 else if (iCurrentFocus && (focusedScreen||CWsTop::MultiFocusPolicy()))
621 iCurrentFocus->ReceivedFocus();
623 WsPointer::UpdatePointerCursor();
624 TWindowServerEvent::SendFocusChangedEvents();
626 TWindowServerEvent::SendGroupListChangedEvents();
629 void CScreen::SetShadowVector(const TPoint &aShadowShift)
631 iShadowShift=aShadowShift;
634 void CScreen::RemoveFromDefaultOwningList(CWsWindowGroup *aDestroyedGroup)
636 for (CWsWindowGroup **group=&iDefaultOwningWindow;*group;group=(*group)->NextDefaultOwningWindowPtr())
638 if (*group==aDestroyedGroup)
640 *group=*aDestroyedGroup->NextDefaultOwningWindowPtr();
646 void CScreen::SetDefaultOwningWindow(CWsWindowGroup *aGroup)
648 RemoveFromDefaultOwningList(aGroup);
649 aGroup->SetNextDefaultOwningWindow(iDefaultOwningWindow);
650 iDefaultOwningWindow=aGroup;
653 void CScreen::GetScanLine(const TWsSdCmdGetScanLine *aGetScanLine)
655 TRgb buf[EGetScanLineBufLen];
656 TPtr8 des((TUint8 *)&buf[0],EGetScanLineBufLen*sizeof(TRgb));
657 TPoint pos(aGetScanLine->pos);
659 TInt len=(des.MaxLength()*EGetScanLineBufLen)/CFbsBitmap::ScanLineLength(EGetScanLineBufLen,aGetScanLine->dispMode);
660 if (aGetScanLine->len < 0 || (CFbsBitmap::ScanLineLength(aGetScanLine->len, aGetScanLine->dispMode) >
661 CWsClient::CurrentClient()->ClientMessage().GetDesMaxLength(1)))
663 CWsClient::PanicCurrentClient(EWservPanicInvalidParameter);
667 if ((aGetScanLine->len-read)<len)
668 len=aGetScanLine->len-read;
669 iScreenDevice->GetScanLine(des,pos,len,aGetScanLine->dispMode);
670 CWsClient::ReplyBuf(des);
672 if (read==aGetScanLine->len)
678 void CScreen::MaxNumColors(TInt& aColors,TInt& aGrays)
681 aColors=TDisplayModeUtils::NumDisplayModeColors(DisplayMode());
682 if (!TDisplayModeUtils::IsDisplayModeColor(DisplayMode()))
689 #define MODE_TO_FLAG(x) 1<<(x-1)
690 #define ROTATION_TO_FLAG(x) 1<<x
691 TInt CScreen::ColorModesFlag()
693 return MODE_TO_FLAG(DisplayMode());
696 void CScreen::Update()
698 #if defined(__WINS__) && defined(_DEBUG)
699 if (iOffScreenBitmap)
700 iOffScreenBitmap->Update();
704 TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EScreenUpdated, iScreenNumber));
706 iScreenDevice->Update();
709 void CScreen::UpdateGcs()
711 iScreenGdi->Activate(iScreenDevice);
714 void CScreen::ChangeDisplayModeForAllOffScreenBitmap(TBool aSwapWidthAndHeight/*=EFalse*/)
717 if (iOffScreenBitmap)
719 err=iOffScreenBitmap->DisplayModeChanged(aSwapWidthAndHeight);
722 delete iOffScreenBitmap;
723 iOffScreenBitmap=NULL;
728 CFbsScreenDevice *CScreen::ScreenDevice()
730 return(iScreenDevice);
733 void CScreen::UpdateOrientation()
735 CFbsBitGc::TGraphicsOrientation orientation=Orientation();
736 iScreenGdi->SetOrientation(orientation);
737 TWservCrEvent crEvent(TWservCrEvent::EScreenOrientationChanged,iScreenNumber,&orientation);
738 TWindowServerEvent::NotifyDrawer(crEvent);
741 void CScreen::SetPointerCursorArea(TInt aMode,const TRect& aRect)
743 (*iModes)[aMode]->iPointerCursorArea=aRect;
744 WsPointer::SetPointerCursorPos(WsPointer::PointerCursorPos());
747 CFbsBitGc::TGraphicsOrientation CScreen::Orientation()
749 WS_ASSERT_DEBUG(IsValidScreenSizeMode(iScreenSizeMode),EWsPanicInvalidScreenSizeMode);
750 return (*iModes)[iScreenSizeMode]->iRotation;
753 TRect CScreen::DrawableArea() const
756 iScreenDevice->GetDrawRect(drawRect);
760 TClientPanic CScreen::SetModeRotation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation)
762 if (!IsValidScreenSizeMode(aMode))
763 return EWservPanicScreenModeNumber;
764 TSizeMode& mode=*(*iModes)[aMode];
765 if (!(ROTATION_TO_FLAG(aRotation)&mode.iAlternativeRotations))
766 return EWservPanicRotation;
767 TInt oldRotation=mode.iRotation;
768 mode.iRotation=aRotation;
769 CWsWindowGroup::NewOrientation(aMode,aRotation, iRootWindow);
770 if (aMode==ScreenSizeMode())
773 TBool shouldSwapWidthAndHeight=ShouldSwapWidthAndHeightOffScBitmap(oldRotation);
774 ChangeDisplayModeForAllOffScreenBitmap(shouldSwapWidthAndHeight);
775 iRootWindow->OrientationChanged();
777 return EWservNoPanic;
780 void CScreen::CycleDisplaySize()
782 TInt newMode = iScreenSizeMode;
783 TSizeMode* sizeMode = NULL;
786 newMode = (newMode+1)%iModes->Count();
787 sizeMode = (*iModes)[newMode];
789 while (sizeMode==NULL);
790 doSetScreenMode(newMode);
793 inline TBool CScreen::ShouldSwapWidthAndHeightOffScBitmap(TInt aOldRotation)
795 TInt rot=Abs((*iModes)[iScreenSizeMode]->iRotation-aOldRotation);
796 return (rot==1||rot==3);
799 void CScreen::doSetScreenMode(TInt aMode)
801 WS_ASSERT_DEBUG(IsValidScreenSizeMode(aMode),EWsPanicInvalidScreenSizeMode);
803 TWindowServerEvent::NotifyDrawer(TWservCrEvent(TWservCrEvent::EScreenSizeModeAboutToChange, aMode));
805 TInt oldRotation=(*iModes)[iScreenSizeMode]->iRotation;
806 iScreenSizeMode=aMode;
807 TBool shouldSwapWidthAndHeight=ShouldSwapWidthAndHeightOffScBitmap(oldRotation);
808 CWsWindowGroup::SetScreenDeviceValidStates(ETrue,shouldSwapWidthAndHeight,this);
809 if (shouldSwapWidthAndHeight)
811 SetPhysicalScreenSize();
813 TWindowServerEvent::SendScreenDeviceChangedEvents(this);
817 void CScreen::UpdateOffScreenBitmapGc(const TBool aSwapWidthAndHeight)
819 if (iOffScreenBitmap)
821 iOffScreenBitmap->UpdateGc(aSwapWidthAndHeight);
825 void CScreen::CycleOrientation()
827 WS_ASSERT_DEBUG(IsValidScreenSizeMode(iScreenSizeMode),EWsPanicInvalidScreenSizeMode);
828 TSizeMode& currentSizeMode=*(*iModes)[iScreenSizeMode];
829 TUint rotations=currentSizeMode.iAlternativeRotations;
830 TInt currentRotation=currentSizeMode.iRotation;
831 TInt rotation=currentRotation+1;
832 while (rotation!=currentRotation)
834 if (rotation>CFbsBitGc::EGraphicsOrientationRotated270)
835 rotation=CFbsBitGc::EGraphicsOrientationNormal;
836 if (ROTATION_TO_FLAG(rotation)&rotations)
840 if (rotation==currentRotation)
842 if (rotation>CFbsBitGc::EGraphicsOrientationRotated90)
847 currentSizeMode.iRotation=REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,rotation);
848 CWsWindowGroup::NewOrientation(iScreenSizeMode,currentSizeMode.iRotation, iRootWindow);
851 TBool shouldSwapWidthAndHeight=ShouldSwapWidthAndHeightOffScBitmap(currentRotation);
852 ChangeDisplayModeForAllOffScreenBitmap(shouldSwapWidthAndHeight);
853 if (shouldSwapWidthAndHeight)
855 SetPhysicalScreenSize();
857 iRootWindow->OrientationChanged();
860 TPoint CScreen::PhysicalToLogical(TPoint aPhysicalPt)
862 const TSizeMode& mode=ScreenSizeModeData();
864 logicalPt=aPhysicalPt-mode.iOrigin;
865 if (mode.iScreenScale.iWidth!=1)
866 logicalPt.iX=(logicalPt.iX>=0 ? logicalPt.iX/mode.iScreenScale.iWidth : (logicalPt.iX-(mode.iScreenScale.iWidth-1))/mode.iScreenScale.iWidth);
867 if (mode.iScreenScale.iHeight!=1)
868 logicalPt.iY=(logicalPt.iY>=0 ? logicalPt.iY/mode.iScreenScale.iHeight : (logicalPt.iY-(mode.iScreenScale.iHeight-1))/mode.iScreenScale.iHeight);
872 void CScreen::LoadScreenSizesL(TSize aScreenSize)
874 _LIT(KWSERVNumScrSizeMode, "NUMSCREENMODES");
875 TBool allowScrGap=WsIniFile->FindVar(iScreenNumber, KWSERVNumScrSizeMode, iNumScreenSizeModes);
876 iModes=new(ELeave) RPointerArray<TSizeMode>(1);
877 WS_ASSERT_DEBUG(!allowScrGap || (allowScrGap && iNumScreenSizeModes>0), EWsPanicInvalidScreenSizeMode);
882 TBuf<32> varNameWidth;
883 TBuf<32> varNameHeight;
884 _LIT(KWSERVScreenWidthPattern,"SCR_WIDTH%d");
885 varNameWidth.Format(KWSERVScreenWidthPattern,screenNum);
886 _LIT(KWSERVScreenHeightPattern,"SCR_HEIGHT%d");
887 varNameHeight.Format(KWSERVScreenHeightPattern,screenNum);
889 if (!WsIniFile->FindVar(iScreenNumber, varNameWidth, screenSize.iWidth) ||
890 !WsIniFile->FindVar(iScreenNumber, varNameHeight, screenSize.iHeight))
892 if (allowScrGap && screenNum<=iNumScreenSizeModes)
894 iModes->AppendL(NULL);
900 if (screenSize.iWidth==0 && screenSize.iHeight==0)
901 screenSize=aScreenSize;
902 TSizeMode* newSizeMode=new(ELeave) TSizeMode(screenSize);
903 CleanupStack::PushL(newSizeMode);
904 iModes->AppendL(newSizeMode);
905 CleanupStack::Pop(newSizeMode);
906 ++iNumSupportedScreenSizeModes;
908 // If sparse index is enabled and no screen size mode defined, all iModes entries will be NULL
909 // Otherwise iModes will be empty
910 if (iModes->Count()==0 || iNumSupportedScreenSizeModes==0)
912 TSizeMode* defaultSizeMode=new(ELeave) TSizeMode(aScreenSize);
913 if (iModes->Count()>0)
914 (*iModes)[0]=defaultSizeMode;
917 CleanupStack::PushL(defaultSizeMode);
918 iModes->AppendL(defaultSizeMode);
919 CleanupStack::Pop(defaultSizeMode);
921 ++iNumSupportedScreenSizeModes;
924 iNumScreenSizeModes=iNumSupportedScreenSizeModes;
927 void CScreen::LoadScreenSizeProperties()
929 TBool orientations[4];
930 TUint allowableRotations=0;
932 iScreenGdi->OrientationsAvailable(orientations);
935 if (orientations[ii])
936 allowableRotations|=ROTATION_TO_FLAG(ii);
940 _LIT(KWSERVScreenXScale,"SCR_XSCALE%d");
941 _LIT(KWSERVScreenYScale,"SCR_YSCALE%d");
942 for(TInt sizeLoop=0;sizeLoop<iModes->Count();sizeLoop++)
944 TSizeMode* modePtr=(*iModes)[sizeLoop];
947 TSizeMode& mode=*modePtr;
950 TBuf<32> varRotation;
951 TBuf<32> varNameWidth;
952 TBuf<32> varNameHeight;
953 TBuf<32> varDisplayMode;
954 _LIT(KWSERVScreenLeftPattern,"SCR_LEFT%d");
955 varLeft.Format(KWSERVScreenLeftPattern,sizeLoop+1);
956 _LIT(KWSERVScreenTopPattern,"SCR_TOP%d");
957 varTop.Format(KWSERVScreenTopPattern,sizeLoop+1);
958 _LIT(KWSERVScreenRotationPattern,"SCR_ROTATION%d");
959 varRotation.Format(KWSERVScreenRotationPattern,sizeLoop+1);
960 _LIT(KWSERVScreenTwipWidthPattern,"SCR_TWIP_WIDTH%d");
961 varNameWidth.Format(KWSERVScreenTwipWidthPattern,sizeLoop+1);
962 _LIT(KWSERVScreenTwipHeightPattern,"SCR_TWIP_HEIGHT%d");
963 varNameHeight.Format(KWSERVScreenTwipHeightPattern,sizeLoop+1);
964 _LIT(KWSERVScreenDisplayModePattern,"SCR_WINDOWMODE%d");
965 varDisplayMode.Format(KWSERVScreenDisplayModePattern,sizeLoop+1);
966 xScale.Format(KWSERVScreenXScale,sizeLoop+1);
967 yScale.Format(KWSERVScreenYScale,sizeLoop+1);
968 if (!WsIniFile->FindVar(iScreenNumber,xScale,mode.iScreenScale.iWidth))
970 mode.iScreenScale.iWidth=1;
972 if (!WsIniFile->FindVar(iScreenNumber,yScale,mode.iScreenScale.iHeight))
974 mode.iScreenScale.iHeight=1;
976 if (!WsIniFile->FindVar( iScreenNumber, varLeft,mode.iOrigin.iX))
980 if (!WsIniFile->FindVar( iScreenNumber, varTop,mode.iOrigin.iY))
984 TPtrC displayModeName(NULL,0);
985 mode.iDefaultDisplayMode = iScreenDevice->DisplayMode();
986 TInt rotation=CFbsBitGc::EGraphicsOrientationNormal;
987 TUint allRotations=0;
988 TPtrC rotList(NULL,0);
989 if (WsIniFile->FindVar( iScreenNumber, varRotation,rotList))
992 TBool foundOne=EFalse;
997 if (!FindNextValue(lex, rot))
1001 if (rot<0 || rot>360)
1014 if (rot<=CFbsBitGc::EGraphicsOrientationRotated270)
1016 allRotations|=ROTATION_TO_FLAG(rot);
1020 if (allRotations==0)
1021 allRotations=ROTATION_TO_FLAG(rotation);
1022 WS_ASSERT_ALWAYS((ROTATION_TO_FLAG(rotation)&allowableRotations)>0, EWsPanicFailedToInitialise);
1023 mode.iRotation=(CFbsBitGc::TGraphicsOrientation&)rotation;
1024 mode.iAlternativeRotations=allRotations & allowableRotations;
1027 TSize pixels(mode.iScreenSize);
1029 switch(mode.iRotation)
1031 // CFbsBitGc::TGraphicsOrientation
1032 case CFbsBitGc::EGraphicsOrientationRotated90:
1033 case CFbsBitGc::EGraphicsOrientationRotated270:
1035 //swap the axes in order to use the correct twips per pixel ratio, as CFbsScreenDevice
1036 //does not take into consideration rotation, when converting pixels to twips
1037 if (!WsIniFile->FindVar( iScreenNumber, varNameWidth,twipsSize.iWidth))
1038 twipsSize.iWidth=iScreenDevice->VerticalPixelsToTwips(pixels.iWidth);
1039 if (!WsIniFile->FindVar( iScreenNumber, varNameHeight,twipsSize.iHeight))
1040 twipsSize.iHeight=iScreenDevice->HorizontalPixelsToTwips(pixels.iHeight);
1043 case CFbsBitGc::EGraphicsOrientationNormal:
1044 case CFbsBitGc::EGraphicsOrientationRotated180:
1046 if (!WsIniFile->FindVar( iScreenNumber, varNameWidth,twipsSize.iWidth))
1047 twipsSize.iWidth=iScreenDevice->HorizontalPixelsToTwips(pixels.iWidth);
1048 if (!WsIniFile->FindVar( iScreenNumber, varNameHeight,twipsSize.iHeight))
1049 twipsSize.iHeight=iScreenDevice->VerticalPixelsToTwips(pixels.iHeight);
1053 WS_PANIC_ALWAYS(EWsPanicFailedToInitialise);
1056 mode.iScreenTwipsSize=twipsSize;
1059 TInt intForFindVar=0;
1060 _LIT(KWSERVIniFileVarSizeMode,"SIZE_MODE");
1061 WsIniFile->FindVar( iScreenNumber, KWSERVIniFileVarSizeMode,intForFindVar);
1062 iSizeEnforcementMode=(TScreenModeEnforcement)intForFindVar;
1065 void CScreen::SetDigitiserAreas(const TSize& aScreenSize,const TRect& aDigitiserArea)
1067 for(TInt sizeLoop=0;sizeLoop<iModes->Count();sizeLoop++)
1069 TSizeMode* modePtr=(*iModes)[sizeLoop];
1072 TSizeMode& mode=*modePtr;
1073 switch (mode.iRotation)
1075 case CFbsBitGc::EGraphicsOrientationNormal:
1076 mode.iPointerCursorArea=aDigitiserArea;
1078 case CFbsBitGc::EGraphicsOrientationRotated90:
1079 mode.iPointerCursorArea.SetRect(aDigitiserArea.iTl.iY,aScreenSize.iWidth-aDigitiserArea.iBr.iX,
1080 aDigitiserArea.iBr.iY,aScreenSize.iWidth-aDigitiserArea.iTl.iX);
1082 case CFbsBitGc::EGraphicsOrientationRotated180:
1083 mode.iPointerCursorArea.SetRect(-(aDigitiserArea.iBr-aScreenSize),-(aDigitiserArea.iTl-aScreenSize));
1085 case CFbsBitGc::EGraphicsOrientationRotated270:
1086 mode.iPointerCursorArea.SetRect(aScreenSize.iHeight-aDigitiserArea.iBr.iY,aDigitiserArea.iTl.iX,
1087 aScreenSize.iHeight-aDigitiserArea.iTl.iY,aDigitiserArea.iBr.iX);
1093 void CScreen::GetScreenSizeAndRotation(TPixelsTwipsAndRotation &aSar, TInt aScreenMode)
1095 TSizeMode& mode=*(*iModes)[aScreenMode];
1096 aSar.iRotation=mode.iRotation;
1097 aSar.iPixelSize=mode.iScreenSize;
1098 aSar.iTwipsSize=mode.iScreenTwipsSize;
1099 if (aSar.iTwipsSize.iWidth==0)
1101 aSar.iTwipsSize.iWidth=iScreenDevice->HorizontalPixelsToTwips(aSar.iPixelSize.iWidth);
1102 aSar.iTwipsSize.iHeight=iScreenDevice->VerticalPixelsToTwips(aSar.iPixelSize.iHeight);
1106 void CScreen::GetScreenSizeAndRotation(TPixelsAndRotation &aSar, TInt aScreenMode)
1108 TSizeMode& mode=*(*iModes)[aScreenMode];
1109 aSar.iRotation=mode.iRotation;
1110 aSar.iPixelSize=mode.iScreenSize;
1113 TBool CScreen::SetScreenModeEnforcement(TInt aMode)
1115 if (aMode<0 || aMode>ESizeEnforcementPixelsTwipsAndRotation)
1117 TScreenModeEnforcement newMode=(TScreenModeEnforcement)aMode;
1118 if (newMode!=iSizeEnforcementMode)
1120 iSizeEnforcementMode=newMode;
1121 CWsWindowGroup::SetScreenDeviceValidStates(EFalse,EFalse,this);
1127 CWsOffScreenBitmap* CScreen::OffScreenBitmap()
1129 return iOffScreenBitmap;
1132 CFbsDevice * CScreen::DrawDevice()
1134 if (iOffScreenBitmap)
1135 return iOffScreenBitmap->BitmapDevice();
1137 return ScreenDevice();
1140 void CScreen::FreeOffScreenBitmap()
1142 // for Flicker Free test
1143 /** Andy - this either needs to talk to render stages or simply be removed.
1144 Deleting the OSB when CRPs already know it exists is one thing - we dont do it while
1145 testing ones that can't cope - deleting it when render stages use it is something else.
1146 Fortunately we never actually use it.
1147 if (iOffScreenBitmap)
1149 delete iOffScreenBitmap;
1150 iOffScreenBitmap = NULL;
1155 void CScreen::IncContrast()
1158 if (iMaxContrast<0) //If failed to get it sofar get it again
1159 TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Get(iScreenNumber,HALData::EDisplayContrastMax,iMaxContrast));
1160 if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Get(iScreenNumber,HALData::EDisplayContrast,contrast)))
1162 if (contrast==iMaxContrast)
1164 TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Set(iScreenNumber,HALData::EDisplayContrast,++contrast));
1167 void CScreen::DecContrast()
1170 if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Get(iScreenNumber,HALData::EDisplayContrast,contrast)))
1174 if (iMaxContrast<0 && TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast,
1175 HAL::Get(iScreenNumber,HALData::EDisplayContrastMax,iMaxContrast)))
1177 contrast=iMaxContrast+1;
1179 TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EContrast, HAL::Set(iScreenNumber,HALData::EDisplayContrast,--contrast));
1182 void CScreen::IncBrightness()
1185 if (iMaxBrightness<0) //If failed to get it sofar get it again
1186 TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(iScreenNumber,HALData::EDisplayBrightnessMax,iMaxBrightness));
1187 if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(iScreenNumber,HALData::EDisplayBrightness,brightness)))
1189 if (brightness==iMaxBrightness)
1191 TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(iScreenNumber,HALData::EDisplayBrightness,++brightness));
1194 void CScreen::DecBrightness()
1197 if (TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Get(iScreenNumber,HALData::EDisplayBrightness,brightness)))
1201 if (iMaxBrightness<0 && TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight,
1202 HAL::Get(iScreenNumber,HALData::EDisplayBrightnessMax,iMaxBrightness)))
1204 brightness=iMaxBrightness+1;
1206 TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, HAL::Set(iScreenNumber,HALData::EDisplayBrightness,--brightness));
1209 TInt CScreen::GetScreenSizeModeListL()
1211 RArray<TInt> list(iNumScreenSizeModes);
1212 CleanupClosePushL(list);
1214 for (index=0; index<iModes->Count(); ++index)
1216 TSizeMode* modePtr=(*iModes)[index];
1218 list.AppendL(index);
1220 TInt count=list.Count();
1221 CWsClient::ReplyBuf(&list[0], count*sizeof(TInt));
1222 CleanupStack::PopAndDestroy(&list);
1226 void CScreen::SetInitialScreenSizeMode()
1228 // get first/lowest valid screen size mode, if mode 0 not available
1230 for (index=0; index<iModes->Count(); ++index)
1232 TSizeMode* modePtr=(*iModes)[index];
1235 iScreenSizeMode=index;
1241 TDisplayMode CScreen::FirstDefaultDisplayMode() const
1244 while ((*iModes)[++mode]==NULL)
1246 WS_ASSERT_DEBUG(mode<iModes->Count()-1,EWsPanicInvalidScreenSizeMode);
1248 return((*iModes)[mode]->iDefaultDisplayMode);
1251 CFbsDevice* CScreen::GetFbsDevice()
1255 WS_ASSERT_DEBUG(iRedirectGc->Device(), EWsPanicNullDeviceHandle);
1256 return static_cast<CFbsDevice*>(iRedirectGc->Device());
1260 return iScreenDevice;
1264 void CScreen::AddRedrawRegion(const TRegion& aRegion, TBool aSchedule, TRedrawDepth aDepth)
1266 iRedraw->AddRedrawRegion(aRegion, aSchedule, aDepth);
1269 void CScreen::DoRedrawNow()
1271 iRedraw->DoRedrawNow();
1274 // implementing MWsScreen
1276 const TTime& CScreen::Now() const
1278 return iRedraw->Now();
1281 void CScreen::ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop)
1283 iRedraw->ScheduleAnimation(aRect,aFromNow,aFreq,aStop);
1286 void CScreen::OnAnimation()
1288 iRedraw->OnAnimation();
1291 void CScreen::Redraw()
1293 STACK_REGION bounds;
1294 bounds.AddRect(DrawableArea());
1295 AddRedrawRegion(bounds);
1299 TBool CScreen::RedrawInvalid(const TArray<TGraphicDrawerId>& aInvalid)
1301 TBool wasDirty = EFalse;
1302 STACK_REGION bounds;
1303 bounds.AddRect(DrawableArea());
1305 TWalkWindowTreeCalcInvalidGraphics calc(&bounds,dirty,aInvalid);
1306 if(calc.CreateSubRegion())
1308 calc.CalcInvalid(*this);
1309 if(dirty.CheckError() || dirty.Count())
1314 calc.DestroyRegions();
1322 Overidding MWsObjectProvider
1324 TAny* CScreen::ResolveObjectInterface(TUint aTypeId)
1326 TAny* interface = NULL;
1330 case MWsScreenConfig::EWsObjectInterfaceId:
1331 interface = static_cast<MWsScreenConfig*>(this);
1333 case MWsFrontBuffer::EWsObjectInterfaceId:
1334 interface = static_cast<MWsFrontBuffer*>(this);
1336 case MWsWindow::EWsObjectInterfaceId:
1337 interface = static_cast<MWsWindow*>(RootWindow());
1341 if (!interface && iOffScreenBitmap)
1342 interface = iOffScreenBitmap->ResolveObjectInterface(aTypeId);
1345 interface = iRedraw->ResolveObjectInterface(aTypeId);
1351 Implementing MWsScreenConfig
1353 TDisplayMode CScreen::DisplayMode() const
1355 return iScreenDevice->DisplayMode();
1358 TSize CScreen::SizeInPixels() const
1360 return iScreenDevice->SizeInPixels();
1363 TSize CScreen::ScreenModeSizeInPixels() const
1365 return (*iModes)[iScreenSizeMode]->iScreenSize;
1368 TInt CScreen::Stride() const
1370 return iScreenDevice->Stride();
1373 CFbsBitGc::TGraphicsOrientation CScreen::Orientation() const
1375 return iScreenDevice->Orientation();
1378 TInt CScreen::SizeMode() const
1380 return iScreenSizeMode;
1383 TSize CScreen::ScalingFactor() const
1385 return (*iModes)[iScreenSizeMode]->iScreenScale;
1388 TPoint CScreen::Origin() const
1390 return (*iModes)[iScreenSizeMode]->iOrigin;
1393 TPoint CScreen::ScaledOrigin() const
1395 return (*iModes)[iScreenSizeMode]->ScaledOrigin();
1399 Implementing MWsFrontBuffer
1401 const TAny* CScreen::GetBits()
1403 return iScreenDevice->Bits();
1406 CFbsBitGc* CScreen::GetBitGc()
1411 CFbsBitGc* CScreen::GetBitGcCurrent()
1420 Redirect screen drawing to specified gc. Passing NULL will stop redirection.
1422 TInt CScreen::SetBitGc(CFbsBitGc* aBitGc)
1424 if (aBitGc && (aBitGc==iScreenGdi || aBitGc==iRedirectGc))
1425 return KErrAlreadyExists;
1427 if (aBitGc && !aBitGc->Device())
1428 return KErrArgument;
1430 // screen shall not be redirected when there is at least one DSA client is actively drawing
1431 if (aBitGc && iDsaDrawState==EDsaDrawStateDrawing)
1434 iRedirectGc = aBitGc;
1436 // Redraw window CWindowGC objects have CFbsBitGcs active on the screen device and need reactivating:
1437 TWalkWindowTreeReactivateGcs wwt;
1438 RootWindow()->WalkWindowTree(wwt, EWalkChildren);
1440 // Andy - should we do something with the CPlaybackGc here? Can they be active at this point?
1441 // if so, do they care, or should it already be handled for them?
1446 TInt CScreen::SetBitGc(CFbsBitGc* aBitGc, TBool aInvalidateScreen)
1448 const TInt err = SetBitGc(aBitGc);
1450 if (err==KErrNone && aInvalidateScreen)
1451 iRootWindow->InvalidateWholeScreen();
1456 void CScreen::DiscardAllSchedules()
1458 iRedraw->DiscardAllSchedules();
1461 void CScreen::ScheduleRegionUpdate(const TRegion* aDefinitelyDirty)
1463 iRedraw->ScheduleRegionUpdate(aDefinitelyDirty);
1465 void CScreen::DSARegionSyncStart( CWsDirectScreenAccess& aDSA )
1467 iRedraw->BanThisRegionUpdate( aDSA.RegionUnderSync() );
1470 void CScreen::DSARegionSyncOver( CWsDirectScreenAccess& aDSA )
1472 iRedraw->LiftRegionUpdateBan( aDSA.RegionUnderSync() );
1475 TBool CScreen::IsUpdatePending()
1477 return iRedraw->IsUpdatePending();
1480 TBool CScreen::IsDSAClientWindow( const CWsClientWindow* aWin ) const
1483 if ( ! iDirects.IsEmpty() )
1485 TSglQueIter<CWsDirectScreenAccess> iter( (TSglQueBase&)iDirects );
1487 CWsDirectScreenAccess* dsa;
1488 while ( (dsa = iter++) != NULL && !res )
1490 res = (dsa->ClientWindow() == aWin ) && ( dsa->IsVisible() || dsa->IsSyncTimeoutPending() );
1496 void CScreen::AcceptFadeRequest( CWsWindow* aWin, TBool aIsFaded, TBool aIsBehind, TBool aIncludeChildren )
1498 iRedraw->AcceptFadeRequest( aWin, aIsFaded, aIsBehind, aIncludeChildren );