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 |
// TWalkWindowTreeBase and associated classes definitions
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __WALKWINDOWTREE_H__
|
sl@0
|
19 |
#define __WALKWINDOWTREE_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "server.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
class CWsWindow;
|
sl@0
|
24 |
class CWsWindowBase;
|
sl@0
|
25 |
class RWsTextCursor;
|
sl@0
|
26 |
|
sl@0
|
27 |
class TWalkWindowTreeBase
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
virtual TBool DoIt(CWsWindow *aWin)=0;
|
sl@0
|
31 |
};
|
sl@0
|
32 |
|
sl@0
|
33 |
class TResumableWalkWindowTreeBase
|
sl@0
|
34 |
{
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
virtual TBool DoIt(CWsWindow *aWin)=0;
|
sl@0
|
37 |
private: // walk state
|
sl@0
|
38 |
friend class CWsWindowBase;
|
sl@0
|
39 |
CWsWindowBase* iWin;
|
sl@0
|
40 |
CWsWindowBase* iEnd;
|
sl@0
|
41 |
CWsWindowBase* iNextChild;
|
sl@0
|
42 |
CWsWindowBase* iParent;
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
class TWalkWindowTreeRegionBase : public TWalkWindowTreeBase
|
sl@0
|
46 |
{
|
sl@0
|
47 |
public:
|
sl@0
|
48 |
enum TTranslucentBehaviour
|
sl@0
|
49 |
{
|
sl@0
|
50 |
EDontWalkTranslucent, //< Default behaviour - stop when you reach a window
|
sl@0
|
51 |
EWalkTranslucent, //< Walk through translucent parts of windows
|
sl@0
|
52 |
};
|
sl@0
|
53 |
protected:
|
sl@0
|
54 |
TWalkWindowTreeRegionBase(RWsRegion *aRegion, TTranslucentBehaviour aTranslucentBehaviour = EDontWalkTranslucent);
|
sl@0
|
55 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
56 |
virtual void DoIt2(CWsWindow *aWin)=0;
|
sl@0
|
57 |
virtual TBool DoIt3(CWsWindow *aWin);
|
sl@0
|
58 |
protected:
|
sl@0
|
59 |
TTranslucentBehaviour iTranslucentBehaviour;
|
sl@0
|
60 |
RWsRegion *iRegion;
|
sl@0
|
61 |
RWsRegion *iSubRegion;
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
This tree walker calculates the visible regions of all windows and schedules
|
sl@0
|
66 |
redraws for anywhere which has changed.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
class TWalkWindowTreeUpdateRegions : public TWalkWindowTreeBase
|
sl@0
|
69 |
{
|
sl@0
|
70 |
public:
|
sl@0
|
71 |
TWalkWindowTreeUpdateRegions(CScreen & aScreen);
|
sl@0
|
72 |
TBool DoIt(CWsWindow * aWin);
|
sl@0
|
73 |
void Walk();
|
sl@0
|
74 |
|
sl@0
|
75 |
private:
|
sl@0
|
76 |
CScreen & iScreen;
|
sl@0
|
77 |
RWsRegion iVisible;
|
sl@0
|
78 |
RWsRegion iTop;
|
sl@0
|
79 |
RWsRegion iRemainsOfFadableScreen; // The remains after the accumulation of already faded regions
|
sl@0
|
80 |
};
|
sl@0
|
81 |
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
This schedules the visible regions of all windows walked for redraw.
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
class TWalkWindowTreeScheduleRedraws : public TWalkWindowTreeBase
|
sl@0
|
86 |
{
|
sl@0
|
87 |
public:
|
sl@0
|
88 |
enum
|
sl@0
|
89 |
{ // bit mask
|
sl@0
|
90 |
ERedrawFilterNoFilter = 0,
|
sl@0
|
91 |
ERedrawFilterOmitDSA = 0x001
|
sl@0
|
92 |
};
|
sl@0
|
93 |
|
sl@0
|
94 |
public:
|
sl@0
|
95 |
TWalkWindowTreeScheduleRedraws();
|
sl@0
|
96 |
TWalkWindowTreeScheduleRedraws( TUint32 aFilter );
|
sl@0
|
97 |
TBool DoIt(CWsWindow * aWin);
|
sl@0
|
98 |
|
sl@0
|
99 |
private:
|
sl@0
|
100 |
TUint32 iScheduleRedrawFilter;
|
sl@0
|
101 |
};
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
This offsets all the transparent regions
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
class TWalkWindowTreeOffsetTransparentRegions : public TWalkWindowTreeBase
|
sl@0
|
107 |
{
|
sl@0
|
108 |
public:
|
sl@0
|
109 |
TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset);
|
sl@0
|
110 |
TBool DoIt(CWsWindow * aWin);
|
sl@0
|
111 |
|
sl@0
|
112 |
private:
|
sl@0
|
113 |
const TPoint & iOffset;
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
This recalculates the user opaque regions
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
class TWalkWindowTreeRecalcOpaque : public TWalkWindowTreeBase
|
sl@0
|
120 |
{
|
sl@0
|
121 |
public:
|
sl@0
|
122 |
TWalkWindowTreeRecalcOpaque();
|
sl@0
|
123 |
TBool DoIt(CWsWindow * aWin);
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
// Tree walkers which schedule a set of windows to be drawn derive from this
|
sl@0
|
127 |
class TWalkWindowTreeSchedule: public TWalkWindowTreeBase
|
sl@0
|
128 |
{
|
sl@0
|
129 |
public:
|
sl@0
|
130 |
TWalkWindowTreeSchedule();
|
sl@0
|
131 |
CWsWindow * HeadWindow() const;
|
sl@0
|
132 |
virtual const TRegion * Region(const CWsWindow* aWin) const = 0;
|
sl@0
|
133 |
protected:
|
sl@0
|
134 |
CWsWindow* iHead;
|
sl@0
|
135 |
};
|
sl@0
|
136 |
|
sl@0
|
137 |
// This walker uses regions to work out the minimum set of pixels that need updating
|
sl@0
|
138 |
// It requires memory allocation, and so can fail. Check ScheduledRegionsOk before
|
sl@0
|
139 |
// relying on the results.
|
sl@0
|
140 |
class TWalkWindowTreeScheduleRegions: public TWalkWindowTreeSchedule
|
sl@0
|
141 |
{
|
sl@0
|
142 |
public:
|
sl@0
|
143 |
TWalkWindowTreeScheduleRegions(RWsRegion *aRegion, const TRegion& aTopLayer);
|
sl@0
|
144 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
145 |
TBool ScheduledRegionsOk() const;
|
sl@0
|
146 |
const TRegion * Region(const CWsWindow* aWin) const;
|
sl@0
|
147 |
private:
|
sl@0
|
148 |
RWsRegion *iRegion;
|
sl@0
|
149 |
const TRegion &iTopLayer;
|
sl@0
|
150 |
TBool iScheduledRegionsOk;
|
sl@0
|
151 |
};
|
sl@0
|
152 |
|
sl@0
|
153 |
// This walker uses the screens fallback mechanism. This does not require memory
|
sl@0
|
154 |
// allocation and so should never fail, but is significantly less efficient than the
|
sl@0
|
155 |
// region based walker.
|
sl@0
|
156 |
class TWalkWindowTreeScheduleFallback: public TWalkWindowTreeSchedule
|
sl@0
|
157 |
{
|
sl@0
|
158 |
public:
|
sl@0
|
159 |
TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap);
|
sl@0
|
160 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
161 |
const TRegion * Region(const CWsWindow* aWin) const;
|
sl@0
|
162 |
private:
|
sl@0
|
163 |
CScreen::CFallbackMap * iFallbackMap;
|
sl@0
|
164 |
};
|
sl@0
|
165 |
|
sl@0
|
166 |
class TWalkWindowTreeFocusChanged : public TWalkWindowTreeBase
|
sl@0
|
167 |
{
|
sl@0
|
168 |
public:
|
sl@0
|
169 |
TWalkWindowTreeFocusChanged(TBool aNewFocusState);
|
sl@0
|
170 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
171 |
// Data
|
sl@0
|
172 |
private:
|
sl@0
|
173 |
TBool iNewFocusState;
|
sl@0
|
174 |
};
|
sl@0
|
175 |
|
sl@0
|
176 |
class TResumableWalkWindowTreeFindInvalid : public TResumableWalkWindowTreeBase
|
sl@0
|
177 |
{
|
sl@0
|
178 |
public:
|
sl@0
|
179 |
TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult);
|
sl@0
|
180 |
TBool DoIt(CWsWindow* aWin);
|
sl@0
|
181 |
// Data
|
sl@0
|
182 |
private:
|
sl@0
|
183 |
CWsWindowRedraw** iResult;
|
sl@0
|
184 |
};
|
sl@0
|
185 |
|
sl@0
|
186 |
class TWalkWindowTreeDisconnect : public TWalkWindowTreeBase
|
sl@0
|
187 |
{
|
sl@0
|
188 |
public:
|
sl@0
|
189 |
TWalkWindowTreeDisconnect(RWsTextCursor *aCursor);
|
sl@0
|
190 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
191 |
private:
|
sl@0
|
192 |
RWsTextCursor *iTextCursor;
|
sl@0
|
193 |
};
|
sl@0
|
194 |
|
sl@0
|
195 |
class TWalkWindowTreeIsObscured : public TWalkWindowTreeBase
|
sl@0
|
196 |
{
|
sl@0
|
197 |
public:
|
sl@0
|
198 |
TWalkWindowTreeIsObscured(TBool &aResult);
|
sl@0
|
199 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
200 |
// Data
|
sl@0
|
201 |
TBool *iResult;
|
sl@0
|
202 |
};
|
sl@0
|
203 |
|
sl@0
|
204 |
class TWalkWindowTreeSetNonFading : public TWalkWindowTreeBase
|
sl@0
|
205 |
{
|
sl@0
|
206 |
public:
|
sl@0
|
207 |
TWalkWindowTreeSetNonFading(TBool aNonFading);
|
sl@0
|
208 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
209 |
// Data
|
sl@0
|
210 |
const TBool iNonFading;
|
sl@0
|
211 |
};
|
sl@0
|
212 |
|
sl@0
|
213 |
class TWalkWindowTreeSetFaded : public TWalkWindowTreeBase
|
sl@0
|
214 |
{
|
sl@0
|
215 |
public:
|
sl@0
|
216 |
TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap);
|
sl@0
|
217 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
218 |
// Data
|
sl@0
|
219 |
const TUint8 iBlackMap;
|
sl@0
|
220 |
const TUint8 iWhiteMap;
|
sl@0
|
221 |
const TBool iFaded;
|
sl@0
|
222 |
const CWsWindowGroup* iGroup;
|
sl@0
|
223 |
};
|
sl@0
|
224 |
|
sl@0
|
225 |
class TWalkWindowTreePurgeEvents : public TWalkWindowTreeBase
|
sl@0
|
226 |
{
|
sl@0
|
227 |
public:
|
sl@0
|
228 |
TWalkWindowTreePurgeEvents();
|
sl@0
|
229 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
230 |
};
|
sl@0
|
231 |
|
sl@0
|
232 |
class TWalkWindowTreeCalcInvalidGraphics: public TWalkWindowTreeRegionBase
|
sl@0
|
233 |
{
|
sl@0
|
234 |
public:
|
sl@0
|
235 |
TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid);
|
sl@0
|
236 |
void CalcInvalid(CScreen& aScreen);
|
sl@0
|
237 |
TBool CreateSubRegion();
|
sl@0
|
238 |
void DoIt2(CWsWindow */*aWin*/) {}
|
sl@0
|
239 |
TBool DoIt3(CWsWindow *aWin);
|
sl@0
|
240 |
void DestroyRegions();
|
sl@0
|
241 |
private:
|
sl@0
|
242 |
TRegion& iDirty;
|
sl@0
|
243 |
const TArray<TGraphicDrawerId>& iInvalid;
|
sl@0
|
244 |
};
|
sl@0
|
245 |
|
sl@0
|
246 |
#if defined(_DEBUG)
|
sl@0
|
247 |
class TWalkWindowTreeCheck : public TWalkWindowTreeBase
|
sl@0
|
248 |
{
|
sl@0
|
249 |
public:
|
sl@0
|
250 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
251 |
};
|
sl@0
|
252 |
|
sl@0
|
253 |
#endif
|
sl@0
|
254 |
|
sl@0
|
255 |
class TWalkWindowTreeRedrawStoreSize : public TWalkWindowTreeBase
|
sl@0
|
256 |
{
|
sl@0
|
257 |
public:
|
sl@0
|
258 |
TWalkWindowTreeRedrawStoreSize();
|
sl@0
|
259 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
260 |
TInt iTotalSize;
|
sl@0
|
261 |
};
|
sl@0
|
262 |
|
sl@0
|
263 |
|
sl@0
|
264 |
// We can't do a proper find_if unless we are prepared to write our own
|
sl@0
|
265 |
// mem_fun, but this isn't a bad start
|
sl@0
|
266 |
class TWalkWindowTreeFindWithFlag : public TWalkWindowTreeBase
|
sl@0
|
267 |
{
|
sl@0
|
268 |
public:
|
sl@0
|
269 |
TWalkWindowTreeFindWithFlag(TUint aFlag) : iFlag(aFlag), iFound(0) { }
|
sl@0
|
270 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
271 |
CWsWindow * Found() { return iFound; }
|
sl@0
|
272 |
private:
|
sl@0
|
273 |
TUint iFlag;
|
sl@0
|
274 |
CWsWindow * iFound;
|
sl@0
|
275 |
};
|
sl@0
|
276 |
|
sl@0
|
277 |
class TWalkWindowTreeFindByHandle : public TWalkWindowTreeBase
|
sl@0
|
278 |
{
|
sl@0
|
279 |
public:
|
sl@0
|
280 |
TWalkWindowTreeFindByHandle(TUint32 aHandle) : iHandle(aHandle) { }
|
sl@0
|
281 |
TBool DoIt(CWsWindow * aWin);
|
sl@0
|
282 |
CWsWindow * Found() { return iFound; }
|
sl@0
|
283 |
private:
|
sl@0
|
284 |
TUint32 iHandle;
|
sl@0
|
285 |
CWsWindow * iFound;
|
sl@0
|
286 |
};
|
sl@0
|
287 |
|
sl@0
|
288 |
class TWalkWindowTreeReactivateGcs : public TWalkWindowTreeBase
|
sl@0
|
289 |
{
|
sl@0
|
290 |
public:
|
sl@0
|
291 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
292 |
};
|
sl@0
|
293 |
|
sl@0
|
294 |
class TWalkWindowTreeScheduleFadeNoRedraw : public TWalkWindowTreeBase
|
sl@0
|
295 |
{
|
sl@0
|
296 |
public:
|
sl@0
|
297 |
TWalkWindowTreeScheduleFadeNoRedraw();
|
sl@0
|
298 |
TBool DoIt(CWsWindow *aWin);
|
sl@0
|
299 |
};
|
sl@0
|
300 |
|
sl@0
|
301 |
#endif
|