os/graphics/windowing/windowserver/nga/SERVER/openwfc/walkwindowtree.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
/**
sl@0
    66
This tree walker calculates the visible regions of all windows and schedules
sl@0
    67
redraws for anywhere which has changed.
sl@0
    68
*/
sl@0
    69
class TWalkWindowTreeUpdateRegions : public TWalkWindowTreeBase
sl@0
    70
	{
sl@0
    71
public:
sl@0
    72
	TWalkWindowTreeUpdateRegions(CScreen & aScreen);
sl@0
    73
	TBool DoIt(CWsWindow * aWin);
sl@0
    74
	void Walk();
sl@0
    75
sl@0
    76
private:
sl@0
    77
	CScreen & iScreen;
sl@0
    78
	RWsRegion iVisible;
sl@0
    79
	RWsRegion iTop;
sl@0
    80
	RWsRegion iRemainsOfFadableScreen; // The remains after the accumulation of already faded regions
sl@0
    81
	};
sl@0
    82
sl@0
    83
/**
sl@0
    84
This schedules the visible regions of all windows walked for redraw.
sl@0
    85
*/
sl@0
    86
class TWalkWindowTreeScheduleRedraws : public TWalkWindowTreeBase
sl@0
    87
	{
sl@0
    88
public:
sl@0
    89
	enum TBitMask
sl@0
    90
		{
sl@0
    91
		ERedrawFilterNoFilter	= 0x00,
sl@0
    92
		ERedrawFilterOmitDSA	= 0x01
sl@0
    93
		};
sl@0
    94
	
sl@0
    95
public:
sl@0
    96
	TWalkWindowTreeScheduleRedraws();
sl@0
    97
	TWalkWindowTreeScheduleRedraws( TUint32 aFilter );
sl@0
    98
	TBool DoIt(CWsWindow * aWin);
sl@0
    99
sl@0
   100
private:
sl@0
   101
	TUint32	iScheduleRedrawFilter;
sl@0
   102
	};
sl@0
   103
sl@0
   104
/**
sl@0
   105
This offsets all the transparent regions
sl@0
   106
*/
sl@0
   107
class TWalkWindowTreeOffsetTransparentRegions : public TWalkWindowTreeBase
sl@0
   108
	{
sl@0
   109
public:
sl@0
   110
	TWalkWindowTreeOffsetTransparentRegions(const TPoint& aOffset);
sl@0
   111
	TBool DoIt(CWsWindow * aWin);
sl@0
   112
sl@0
   113
private:
sl@0
   114
	const TPoint & iOffset;	
sl@0
   115
	};
sl@0
   116
sl@0
   117
/**
sl@0
   118
This recalculates the user opaque regions
sl@0
   119
*/
sl@0
   120
class TWalkWindowTreeRecalcOpaque : public TWalkWindowTreeBase
sl@0
   121
	{
sl@0
   122
public:
sl@0
   123
	TWalkWindowTreeRecalcOpaque();
sl@0
   124
	TBool DoIt(CWsWindow * aWin);
sl@0
   125
	};
sl@0
   126
sl@0
   127
// Tree walkers which schedule a set of windows to be drawn derive from this
sl@0
   128
class TWalkWindowTreeSchedule: public TWalkWindowTreeBase
sl@0
   129
	{
sl@0
   130
public:
sl@0
   131
	TWalkWindowTreeSchedule();
sl@0
   132
	CWsWindow * HeadWindow() const;
sl@0
   133
	virtual const TRegion& WindowRegion(const CWsWindow& aWin) const = 0;
sl@0
   134
	virtual const TRegion& SpriteRegion(const CWsWindow& aWin) const = 0;
sl@0
   135
protected:
sl@0
   136
	CWsWindow* iHead;
sl@0
   137
	};
sl@0
   138
sl@0
   139
class TWalkWindowListSchedule : public TWalkWindowTreeSchedule
sl@0
   140
	{
sl@0
   141
public:
sl@0
   142
	TWalkWindowListSchedule(CWsWindow* aHeadWin, TRegion& aScreenUpdateRegion);
sl@0
   143
	TBool DoIt(CWsWindow* aWin);
sl@0
   144
	const TRegion& WindowRegion(const CWsWindow& aWin) const;
sl@0
   145
	const TRegion& SpriteRegion(const CWsWindow& aWin) const;
sl@0
   146
	void WalkWindowList();
sl@0
   147
private:
sl@0
   148
	TBool DoWindow(CWsWindow& aWin);
sl@0
   149
	TBool DoSprites(CWsWindow& aWin);
sl@0
   150
	
sl@0
   151
private:
sl@0
   152
	TRegion& iScreenUpdateRegion;
sl@0
   153
	};
sl@0
   154
sl@0
   155
// This walker uses regions to work out the minimum set of pixels that need updating
sl@0
   156
// It requires memory allocation, and so can fail.  Check ScheduledRegionsOk before
sl@0
   157
// relying on the results.
sl@0
   158
