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 |
// CWsWindow and associated classes definitions
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __WINDOW_H__
|
sl@0
|
19 |
#define __WINDOW_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "server.h"
|
sl@0
|
22 |
#include "winbase.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
class CWsWindow : public CWsWindowBase, public MWsWindow
|
sl@0
|
25 |
{
|
sl@0
|
26 |
friend class TWalkWindowTreeDisconnect;
|
sl@0
|
27 |
friend class CWsRootWindow;
|
sl@0
|
28 |
friend class TWalkWindowTreeFindWithFlag;
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
CWsWindow(CWsClient* aOwner,WH_HANDLES aType, CScreen* aScreen);
|
sl@0
|
31 |
~CWsWindow();
|
sl@0
|
32 |
void Construct();
|
sl@0
|
33 |
inline const TRect& Rel() const;
|
sl@0
|
34 |
inline const TRect& Abs() const;
|
sl@0
|
35 |
inline CWsWindow *PrevSiblingMultiParent() const;
|
sl@0
|
36 |
inline CWsWindow *NextSiblingMultiParent() const;
|
sl@0
|
37 |
inline TUint PointerFilter() const;
|
sl@0
|
38 |
inline TBool HasPointerGrab() const;
|
sl@0
|
39 |
inline TBool ShutDownInProgress() const;
|
sl@0
|
40 |
inline TRgb BackColor() const;
|
sl@0
|
41 |
virtual const TRegion& WindowArea() const = 0;
|
sl@0
|
42 |
const TRegion* VisibleRegionIfValid() const;
|
sl@0
|
43 |
const TRegion& VisibleRegion() const;
|
sl@0
|
44 |
void ClearVisibleRegion();
|
sl@0
|
45 |
void SetVisibleRegion(const TRegion& aRegion, const TRegion* aTop, TRegion& aNewFadableRegion);
|
sl@0
|
46 |
virtual void GenerateWindowRegion(RWsRegion &aRegion) const=0;
|
sl@0
|
47 |
TRect FullRect() const;
|
sl@0
|
48 |
inline TBool ClientSetInvisible() const;
|
sl@0
|
49 |
inline TBool IsVisible() const;
|
sl@0
|
50 |
inline TBool DragDropCapture() const;
|
sl@0
|
51 |
inline CWsBackedUpWindow *Backup() const;
|
sl@0
|
52 |
TDisplayMode DisplayMode() const;
|
sl@0
|
53 |
inline TInt UsingPointerBuffer() const;
|
sl@0
|
54 |
virtual TDblQue<TPointerKeyList> *PointerKeyList() const;
|
sl@0
|
55 |
inline CWsWindowRedraw *Redraw() const;
|
sl@0
|
56 |
inline TBool IsTopClientWindow() const;
|
sl@0
|
57 |
inline TBool IsActive() const;
|
sl@0
|
58 |
inline void AddDSA(CWsDirectScreenAccess& aDirect);
|
sl@0
|
59 |
inline void RemoveDSA(CWsDirectScreenAccess& aDirect);
|
sl@0
|
60 |
void AbortAllDSAs();
|
sl@0
|
61 |
#if defined(_DEBUG)
|
sl@0
|
62 |
inline const TSglQue<CWsDirectScreenAccess>& DSAs() const;
|
sl@0
|
63 |
#endif
|
sl@0
|
64 |
void PossibleVisibilityChangedEvent(TBool aForceSend);
|
sl@0
|
65 |
void SetNonFading(TBool aNonFading);
|
sl@0
|
66 |
void SetFadeBehind(TBool aFade);
|
sl@0
|
67 |
inline void GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const;
|
sl@0
|
68 |
inline TBool IsTranslucent() const;
|
sl@0
|
69 |
inline TBool HasAlpha() const;
|
sl@0
|
70 |
inline TBool HasBeenDrawnToScreen() const;
|
sl@0
|
71 |
inline void SetDrawnToScreen(TBool aDrawn);
|
sl@0
|
72 |
void FocusChanged(TBool aNewFocusState);
|
sl@0
|
73 |
void ClipRectToViewport(TRect& aRect) const;
|
sl@0
|
74 |
void SetNextScheduled(CWsWindow * aWin);
|
sl@0
|
75 |
CWsWindow * NextScheduled() const;
|
sl@0
|
76 |
inline const RWsRegion * ScheduledRegion() const;
|
sl@0
|
77 |
TBool SetScheduledRegion(const RWsRegion& aRegion);
|
sl@0
|
78 |
void ClearScheduledRegion();
|
sl@0
|
79 |
static TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
|
sl@0
|
80 |
TBool ReadyToDraw() const;
|
sl@0
|
81 |
virtual void Render(CFbsBitGc * aGc, const TRegion& aRegion);
|
sl@0
|
82 |
void AddSprite(CWsSpriteBase * aSprite);
|
sl@0
|
83 |
void RemoveSprite(CWsSpriteBase * aSprite);
|
sl@0
|
84 |
void Accessed();
|
sl@0
|
85 |
|
sl@0
|
86 |
inline TBool IsNonFading() const;
|
sl@0
|
87 |
const TRegion& FadableRegion() const;
|
sl@0
|
88 |
inline TBool HasSprite() const;
|
sl@0
|
89 |
inline TBool HasAnimation() const;
|
sl@0
|
90 |
|
sl@0
|
91 |
public: // from CWsWindowBase
|
sl@0
|
92 |
TBool IsDSAHost() const;
|
sl@0
|
93 |
|
sl@0
|
94 |
public: // from MWsWindow
|
sl@0
|
95 |
virtual TPoint Origin() const;
|
sl@0
|
96 |
virtual TRect AbsRect() const;
|
sl@0
|
97 |
virtual TSize Size() const;
|
sl@0
|
98 |
virtual TUint32 Handle() const;
|
sl@0
|
99 |
virtual MWsScreen * WsScreen() const;
|
sl@0
|
100 |
virtual void Invalidate(const TRect *) {}
|
sl@0
|
101 |
virtual MWsWindow * FindChildByHandle(TUint32 aHandle);
|
sl@0
|
102 |
virtual TInt OrdinalPriority() const;
|
sl@0
|
103 |
|
sl@0
|
104 |
protected:
|
sl@0
|
105 |
// Shadow generation
|
sl@0
|
106 |
TPoint InquireOffset(TUint32 aHandle) const;
|
sl@0
|
107 |
//
|
sl@0
|
108 |
void Shutdown(); // Part of two phase destruction
|
sl@0
|
109 |
void FocusChangedL(TBool aNewFocusState);
|
sl@0
|
110 |
void RemoveFromAccessList();
|
sl@0
|
111 |
void InsertIntoAccessListOldestEnd();
|
sl@0
|
112 |
void InsertIntoAccessListRecentEnd();
|
sl@0
|
113 |
void DeactivateAllSprites();
|
sl@0
|
114 |
private:
|
sl@0
|
115 |
void StatusDump(TDes &aBuf);
|
sl@0
|
116 |
void ResetVisibleRegion();
|
sl@0
|
117 |
void AbortDsaIfRequired(const TRegion& aNewRegion, const TRegion* aTop);
|
sl@0
|
118 |
#if defined (_DEBUG)
|
sl@0
|
119 |
public:
|
sl@0
|
120 |
TBool iInteresting; // Often useful while debugging for conditional breakpoints.
|
sl@0
|
121 |
#endif
|
sl@0
|
122 |
protected:
|
sl@0
|
123 |
TRect iRel;
|
sl@0
|
124 |
TRect iAbs;
|
sl@0
|
125 |
TPoint iOrigin;
|
sl@0
|
126 |
RWsRegion iVisibleRegion;
|
sl@0
|
127 |
TUint iPointerFilter;
|
sl@0
|
128 |
TInt iPointerCapturePriority;
|
sl@0
|
129 |
TUint iFlags;
|
sl@0
|
130 |
CWsWindowRedraw *iRedraw;
|
sl@0
|
131 |
TSglQue<CWsDirectScreenAccess> iDSAs;
|
sl@0
|
132 |
CWsWindow * iNextScheduled;
|
sl@0
|
133 |
RWsRegion iScheduledRegion;
|
sl@0
|
134 |
// The access list is a "most recently drawn" ordering list of all redraw msg windows.
|
sl@0
|
135 |
static CWsWindow * iAccessListRecentEnd;
|
sl@0
|
136 |
static CWsWindow * iAccessListOldestEnd;
|
sl@0
|
137 |
CWsWindow * iAccessListPrev;
|
sl@0
|
138 |
CWsWindow * iAccessListNext;
|
sl@0
|
139 |
TUint8 iBlackMap;
|
sl@0
|
140 |
TUint8 iWhiteMap;
|
sl@0
|
141 |
RWsRegion iFadableRegion; // Region which can be faded (Visible region minus already faded regions)
|
sl@0
|
142 |
public:
|
sl@0
|
143 |
/** The list of graphic contexts associated with this window. The list is managed by calling the
|
sl@0
|
144 |
GcActivated() and GcDeactivated() functions.
|
sl@0
|
145 |
This is a linked list. The CWsGc class contains a pointer to the next item: CWsGc::iNextWinGc.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
CWsGc *iWinGcList;
|
sl@0
|
148 |
CWsAnim *iAnimList; // Start of linked list of animated objects attached to the window
|
sl@0
|
149 |
CWsSpriteBase *iSpriteList; // Start of linked list of sprites attached to the window
|
sl@0
|
150 |
};
|
sl@0
|
151 |
|
sl@0
|
152 |
#include "wnredraw.h"
|
sl@0
|
153 |
|
sl@0
|
154 |
inline TBool CWsWindow::IsVisible() const
|
sl@0
|
155 |
{
|
sl@0
|
156 |
return(!(iFlags&EFlagHidden));
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
inline TBool CWsWindow::ClientSetInvisible() const
|
sl@0
|
160 |
{
|
sl@0
|
161 |
return(iFlags&EFlagInvisible);
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
inline TBool CWsWindow::DragDropCapture() const
|
sl@0
|
165 |
{
|
sl@0
|
166 |
return(iFlags&EFlagPointerCaptureDragDrop);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
inline TRgb CWsWindow::BackColor() const
|
sl@0
|
170 |
{
|
sl@0
|
171 |
return(iRedraw->BackColor());
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
inline TInt CWsWindow::UsingPointerBuffer() const
|
sl@0
|
175 |
{
|
sl@0
|
176 |
return(iFlags&EFlagUsingPointerBuffer);
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
inline CWsWindowRedraw *CWsWindow::Redraw() const
|
sl@0
|
180 |
{
|
sl@0
|
181 |
return iRedraw;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
inline const TRect& CWsWindow::Rel() const
|
sl@0
|
185 |
{
|
sl@0
|
186 |
return iRel;
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
inline const TRect& CWsWindow::Abs() const
|
sl@0
|
190 |
{
|
sl@0
|
191 |
return iAbs;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
inline TBool CWsWindow::IsTopClientWindow() const
|
sl@0
|
195 |
{
|
sl@0
|
196 |
return (WinType() == EWinTypeClient && iParent->WinType() == EWinTypeGroup);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
inline TUint CWsWindow::PointerFilter() const
|
sl@0
|
200 |
{
|
sl@0
|
201 |
return(iPointerFilter);
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
inline TBool CWsWindow::HasPointerGrab() const
|
sl@0
|
205 |
{
|
sl@0
|
206 |
return(iFlags&EFlagPointerGrab);
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
inline TBool CWsWindow::ShutDownInProgress() const
|
sl@0
|
210 |
{
|
sl@0
|
211 |
return(iFlags&EFlagShutDownInProgress);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
inline CWsBackedUpWindow *CWsWindow::Backup() const
|
sl@0
|
215 |
{
|
sl@0
|
216 |
return(iRedraw->Backup());
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
inline TBool CWsWindow::IsActive() const
|
sl@0
|
220 |
{
|
sl@0
|
221 |
return iFlags&EFlagActive;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
inline void CWsWindow::AddDSA(CWsDirectScreenAccess& aDirect)
|
sl@0
|
225 |
{
|
sl@0
|
226 |
iDSAs.AddLast(aDirect);
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
inline void CWsWindow::RemoveDSA(CWsDirectScreenAccess& aDirect)
|
sl@0
|
230 |
{
|
sl@0
|
231 |
iDSAs.Remove(aDirect);
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
inline TBool CWsWindow::IsTranslucent() const
|
sl@0
|
235 |
{
|
sl@0
|
236 |
return (iFlags & static_cast<TUint>(EFlagHasAlpha)) != 0;
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
inline TBool CWsWindow::HasAlpha() const
|
sl@0
|
240 |
{
|
sl@0
|
241 |
return (iFlags & static_cast<TUint>(EFlagHasAlpha)) !=0;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
inline TBool CWsWindow::HasBeenDrawnToScreen() const
|
sl@0
|
245 |
{
|
sl@0
|
246 |
return (iFlags & static_cast<TUint>(EFlagDrawnToScreen)) != 0;
|
sl@0
|
247 |
}
|
sl@0
|
248 |
|
sl@0
|
249 |
inline void CWsWindow::SetDrawnToScreen(TBool aDrawn)
|
sl@0
|
250 |
{
|
sl@0
|
251 |
if (aDrawn)
|
sl@0
|
252 |
iFlags |= static_cast<TUint>(EFlagDrawnToScreen);
|
sl@0
|
253 |
else
|
sl@0
|
254 |
iFlags &= ~static_cast<TUint>(EFlagDrawnToScreen);
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
inline const RWsRegion * CWsWindow::ScheduledRegion() const
|
sl@0
|
258 |
{
|
sl@0
|
259 |
return &iScheduledRegion;
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|
sl@0
|
262 |
#if defined(_DEBUG)
|
sl@0
|
263 |
inline const TSglQue<CWsDirectScreenAccess>& CWsWindow::DSAs() const
|
sl@0
|
264 |
{
|
sl@0
|
265 |
return iDSAs;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
#endif
|
sl@0
|
268 |
|
sl@0
|
269 |
inline TBool CWsWindow::IsNonFading() const
|
sl@0
|
270 |
{
|
sl@0
|
271 |
return (iFlags&EFlagNonFadingWindow);
|
sl@0
|
272 |
}
|
sl@0
|
273 |
|
sl@0
|
274 |
inline void CWsWindow::GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const
|
sl@0
|
275 |
{aBlackMap=iBlackMap;aWhiteMap=iWhiteMap;}
|
sl@0
|
276 |
|
sl@0
|
277 |
inline TBool CWsWindow::HasSprite() const
|
sl@0
|
278 |
{
|
sl@0
|
279 |
return (NULL != iSpriteList);
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
inline TBool CWsWindow::HasAnimation() const
|
sl@0
|
283 |
{
|
sl@0
|
284 |
return (NULL != iAnimList);
|
sl@0
|
285 |
}
|
sl@0
|
286 |
#endif
|