sl@0
|
1 |
// Copyright (c) 2006-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 |
// CWsWindow and associated classes definitions
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __WINDOW_H__
|
sl@0
|
19 |
#define __WINDOW_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "server.h"
|
sl@0
|
22 |
#include "winbase.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef _DEBUG
|
sl@0
|
25 |
|
sl@0
|
26 |
#define LOG_WINDOW_FADE_START(wswin)
|
sl@0
|
27 |
#define LOG_WINDOW_FADE_REGION(region)
|
sl@0
|
28 |
#define LOG_WINDOW_FADE_END(wswin)
|
sl@0
|
29 |
|
sl@0
|
30 |
#else
|
sl@0
|
31 |
|
sl@0
|
32 |
#define LOG_WINDOW_FADE_START(wswin) LogFadeStart(wswin)
|
sl@0
|
33 |
#define LOG_WINDOW_FADE_REGION(region) LogFadeRegion(region)
|
sl@0
|
34 |
#define LOG_WINDOW_FADE_END(wswin) LogFadeEnd(wswin)
|
sl@0
|
35 |
|
sl@0
|
36 |
class TTruncateOverflow : public TDesOverflow
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
virtual void Overflow(TDes&) {};
|
sl@0
|
40 |
};
|
sl@0
|
41 |
|
sl@0
|
42 |
void LogRegion(const TRegion* aRegion);
|
sl@0
|
43 |
void LogFadeStart(const CWsWindow* aWsWin);
|
sl@0
|
44 |
void LogFadeRegion(const TRegion* aRegion);
|
sl@0
|
45 |
void LogFadeEnd(const CWsWindow* aWsWin);
|
sl@0
|
46 |
|
sl@0
|
47 |
#endif
|
sl@0
|
48 |
|
sl@0
|
49 |
void AnnotateWindowRedrawStart(const CWsWindow& aWsWin, const TRegion& aRegion);
|
sl@0
|
50 |
void AnnotateWindowRedrawEnd(const CWsWindow& aWsWin);
|
sl@0
|
51 |
void AnnotateWindowAnimRedrawStart(const CWsWindow& aWsWin, const CWsAnim& aAnim, const TRegion& aRegion);
|
sl@0
|
52 |
void AnnotateWindowAnimRedrawEnd(const CWsWindow& aWsWin, const CWsAnim& aAnim);
|
sl@0
|
53 |
void AnnotateSpriteRedrawStart(const CWsWindow& aWsWin, const CWsSpriteBase& aSprite, const TRegion& aRegion);
|
sl@0
|
54 |
void AnnotateSpriteRedrawEnd(const CWsWindow& aWsWin, const CWsSpriteBase& aSprite);
|
sl@0
|
55 |
|
sl@0
|
56 |
class MWsGraphicsContext;
|
sl@0
|
57 |
class CWsRenderStage;
|
sl@0
|
58 |
|
sl@0
|
59 |
class CWsWindow : public CWsWindowBase, public MWsWindow
|
sl@0
|
60 |
{
|
sl@0
|
61 |
friend class TWalkWindowTreeDisconnect;
|
sl@0
|
62 |
friend class CWsRootWindow;
|
sl@0
|
63 |
friend class TWalkWindowTreeFindWithFlag;
|
sl@0
|
64 |
public:
|
sl@0
|
65 |
CWsWindow(CWsClient* aOwner,WH_HANDLES aType, CScreen* aScreen);
|
sl@0
|
66 |
~CWsWindow();
|
sl@0
|
67 |
void Construct();
|
sl@0
|
68 |
inline const TRect& Rel() const;
|
sl@0
|
69 |
inline const TRect& Abs() const;
|
sl@0
|
70 |
inline CWsWindow *PrevSiblingMultiParent() const;
|
sl@0
|
71 |
inline CWsWindow *NextSiblingMultiParent() const;
|
sl@0
|
72 |
inline TUint PointerFilter() const;
|
sl@0
|
73 |
inline TBool HasPointerGrab() const;
|
sl@0
|
74 |
inline TBool ShutDownInProgress() const;
|
sl@0
|
75 |
inline TRgb BackColor() const;
|
sl@0
|
76 |
virtual void AreaCovered(TRegion &aRegion);
|
sl@0
|
77 |
const TRegion* VisibleRegionIfValid() const;
|
sl@0
|
78 |
const TRegion& VisibleRegion() const;
|
sl@0
|
79 |
void ClearVisibleRegion();
|
sl@0
|
80 |
void SetVisibleRegion(const TRegion& aNewVisibleRegion, const TRegion* aTop);
|
sl@0
|
81 |
void SetFadeableRegion(const TRegion& aNewFadeableRegion, const TRegion& aTop);
|
sl@0
|
82 |
|
sl@0
|
83 |
virtual void GenerateWindowRegion(RWsRegion &aRegion) const=0;
|
sl@0
|
84 |
TRect FullRect() const;
|
sl@0
|
85 |
inline TBool ClientSetInvisible() const;
|
sl@0
|
86 |
inline TBool IsVisible() const;
|
sl@0
|
87 |
inline TBool DragDropCapture() const;
|
sl@0
|
88 |
inline CWsBackedUpWindow *Backup() const;
|
sl@0
|
89 |
TDisplayMode DisplayMode() const;
|
sl@0
|
90 |
inline TInt UsingPointerBuffer() const;
|
sl@0
|
91 |
virtual TDblQue<TPointerKeyList> *PointerKeyList() const;
|
sl@0
|
92 |
inline CWsWindowRedraw *Redraw() const;
|
sl@0
|
93 |
inline TBool IsTopClientWindow() const;
|
sl@0
|
94 |
TDisplayMode SetRequiredDisplayModeL(TDisplayMode aDisplayMode);
|
sl@0
|
95 |
inline TBool IsActive() const;
|
sl@0
|
96 |
TInt AddDSA(CWsDirectScreenAccess& aDirect);
|
sl@0
|
97 |
void RemoveDSA(CWsDirectScreenAccess& aDirect);
|
sl@0
|
98 |
void AbortAllDSAs();
|
sl@0
|
99 |
#if defined(_DEBUG)
|
sl@0
|
100 |
inline const TSglQue<CWsDirectScreenAccess>& DSAs() const;
|
sl@0
|
101 |
#endif
|
sl@0
|
102 |
void PossibleVisibilityChangedEvent(TBool aForceSend);
|
sl@0
|
103 |
void SetNonFading(TBool aNonFading);
|
sl@0
|
104 |
void SetFadeBehind(TBool aFade);
|
sl@0
|
105 |
inline void GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const;
|
sl@0
|
106 |
inline TBool IsTranslucent() const;
|
sl@0
|
107 |
inline TBool HasAlpha() const;
|
sl@0
|
108 |
inline TBool HasBeenDrawnToScreen() const;
|
sl@0
|
109 |
inline void SetDrawnToScreen(TBool aDrawn);
|
sl@0
|
110 |
void FocusChanged(TBool aNewFocusState);
|
sl@0
|
111 |
void ClipRectToViewport(TRect& aRect) const;
|
sl@0
|
112 |
void SetNextScheduled(CWsWindow * aWin);
|
sl@0
|
113 |
CWsWindow * NextScheduled() const;
|
sl@0
|
114 |
inline const TRegion& ScheduledRegion() const;
|
sl@0
|
115 |
inline const TRegion& ScheduledSpriteRegion() const;
|
sl@0
|
116 |
TBool SetScheduledRegion(const TRegion& aRegion);
|
sl@0
|
117 |
void ClearScheduledRegion();
|
sl@0
|
118 |
void ClearScheduledSpriteRegion();
|
sl@0
|
119 |
static TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
|
sl@0
|
120 |
TBool ReadyToDraw() const;
|
sl@0
|
121 |
void Render(MWsGraphicsContext& aGc, const TRegion& aWindowRegion, const TRegion& aWindowChildNodeRegion);
|
sl@0
|
122 |
void Accessed();
|
sl@0
|
123 |
|
sl@0
|
124 |
inline TBool IsNonFading() const;
|
sl@0
|
125 |
const TRegion& QuickFadeRegion() const;
|
sl@0
|
126 |
void Fade(MWsGraphicsContext * aGc, const TRegion& aRegion);
|
sl@0
|
127 |
|
sl@0
|
128 |
inline void SetValidRedraw();
|
sl@0
|
129 |
inline TBool IsValidRedraw() const;
|
sl@0
|
130 |
inline TBool HasElement() const;
|
sl@0
|
131 |
inline TBool IsFading() const;
|
sl@0
|
132 |
inline TBool HasAnimation() const;
|
sl@0
|
133 |
inline TBool IsBackgroundClearEnabled() const;
|
sl@0
|
134 |
void AddDirtyWindowRegion(const TRegion& aRegion);
|
sl@0
|
135 |
void AddDirtySpriteRegion(const TRegion& aRegion);
|
sl@0
|
136 |
const TRegion& DirtyWindowRegion() const;
|
sl@0
|
137 |
const TRegion& DirtySpriteRegion() const;
|
sl@0
|
138 |
void ScheduleDirtyWindowRegion();
|
sl@0
|
139 |
void ScheduleDirtySpriteRegion();
|
sl@0
|
140 |
void SetupVisibleRegionTracking(TBool aRegister);
|
sl@0
|
141 |
inline TBool IsTrackingVisibleRegion() const;
|
sl@0
|
142 |
const TRegion& FadableRegion() const;
|
sl@0
|
143 |
|
sl@0
|
144 |
public: // from CWsWindowBase
|
sl@0
|
145 |
TBool IsDSAHost() const;
|
sl@0
|
146 |
void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
|
sl@0
|
147 |
|
sl@0
|
148 |
public: // from MWsWindow
|
sl@0
|
149 |
TPoint Origin() const;
|
sl@0
|
150 |
TRect AbsRect() const;
|
sl@0
|
151 |
TSize Size() const;
|
sl@0
|
152 |
TUint32 Handle() const;
|
sl@0
|
153 |
MWsScreen * WsScreen() const;
|
sl@0
|
154 |
void Invalidate(const TRect *) {}
|
sl@0
|
155 |
MWsWindow * FindChildByHandle(TUint32 aHandle);
|
sl@0
|
156 |
TInt OrdinalPriority() const;
|
sl@0
|
157 |
|
sl@0
|
158 |
protected:
|
sl@0
|
159 |
TPoint InquireOffset(TUint32 aHandle) const;
|
sl@0
|
160 |
void Shutdown(); // Part of two phase destruction
|
sl@0
|
161 |
void FocusChangedL(TBool aNewFocusState);
|
sl@0
|
162 |
void RemoveFromAccessList();
|
sl@0
|
163 |
void InsertIntoAccessListOldestEnd();
|
sl@0
|
164 |
void InsertIntoAccessListRecentEnd();
|
sl@0
|
165 |
void DeactivateAllSprites();
|
sl@0
|
166 |
private:
|
sl@0
|
167 |
void StatusDump(TDes &aBuf);
|
sl@0
|
168 |
void ResetVisibleRegion();
|
sl@0
|
169 |
void AbortDsaIfRequired(const TRegion& aNewRegion, const TRegion* aTop);
|
sl@0
|
170 |
void RestartAnimations(const TRegion& aNewRegion);
|
sl@0
|
171 |
#if defined (_DEBUG)
|
sl@0
|
172 |
public:
|
sl@0
|
173 |
TBool iInteresting; // Often useful while debugging for conditional breakpoints.
|
sl@0
|
174 |
#endif
|
sl@0
|
175 |
protected:
|
sl@0
|
176 |
TRect iRel;
|
sl@0
|
177 |
TRect iAbs;
|
sl@0
|
178 |
TPoint iOrigin;
|
sl@0
|
179 |
RWsRegionBuf<1> iVisibleRegion;
|
sl@0
|
180 |
TUint iPointerFilter;
|
sl@0
|
181 |
TInt iPointerCapturePriority;
|
sl@0
|
182 |
TUint iFlags;
|
sl@0
|
183 |
CWsWindowRedraw *iRedraw;
|
sl@0
|
184 |
TSglQue<CWsDirectScreenAccess> iDSAs;
|
sl@0
|
185 |
CWsWindow * iNextScheduled;
|
sl@0
|
186 |
RWsRegionBuf<1> iScheduledRegion;
|
sl@0
|
187 |
RWsRegionBuf<1> iScheduledSpriteRegion;
|
sl@0
|
188 |
// The access list is a "most recently drawn" ordering list of all redraw msg windows.
|
sl@0
|
189 |
static CWsWindow * iAccessListRecentEnd;
|
sl@0
|
190 |
static CWsWindow * iAccessListOldestEnd;
|
sl@0
|
191 |
CWsWindow * iAccessListPrev;
|
sl@0
|
192 |
CWsWindow * iAccessListNext;
|
sl@0
|
193 |
TUint8 iBlackMap;
|
sl@0
|
194 |
TUint8 iWhiteMap;
|
sl@0
|
195 |
RWsRegionBuf<1> iQuickFadeRegion;
|
sl@0
|
196 |
RWsRegionBuf<1> iFadableRegion; // Region which can be faded (Visible region minus already faded regions)
|
sl@0
|
197 |
RWsRegionBuf<1> iDirtyWindowRegion;
|
sl@0
|
198 |
RWsRegionBuf<1> iDirtySpriteRegion;
|
sl@0
|
199 |
TInt iVisibleRegionTrackingCounter;
|
sl@0
|
200 |
public:
|
sl@0
|
201 |
/** The list of graphic contexts associated with this window. The list is managed by calling the
|
sl@0
|
202 |
GcActivated() and GcDeactivated() functions.
|
sl@0
|
203 |
This is a linked list. The CWsGc class contains a pointer to the next item: CWsGc::iNextWinGc.
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
CWsGc *iWinGcList;
|
sl@0
|
206 |
CWsAnim *iAnimList; // Start of linked list of animated objects attached to the window
|
sl@0
|
207 |
};
|
sl@0
|
208 |
|
sl@0
|
209 |
#include "wnredraw.h"
|
sl@0
|
210 |
|
sl@0
|
211 |
inline TBool CWsWindow::IsVisible() const
|
sl@0
|
212 |
{
|
sl@0
|
213 |
return(!(iFlags&EFlagHidden));
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
inline TBool CWsWindow::ClientSetInvisible() const
|
sl@0
|
217 |
{
|
sl@0
|
218 |
return(iFlags&EFlagInvisible);
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
inline TBool CWsWindow::DragDropCapture() const
|
sl@0
|
222 |
{
|
sl@0
|
223 |
return(iFlags&EFlagPointerCaptureDragDrop);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
inline TRgb CWsWindow::BackColor() const
|
sl@0
|
227 |
{
|
sl@0
|
228 |
return(iRedraw->BackColor());
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
inline TInt CWsWindow::UsingPointerBuffer() const
|
sl@0
|
232 |
{
|
sl@0
|
233 |
return(iFlags&EFlagUsingPointerBuffer);
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
inline CWsWindowRedraw *CWsWindow::Redraw() const
|
sl@0
|
237 |
{
|
sl@0
|
238 |
return iRedraw;
|
sl@0
|
239 |
}
|
sl@0
|
240 |
|
sl@0
|
241 |
inline const TRect& CWsWindow::Rel() const
|
sl@0
|
242 |
{
|
sl@0
|
243 |
return iRel;
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
inline const TRect& CWsWindow::Abs() const
|
sl@0
|
247 |
{
|
sl@0
|
248 |
return iAbs;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
inline TBool CWsWindow::IsTopClientWindow() const
|
sl@0
|
252 |
{
|
sl@0
|
253 |
return(iFlags&EFlagIsTopClientWindow);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
inline TUint CWsWindow::PointerFilter() const
|
sl@0
|
257 |
{
|
sl@0
|
258 |
return(iPointerFilter);
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
inline TBool CWsWindow::HasPointerGrab() const
|
sl@0
|
262 |
{
|
sl@0
|
263 |
return(iFlags&EFlagPointerGrab);
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
inline TBool CWsWindow::ShutDownInProgress() const
|
sl@0
|
267 |
{
|
sl@0
|
268 |
return(iFlags&EFlagShutDownInProgress);
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
inline CWsBackedUpWindow *CWsWindow::Backup() const
|
sl@0
|
272 |
{
|
sl@0
|
273 |
return(iRedraw->Backup());
|
sl@0
|
274 |
}
|
sl@0
|
275 |
|
sl@0
|
276 |
inline CWsWindow *CWsWindow::PrevSiblingMultiParent() const
|
sl@0
|
277 |
{
|
sl@0
|
278 |
return((CWsWindow *)CWsWindowBase::PrevSiblingMultiParent());
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
inline CWsWindow *CWsWindow::NextSiblingMultiParent() const
|
sl@0
|
282 |
{
|
sl@0
|
283 |
return((CWsWindow *)CWsWindowBase::NextSiblingMultiParent());
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
inline TBool CWsWindow::IsActive() const
|
sl@0
|
287 |
{
|
sl@0
|
288 |
return iFlags&EFlagActive;
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
inline TBool CWsWindow::IsTranslucent() const
|
sl@0
|
292 |
{
|
sl@0
|
293 |
return (iFlags & static_cast<TUint>(EFlagHasAlpha)) != 0;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
inline TBool CWsWindow::HasAlpha() const
|
sl@0
|
297 |
{
|
sl@0
|
298 |
return (iFlags & static_cast<TUint>(EFlagHasAlpha)) !=0;
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
inline TBool CWsWindow::HasBeenDrawnToScreen() const
|
sl@0
|
302 |
{
|
sl@0
|
303 |
return (iFlags & static_cast<TUint>(EFlagDrawnToScreen)) != 0;
|
sl@0
|
304 |
}
|
sl@0
|
305 |
|
sl@0
|
306 |
inline void CWsWindow::SetDrawnToScreen(TBool aDrawn)
|
sl@0
|
307 |
{
|
sl@0
|
308 |
if (aDrawn)
|
sl@0
|
309 |
iFlags |= static_cast<TUint>(EFlagDrawnToScreen);
|
sl@0
|
310 |
else
|
sl@0
|
311 |
iFlags &= ~static_cast<TUint>(EFlagDrawnToScreen);
|
sl@0
|
312 |
}
|
sl@0
|
313 |
|
sl@0
|
314 |
inline const TRegion& CWsWindow::ScheduledRegion() const
|
sl@0
|
315 |
{
|
sl@0
|
316 |
return iScheduledRegion;
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|
sl@0
|
319 |
inline const TRegion& CWsWindow::ScheduledSpriteRegion() const
|
sl@0
|
320 |
{
|
sl@0
|
321 |
return iScheduledSpriteRegion;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
#if defined(_DEBUG)
|
sl@0
|
325 |
inline const TSglQue<CWsDirectScreenAccess>& CWsWindow::DSAs() const
|
sl@0
|
326 |
{
|
sl@0
|
327 |
return iDSAs;
|
sl@0
|
328 |
}
|
sl@0
|
329 |
#endif
|
sl@0
|
330 |
|
sl@0
|
331 |
inline TBool CWsWindow::IsNonFading() const
|
sl@0
|
332 |
{
|
sl@0
|
333 |
return (iFlags&EFlagNonFadingWindow);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
inline void CWsWindow::GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const
|
sl@0
|
337 |
{aBlackMap=iBlackMap;aWhiteMap=iWhiteMap;}
|
sl@0
|
338 |
|
sl@0
|
339 |
inline TBool CWsWindow::HasElement() const
|
sl@0
|
340 |
{
|
sl@0
|
341 |
return (Redraw())?(Redraw()->HasElement()):(EFalse);
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
inline TBool CWsWindow::IsFading() const
|
sl@0
|
345 |
{
|
sl@0
|
346 |
return (!IsNonFading() && (iFadeCount > 0));
|
sl@0
|
347 |
}
|
sl@0
|
348 |
|
sl@0
|
349 |
inline void CWsWindow::SetValidRedraw()
|
sl@0
|
350 |
{
|
sl@0
|
351 |
iFlags |= EFlagValidRedraw;
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
inline TBool CWsWindow::IsValidRedraw() const
|
sl@0
|
355 |
{
|
sl@0
|
356 |
return (iFlags & EFlagValidRedraw);
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
inline TBool CWsWindow::HasAnimation() const
|
sl@0
|
360 |
{
|
sl@0
|
361 |
return (NULL != iAnimList);
|
sl@0
|
362 |
}
|
sl@0
|
363 |
|
sl@0
|
364 |
inline TBool CWsWindow::IsBackgroundClearEnabled() const
|
sl@0
|
365 |
{
|
sl@0
|
366 |
return Redraw()->IsBackgroundClearEnabled();
|
sl@0
|
367 |
}
|
sl@0
|
368 |
|
sl@0
|
369 |
inline TBool CWsWindow::IsTrackingVisibleRegion() const
|
sl@0
|
370 |
{
|
sl@0
|
371 |
WS_ASSERT_DEBUG(iVisibleRegionTrackingCounter>=0,EWsPanicVisibleRegionTracking);
|
sl@0
|
372 |
return iVisibleRegionTrackingCounter;
|
sl@0
|
373 |
}
|
sl@0
|
374 |
|
sl@0
|
375 |
#endif
|