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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#if !defined(__WINDOWELEMENTSET_H__)
|
sl@0
|
17 |
#define __WINDOWELEMENTSET_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@internalComponent
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <graphics/wselement.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
class CBase;
|
sl@0
|
27 |
class CWsClientWindow;
|
sl@0
|
28 |
class TSurfaceConfiguration;
|
sl@0
|
29 |
class MWsScene;
|
sl@0
|
30 |
|
sl@0
|
31 |
class TAttributes
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
TAttributes(){iFlags = 0;}
|
sl@0
|
35 |
enum
|
sl@0
|
36 |
{
|
sl@0
|
37 |
EConcealed = 0x00000001,
|
sl@0
|
38 |
EDrawnOver = 0x00000002,
|
sl@0
|
39 |
EDrawnOverLast = 0x01000000,
|
sl@0
|
40 |
};
|
sl@0
|
41 |
//flag accessors
|
sl@0
|
42 |
inline TBool Concealed() const {return iFlags&EConcealed;}
|
sl@0
|
43 |
inline void SetConcealed(TBool aSetting = ETrue) {aSetting?iFlags|=EConcealed:iFlags&=~EConcealed;}
|
sl@0
|
44 |
inline TBool DrawnOver() const {return iFlags&EDrawnOver;}
|
sl@0
|
45 |
inline void SetDrawnOver(TBool aSetting = ETrue) {aSetting?iFlags|=EDrawnOver:iFlags&=~EDrawnOver;}
|
sl@0
|
46 |
inline TBool DrawnOverLast() const {return iFlags&EDrawnOverLast;}
|
sl@0
|
47 |
inline void SetDrawnOverLast(TBool aSetting = ETrue)
|
sl@0
|
48 |
{ iFlags= aSetting? iFlags|EDrawnOverLast:iFlags&~EDrawnOverLast; }
|
sl@0
|
49 |
inline TInt Flags()const
|
sl@0
|
50 |
{ return iFlags; }
|
sl@0
|
51 |
TBool Destroy(MWsScene& aScene, TBool aUnregister);
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
TInt DebugFlags()const { return iFlags; }
|
sl@0
|
54 |
protected:
|
sl@0
|
55 |
TUint iFlags;
|
sl@0
|
56 |
public:
|
sl@0
|
57 |
MWsElement* iElement;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
class TBackgroundAttributes : public TAttributes
|
sl@0
|
61 |
{
|
sl@0
|
62 |
public:
|
sl@0
|
63 |
enum
|
sl@0
|
64 |
{
|
sl@0
|
65 |
EExplicitExtent = 0x00010000,
|
sl@0
|
66 |
//EAbsoluteExtent = 0x00020000, //This would be used to represent wallpaper or DSA per window
|
sl@0
|
67 |
EExplicitViewPort = 0x00040000,
|
sl@0
|
68 |
};
|
sl@0
|
69 |
//flag accessors
|
sl@0
|
70 |
inline TBool ExplicitExtent() const {return iFlags&EExplicitExtent;}
|
sl@0
|
71 |
inline void SetExplicitExtent(TBool aSetting = ETrue)
|
sl@0
|
72 |
{ iFlags= aSetting? iFlags|EExplicitExtent:iFlags&~EExplicitExtent;}
|
sl@0
|
73 |
//Absolute extent functionality is currently not required or used
|
sl@0
|
74 |
// inline TBool AbsoluteExtent() const {return iFlags&EAbsoluteExtent;}
|
sl@0
|
75 |
// inline void SetAbsoluteExtent(TBool aSetting = ETrue)
|
sl@0
|
76 |
// { iFlags= aSetting? iFlags|EAbsoluteExtent:iFlags&~EAbsoluteExtent;}
|
sl@0
|
77 |
inline TBool ExplicitViewPort() const {return iFlags&EExplicitViewPort;}
|
sl@0
|
78 |
inline void SetExplicitViewPort(TBool aSetting = ETrue)
|
sl@0
|
79 |
{ iFlags = aSetting ? iFlags|EExplicitViewPort : iFlags&~EExplicitExtent;}
|
sl@0
|
80 |
};
|
sl@0
|
81 |
|
sl@0
|
82 |
class TPlacedAttributes : public TAttributes
|
sl@0
|
83 |
{
|
sl@0
|
84 |
public:
|
sl@0
|
85 |
enum
|
sl@0
|
86 |
{
|
sl@0
|
87 |
EUnassigned = 0x00010000,
|
sl@0
|
88 |
ELockedConfig = 0x00020000,
|
sl@0
|
89 |
EChangedClip = 0x00040000,
|
sl@0
|
90 |
EOverlapping = 0x00080000,
|
sl@0
|
91 |
};
|
sl@0
|
92 |
//flag accessors
|
sl@0
|
93 |
inline TBool Unassigned() const {return iFlags&EUnassigned ;}
|
sl@0
|
94 |
inline void SetUnassigned(TBool aSetting = ETrue)
|
sl@0
|
95 |
{ iFlags= aSetting? iFlags|EUnassigned :iFlags&~EUnassigned; }
|
sl@0
|
96 |
inline TBool LockedConfig() const {return iFlags&ELockedConfig ;}
|
sl@0
|
97 |
inline void SetLockedConfig(TBool aSetting = ETrue)
|
sl@0
|
98 |
{aSetting?iFlags|=ELockedConfig:iFlags&=~ELockedConfig;}
|
sl@0
|
99 |
inline TBool ChangedClip() const {return iFlags&EChangedClip;}
|
sl@0
|
100 |
inline void SetChangedClip(TBool aSetting = ETrue)
|
sl@0
|
101 |
{aSetting?iFlags|=EChangedClip:iFlags&=~EChangedClip;}
|
sl@0
|
102 |
inline TBool Overlapping() const {return iFlags&EOverlapping;}
|
sl@0
|
103 |
inline void SetOverlapping(TBool aSetting = ETrue)
|
sl@0
|
104 |
{ iFlags= aSetting? iFlags|EOverlapping:iFlags&~EOverlapping; }
|
sl@0
|
105 |
inline void ClearRedrawFlags()
|
sl@0
|
106 |
{ iFlags &= (~(EUnassigned|ELockedConfig|EChangedClip|EOverlapping)); }
|
sl@0
|
107 |
};
|
sl@0
|
108 |
|
sl@0
|
109 |
class CWindowElement : public CBase
|
sl@0
|
110 |
{
|
sl@0
|
111 |
friend class CWindowElementSet;
|
sl@0
|
112 |
public:
|
sl@0
|
113 |
enum
|
sl@0
|
114 |
{
|
sl@0
|
115 |
EFastPath = 0x00000001,
|
sl@0
|
116 |
EPauseComposition = 0x00000002, //assign flags this if pause is needed immediately
|
sl@0
|
117 |
EResort = 0x00000004,
|
sl@0
|
118 |
EFailed = 0x00010000, //cleanup failure needs to be reported separately
|
sl@0
|
119 |
};
|
sl@0
|
120 |
|
sl@0
|
121 |
CWindowElement(const CWsClientWindow& aWindow);
|
sl@0
|
122 |
|
sl@0
|
123 |
TInt UnassignPlacedElements(const TRegion& aRegion,TInt aGcDrawingCount);
|
sl@0
|
124 |
void FlagAssignedElementsDrawnOver(TInt aGcDrawingCount);
|
sl@0
|
125 |
static TBool IsElementAMatch(MWsElement&,const TSurfaceConfiguration&,TInt);
|
sl@0
|
126 |
static TInt SetElement(MWsElement&,const TSurfaceConfiguration&,TBool);
|
sl@0
|
127 |
TBool InsertCache(TInt aIndexToInsert);
|
sl@0
|
128 |
static void NotifyReleasingSurface(TSurfaceId aSurfaceId);
|
sl@0
|
129 |
TInt AssignPlacedElement(TPlacedAttributes*& aPlacedAttributes,
|
sl@0
|
130 |
const TSurfaceConfiguration& aSurfaceConfiguration,
|
sl@0
|
131 |
const TRegion& aUserDefinedRegion, MWsScene& aScene,TInt aGcDrawingCount);
|
sl@0
|
132 |
|
sl@0
|
133 |
TInt CleanUpPlacedElements(MWsScene& aScene,TInt aGcDrawingCount);
|
sl@0
|
134 |
void MoveToAboveGivenElement(MWsScene& aScene, MWsElement* aAboveElement);
|
sl@0
|
135 |
void UpdateElementExtent(const TPoint* aOffset);
|
sl@0
|
136 |
TBool SetVisibleRegion(const TRegion& aRegion, MWsScene& aScene);
|
sl@0
|
137 |
TInt ReleaseAllElements();
|
sl@0
|
138 |
TBool SearchDuplicateSurfaceId(const TSurfaceId& aSurfaceId);
|
sl@0
|
139 |
void SetElementOpacity(TInt aOpacity, MWsScene& aScene);
|
sl@0
|
140 |
void ResubmitAllElementExtents();
|
sl@0
|
141 |
MWsElement* Element() const;
|
sl@0
|
142 |
|
sl@0
|
143 |
protected:
|
sl@0
|
144 |
TInt AssignRecycleElement(const TInt aIndex,
|
sl@0
|
145 |
const TSurfaceConfiguration& aSurfaceConfiguration,
|
sl@0
|
146 |
const TRegion& aUserDefinedRegion,
|
sl@0
|
147 |
MWsScene& aScene);
|
sl@0
|
148 |
TInt AssignCreateElement(const TSurfaceConfiguration& aSurfaceConfiguration,
|
sl@0
|
149 |
const TRegion& aUserDefinedRegion,
|
sl@0
|
150 |
MWsScene& aScene);
|
sl@0
|
151 |
TInt AssignExtendElement(const TInt aIndex,
|
sl@0
|
152 |
const TSurfaceConfiguration& aSurfaceConfiguration,
|
sl@0
|
153 |
const TRegion& aUserDefinedRegion,
|
sl@0
|
154 |
MWsScene& aScene);
|
sl@0
|
155 |
|
sl@0
|
156 |
public:
|
sl@0
|
157 |
const CWsClientWindow& iWindow;
|
sl@0
|
158 |
private:
|
sl@0
|
159 |
TBackgroundAttributes iBackgroundElement;
|
sl@0
|
160 |
RArray<TPlacedAttributes> iPlacedElements;
|
sl@0
|
161 |
private: //The following are all exclusively used during window rendering
|
sl@0
|
162 |
RArray<RRegion> iCache;
|
sl@0
|
163 |
//memory of surfaces that need to be removed
|
sl@0
|
164 |
RArray<TSurfaceId> iRemovedSurfaces;
|
sl@0
|
165 |
TBool iRemovedSurfacesValid;
|
sl@0
|
166 |
|
sl@0
|
167 |
RRegion iNonRedrawVisibleRegion;
|
sl@0
|
168 |
TInt iHighestReusedIndex;
|
sl@0
|
169 |
TInt iStartGcDrawingCount;
|
sl@0
|
170 |
TUint iFlags;
|
sl@0
|
171 |
};
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
Owns the set of elements and their associated identification information. Only
|
sl@0
|
175 |
references are provided for clients.
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
class CWindowElementSet : public CBase
|
sl@0
|
178 |
{
|
sl@0
|
179 |
public:
|
sl@0
|
180 |
static CWindowElementSet* NewL(MWsScene& aScene);
|
sl@0
|
181 |
~CWindowElementSet();
|
sl@0
|
182 |
TBackgroundAttributes& AcquireBackgroundElementL(CWsClientWindow& aWindow);
|
sl@0
|
183 |
TInt ReleaseBackgroundElement(const CWsClientWindow&, TBool aWindowClosing = EFalse);
|
sl@0
|
184 |
TInt ReleaseAllElements(const CWsClientWindow&, TBool aWindowClosing = EFalse);
|
sl@0
|
185 |
TInt UnassignPlacedElements(const TRegion& aRedrawRegion, const CWsClientWindow& aWindow,TInt aGcDrawingCount);
|
sl@0
|
186 |
TInt AssignPlacedElement(TPlacedAttributes*&, const TSurfaceConfiguration&, const TRegion& aUserDefinedRegion,
|
sl@0
|
187 |
const CWsClientWindow&,TInt aGcDrawingCount);
|
sl@0
|
188 |
TInt CleanUpPlacedElements(const CWsClientWindow& aWindow,TInt aGcDrawingCount);
|
sl@0
|
189 |
TInt Count() const;
|
sl@0
|
190 |
TBackgroundAttributes* FindBackgroundElement(const CWsClientWindow&);
|
sl@0
|
191 |
TBool FindElements(const CWsClientWindow&,const TBackgroundAttributes*&,const RArray<TPlacedAttributes>*&);
|
sl@0
|
192 |
TInt RegisterSurface(const TSurfaceId& aSurface);
|
sl@0
|
193 |
void UnregisterSurface(const TSurfaceId& aSurface);
|
sl@0
|
194 |
TBool SortByZOrder();
|
sl@0
|
195 |
TInt SetVisibleRegion(CWsClientWindow& aWindow); //cant be a const win as VisibleRegion() isnt const??
|
sl@0
|
196 |
void UpdateElementExtent(const CWsClientWindow&, const TPoint* aOffset);
|
sl@0
|
197 |
static TInt GetConfiguration(TSurfaceConfiguration&,MWsElement&);
|
sl@0
|
198 |
TBool SearchDuplicateSurfaceId(const TSurfaceId& aSurfaceId);
|
sl@0
|
199 |
void SetElementOpacity(CWsClientWindow& aWindow, TInt aOpacity);
|
sl@0
|
200 |
void ResubmitAllElementExtents();
|
sl@0
|
201 |
MWsElement* GetElementFromWindow(const CWsClientWindow& aWindow) const;
|
sl@0
|
202 |
|
sl@0
|
203 |
public:
|
sl@0
|
204 |
const CWsClientWindow* DebugWindowAt(TUint aWin)const;
|
sl@0
|
205 |
const TBackgroundAttributes* DebugBackgroundAt(TUint aWin)const;
|
sl@0
|
206 |
const TPlacedAttributes* DebugPlacedAt(TUint aWin,TUint aPlace)const;
|
sl@0
|
207 |
//Note: The following methods are currently unused
|
sl@0
|
208 |
// const TPlacedAttributes* DebugPlacedAt(const CWsClientWindow& aWindow,TInt aPlace)const;
|
sl@0
|
209 |
// const RRegion* DebugCacheAt(TInt aWin,TInt aPlace)const;
|
sl@0
|
210 |
TInt DebugPlacedCountAt(TUint aWin)const;
|
sl@0
|
211 |
|
sl@0
|
212 |
protected:
|
sl@0
|
213 |
CWindowElement* FindElement(const CWsClientWindow& aWindow) const;
|
sl@0
|
214 |
|
sl@0
|
215 |
private:
|
sl@0
|
216 |
CWindowElementSet(MWsScene& aScene);
|
sl@0
|
217 |
TInt FindEntry(const CWsClientWindow& aWindow, TInt& aIndex, TBool aLinearSearch = EFalse) const;
|
sl@0
|
218 |
static TBool WindowMatch(const CWindowElement& aFirst, const CWindowElement& aSecond);
|
sl@0
|
219 |
static TInt WindowOrder(const CWindowElement& aFirst, const CWindowElement& aSecond);
|
sl@0
|
220 |
void DestroyWindowElementEntry(const TInt aWinElementIndex);
|
sl@0
|
221 |
|
sl@0
|
222 |
private:
|
sl@0
|
223 |
RPointerArray<CWindowElement> iElements;
|
sl@0
|
224 |
MWsScene& iScene;
|
sl@0
|
225 |
};
|
sl@0
|
226 |
|
sl@0
|
227 |
/** Gc to element rotation function
|
sl@0
|
228 |
*/
|
sl@0
|
229 |
inline MWsElement::TElementRotation GcToElementRotation(CFbsBitGc::TGraphicsOrientation aGcRotation)
|
sl@0
|
230 |
{
|
sl@0
|
231 |
MWsElement::TElementRotation elementRotation = MWsElement::EElementAntiClockwise0;
|
sl@0
|
232 |
|
sl@0
|
233 |
switch (aGcRotation)
|
sl@0
|
234 |
{
|
sl@0
|
235 |
case CFbsBitGc::EGraphicsOrientationRotated90:
|
sl@0
|
236 |
elementRotation = MWsElement::EElementAntiClockwise90;
|
sl@0
|
237 |
break;
|
sl@0
|
238 |
case CFbsBitGc::EGraphicsOrientationRotated180:
|
sl@0
|
239 |
elementRotation = MWsElement::EElementAntiClockwise180;
|
sl@0
|
240 |
break;
|
sl@0
|
241 |
case CFbsBitGc::EGraphicsOrientationRotated270:
|
sl@0
|
242 |
elementRotation = MWsElement::EElementAntiClockwise270;
|
sl@0
|
243 |
break;
|
sl@0
|
244 |
default:
|
sl@0
|
245 |
break;
|
sl@0
|
246 |
}
|
sl@0
|
247 |
return elementRotation;
|
sl@0
|
248 |
}
|
sl@0
|
249 |
|
sl@0
|
250 |
#endif // !defined(__WINDOWELEMENTSET_H__)
|