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
20 #include <graphics/wsscreendevice.h>
22 #include "windowgroup.h"
23 #include "walkwindowtree.h"
30 _LIT(KNoBlank,"NOBLANKSCREEN");
31 _LIT(KDefaultBackgroundColor,"BACKGROUNDCOLOR");
32 _LIT(KDefaultBackgroundAlpha,"BACKGROUNDALPHA");
33 _LIT(KRootWinDefaultBackgroundColor,"ROOTBACKGROUNDCOLOR");
35 CWsRootWindow::CWsRootWindow(CWsClient* aOwner, CScreen* aScreen) : CWsWindow(aOwner,WS_HANDLE_ROOT_WINDOW,aScreen)
37 iWinType=EWinTypeRoot;
40 CWsRootWindow::~CWsRootWindow()
42 if (Screen() && (iBaseWinFlags&EBaseWinNodeCreated))
44 MWsWindowTreeObserver* const windowTreeObserver = Screen()->WindowTreeObserver();
45 if (windowTreeObserver)
47 windowTreeObserver->NodeReleased(*this);
48 iBaseWinFlags &= ~EBaseWinNodeCreated;
54 void CWsRootWindow::ConstructL()
56 CWsWindow::Construct();
61 iAbs.Resize(iScreen->SizeInPixels());
63 iFlags=EFlagPointerCaptured;
64 iPointerFilter=EPointerFilterEnterExit|EPointerFilterMove|EPointerFilterDrag;
66 iRedraw=new(ELeave) CWsBlankWindow(this);
67 iRedraw->ConstructL();
69 if(!WsIniFile->FindVar(KDefaultBackgroundColor,backgroundcolor))
70 backgroundcolor = KRgbWhite.Value();
72 if(!WsIniFile->FindVar(KDefaultBackgroundAlpha,backgroundalpha))
73 backgroundalpha = 0xFF;
74 iDefaultBackgroundColor = TRgb(backgroundcolor,backgroundalpha);
76 if (WsIniFile->FindVar(KNoBlank))
77 BlankRedraw()->SetBackgroundClear();
80 if (WsIniFile->FindVar(KRootWinDefaultBackgroundColor,backgroundcolor))
81 SetColor(TRgb(backgroundcolor,backgroundalpha));
83 SetColor(iDefaultBackgroundColor);
86 MWsWindowTreeObserver* const windowTreeObserver = Screen()->WindowTreeObserver();
87 if (windowTreeObserver)
89 windowTreeObserver->NodeCreated(*this, NULL);
90 iBaseWinFlags |= EBaseWinNodeCreated;
94 void CWsRootWindow::SetColor(TRgb aColor)
96 BlankRedraw()->SetColor(aColor);
99 void CWsRootWindow::SetColorIfClear()
101 if (!BlankRedraw()->IsBackgroundColor())
102 SetColor(iDefaultBackgroundColor);
105 const CWsWindow *CWsRootWindow::PointerWindow(const TPoint &aInPos,TPoint *aOutPos, TPoint *aParentPos,
106 const CWsWindow *aGrabWin, const CWsWindow *&aOriginalWinItIsIn, const CWsWindowGroup *aForceInGroup)
108 // For aInPos (a global point on screen) find which window it is in, starting the search from 'this'.
109 // aOutPos is set to be aInPos adjusted relative to the top left of the result window.
110 // If the pointer is not in any of the searched windows the result is returned as though it was in 'this'
111 // even though it may actually be oustside the bounds of this.
113 // If aForceInGroup==NULL search all groups otherwise only search it only
116 aOriginalWinItIsIn=this;
117 const CWsWindowGroup *group;
118 const CWsWindowGroup *winItIsInGroup=aForceInGroup;
120 // First determine owner of the window the event is in regardless of any capture
121 // This is so we can decide whether the capture affects this case or not
123 for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
125 CWsClientWindow *win=group->Child();
128 const TRegion *baseArea=win->BaseArea();
129 if (win->IsVisible() && baseArea->Contains(aInPos))
131 aOriginalWinItIsIn=win;
132 winItIsInGroup=group;
136 win=win->NextSibling();
138 if (aOriginalWinItIsIn!=this || aForceInGroup!=NULL)
142 // Then try again taking note of any pointer capture or grab
144 const CWsWindow *winItIsIn;
150 for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
152 CWsClientWindow *win=group->Child();
155 const TRegion *baseArea=win->BaseArea();
156 const TBool underTheSameGroup=winItIsInGroup==group;
157 if (win->IsVisible() &&
158 ((win->iFlags&EFlagPointerCaptured &&
159 ((!underTheSameGroup && win->iFlags&EFlagPointerCaptureAllGroups) ||
160 (winItIsInGroup==NULL && group==CWsTop::FocusWindowGroup()) ||
161 (underTheSameGroup && win->iPointerCapturePriority>=aOriginalWinItIsIn->iPointerCapturePriority)))
162 || baseArea->Contains(aInPos)))
168 win=win->NextSibling();
170 if (winItIsIn!=this || aForceInGroup!=NULL)
176 *aOutPos=aInPos-winItIsIn->iOrigin;
178 if (aParentPos!=NULL)
180 const CWsWindowBase *win=winItIsIn->BaseParent();
183 *aParentPos=aInPos-win->Origin();
188 void CWsRootWindow::GenerateWindowRegion(RWsRegion &aRegion) const
191 aRegion.AddRect(iAbs);
194 for(CWsTopClientWindow *win=FirstTopClientWindow();aRegion.Count()>0 && win!=NULL;win=win->NextSiblingMultiParent())
196 if (win->IsVisible())
197 aRegion.SubRegion(*win->BaseArea());
202 void CWsRootWindow::CommandL(TInt , const TAny *)
204 WS_PANIC_ALWAYS(EWsPanicRootCommand);
207 void CWsRootWindow::InvalidateWholeScreen()
209 RWsRegion screen(iAbs);
214 void CWsRootWindow::Invalidate(RWsRegion* aRegion)
216 iScreen->AddRedrawRegion(*aRegion);
219 void CWsRootWindow::AdjustCoordsDueToRotation()
222 iAbs=iScreen->DrawableArea();
226 for(CWsTopClientWindow *win=FirstTopClientWindow();win!=NULL;win=win->NextSiblingMultiParent())
228 win->RecalcChildAbs(NULL);
232 void CWsRootWindow::ClearDisplay()
234 MWsScreenDevice *sd=static_cast<MWsScreenDevice*>(iScreen->ResolveObjectInterface(KMWsScreenDevice));
235 WS_ASSERT_ALWAYS(sd, EWsPanicScreenDeviceMissing);
236 sd->ClearDisplay(BackColor());
239 void CWsRootWindow::SetSystemFaded(TBool aFaded, TUint8 aBlackMap, TUint8 aWhiteMap)
241 WS_ASSERT_DEBUG(Screen(),EWsPanicNoScreen);
243 TBool stateChanged = EFalse; //will be set to true if one or more windows change fade state.
244 for(CWsWindowGroup* win=Child();win!=NULL;win=win->NextSibling())
246 TWalkWindowTreeSetSystemFaded wwt(aFaded, win, aBlackMap, aWhiteMap, stateChanged);
247 win->WalkWindowTree(wwt,EWalkChildren);
250 MWsWindowTreeObserver* windowTreeObserver = Screen()->WindowTreeObserver();
251 if(windowTreeObserver && stateChanged)
253 windowTreeObserver->FadeAllChildren(*this, aFaded);
257 CWsWindowGroup* CWsRootWindow::WindowGroup(TInt aWindowGroup)
259 CWsWindowBase* group=iChild;
260 while (aWindowGroup-->0 && group)
261 group=group->NextSibling();
262 return static_cast<CWsWindowGroup*>(group);
265 CWsTopClientWindow *CWsRootWindow::FirstTopClientWindow() const
267 CWsWindowGroup* group;
268 for(group=Child();group && group->Child()==NULL;group=group->NextSibling())
270 return(group?group->Child():NULL);
273 const TRegion& CWsRootWindow::WindowArea() const
278 void CWsRootWindow::SendState(MWsWindowTreeObserver& aWindowTreeObserver) const
280 aWindowTreeObserver.NodeCreated(*this, NULL);
283 /** @see MWsWindowTreeNode */
284 const MWsWindow* CWsRootWindow::Window() const