class TWalkWindowTreeScheduleRegions: public TWalkWindowTreeSchedule
sl@0
   159
	{
sl@0
   160
public:
sl@0
   161
	TWalkWindowTreeScheduleRegions(TRegion& aRegion, const TRegion& aTopElement);
sl@0
   162
	TBool DoIt(CWsWindow *aWin);
sl@0
   163
	TBool ScheduledRegionsOk() const;
sl@0
   164
	const TRegion& WindowRegion(const CWsWindow& aWin) const;
sl@0
   165
	const TRegion& SpriteRegion(const CWsWindow& aWin) const;
sl@0
   166
private:
sl@0
   167
	TRegion& iRegion;
sl@0
   168
	const TRegion &iTopElement;
sl@0
   169
	TBool iScheduledRegionsOk;
sl@0
   170
	};
sl@0
   171
	
sl@0
   172
// This walker uses the screens fallback mechanism.  This does not require memory
sl@0
   173
// allocation and so should never fail, but is significantly less efficient than the
sl@0
   174
// region based walker.
sl@0
   175
class TWalkWindowTreeScheduleFallback: public TWalkWindowTreeSchedule
sl@0
   176
	{
sl@0
   177
public:
sl@0
   178
	TWalkWindowTreeScheduleFallback(CScreen::CFallbackMap * aFallbackMap);
sl@0
   179
	TBool DoIt(CWsWindow *aWin);
sl@0
   180
	const TRegion& WindowRegion(const CWsWindow& aWin) const;
sl@0
   181
	const TRegion& SpriteRegion(const CWsWindow& aWin) const;
sl@0
   182
private:
sl@0
   183
	CScreen::CFallbackMap * iFallbackMap;
sl@0
   184
	};
sl@0
   185
	
sl@0
   186
class TWalkWindowTreeFocusChanged : public TWalkWindowTreeBase
sl@0
   187
	{
sl@0
   188
public:
sl@0
   189
	TWalkWindowTreeFocusChanged(TBool aNewFocusState);
sl@0
   190
	TBool DoIt(CWsWindow *aWin);
sl@0
   191
// Data	
sl@0
   192
private:
sl@0
   193
	TBool iNewFocusState;
sl@0
   194
	};
sl@0
   195
	
sl@0
   196
class TResumableWalkWindowTreeFindInvalid : public TResumableWalkWindowTreeBase
sl@0
   197
	{
sl@0
   198
public:
sl@0
   199
	TResumableWalkWindowTreeFindInvalid(CWsWindowRedraw** aResult);
sl@0
   200
	TBool DoIt(CWsWindow* aWin);
sl@0
   201
// Data
sl@0
   202
private:
sl@0
   203
	CWsWindowRedraw** iResult;
sl@0
   204
	};
sl@0
   205
	
sl@0
   206
class TWalkWindowTreeDisconnect : public TWalkWindowTreeBase
sl@0
   207
	{
sl@0
   208
public:
sl@0
   209
	TWalkWindowTreeDisconnect(RWsTextCursor *aCursor);
sl@0
   210
	TBool DoIt(CWsWindow *aWin);
sl@0
   211
private:
sl@0
   212
	RWsTextCursor *iTextCursor;
sl@0
   213
	};
sl@0
   214
	
sl@0
   215
class TWalkWindowTreeIsObscured : public TWalkWindowTreeBase
sl@0
   216
	{
sl@0
   217
public:
sl@0
   218
	TWalkWindowTreeIsObscured(TBool &aResult);
sl@0
   219
	TBool DoIt(CWsWindow *aWin);
sl@0
   220
// Data	
sl@0
   221
	TBool *iResult;
sl@0
   222
	};
sl@0
   223
sl@0
   224
class TWalkWindowTreeSetupVisibleRegionTracking : public TWalkWindowTreeBase
sl@0
   225
	{
sl@0
   226
public:
sl@0
   227
	TWalkWindowTreeSetupVisibleRegionTracking(TBool aRegister);
sl@0
   228
	TBool DoIt(CWsWindow *aWin);
sl@0
   229
// Data	
sl@0
   230
	TBool iRegister;
sl@0
   231
	};
sl@0
   232
sl@0
   233
class TWalkWindowTreeSetNonFading : public TWalkWindowTreeBase  
sl@0
   234
	{
sl@0
   235
public:
sl@0
   236
	TWalkWindowTreeSetNonFading(TBool aNonFading);
sl@0
   237
	TBool DoIt(CWsWindow *aWin);
sl@0
   238
// Data	
sl@0
   239
	const TBool iNonFading;
sl@0
   240
	};
sl@0
   241
	
sl@0
   242
class TWalkWindowTreeSetFaded : public TWalkWindowTreeBase 
sl@0
   243
	{
sl@0
   244
public:
sl@0
   245
	TWalkWindowTreeSetFaded(TBool aFaded,CWsWindowBase* aWin,TUint8 aBlackMap,TUint8 aWhiteMap);
sl@0
   246
//from TWalkWindowTreeBase
sl@0
   247
	TBool DoIt(CWsWindow *aWin);
sl@0
   248
// Data	
sl@0
   249
	const TUint8 iBlackMap;
sl@0
   250
	const TUint8 iWhiteMap;
sl@0
   251
	const TBool iFaded;
sl@0
   252
	const CWsWindowGroup* iGroup;
sl@0
   253
	};
