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;
65 This tree walker calculates the visible regions of all windows and schedules
66 redraws for anywhere which has changed.
68 class TWalkWindowTreeUpdateRegions : public TWalkWindowTreeBase
71 TWalkWindowTreeUpdateRegions(CScreen & aScreen);
72 TBool DoIt(CWsWindow * aWin);
79 RWsRegion iRemainsOfFadableScreen; // The remains after the accumulation of already faded regions
83 This schedules the visible regions of all windows walked for redraw.
85 class TWalkWindowTreeScheduleRedraws : public TWalkWindowTreeBase
90 ERedrawFilterNoFilter = 0,
91 ERedrawFilterOmitDSA = 0x001
95 TWalkWindowTreeScheduleRedraws();
96 TWalkWindowTreeScheduleRedraws( TUint32 aFilter );
97 TBool DoIt(CWsWindow * aWin);
100 TUint32 iScheduleRedrawFilter;
104 This offsets all the transparent regions
106 class TWalkWindowTreeOffsetTransparentRegions : public TWalkWindowTreeBase
109 TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset);
110 TBool DoIt(CWsWindow * aWin);
113 const TPoint & iOffset;
117 This recalculates the user opaque regions
119 class TWalkWindowTreeRecalcOpaque : public TWalkWindowTreeBase
122 TWalkWindowTreeRecalcOpaque();
123 TBool DoIt(CWsWindow * aWin);
126 // Tree walkers which schedule a set of windows to be drawn derive from this
127 class TWalkWindowTreeSchedule: public TWalkWindowTreeBase
130 TWalkWindowTreeSchedule();
131 CWsWindow * HeadWindow() const;
132 virtual const TRegion * Region(const CWsWindow* aWin) const = 0;
137 // This walker uses regions to work out the minimum set of pixels that need updating
138 // It requires memory allocation, and so can fail. Check ScheduledRegionsOk before
139 // relying on the results.
140 class TWalkWindowTreeScheduleRegions: public TWalkWindowTreeSchedule
143 TWalkWindowTreeScheduleRegions(RWsRegion *aRegion, const TRegion& aTopLayer);
144 TBool DoIt(CWsWindow *aWin);
145 TBool ScheduledRegionsOk() const;
146 const TRegion * Region(const CWsWindow* aWin) const;
149 const TRegion &iTopLayer;
150 TBool iScheduledRegionsOk;
153 // This walker uses the screens fallback mechanism. This does not require memory
154 // allocation and so should never fail, but is significantly less efficient than the
155 // region based walker.
156 class TWalkWindowTreeScheduleFallback: public TWalkWindowTreeSchedule
159 TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap);
160 TBool DoIt(CWsWindow *aWin);
161 const TRegion * Region(const CWsWindow* aWin) const;
163 CScreen::CFallbackMap * iFallbackMap;
166 class TWalkWindowTreeFocusChanged : public TWalkWindowTreeBase
169 TWalkWindowTreeFocusChanged(TBool aNewFocusState);
170 TBool DoIt(CWsWindow *aWin);
173 TBool iNewFocusState;
176 class TResumableWalkWindowTreeFindInvalid : public TResumableWalkWindowTreeBase
179 TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult);
180 TBool DoIt(CWsWindow* aWin);
183 CWsWindowRedraw** iResult;
186 class TWalkWindowTreeDisconnect : public TWalkWindowTreeBase
189 TWalkWindowTreeDisconnect(RWsTextCursor *aCursor);
190 TBool DoIt(CWsWindow *aWin);
192 RWsTextCursor *iTextCursor;
195 class TWalkWindowTreeIsObscured : public TWalkWindowTreeBase
198 TWalkWindowTreeIsObscured(TBool &aResult);
199 TBool DoIt(CWsWindow *aWin);
204 class TWalkWindowTreeSetNonFading : public TWalkWindowTreeBase
207 TWalkWindowTreeSetNonFading(TBool aNonFading);
208 TBool DoIt(CWsWindow *aWin);
210 const TBool iNonFading;
213 class TWalkWindowTreeSetFaded : public TWalkWindowTreeBase
216 TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap);
217 TBool DoIt(CWsWindow *aWin);
219 const TUint8 iBlackMap;
220 const TUint8 iWhiteMap;
222 const CWsWindowGroup* iGroup;
225 class TWalkWindowTreePurgeEvents : public TWalkWindowTreeBase
228 TWalkWindowTreePurgeEvents();
229 TBool DoIt(CWsWindow *aWin);
232 class TWalkWindowTreeCalcInvalidGraphics: public TWalkWindowTreeRegionBase
235 TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid);
236 void CalcInvalid(CScreen& aScreen);
237 TBool CreateSubRegion();
238 void DoIt2(CWsWindow */*aWin*/) {}
239 TBool DoIt3(CWsWindow *aWin);
240 void DestroyRegions();
243 const TArray<TGraphicDrawerId>& iInvalid;
247 class TWalkWindowTreeCheck : public TWalkWindowTreeBase
250 TBool DoIt(CWsWindow *aWin);
255 class TWalkWindowTreeRedrawStoreSize : public TWalkWindowTreeBase
258 TWalkWindowTreeRedrawStoreSize();
259 TBool DoIt(CWsWindow *aWin);
264 // We can't do a proper find_if unless we are prepared to write our own
265 // mem_fun, but this isn't a bad start
266 class TWalkWindowTreeFindWithFlag : public TWalkWindowTreeBase
269 TWalkWindowTreeFindWithFlag(TUint aFlag) : iFlag(aFlag), iFound(0) { }
270 TBool DoIt(CWsWindow *aWin);
271 CWsWindow * Found() { return iFound; }
277 class TWalkWindowTreeFindByHandle : public TWalkWindowTreeBase
280 TWalkWindowTreeFindByHandle(TUint32 aHandle) : iHandle(aHandle) { }
281 TBool DoIt(CWsWindow * aWin);
282 CWsWindow * Found() { return iFound; }
288 class TWalkWindowTreeReactivateGcs : public TWalkWindowTreeBase
291 TBool DoIt(CWsWindow *aWin);
294 class TWalkWindowTreeScheduleFadeNoRedraw : public TWalkWindowTreeBase
297 TWalkWindowTreeScheduleFadeNoRedraw();
298 TBool DoIt(CWsWindow *aWin);