Update contrib.
1 // Copyright (c) 2006-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 // TWalkWindowTreeBase and associated classes definitions
18 #ifndef __WALKWINDOWTREE_H__
19 #define __WALKWINDOWTREE_H__
27 class TWalkWindowTreeBase
30 virtual TBool DoIt(CWsWindow *aWin)=0;
33 class TResumableWalkWindowTreeBase
36 virtual TBool DoIt(CWsWindow *aWin)=0;
37 private: // walk state
38 friend class CWsWindowBase;
41 CWsWindowBase* iNextChild;
42 CWsWindowBase* iParent;
45 class TWalkWindowTreeRegionBase : public TWalkWindowTreeBase
48 enum TTranslucentBehaviour
50 EDontWalkTranslucent, //< Default behaviour - stop when you reach a window
51 EWalkTranslucent, //< Walk through translucent parts of windows
54 TWalkWindowTreeRegionBase(RWsRegion *aRegion, TTranslucentBehaviour aTranslucentBehaviour = EDontWalkTranslucent);
55 TBool DoIt(CWsWindow *aWin);
56 virtual void DoIt2(CWsWindow *aWin)=0;
57 virtual TBool DoIt3(CWsWindow *aWin);
59 TTranslucentBehaviour iTranslucentBehaviour;
61 RWsRegion *iSubRegion;
66 This tree walker calculates the visible regions of all windows and schedules
67 redraws for anywhere which has changed.
69 class TWalkWindowTreeUpdateRegions : public TWalkWindowTreeBase
72 TWalkWindowTreeUpdateRegions(CScreen & aScreen);
73 TBool DoIt(CWsWindow * aWin);
80 RWsRegion iRemainsOfFadableScreen; // The remains after the accumulation of already faded regions
84 This schedules the visible regions of all windows walked for redraw.
86 class TWalkWindowTreeScheduleRedraws : public TWalkWindowTreeBase
91 ERedrawFilterNoFilter = 0x00,
92 ERedrawFilterOmitDSA = 0x01
96 TWalkWindowTreeScheduleRedraws();
97 TWalkWindowTreeScheduleRedraws( TUint32 aFilter );
98 TBool DoIt(CWsWindow * aWin);
101 TUint32 iScheduleRedrawFilter;
105 This offsets all the transparent regions
107 class TWalkWindowTreeOffsetTransparentRegions : public TWalkWindowTreeBase
110 TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset);
111 TBool DoIt(CWsWindow * aWin);
114 const TPoint & iOffset;
118 This recalculates the user opaque regions
120 class TWalkWindowTreeRecalcOpaque : public TWalkWindowTreeBase
123 TWalkWindowTreeRecalcOpaque();
124 TBool DoIt(CWsWindow * aWin);
127 // Tree walkers which schedule a set of windows to be drawn derive from this
128 class TWalkWindowTreeSchedule: public TWalkWindowTreeBase
131 TWalkWindowTreeSchedule();
132 CWsWindow * HeadWindow() const;
133 virtual const TRegion& WindowRegion(const CWsWindow& aWin) const = 0;
134 virtual const TRegion& SpriteRegion(const CWsWindow& aWin) const = 0;
139 class TWalkWindowListSchedule : public TWalkWindowTreeSchedule
142 TWalkWindowListSchedule(CWsWindow* aHeadWin, TRegion& aScreenUpdateRegion);
143 TBool DoIt(CWsWindow* aWin);
144 const TRegion& WindowRegion(const CWsWindow& aWin) const;
145 const TRegion& SpriteRegion(const CWsWindow& aWin) const;
146 void WalkWindowList();
148 TBool DoWindow(CWsWindow& aWin);
149 TBool DoSprites(CWsWindow& aWin);
152 TRegion& iScreenUpdateRegion;
155 // This walker uses regions to work out the minimum set of pixels that need updating
156 // It requires memory allocation, and so can fail. Check ScheduledRegionsOk before
157 // relying on the results.
158 class TWalkWindowTreeScheduleRegions: public TWalkWindowTreeSchedule
161 TWalkWindowTreeScheduleRegions(TRegion& aRegion, const TRegion& aTopElement);
162 TBool DoIt(CWsWindow *aWin);
163 TBool ScheduledRegionsOk() const;
164 const TRegion& WindowRegion(const CWsWindow& aWin) const;
165 const TRegion& SpriteRegion(const CWsWindow& aWin) const;
168 const TRegion &iTopElement;
169 TBool iScheduledRegionsOk;
172 // This walker uses the screens fallback mechanism. This does not require memory
173 // allocation and so should never fail, but is significantly less efficient than the
174 // region based walker.
175 class TWalkWindowTreeScheduleFallback: public TWalkWindowTreeSchedule
178 TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap);
179 TBool DoIt(CWsWindow *aWin);
180 const TRegion& WindowRegion(const CWsWindow& aWin) const;
181 const TRegion& SpriteRegion(const CWsWindow& aWin) const;
183 CScreen::CFallbackMap * iFallbackMap;
186 class TWalkWindowTreeFocusChanged : public TWalkWindowTreeBase
189 TWalkWindowTreeFocusChanged(TBool aNewFocusState);
190 TBool DoIt(CWsWindow *aWin);
193 TBool iNewFocusState;
196 class TResumableWalkWindowTreeFindInvalid : public TResumableWalkWindowTreeBase
199 TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult);
200 TBool DoIt(CWsWindow* aWin);
203 CWsWindowRedraw** iResult;
206 class TWalkWindowTreeDisconnect : public TWalkWindowTreeBase
209 TWalkWindowTreeDisconnect(RWsTextCursor *aCursor);
210 TBool DoIt(CWsWindow *aWin);
212 RWsTextCursor *iTextCursor;
215 class TWalkWindowTreeIsObscured : public TWalkWindowTreeBase
218 TWalkWindowTreeIsObscured(TBool &aResult);
219 TBool DoIt(CWsWindow *aWin);
224 class TWalkWindowTreeSetupVisibleRegionTracking : public TWalkWindowTreeBase
227 TWalkWindowTreeSetupVisibleRegionTracking(TBool aRegister);
228 TBool DoIt(CWsWindow *aWin);
233 class TWalkWindowTreeSetNonFading : public TWalkWindowTreeBase
236 TWalkWindowTreeSetNonFading(TBool aNonFading);
237 TBool DoIt(CWsWindow *aWin);
239 const TBool iNonFading;
242 class TWalkWindowTreeSetFaded : public TWalkWindowTreeBase
245 TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap);
246 //from TWalkWindowTreeBase
247 TBool DoIt(CWsWindow *aWin);
249 const TUint8 iBlackMap;
250 const TUint8 iWhiteMap;
252 const CWsWindowGroup* iGroup;
255 class TWalkWindowTreeSetSystemFaded : public TWalkWindowTreeSetFaded
258 TWalkWindowTreeSetSystemFaded(TBool aFaded, CWsWindowBase* aWin, TUint8 aBlackMap, TUint8 aWhiteMap, TBool& aStateChanged);
259 //from TWalkWindowTreeBase
260 TBool DoIt(CWsWindow *aWin);
262 TBool& iStateChanged;
265 class TWalkWindowTreePurgeEvents : public TWalkWindowTreeBase
268 TWalkWindowTreePurgeEvents();
269 TBool DoIt(CWsWindow *aWin);
272 class TWalkWindowTreeCalcInvalidGraphics: public TWalkWindowTreeRegionBase
275 TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid);
276 void CalcInvalid(CScreen& aScreen);
277 TBool CreateSubRegion();
278 void DoIt2(CWsWindow */*aWin*/) {}
279 TBool DoIt3(CWsWindow *aWin);
280 void DestroyRegions();
283 const TArray<TGraphicDrawerId>& iInvalid;
287 class TWalkWindowTreeCheck : public TWalkWindowTreeBase
290 TBool DoIt(CWsWindow *aWin);
295 class TWalkWindowTreeRedrawStoreSize : public TWalkWindowTreeBase
298 TWalkWindowTreeRedrawStoreSize();
299 TBool DoIt(CWsWindow *aWin);
304 // We can't do a proper find_if unless we are prepared to write our own
305 // mem_fun, but this isn't a bad start
306 class TWalkWindowTreeFindWithFlag : public TWalkWindowTreeBase
309 TWalkWindowTreeFindWithFlag(TUint aFlag) : iFlag(aFlag), iFound(0) { }
310 TBool DoIt(CWsWindow *aWin);
311 CWsWindow * Found() { return iFound; }
317 class TWalkWindowTreeFindByHandle : public TWalkWindowTreeBase
320 TWalkWindowTreeFindByHandle(TUint32 aHandle) : iHandle(aHandle) { }
321 TBool DoIt(CWsWindow * aWin);
322 CWsWindow * Found() { return iFound; }
328 class TWalkWindowTreeSendState : public TWalkWindowTreeBase
331 TWalkWindowTreeSendState(MWsWindowTreeObserver& aWindowTreeObserver);
332 TBool DoIt(CWsWindow *aWin);
334 MWsWindowTreeObserver& iWindowTreeObserver;