sl@0
   254
	
sl@0
   255
class TWalkWindowTreeSetSystemFaded : public TWalkWindowTreeSetFaded 
sl@0
   256
	{
sl@0
   257
public:
sl@0
   258
	TWalkWindowTreeSetSystemFaded(TBool aFaded, CWsWindowBase* aWin, TUint8 aBlackMap, TUint8 aWhiteMap, TBool& aStateChanged);
sl@0
   259
//from TWalkWindowTreeBase
sl@0
   260
	TBool DoIt(CWsWindow *aWin);
sl@0
   261
// Data	
sl@0
   262
	TBool& iStateChanged;
sl@0
   263
	};
sl@0
   264
sl@0
   265
class TWalkWindowTreePurgeEvents : public TWalkWindowTreeBase
sl@0
   266
	{
sl@0
   267
public:
sl@0
   268
	TWalkWindowTreePurgeEvents();
sl@0
   269
	TBool DoIt(CWsWindow *aWin);
sl@0
   270
	};
sl@0
   271
sl@0
   272
class TWalkWindowTreeCalcInvalidGraphics: public TWalkWindowTreeRegionBase
sl@0
   273
	{
sl@0
   274
public:
sl@0
   275
	TWalkWindowTreeCalcInvalidGraphics(RWsRegion *aRegion,TRegion &aDirty,const TArray<TGraphicDrawerId>& aInvalid);
sl@0
   276
	void CalcInvalid(CScreen& aScreen);
sl@0
   277
	TBool CreateSubRegion();
sl@0
   278
	void DoIt2(CWsWindow */*aWin*/) {}
sl@0
   279
	TBool DoIt3(CWsWindow *aWin);
sl@0
   280
	void DestroyRegions();
sl@0
   281
private:
sl@0
   282
	TRegion& iDirty;
sl@0
   283
	const TArray<TGraphicDrawerId>& iInvalid;
sl@0
   284
	};
sl@0
   285
sl@0
   286
#if defined(_DEBUG)
sl@0
   287
class TWalkWindowTreeCheck : public TWalkWindowTreeBase
sl@0
   288
	{
sl@0
   289
public:
sl@0
   290
	TBool DoIt(CWsWindow *aWin);
sl@0
   291
	};	
sl@0
   292
	
sl@0
   293
#endif
sl@0
   294
sl@0
   295
class TWalkWindowTreeRedrawStoreSize : public TWalkWindowTreeBase
sl@0
   296
	{
sl@0
   297
public:
sl@0
   298
	TWalkWindowTreeRedrawStoreSize();
sl@0
   299
	TBool DoIt(CWsWindow *aWin);
sl@0
   300
	TInt iTotalSize;
sl@0
   301
	};
sl@0
   302
sl@0
   303
sl@0
   304
// We can't do a proper find_if unless we are prepared to write our own
sl@0
   305
// mem_fun, but this isn't a bad start
sl@0
   306
class TWalkWindowTreeFindWithFlag : public TWalkWindowTreeBase
sl@0
   307
	{
sl@0
   308
public:
sl@0
   309
	TWalkWindowTreeFindWithFlag(TUint aFlag) : iFlag(aFlag), iFound(0) { }
sl@0
   310
	TBool DoIt(CWsWindow *aWin);
sl@0
   311
	CWsWindow * Found() { return iFound; }
sl@0
   312
private:
sl@0
   313
	TUint iFlag;
sl@0
   314
	CWsWindow * iFound;
sl@0
   315
	};
sl@0
   316
sl@0
   317
class TWalkWindowTreeFindByHandle : public TWalkWindowTreeBase
sl@0
   318
	{
sl@0
   319
public:
sl@0
   320
	TWalkWindowTreeFindByHandle(TUint32 aHandle) : iHandle(aHandle) { }
sl@0
   321
	TBool DoIt(CWsWindow * aWin);
sl@0
   322
	CWsWindow * Found() { return iFound; }
sl@0
   323
private:
sl@0
   324
	TUint32 iHandle;
sl@0
   325
	CWsWindow * iFound;
sl@0
   326
	};
sl@0
   327
sl@0
   328
class TWalkWindowTreeSendState : public TWalkWindowTreeBase
sl@0
   329
	{
sl@0
   330
public:
sl@0
   331
	TWalkWindowTreeSendState(MWsWindowTreeObserver& aWindowTreeObserver);
sl@0
   332
	TBool DoIt(CWsWindow *aWin);
sl@0
   333
private:
sl@0
   334
	MWsWindowTreeObserver& iWindowTreeObserver;
sl@0
   335
	};
sl@0
   336
sl@0
   337
#endif