Update contrib.
1 // Copyright (c) 1995-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.
14 // Root window sub-class of CWsWindow
21 #include "windowgroup.h"
22 #include "walkwindowtree.h"
29 _LIT(KNoBlank,"NOBLANKSCREEN");
30 _LIT(KDefaultBackgroundColor,"BACKGROUNDCOLOR");
31 _LIT(KDefaultBackgroundAlpha,"BACKGROUNDALPHA");
32 _LIT(KRootWinDefaultBackgroundColor,"ROOTBACKGROUNDCOLOR");
33 _LIT(KRootWinDefaultBackgroundAlpha,"ROOTBACKGROUNDALPHA");
35 CWsRootWindow::CWsRootWindow(CWsClient* aOwner, CScreen* aScreen) : CWsWindow(aOwner,WS_HANDLE_ROOT_WINDOW,aScreen)
37 iWinType=EWinTypeRoot;
40 CWsRootWindow::~CWsRootWindow()
45 void CWsRootWindow::ConstructL()
47 CWsWindow::Construct();
52 iAbs.Resize(iScreen->ScreenDevice()->SizeInPixels());
54 iFlags=EFlagPointerCaptured;
55 iPointerFilter=EPointerFilterEnterExit|EPointerFilterMove|EPointerFilterDrag;
57 iRedraw=new(ELeave) CWsBlankWindow(this);
58 iRedraw->ConstructL();
60 if(!WsIniFile->FindVar(KDefaultBackgroundColor,backgroundcolor))
61 backgroundcolor = KRgbWhite.Value();
63 if(!WsIniFile->FindVar(KDefaultBackgroundAlpha,backgroundalpha))
64 backgroundalpha = 0xFF;
65 iDefaultBackgroundColor = TRgb(backgroundcolor,backgroundalpha);
67 if (WsIniFile->FindVar(KNoBlank))
69 BlankRedraw()->SetBackgroundClear();
75 if (!WsIniFile->FindVar(KRootWinDefaultBackgroundColor,rootColor))
76 rootColor = backgroundcolor;
77 if (!WsIniFile->FindVar(KRootWinDefaultBackgroundAlpha,rootAlpha))
78 rootAlpha = backgroundalpha;
79 SetColor(TRgb(rootColor,rootAlpha));
83 void CWsRootWindow::SetColor(TRgb aColor)
85 BlankRedraw()->SetColor(aColor);
88 void CWsRootWindow::SetColorIfClear()
90 if (!BlankRedraw()->IsBackgroundColor())
91 SetColor(iDefaultBackgroundColor);
94 const CWsWindow *CWsRootWindow::PointerWindow(const TPoint &aInPos,TPoint *aOutPos, TPoint *aParentPos,
95 const CWsWindow *aGrabWin, const CWsWindow *&aOriginalWinItIsIn, const CWsWindowGroup *aForceInGroup)
97 // For aInPos (a global point on screen) find which window it is in, starting the search from 'this'.
98 // aOutPos is set to be aInPos adjusted relative to the top left of the result window.
99 // If the pointer is not in any of the searched windows the result is returned as though it was in 'this'
100 // even though it may actually be oustside the bounds of this.
102 // If aForceInGroup==NULL search all groups otherwise only search it only
105 aOriginalWinItIsIn=this;
106 const CWsWindowGroup *group;
107 const CWsWindowGroup *winItIsInGroup=aForceInGroup;
109 // First determine owner of the window the event is in regardless of any capture
110 // This is so we can decide whether the capture affects this case or not
112 for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
114 CWsClientWindow *win=group->Child();
117 const TRegion *baseArea=win->BaseArea();
118 if (win->IsVisible() && baseArea->Contains(aInPos))
120 aOriginalWinItIsIn=win;
121 winItIsInGroup=group;
125 win=win->NextSibling();
127 if (aOriginalWinItIsIn!=this || aForceInGroup!=NULL)
131 // Then try again taking note of any pointer capture or grab
133 const CWsWindow *winItIsIn;
139 for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
141 CWsClientWindow *win=group->Child();
144 const TRegion *baseArea=win->BaseArea();
145 const TBool underTheSameGroup=winItIsInGroup==group;
146 if (win->IsVisible() &&
147 ((win->iFlags&EFlagPointerCaptured &&
148 ((!underTheSameGroup && win->iFlags&EFlagPointerCaptureAllGroups) ||
149 (winItIsInGroup==NULL && group==CWsTop::FocusWindowGroup()) ||
150 (underTheSameGroup && win->iPointerCapturePriority>=aOriginalWinItIsIn->iPointerCapturePriority)))
151 || baseArea->Contains(aInPos)))
157 win=win->NextSibling();
159 if (winItIsIn!=this || aForceInGroup!=NULL)
165 *aOutPos=aInPos-winItIsIn->iOrigin;
167 if (aParentPos!=NULL)
169 const CWsWindowBase *win=winItIsIn->BaseParent();
172 *aParentPos=aInPos-win->Origin();
177 void CWsRootWindow::GenerateWindowRegion(RWsRegion &aRegion) const
180 aRegion.AddRect(iAbs);
183 for(CWsClientWindow *win=FirstTopClientWindow();aRegion.Count()>0 && win!=NULL;win=win->NextSiblingMultiParent())
185 if (win->IsVisible())
186 aRegion.SubRegion(*win->BaseArea());
191 void CWsRootWindow::CommandL(TInt , const TAny *)
193 WS_PANIC_ALWAYS(EWsPanicRootCommand);
196 void CWsRootWindow::InvalidateWholeScreen()
198 RWsRegion screen(iAbs);
203 void CWsRootWindow::Invalidate(RWsRegion* aRegion)
205 iScreen->AddRedrawRegion(*aRegion);
208 void CWsRootWindow::ScreenSizeChanged(const TBool aSwapWidthAndHeight)
210 // We have to disable the text cursor here while we are still in the
211 // same orientation as we drew it.
212 RWsTextCursor* cursor=CWsTop::CurrentTextCursor();
217 iScreen->SetScalingFactor();
218 iScreen->UpdateOrientation();
219 iScreen->UpdateGcs();
220 iScreen->UpdateOffScreenBitmapGc(aSwapWidthAndHeight);
222 iAbs=iScreen->DrawableArea();
226 for(CWsClientWindow *win=FirstTopClientWindow();win!=NULL;win=win->NextSiblingMultiParent())
228 win->RecalcChildAbs(NULL);
230 if (iScreen->BlankScreenOnRotation())
234 iScreen->DiscardAllSchedules();
235 CWsTop::ClearAllRedrawStores();
236 OrientationChanged();
237 iScreen->AbortAllDirectDrawing(RDirectScreenAccess::ETerminateRotation);
238 iScreen->ScheduleRegionUpdate(&iArea);
241 void CWsRootWindow::OrientationChanged()
243 InvalidateWholeScreen();
246 void CWsRootWindow::ClearDisplay()
248 CFbsBitGc *gdi=iScreen->ScreenGdi();
249 gdi->SetBrushStyle(CGraphicsContext::ESolidBrush);
250 gdi->SetPenStyle(CGraphicsContext::ENullPen);
251 gdi->SetOrientation(iScreen->Orientation());
252 gdi->SetBrushColor(BackColor());
253 gdi->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
254 TRect absRect(AbsRect());
255 gdi->DrawRect(absRect);
256 gdi->SetDrawMode(CGraphicsContext::EDrawModePEN);
258 TWindowServerEvent::NotifyScreenDrawingEvent(absRect);
261 void CWsRootWindow::SetSystemFaded(TBool aFaded, TUint8 aBlackMap, TUint8 aWhiteMap)
263 for(CWsWindowGroup* win=Child();win!=NULL;win=win->NextSibling())
265 TWalkWindowTreeSetFaded wwt(aFaded,win,aBlackMap,aWhiteMap);
266 win->WalkWindowTree(wwt,EWalkChildren);
268 WS_ASSERT_DEBUG(Screen(),EWsPanicNoScreen);
271 CWsWindowGroup* CWsRootWindow::WindowGroup(TInt aWindowGroup)
273 CWsWindowBase* group=iChild;
274 while (aWindowGroup-->0 && group)
275 group=group->NextSibling();
276 return static_cast<CWsWindowGroup*>(group);
279 CWsClientWindow *CWsRootWindow::FirstTopClientWindow() const
281 CWsWindowGroup* group;
282 for(group=Child();group && group->Child()==NULL;group=group->NextSibling())
284 return(group?group->Child():NULL);
287 const TRegion& CWsRootWindow::WindowArea() const