sl@0
|
1 |
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Root window sub-class of CWsWindow
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "rootwin.h"
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <graphics/wsscreendevice.h>
|
sl@0
|
21 |
#include "server.h"
|
sl@0
|
22 |
#include "windowgroup.h"
|
sl@0
|
23 |
#include "walkwindowtree.h"
|
sl@0
|
24 |
#include "wstop.h"
|
sl@0
|
25 |
#include "ScrDev.H"
|
sl@0
|
26 |
#include "panics.h"
|
sl@0
|
27 |
#include "inifile.h"
|
sl@0
|
28 |
#include "EVENT.H"
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT(KNoBlank,"NOBLANKSCREEN");
|
sl@0
|
31 |
_LIT(KDefaultBackgroundColor,"BACKGROUNDCOLOR");
|
sl@0
|
32 |
_LIT(KDefaultBackgroundAlpha,"BACKGROUNDALPHA");
|
sl@0
|
33 |
_LIT(KRootWinDefaultBackgroundColor,"ROOTBACKGROUNDCOLOR");
|
sl@0
|
34 |
|
sl@0
|
35 |
CWsRootWindow::CWsRootWindow(CWsClient* aOwner, CScreen* aScreen) : CWsWindow(aOwner,WS_HANDLE_ROOT_WINDOW,aScreen)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
iWinType=EWinTypeRoot;
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
CWsRootWindow::~CWsRootWindow()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
if (Screen() && (iBaseWinFlags&EBaseWinNodeCreated))
|
sl@0
|
43 |
{
|
sl@0
|
44 |
MWsWindowTreeObserver* const windowTreeObserver = Screen()->WindowTreeObserver();
|
sl@0
|
45 |
if (windowTreeObserver)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
windowTreeObserver->NodeReleased(*this);
|
sl@0
|
48 |
iBaseWinFlags &= ~EBaseWinNodeCreated;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
}
|
sl@0
|
51 |
Shutdown();
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
void CWsRootWindow::ConstructL()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
CWsWindow::Construct();
|
sl@0
|
57 |
iParent=NULL;
|
sl@0
|
58 |
iSibling=NULL;
|
sl@0
|
59 |
iChild=NULL;
|
sl@0
|
60 |
iClientHandle=NULL;
|
sl@0
|
61 |
iAbs.Resize(iScreen->SizeInPixels());
|
sl@0
|
62 |
iRel=iAbs;
|
sl@0
|
63 |
iFlags=EFlagPointerCaptured;
|
sl@0
|
64 |
iPointerFilter=EPointerFilterEnterExit|EPointerFilterMove|EPointerFilterDrag;
|
sl@0
|
65 |
iArea.AddRect(iAbs);
|
sl@0
|
66 |
iRedraw=new(ELeave) CWsBlankWindow(this);
|
sl@0
|
67 |
iRedraw->ConstructL();
|
sl@0
|
68 |
TInt backgroundcolor;
|
sl@0
|
69 |
if(!WsIniFile->FindVar(KDefaultBackgroundColor,backgroundcolor))
|
sl@0
|
70 |
backgroundcolor = KRgbWhite.Value();
|
sl@0
|
71 |
TInt backgroundalpha;
|
sl@0
|
72 |
if(!WsIniFile->FindVar(KDefaultBackgroundAlpha,backgroundalpha))
|
sl@0
|
73 |
backgroundalpha = 0xFF;
|
sl@0
|
74 |
iDefaultBackgroundColor = TRgb(backgroundcolor,backgroundalpha);
|
sl@0
|
75 |
|
sl@0
|
76 |
if (WsIniFile->FindVar(KNoBlank))
|
sl@0
|
77 |
BlankRedraw()->SetBackgroundClear();
|
sl@0
|
78 |
else
|
sl@0
|
79 |
{
|
sl@0
|
80 |
if (WsIniFile->FindVar(KRootWinDefaultBackgroundColor,backgroundcolor))
|
sl@0
|
81 |
SetColor(TRgb(backgroundcolor,backgroundalpha));
|
sl@0
|
82 |
else
|
sl@0
|
83 |
SetColor(iDefaultBackgroundColor);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
MWsWindowTreeObserver* const windowTreeObserver = Screen()->WindowTreeObserver();
|
sl@0
|
87 |
if (windowTreeObserver)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
windowTreeObserver->NodeCreated(*this, NULL);
|
sl@0
|
90 |
iBaseWinFlags |= EBaseWinNodeCreated;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
void CWsRootWindow::SetColor(TRgb aColor)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
BlankRedraw()->SetColor(aColor);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
void CWsRootWindow::SetColorIfClear()
|
sl@0
|
100 |
{
|
sl@0
|
101 |
if (!BlankRedraw()->IsBackgroundColor())
|
sl@0
|
102 |
SetColor(iDefaultBackgroundColor);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
const CWsWindow *CWsRootWindow::PointerWindow(const TPoint &aInPos,TPoint *aOutPos, TPoint *aParentPos,
|
sl@0
|
106 |
const CWsWindow *aGrabWin, const CWsWindow *&aOriginalWinItIsIn, const CWsWindowGroup *aForceInGroup)
|
sl@0
|
107 |
//
|
sl@0
|
108 |
// For aInPos (a global point on screen) find which window it is in, starting the search from 'this'.
|
sl@0
|
109 |
// aOutPos is set to be aInPos adjusted relative to the top left of the result window.
|
sl@0
|
110 |
// If the pointer is not in any of the searched windows the result is returned as though it was in 'this'
|
sl@0
|
111 |
// even though it may actually be oustside the bounds of this.
|
sl@0
|
112 |
//
|
sl@0
|
113 |
// If aForceInGroup==NULL search all groups otherwise only search it only
|
sl@0
|
114 |
//
|
sl@0
|
115 |
{
|
sl@0
|
116 |
aOriginalWinItIsIn=this;
|
sl@0
|
117 |
const CWsWindowGroup *group;
|
sl@0
|
118 |
const CWsWindowGroup *winItIsInGroup=aForceInGroup;
|
sl@0
|
119 |
//
|
sl@0
|
120 |
// First determine owner of the window the event is in regardless of any capture
|
sl@0
|
121 |
// This is so we can decide whether the capture affects this case or not
|
sl@0
|
122 |
//
|
sl@0
|
123 |
for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
|
sl@0
|
124 |
{
|
sl@0
|
125 |
CWsClientWindow *win=group->Child();
|
sl@0
|
126 |
while(win!=NULL)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
const TRegion *baseArea=win->BaseArea();
|
sl@0
|
129 |
if (win->IsVisible() && baseArea->Contains(aInPos))
|
sl@0
|
130 |
{
|
sl@0
|
131 |
aOriginalWinItIsIn=win;
|
sl@0
|
132 |
winItIsInGroup=group;
|
sl@0
|
133 |
win=win->Child();
|
sl@0
|
134 |
}
|
sl@0
|
135 |
else
|
sl@0
|
136 |
win=win->NextSibling();
|
sl@0
|
137 |
}
|
sl@0
|
138 |
if (aOriginalWinItIsIn!=this || aForceInGroup!=NULL)
|
sl@0
|
139 |
break;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
//
|
sl@0
|
142 |
// Then try again taking note of any pointer capture or grab
|
sl@0
|
143 |
//
|
sl@0
|
144 |
const CWsWindow *winItIsIn;
|
sl@0
|
145 |
if (aGrabWin!=NULL)
|
sl@0
|
146 |
winItIsIn=aGrabWin;
|
sl@0
|
147 |
else
|
sl@0
|
148 |
{
|
sl@0
|
149 |
winItIsIn=this;
|
sl@0
|
150 |
for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
|
sl@0
|
151 |
{
|
sl@0
|
152 |
CWsClientWindow *win=group->Child();
|
sl@0
|
153 |
while(win!=NULL)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
const TRegion *baseArea=win->BaseArea();
|
sl@0
|
156 |
const TBool underTheSameGroup=winItIsInGroup==group;
|
sl@0
|
157 |
if (win->IsVisible() &&
|
sl@0
|
158 |
((win->iFlags&EFlagPointerCaptured &&
|
sl@0
|
159 |
((!underTheSameGroup && win->iFlags&EFlagPointerCaptureAllGroups) ||
|
sl@0
|
160 |
(winItIsInGroup==NULL && group==CWsTop::FocusWindowGroup()) ||
|
sl@0
|
161 |
(underTheSameGroup && win->iPointerCapturePriority>=aOriginalWinItIsIn->iPointerCapturePriority)))
|
sl@0
|
162 |
|| baseArea->Contains(aInPos)))
|
sl@0
|
163 |
{
|
sl@0
|
164 |
winItIsIn=win;
|
sl@0
|
165 |
win=win->Child();
|
sl@0
|
166 |
}
|
sl@0
|
167 |
else
|
sl@0
|
168 |
win=win->NextSibling();
|
sl@0
|
169 |
}
|
sl@0
|
170 |
if (winItIsIn!=this || aForceInGroup!=NULL)
|
sl@0
|
171 |
break;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
}
|
sl@0
|
174 |
if (aOutPos!=NULL)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
*aOutPos=aInPos-winItIsIn->iOrigin;
|
sl@0
|
177 |
}
|
sl@0
|
178 |
if (aParentPos!=NULL)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
const CWsWindowBase *win=winItIsIn->BaseParent();
|
sl@0
|
181 |
if (win==NULL)
|
sl@0
|
182 |
win=winItIsIn;
|
sl@0
|
183 |
*aParentPos=aInPos-win->Origin();
|
sl@0
|
184 |
}
|
sl@0
|
185 |
return(winItIsIn);
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
void CWsRootWindow::GenerateWindowRegion(RWsRegion &aRegion) const
|
sl@0
|
189 |
{
|
sl@0
|
190 |
aRegion.Clear();
|
sl@0
|
191 |
aRegion.AddRect(iAbs);
|
sl@0
|
192 |
if (iChild)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
for(CWsTopClientWindow *win=FirstTopClientWindow();aRegion.Count()>0 && win!=NULL;win=win->NextSiblingMultiParent())
|
sl@0
|
195 |
{
|
sl@0
|
196 |
if (win->IsVisible())
|
sl@0
|
197 |
aRegion.SubRegion(*win->BaseArea());
|
sl@0
|
198 |
}
|
sl@0
|
199 |
}
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
void CWsRootWindow::CommandL(TInt , const TAny *)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
WS_PANIC_ALWAYS(EWsPanicRootCommand);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
void CWsRootWindow::InvalidateWholeScreen()
|
sl@0
|
208 |
{
|
sl@0
|
209 |
RWsRegion screen(iAbs);
|
sl@0
|
210 |
Invalidate(&screen);
|
sl@0
|
211 |
screen.Close();
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
void CWsRootWindow::Invalidate(RWsRegion* aRegion)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
iScreen->AddRedrawRegion(*aRegion);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
void CWsRootWindow::AdjustCoordsDueToRotation()
|
sl@0
|
220 |
{
|
sl@0
|
221 |
iArea.Clear();
|
sl@0
|
222 |
iAbs=iScreen->DrawableArea();
|
sl@0
|
223 |
iRel=iAbs;
|
sl@0
|
224 |
iArea.AddRect(iAbs);
|
sl@0
|
225 |
iOrigin=iAbs.iTl;
|
sl@0
|
226 |
for(CWsTopClientWindow *win=FirstTopClientWindow();win!=NULL;win=win->NextSiblingMultiParent())
|
sl@0
|
227 |
{
|
sl@0
|
228 |
win->RecalcChildAbs(NULL);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
void CWsRootWindow::ClearDisplay()
|
sl@0
|
233 |
{
|
sl@0
|
234 |
MWsScreenDevice *sd=static_cast<MWsScreenDevice*>(iScreen->ResolveObjectInterface(KMWsScreenDevice));
|
sl@0
|
235 |
WS_ASSERT_ALWAYS(sd, EWsPanicScreenDeviceMissing);
|
sl@0
|
236 |
sd->ClearDisplay(BackColor());
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
void CWsRootWindow::SetSystemFaded(TBool aFaded, TUint8 aBlackMap, TUint8 aWhiteMap)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
WS_ASSERT_DEBUG(Screen(),EWsPanicNoScreen);
|
sl@0
|
242 |
|
sl@0
|
243 |
TBool stateChanged = EFalse; //will be set to true if one or more windows change fade state.
|
sl@0
|
244 |
for(CWsWindowGroup* win=Child();win!=NULL;win=win->NextSibling())
|
sl@0
|
245 |
{
|
sl@0
|
246 |
TWalkWindowTreeSetSystemFaded wwt(aFaded, win, aBlackMap, aWhiteMap, stateChanged);
|
sl@0
|
247 |
win->WalkWindowTree(wwt,EWalkChildren);
|
sl@0
|
248 |
}
|
sl@0
|
249 |
|
sl@0
|
250 |
MWsWindowTreeObserver* windowTreeObserver = Screen()->WindowTreeObserver();
|
sl@0
|
251 |
if(windowTreeObserver && stateChanged)
|
sl@0
|
252 |
{
|
sl@0
|
253 |
windowTreeObserver->FadeAllChildren(*this, aFaded);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
CWsWindowGroup* CWsRootWindow::WindowGroup(TInt aWindowGroup)
|
sl@0
|
258 |
{
|
sl@0
|
259 |
CWsWindowBase* group=iChild;
|
sl@0
|
260 |
while (aWindowGroup-->0 && group)
|
sl@0
|
261 |
group=group->NextSibling();
|
sl@0
|
262 |
return static_cast<CWsWindowGroup*>(group);
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
CWsTopClientWindow *CWsRootWindow::FirstTopClientWindow() const
|
sl@0
|
266 |
{
|
sl@0
|
267 |
CWsWindowGroup* group;
|
sl@0
|
268 |
for(group=Child();group && group->Child()==NULL;group=group->NextSibling())
|
sl@0
|
269 |
{}
|
sl@0
|
270 |
return(group?group->Child():NULL);
|
sl@0
|
271 |
}
|
sl@0
|
272 |
|
sl@0
|
273 |
const TRegion& CWsRootWindow::WindowArea() const
|
sl@0
|
274 |
{
|
sl@0
|
275 |
return iArea;
|
sl@0
|
276 |
}
|
sl@0
|
277 |
|
sl@0
|
278 |
void CWsRootWindow::SendState(MWsWindowTreeObserver& aWindowTreeObserver) const
|
sl@0
|
279 |
{
|
sl@0
|
280 |
aWindowTreeObserver.NodeCreated(*this, NULL);
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
/** @see MWsWindowTreeNode */
|
sl@0
|
284 |
const MWsWindow* CWsRootWindow::Window() const
|
sl@0
|
285 |
{
|
sl@0
|
286 |
return NULL;
|
sl@0
|
287 |
}
|
sl@0
|
288 |
|