sl@0
|
1 |
// Copyright (c) 1995-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 |
// Interface code for animated DLL's
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include "server.h"
|
sl@0
|
20 |
#include "gc.h"
|
sl@0
|
21 |
#include "rootwin.h"
|
sl@0
|
22 |
#include "windowgroup.h"
|
sl@0
|
23 |
#include "ANIM.H"
|
sl@0
|
24 |
#include "wstop.h"
|
sl@0
|
25 |
#include "EVENT.H"
|
sl@0
|
26 |
#include "ScrDev.H"
|
sl@0
|
27 |
#include "panics.h"
|
sl@0
|
28 |
#include "wsfont.h"
|
sl@0
|
29 |
#include "pointer.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
GLREF_D CDebugLogBase *wsDebugLog;
|
sl@0
|
32 |
|
sl@0
|
33 |
static const TInt64 KFlashOnTime(700000);
|
sl@0
|
34 |
static const TInt64 KFlashOffTime(300000);
|
sl@0
|
35 |
static const TInt64 KOneSecond(1000000);
|
sl@0
|
36 |
static const TInt64 KOneMinute(60 * KOneSecond);
|
sl@0
|
37 |
static const TInt64 KOneDay(24 * 60 * 60 * KOneSecond);
|
sl@0
|
38 |
static const TInt64 KOneHalfSecond(500000);
|
sl@0
|
39 |
|
sl@0
|
40 |
enum {EWindowUpdate=0x0001};
|
sl@0
|
41 |
|
sl@0
|
42 |
// Anim DLL code //
|
sl@0
|
43 |
CWsAnim::CWsAnim(CWsAnimDll *aDll) : iClient(aDll->WsOwner()), iAnimAddedInHandler(EFalse), iLastFrame(-1)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
__DECLARE_NAME(_S("CWsAnim"));
|
sl@0
|
46 |
iBitFlags.Set(EFlashOn);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
void CWsAnim::WindowClosing(CWsAnim *aWsAnim)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
CWsAnim *anim=aWsAnim;
|
sl@0
|
52 |
CWsAnim *next;
|
sl@0
|
53 |
|
sl@0
|
54 |
while(anim)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
next=anim->iNextWin;
|
sl@0
|
57 |
CloseAnim(anim);
|
sl@0
|
58 |
anim=next;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
void CWsAnim::CloseAnim(CWsAnim *aWsAnim)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
if(aWsAnim)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
TInt handle=aWsAnim->iAnimDll->AnimObjectHandle(aWsAnim);
|
sl@0
|
67 |
if (handle<0)
|
sl@0
|
68 |
delete aWsAnim;
|
sl@0
|
69 |
else
|
sl@0
|
70 |
aWsAnim->iAnimDll->Remove(handle);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
CWsAnim::~CWsAnim()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
if (iWindow) // In case it never got linked
|
sl@0
|
77 |
{
|
sl@0
|
78 |
iWindow->SetupVisibleRegionTracking(EFalse);
|
sl@0
|
79 |
MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
|
sl@0
|
80 |
if (windowTreeObserver && (iBitFlags.IsSet(EWinAnimConstructed)))
|
sl@0
|
81 |
{
|
sl@0
|
82 |
windowTreeObserver->NodeReleased(*this);
|
sl@0
|
83 |
iBitFlags.Clear(EWinAnimConstructed);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
CWsAnim **pAnim;
|
sl@0
|
86 |
for(pAnim= &iWindow->iAnimList;(*pAnim)!=NULL && (*pAnim)!=this;pAnim= &(*pAnim)->iNextWin)
|
sl@0
|
87 |
{}
|
sl@0
|
88 |
*pAnim=iNextWin;
|
sl@0
|
89 |
|
sl@0
|
90 |
}
|
sl@0
|
91 |
else if (iSprite)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
// coverity[extend_simple_error]
|
sl@0
|
94 |
iSprite->iAnim=NULL;
|
sl@0
|
95 |
iSprite->SetHasAnimation(EFalse);
|
sl@0
|
96 |
if(iSprite->Win())
|
sl@0
|
97 |
iSprite->Win()->SetupVisibleRegionTracking(EFalse);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
// force the anim for the event handler list.
|
sl@0
|
100 |
TWindowServerEvent::RemoveEventHandler(Anim());
|
sl@0
|
101 |
TWindowServerEvent::RemoveNotificationHandler(Anim());
|
sl@0
|
102 |
delete iAnim.iWindowAnim;
|
sl@0
|
103 |
delete iAnimGc;
|
sl@0
|
104 |
// coverity[extend_simple_error]
|
sl@0
|
105 |
TWindowServerEvent::PotentialEventHandlerL(-1); //PotentialEventHandler cannot leave when passed a negative parameter.
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
void CWsAnim::Connect(CWsClientWindow *aWindow)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
//coverity[var_compare_op]
|
sl@0
|
111 |
WS_ASSERT_DEBUG(aWindow,EWsPanicWindowNull);
|
sl@0
|
112 |
if ((iSprite))
|
sl@0
|
113 |
Panic();
|
sl@0
|
114 |
|
sl@0
|
115 |
iWindow=aWindow;
|
sl@0
|
116 |
iNextWin=aWindow->iAnimList;
|
sl@0
|
117 |
aWindow->iAnimList=this;
|
sl@0
|
118 |
iBitFlags.Assign(EAdvancedPointersEnabled, aWindow->AdvancedPointersEnabled());
|
sl@0
|
119 |
iWindow->SetupVisibleRegionTracking(ETrue);
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
void CWsAnim::Connect(CWsSprite *aSprite)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
WS_ASSERT_DEBUG(aSprite,EWsPanicNoSprite);
|
sl@0
|
125 |
if (iWindow)
|
sl@0
|
126 |
Panic();
|
sl@0
|
127 |
iSprite=aSprite;
|
sl@0
|
128 |
iSprite->iAnim=this;
|
sl@0
|
129 |
iSprite->SetHasAnimation(ETrue);
|
sl@0
|
130 |
iBitFlags.Assign(EAdvancedPointersEnabled, aSprite->AdvancedPointersEnabled());
|
sl@0
|
131 |
if(iSprite->Win())
|
sl@0
|
132 |
{
|
sl@0
|
133 |
iSprite->Win()->SetupVisibleRegionTracking(ETrue);
|
sl@0
|
134 |
}
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
LOCAL_C void HandleLeaveInCWsAnimConstructL(TAny* aAnim)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
STATIC_CAST(CWsAnim*,aAnim)->SetMessage(NULL);
|
sl@0
|
140 |
STATIC_CAST(CWsAnim*,aAnim)->UserDeactivateAnimGc();
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
void CWsAnim::ConstructL(CAnim *aAnim, TAny *aArgs, CWsAnimDll *aAnimDll, TBool aIsWindow)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
TBool isFocused=(iSprite!=NULL);
|
sl@0
|
146 |
if (!isFocused)
|
sl@0
|
147 |
isFocused=CWsTop::FocusWindowGroup()==iWindow->WinGroup();
|
sl@0
|
148 |
iAnimDll=aAnimDll;
|
sl@0
|
149 |
iAnimSync=ESyncNone;
|
sl@0
|
150 |
if(!aAnim)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
RDebug::Printf("CreateInstanceL did not create an anim instance.");
|
sl@0
|
153 |
Panic();
|
sl@0
|
154 |
}
|
sl@0
|
155 |
aAnim->iFunctions=this;
|
sl@0
|
156 |
SetMessage(&iClient->ClientMessage());
|
sl@0
|
157 |
CleanupStack::PushL(TCleanupItem(HandleLeaveInCWsAnimConstructL,this));
|
sl@0
|
158 |
if (aIsWindow)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
iAnim.iWindowAnim = static_cast<CWindowAnim*>(aAnim);
|
sl@0
|
161 |
iAnimGc = new (ELeave) CWsAnimGc(*this);
|
sl@0
|
162 |
iAnim.iWindowAnim->iWindowFunctions=this;
|
sl@0
|
163 |
iAnim.iWindowAnim->iGc=iAnimGc;
|
sl@0
|
164 |
iAnim.iWindowAnim->ConstructL(aArgs, isFocused);
|
sl@0
|
165 |
iBitFlags.Set(EWinAnimConstructed);
|
sl@0
|
166 |
WS_ASSERT_DEBUG(iClient->Screen(), EWsPanicNoScreen);
|
sl@0
|
167 |
if (iClient->Screen())
|
sl@0
|
168 |
{
|
sl@0
|
169 |
MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
|
sl@0
|
170 |
if (windowTreeObserver)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
windowTreeObserver->NodeCreated(*this, ParentNode());
|
sl@0
|
173 |
const TRect rect = BestRect();
|
sl@0
|
174 |
windowTreeObserver->NodeExtentChanged(*this, rect);
|
sl@0
|
175 |
windowTreeObserver->NodeActivated(*this); //window-anim inherits activate status from iWindow
|
sl@0
|
176 |
}
|
sl@0
|
177 |
}
|
sl@0
|
178 |
}
|
sl@0
|
179 |
else
|
sl@0
|
180 |
{
|
sl@0
|
181 |
iAnim.iSpriteAnim = static_cast<CSpriteAnim*>(aAnim);
|
sl@0
|
182 |
iAnim.iSpriteAnim->iSpriteFunctions=this;
|
sl@0
|
183 |
iAnim.iSpriteAnim->ConstructL(aArgs);
|
sl@0
|
184 |
}
|
sl@0
|
185 |
CleanupStack::PopAndDestroy(this); // doesn't really destroy "this" - it actually calls HandleLeaveInCWsAnimConstructL
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
/**
|
sl@0
|
189 |
This function should only be called in the context of a redraw (i.e. CScreenRedraw::OnAnimation)
|
sl@0
|
190 |
@panic EWsPanicAnim will be raised in debug build if this function is called in the wrong context.
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
void CWsAnim::RedrawWindowAnimL(const TTime& aTimeNow, MWsGraphicsContext* aGc, const TRegion* aRegion)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
WS_ASSERT_DEBUG(iWindow, EWsPanicAnimHasNoWindow);
|
sl@0
|
195 |
WS_ASSERT_DEBUG(iWindow->Screen(), EWsPanicNoScreen);
|
sl@0
|
196 |
WS_ASSERT_DEBUG(iWindow->Screen()->IsAnimating(), EWsPanicAnim);
|
sl@0
|
197 |
iBitFlags.Set(EInRedraw);
|
sl@0
|
198 |
|
sl@0
|
199 |
TInt frame;
|
sl@0
|
200 |
TInt64 adjustedStart;
|
sl@0
|
201 |
// Don't call AnimateL() on CFreeTimerWindowAnim animations
|
sl@0
|
202 |
if(iAnimSync!=ESyncNone || iInterval!=0)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
AnimateL(aTimeNow, frame, adjustedStart);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
RedrawWindowAnimL(aGc, aRegion);
|
sl@0
|
207 |
ReSchedule(aTimeNow, frame, adjustedStart);
|
sl@0
|
208 |
|
sl@0
|
209 |
iBitFlags.Clear(EInRedraw);
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
/**
|
sl@0
|
213 |
This function should only be called in the context of a redraw (i.e. CScreenRedraw::OnAnimation)
|
sl@0
|
214 |
@panic EWsPanicAnim will be raised in debug build if this function is called in the wrong context.
|
sl@0
|
215 |
*/
|
sl@0
|
216 |
void CWsAnim::AnimateSpriteAnimL(const TTime& aTimeNow)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
WS_ASSERT_DEBUG(iSprite, EWsPanicNoSprite);
|
sl@0
|
219 |
WS_ASSERT_DEBUG(iSprite->Screen(), EWsPanicNoScreen);
|
sl@0
|
220 |
WS_ASSERT_DEBUG(iSprite->Screen()->IsAnimating(), EWsPanicAnim);
|
sl@0
|
221 |
iBitFlags.Set(EInRedraw);
|
sl@0
|
222 |
|
sl@0
|
223 |
TInt frame;
|
sl@0
|
224 |
TInt64 adjustedStart;
|
sl@0
|
225 |
AnimateL(aTimeNow, frame, adjustedStart);
|
sl@0
|
226 |
ReSchedule(aTimeNow, frame, adjustedStart);
|
sl@0
|
227 |
|
sl@0
|
228 |
iBitFlags.Clear(EInRedraw);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
void CWsAnim::AnimateL(const TTime& aTimeNow, TInt& aFrame, TInt64& aAdjustedStart)
|
sl@0
|
232 |
{
|
sl@0
|
233 |
// Work out which frame we are in:
|
sl@0
|
234 |
if (iLastFrame < 0)
|
sl@0
|
235 |
iStartTime = aTimeNow;
|
sl@0
|
236 |
TInt64 elapsed = aTimeNow.Int64() - iStartTime.Int64();
|
sl@0
|
237 |
aAdjustedStart = iStartTime.Int64();
|
sl@0
|
238 |
aFrame = 0;
|
sl@0
|
239 |
switch (iAnimSync)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
case ESyncNone:
|
sl@0
|
242 |
if (iInterval > 0)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
aFrame = elapsed / iInterval.Int64();
|
sl@0
|
245 |
}
|
sl@0
|
246 |
else
|
sl@0
|
247 |
{
|
sl@0
|
248 |
aFrame = -1; //This would be a CFreeTimerWindowAnim
|
sl@0
|
249 |
}
|
sl@0
|
250 |
break;
|
sl@0
|
251 |
case ESyncFlash:
|
sl@0
|
252 |
{
|
sl@0
|
253 |
TInt64 fraction = elapsed % (KFlashOnTime + KFlashOffTime);
|
sl@0
|
254 |
aFrame = (elapsed - fraction) / (KFlashOnTime + KFlashOffTime) * 2;
|
sl@0
|
255 |
if (fraction > KFlashOnTime)
|
sl@0
|
256 |
{
|
sl@0
|
257 |
aFrame += 1;
|
sl@0
|
258 |
iBitFlags.Clear(EFlashOn);
|
sl@0
|
259 |
}
|
sl@0
|
260 |
else
|
sl@0
|
261 |
{
|
sl@0
|
262 |
iBitFlags.Set(EFlashOn);
|
sl@0
|
263 |
}
|
sl@0
|
264 |
}
|
sl@0
|
265 |
break;
|
sl@0
|
266 |
case ESyncSecond:
|
sl@0
|
267 |
aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneSecond);
|
sl@0
|
268 |
elapsed = aTimeNow.Int64() - aAdjustedStart;
|
sl@0
|
269 |
aFrame = elapsed / KOneSecond;
|
sl@0
|
270 |
break;
|
sl@0
|
271 |
case ESyncMinute:
|
sl@0
|
272 |
aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneMinute);
|
sl@0
|
273 |
elapsed = aTimeNow.Int64() - aAdjustedStart;
|
sl@0
|
274 |
aFrame = elapsed / KOneMinute;
|
sl@0
|
275 |
break;
|
sl@0
|
276 |
case ESyncDay:
|
sl@0
|
277 |
aAdjustedStart = iStartTime.Int64() - (iStartTime.Int64() % KOneDay);
|
sl@0
|
278 |
elapsed = aTimeNow.Int64() - aAdjustedStart;
|
sl@0
|
279 |
aFrame = elapsed / KOneDay;
|
sl@0
|
280 |
break;
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
// If the frame has changed, animate:
|
sl@0
|
284 |
if (aFrame != iLastFrame && aFrame != -1)
|
sl@0
|
285 |
{
|
sl@0
|
286 |
if (aFrame == iLastFrame + 1 && iLastFrame != -1)
|
sl@0
|
287 |
{
|
sl@0
|
288 |
Animate(NULL); //This can leave
|
sl@0
|
289 |
}
|
sl@0
|
290 |
else
|
sl@0
|
291 |
{
|
sl@0
|
292 |
TDateTime dt = aTimeNow.DateTime();
|
sl@0
|
293 |
Animate(&dt);
|
sl@0
|
294 |
}
|
sl@0
|
295 |
iLastFrame = aFrame;
|
sl@0
|
296 |
}
|
sl@0
|
297 |
}
|
sl@0
|
298 |
|
sl@0
|
299 |
void CWsAnim::RedrawWindowAnimL(MWsGraphicsContext * aGc, const TRegion *aRegion)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
|
sl@0
|
302 |
|
sl@0
|
303 |
// We don't attempt to make use of iRect because it often isn't set up by the client code.
|
sl@0
|
304 |
TWindowInfo::TRegionPair regionPair;
|
sl@0
|
305 |
regionPair.iRegion1 = aRegion;
|
sl@0
|
306 |
regionPair.iRegion2 = NULL;
|
sl@0
|
307 |
iRedrawRegionPair = ®ionPair;
|
sl@0
|
308 |
|
sl@0
|
309 |
if(iWindow && iAnim.iWindowAnim)
|
sl@0
|
310 |
{
|
sl@0
|
311 |
// Regardless of whether we animated or not, redraw:
|
sl@0
|
312 |
iAnimGc->Activate(aRegion, aGc);
|
sl@0
|
313 |
iAnim.iWindowAnim->Redraw(); //This can leave
|
sl@0
|
314 |
iAnimGc->Deactivate();
|
sl@0
|
315 |
}
|
sl@0
|
316 |
|
sl@0
|
317 |
iRedrawRegionPair = NULL;
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
void CWsAnim::ReSchedule(const TTime& aTimeNow, const TInt& aFrame, const TInt64& aAdjustedStart)
|
sl@0
|
321 |
{
|
sl@0
|
322 |
// Schedule ourselves again (we usually only have to do this when we animate,
|
sl@0
|
323 |
// but it is possible for our scheduled rectangle to get lost in a redraw):
|
sl@0
|
324 |
TInt64 timeToNextFrame = 0;
|
sl@0
|
325 |
switch (iAnimSync)
|
sl@0
|
326 |
{
|
sl@0
|
327 |
case ESyncNone:
|
sl@0
|
328 |
if (iInterval > 0)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
timeToNextFrame = iStartTime.Int64() + iInterval.Int64() * (aFrame + 1) - aTimeNow.Int64();
|
sl@0
|
331 |
}
|
sl@0
|
332 |
break;
|
sl@0
|
333 |
case ESyncFlash:
|
sl@0
|
334 |
if (iBitFlags.IsSet(EFlashOn))
|
sl@0
|
335 |
{
|
sl@0
|
336 |
timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * aFrame / 2 + KFlashOnTime - aTimeNow.Int64();
|
sl@0
|
337 |
}
|
sl@0
|
338 |
else
|
sl@0
|
339 |
{
|
sl@0
|
340 |
timeToNextFrame = iStartTime.Int64() + (KFlashOnTime + KFlashOffTime) * (aFrame + 1 ) / 2 - aTimeNow.Int64();
|
sl@0
|
341 |
}
|
sl@0
|
342 |
break;
|
sl@0
|
343 |
case ESyncSecond:
|
sl@0
|
344 |
timeToNextFrame = aAdjustedStart + KOneSecond * (aFrame + 1) - aTimeNow.Int64();
|
sl@0
|
345 |
break;
|
sl@0
|
346 |
case ESyncMinute:
|
sl@0
|
347 |
timeToNextFrame = aAdjustedStart + KOneMinute * (aFrame + 1) - aTimeNow.Int64();
|
sl@0
|
348 |
break;
|
sl@0
|
349 |
case ESyncDay:
|
sl@0
|
350 |
timeToNextFrame = aAdjustedStart + KOneDay * (aFrame + 1) - aTimeNow.Int64();
|
sl@0
|
351 |
break;
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
if (iAnimSync != ESyncNone || iInterval > 0)
|
sl@0
|
355 |
{
|
sl@0
|
356 |
ScheduleSelf(timeToNextFrame);
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
}
|
sl@0
|
360 |
|
sl@0
|
361 |
/**
|
sl@0
|
362 |
Mark the animation area as invalid so it gets redrawn later.
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
void CWsAnim::ScheduleSelf(const TTimeIntervalMicroSeconds& aFrom)
|
sl@0
|
365 |
{
|
sl@0
|
366 |
ASSERT( (iWindow && iAnim.iWindowAnim) || (iSprite && iAnim.iSpriteAnim) );
|
sl@0
|
367 |
|
sl@0
|
368 |
if(iWindow && iAnim.iWindowAnim)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
WS_ASSERT_DEBUG(iWindow->Screen(), EWsPanicNoScreen);
|
sl@0
|
371 |
const TRect rect = BestRect();
|
sl@0
|
372 |
iWindow->Screen()->ScheduleAnimation(EWindowAnim, rect, aFrom, 0, 0, iWindow);
|
sl@0
|
373 |
}
|
sl@0
|
374 |
else if(iSprite && iAnim.iSpriteAnim)
|
sl@0
|
375 |
{
|
sl@0
|
376 |
WS_ASSERT_DEBUG(iSprite->Screen(), EWsPanicNoScreen);
|
sl@0
|
377 |
const TRect rect = iSprite->Rect();
|
sl@0
|
378 |
if(iSprite->Win())
|
sl@0
|
379 |
iSprite->Screen()->ScheduleAnimation(ESpriteAnim, rect, aFrom, 0, 0, iSprite->Win());
|
sl@0
|
380 |
else
|
sl@0
|
381 |
iSprite->Screen()->ScheduleAnimation(EFloatingSpriteAnim, rect, aFrom, 0, 0, NULL);
|
sl@0
|
382 |
}
|
sl@0
|
383 |
}
|
sl@0
|
384 |
|
sl@0
|
385 |
void CWsAnim::UserDeactivateAnimGc()
|
sl@0
|
386 |
{
|
sl@0
|
387 |
if (iAnimGc) // For sprite anims iAnimGc is NULL
|
sl@0
|
388 |
{
|
sl@0
|
389 |
//If we have been receiving draw commands outside the context of
|
sl@0
|
390 |
//CScreenRedraw::OnAnimation, then we need to schedule a redraw.
|
sl@0
|
391 |
if (iAnimGc->IsActive() && iBitFlags.IsClear(EInRedraw))
|
sl@0
|
392 |
{
|
sl@0
|
393 |
ScheduleSelf(0);
|
sl@0
|
394 |
}
|
sl@0
|
395 |
iAnimGc->UserDeactivate();
|
sl@0
|
396 |
}
|
sl@0
|
397 |
}
|
sl@0
|
398 |
|
sl@0
|
399 |
void CWsAnim::FocusChanged(TBool aNewFocusState)
|
sl@0
|
400 |
{
|
sl@0
|
401 |
WS_ASSERT_DEBUG(iWindow && iAnimGc && iAnim.iWindowAnim,EWsPanicAnim);
|
sl@0
|
402 |
iAnim.iWindowAnim->FocusChanged(aNewFocusState);
|
sl@0
|
403 |
UserDeactivateAnimGc();
|
sl@0
|
404 |
}
|
sl@0
|
405 |
|
sl@0
|
406 |
void CWsAnim::Animate(TDateTime *aDateTime)
|
sl@0
|
407 |
{
|
sl@0
|
408 |
WS_ASSERT_DEBUG(Anim(),EWsPanicAnim);
|
sl@0
|
409 |
Anim()->Animate(aDateTime);
|
sl@0
|
410 |
UserDeactivateAnimGc();
|
sl@0
|
411 |
}
|
sl@0
|
412 |
|
sl@0
|
413 |
// Callback functions //
|
sl@0
|
414 |
|
sl@0
|
415 |
void CWsAnim::ActivateGc()
|
sl@0
|
416 |
{
|
sl@0
|
417 |
if (!iWindow)
|
sl@0
|
418 |
Panic();
|
sl@0
|
419 |
|
sl@0
|
420 |
// Window animation drawing commands need to go through the render stage pipeline. This means
|
sl@0
|
421 |
// that drawing commands issued outside animation redraws (for instance, during Animate() or
|
sl@0
|
422 |
// when the animation receives a command) will mark the animation area as invalid, but the
|
sl@0
|
423 |
// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
|
sl@0
|
424 |
// cycle (CWindowAnim::Redraw).
|
sl@0
|
425 |
|
sl@0
|
426 |
// In this new situation MAnimWindowFunctions::ActivateGc doesn't need to activate the graphics
|
sl@0
|
427 |
// context (drawing commands issued outside CWindowAnim::Redraw are ignored), but to avoid some
|
sl@0
|
428 |
// behavior breaks (for instance, panic situations) we mark the GC as "activated by the user".
|
sl@0
|
429 |
iAnimGc->UserActivate();
|
sl@0
|
430 |
}
|
sl@0
|
431 |
|
sl@0
|
432 |
void CWsAnim::DeactivateGc()
|
sl@0
|
433 |
{
|
sl@0
|
434 |
if (!iWindow)
|
sl@0
|
435 |
Panic();
|
sl@0
|
436 |
|
sl@0
|
437 |
// Window animation drawing commands need to go through the render stage pipeline. This means
|
sl@0
|
438 |
// that drawing commands issued outside animation redraws (for instance, during Animate() or
|
sl@0
|
439 |
// when the animation receives a command) will mark the animation area as invalid, but the
|
sl@0
|
440 |
// commands themselves will be ignored as drawing will only happen during the next WSERV redraw
|
sl@0
|
441 |
// cycle (CWindowAnim::Redraw).
|
sl@0
|
442 |
|
sl@0
|
443 |
// In this new situation MAnimFreeTimerWindowFunctions::DeactivateGc just marks the animation
|
sl@0
|
444 |
// area as invalid so it gets redrawn later.
|
sl@0
|
445 |
|
sl@0
|
446 |
UserDeactivateAnimGc();
|
sl@0
|
447 |
}
|
sl@0
|
448 |
|
sl@0
|
449 |
/*
|
sl@0
|
450 |
Because lots of animations don't set a rectangle, or set an empty one, we need
|
sl@0
|
451 |
to make a best guess at what to use rather than assuming anything.
|
sl@0
|
452 |
*/
|
sl@0
|
453 |
TRect CWsAnim::BestRect() const
|
sl@0
|
454 |
{
|
sl@0
|
455 |
WS_ASSERT_DEBUG(iWindow,EWsPanicAnimHasNoWindow);
|
sl@0
|
456 |
TRect rect;
|
sl@0
|
457 |
if (iRect.IsEmpty())
|
sl@0
|
458 |
{
|
sl@0
|
459 |
rect = iWindow->AbsRect();
|
sl@0
|
460 |
}
|
sl@0
|
461 |
else
|
sl@0
|
462 |
{
|
sl@0
|
463 |
rect = iRect;
|
sl@0
|
464 |
rect.Move(iWindow->Origin());
|
sl@0
|
465 |
rect.Intersection(iWindow->AbsRect());
|
sl@0
|
466 |
}
|
sl@0
|
467 |
return rect;
|
sl@0
|
468 |
}
|
sl@0
|
469 |
|
sl@0
|
470 |
void CWsAnim::Invalidate(const TRect &aRect)
|
sl@0
|
471 |
{
|
sl@0
|
472 |
if (!iWindow)
|
sl@0
|
473 |
{
|
sl@0
|
474 |
if (iSprite)
|
sl@0
|
475 |
{
|
sl@0
|
476 |
iSprite->RootWindow()->InvalidateWholeScreen();
|
sl@0
|
477 |
}
|
sl@0
|
478 |
return;
|
sl@0
|
479 |
}
|
sl@0
|
480 |
iWindow->Redraw()->ClientExposing();
|
sl@0
|
481 |
TRect rect(aRect);
|
sl@0
|
482 |
rect.Move(iWindow->Origin());
|
sl@0
|
483 |
|
sl@0
|
484 |
CWsTop::TriggerRedraws(iWindow->RootWindow());
|
sl@0
|
485 |
}
|
sl@0
|
486 |
|
sl@0
|
487 |
void CWsAnim::Update()
|
sl@0
|
488 |
{
|
sl@0
|
489 |
if (!iWindow)
|
sl@0
|
490 |
Panic();
|
sl@0
|
491 |
}
|
sl@0
|
492 |
|
sl@0
|
493 |
void CWsAnim::Parameters(TWindowInfo &aData)
|
sl@0
|
494 |
{
|
sl@0
|
495 |
if (!iWindow)
|
sl@0
|
496 |
Panic();
|
sl@0
|
497 |
aData.iScreenPos=iWindow->FullRect();
|
sl@0
|
498 |
aData.iMode=iWindow->DisplayMode();
|
sl@0
|
499 |
aData.iRegionPair=iRedrawRegionPair;
|
sl@0
|
500 |
}
|
sl@0
|
501 |
|
sl@0
|
502 |
void CWsAnim::VisibleRegion(TRegion& aRegion)
|
sl@0
|
503 |
{
|
sl@0
|
504 |
if(iWindow)
|
sl@0
|
505 |
{
|
sl@0
|
506 |
aRegion.Copy(iWindow->VisibleRegion());
|
sl@0
|
507 |
}
|
sl@0
|
508 |
}
|
sl@0
|
509 |
|
sl@0
|
510 |
void CWsAnim::SetSync(TAnimSync aSyncMode)
|
sl@0
|
511 |
{
|
sl@0
|
512 |
if (iAnimSync != aSyncMode)
|
sl@0
|
513 |
{
|
sl@0
|
514 |
iAnimSync=aSyncMode;
|
sl@0
|
515 |
iLastFrame = -1;
|
sl@0
|
516 |
|
sl@0
|
517 |
if (iAnimSync != ESyncNone)
|
sl@0
|
518 |
ScheduleSelf(0);
|
sl@0
|
519 |
|
sl@0
|
520 |
if (iAnimSync == ESyncFlash)
|
sl@0
|
521 |
iBitFlags.Set(EFlashOn);
|
sl@0
|
522 |
}
|
sl@0
|
523 |
}
|
sl@0
|
524 |
|
sl@0
|
525 |
void CWsAnim::SetInterval(TInt aInterval)
|
sl@0
|
526 |
{
|
sl@0
|
527 |
if (iAnimSync!=ESyncNone)
|
sl@0
|
528 |
Panic();
|
sl@0
|
529 |
iLastFrame = -1;
|
sl@0
|
530 |
if (aInterval < 0)
|
sl@0
|
531 |
aInterval = 0;
|
sl@0
|
532 |
// convert intervals to milliseconds (there are two intervals per second)
|
sl@0
|
533 |
iInterval = aInterval*KOneHalfSecond;
|
sl@0
|
534 |
if (iInterval > 0)
|
sl@0
|
535 |
{
|
sl@0
|
536 |
ScheduleSelf(iInterval);
|
sl@0
|
537 |
}
|
sl@0
|
538 |
|
sl@0
|
539 |
}
|
sl@0
|
540 |
|
sl@0
|
541 |
void CWsAnim::SetNextInterval(TInt aInterval)
|
sl@0
|
542 |
{
|
sl@0
|
543 |
if (iAnimSync!=ESyncNone)
|
sl@0
|
544 |
Panic();
|
sl@0
|
545 |
aInterval = (aInterval <= 0) ? 1 : aInterval;
|
sl@0
|
546 |
ScheduleSelf(aInterval*KOneHalfSecond);
|
sl@0
|
547 |
}
|
sl@0
|
548 |
|
sl@0
|
549 |
void CWsAnim::SetRect(const TRect &aRect)
|
sl@0
|
550 |
{
|
sl@0
|
551 |
if (!iWindow)
|
sl@0
|
552 |
Panic();
|
sl@0
|
553 |
|
sl@0
|
554 |
if (iRect != aRect)
|
sl@0
|
555 |
{
|
sl@0
|
556 |
iRect=aRect;
|
sl@0
|
557 |
iWindow->UpdateAnimArea(); // backed up windows only
|
sl@0
|
558 |
|
sl@0
|
559 |
MWsWindowTreeObserver* windowTreeObserver = iClient->Screen()->WindowTreeObserver();
|
sl@0
|
560 |
if (windowTreeObserver && iBitFlags.IsSet(EWinAnimConstructed))
|
sl@0
|
561 |
{
|
sl@0
|
562 |
const TRect rect = BestRect();
|
sl@0
|
563 |
windowTreeObserver->NodeExtentChanged(*this, rect);
|
sl@0
|
564 |
}
|
sl@0
|
565 |
}
|
sl@0
|
566 |
}
|
sl@0
|
567 |
|
sl@0
|
568 |
const TRect& CWsAnim::Rect() const
|
sl@0
|
569 |
{
|
sl@0
|
570 |
return(iRect);
|
sl@0
|
571 |
}
|
sl@0
|
572 |
|
sl@0
|
573 |
TDateTime CWsAnim::SystemTime() const
|
sl@0
|
574 |
{
|
sl@0
|
575 |
TDateTime dt=iWindow->Screen()->Now().DateTime();
|
sl@0
|
576 |
TInt hour=dt.Hour();
|
sl@0
|
577 |
TInt minute=dt.Minute();
|
sl@0
|
578 |
TInt second=dt.Second();
|
sl@0
|
579 |
TInt microSecond=dt.MicroSecond();
|
sl@0
|
580 |
switch(iAnimSync)
|
sl@0
|
581 |
{
|
sl@0
|
582 |
case ESyncDay:
|
sl@0
|
583 |
hour=0;
|
sl@0
|
584 |
minute=0;
|
sl@0
|
585 |
/*Fall through*/
|
sl@0
|
586 |
case ESyncMinute:
|
sl@0
|
587 |
second=0;
|
sl@0
|
588 |
/*Fall through*/
|
sl@0
|
589 |
case ESyncNone:
|
sl@0
|
590 |
case ESyncFlash:
|
sl@0
|
591 |
case ESyncSecond:
|
sl@0
|
592 |
microSecond=0;
|
sl@0
|
593 |
break;
|
sl@0
|
594 |
}
|
sl@0
|
595 |
TDateTime dateTime;
|
sl@0
|
596 |
dateTime.Set(dt.Year(),dt.Month(),dt.Day(),hour,minute,second,microSecond);
|
sl@0
|
597 |
return(dateTime);
|
sl@0
|
598 |
}
|
sl@0
|
599 |
|
sl@0
|
600 |
TBool CWsAnim::FlashStateOn() const
|
sl@0
|
601 |
{
|
sl@0
|
602 |
return(iBitFlags.IsSet(EFlashOn));
|
sl@0
|
603 |
}
|
sl@0
|
604 |
|
sl@0
|
605 |
const RThread &CWsAnim::Client()
|
sl@0
|
606 |
{
|
sl@0
|
607 |
return(iClient->Client());
|
sl@0
|
608 |
}
|
sl@0
|
609 |
|
sl@0
|
610 |
void CWsAnim::ReplyBuf(const TDesC8 &aDes)
|
sl@0
|
611 |
{
|
sl@0
|
612 |
CWsClient::ReplyBuf(aDes);
|
sl@0
|
613 |
}
|
sl@0
|
614 |
|
sl@0
|
615 |
void CWsAnim::ReplyBuf(const TDesC16 &aDes)
|
sl@0
|
616 |
{
|
sl@0
|
617 |
CWsClient::ReplyBuf(aDes);
|
sl@0
|
618 |
}
|
sl@0
|
619 |
|
sl@0
|
620 |
void CWsAnim::SessionPanic() const
|
sl@0
|
621 |
{
|
sl@0
|
622 |
iClient->SessionPanic(EWservPanicAnimDll);
|
sl@0
|
623 |
}
|
sl@0
|
624 |
|
sl@0
|
625 |
void CWsAnim::Panic() const
|
sl@0
|
626 |
{
|
sl@0
|
627 |
iClient->PPanic(EWservPanicAnimDll);
|
sl@0
|
628 |
}
|
sl@0
|
629 |
|
sl@0
|
630 |
void CWsAnim::Panic(TClientPanic aPanic) const
|
sl@0
|
631 |
{
|
sl@0
|
632 |
iClient->PPanic(aPanic);
|
sl@0
|
633 |
}
|
sl@0
|
634 |
|
sl@0
|
635 |
void CWsAnim::SendState(MWsWindowTreeObserver& aWindowTreeObserver) const
|
sl@0
|
636 |
{
|
sl@0
|
637 |
if(iNextWin)
|
sl@0
|
638 |
iNextWin->SendState(aWindowTreeObserver);
|
sl@0
|
639 |
|
sl@0
|
640 |
if(iBitFlags.IsSet(EWinAnimConstructed))
|
sl@0
|
641 |
{
|
sl@0
|
642 |
aWindowTreeObserver.NodeCreated(*this, ParentNode());
|
sl@0
|
643 |
const TRect rect = BestRect();
|
sl@0
|
644 |
aWindowTreeObserver.NodeExtentChanged(*this, rect);
|
sl@0
|
645 |
aWindowTreeObserver.NodeActivated(*this); //window-anim inherits activate status from iWindow
|
sl@0
|
646 |
}
|
sl@0
|
647 |
}
|
sl@0
|
648 |
|
sl@0
|
649 |
const CFbsScreenDevice *CWsAnim::ScreenDevice()
|
sl@0
|
650 |
{
|
sl@0
|
651 |
return NULL; // Deprecated by PREQ 2095
|
sl@0
|
652 |
}
|
sl@0
|
653 |
|
sl@0
|
654 |
CFbsFont *CWsAnim::DuplicateFontL(TInt aHandle)
|
sl@0
|
655 |
{
|
sl@0
|
656 |
CFbsFont *font=NULL;
|
sl@0
|
657 |
TInt err;
|
sl@0
|
658 |
font=CAnimFbsFont::NewL(aHandle,err);
|
sl@0
|
659 |
if (err!=KErrNone)
|
sl@0
|
660 |
{
|
sl@0
|
661 |
WS_ASSERT_DEBUG(font==NULL,EWsPanicFailedToInitialise);
|
sl@0
|
662 |
if (err==KErrNoMemory)
|
sl@0
|
663 |
User::Leave(err);
|
sl@0
|
664 |
iClient->PPanic(EWservPanicFont);
|
sl@0
|
665 |
}
|
sl@0
|
666 |
return(font);
|
sl@0
|
667 |
}
|
sl@0
|
668 |
|
sl@0
|
669 |
void CWsAnim::CloseFont(CFbsFont *aFont)
|
sl@0
|
670 |
{
|
sl@0
|
671 |
if (aFont)
|
sl@0
|
672 |
((CAnimFbsFont *)aFont)->Close();
|
sl@0
|
673 |
}
|
sl@0
|
674 |
|
sl@0
|
675 |
CFbsBitmap *CWsAnim::DuplicateBitmapL(TInt aHandle)
|
sl@0
|
676 |
{
|
sl@0
|
677 |
CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
|
sl@0
|
678 |
TInt err=bitmap->Duplicate(aHandle);
|
sl@0
|
679 |
if (err!=KErrNone)
|
sl@0
|
680 |
{
|
sl@0
|
681 |
delete bitmap;
|
sl@0
|
682 |
if (err==KErrNoMemory)
|
sl@0
|
683 |
User::Leave(err);
|
sl@0
|
684 |
iClient->PPanic(EWservPanicBitmap);
|
sl@0
|
685 |
}
|
sl@0
|
686 |
return(bitmap);
|
sl@0
|
687 |
}
|
sl@0
|
688 |
|
sl@0
|
689 |
TSize CWsAnim::WindowSize() const
|
sl@0
|
690 |
{
|
sl@0
|
691 |
if (!iWindow)
|
sl@0
|
692 |
Panic();
|
sl@0
|
693 |
return(iWindow->Size());
|
sl@0
|
694 |
}
|
sl@0
|
695 |
|
sl@0
|
696 |
TBool CWsAnim::IsHidden()
|
sl@0
|
697 |
{
|
sl@0
|
698 |
if (!iWindow)
|
sl@0
|
699 |
Panic();
|
sl@0
|
700 |
|
sl@0
|
701 |
return iWindow->IsHidden();
|
sl@0
|
702 |
}
|
sl@0
|
703 |
|
sl@0
|
704 |
void CWsAnim::SetVisible(TBool aState)
|
sl@0
|
705 |
{
|
sl@0
|
706 |
//The (iAnimGc->IsActive() && aState) part of the below if statement is in place to accomodate bc with
|
sl@0
|
707 |
//the original wserv.
|
sl@0
|
708 |
//We panic when we call SetVisible(ETrue) and the CWsAnimGc has been activated because the origininal wserv did.
|
sl@0
|
709 |
//We don't panic when we call SetVisible(EFalse) and the CWsAnimGc is activated because the original wserv didn't.
|
sl@0
|
710 |
|
sl@0
|
711 |
if( !iWindow || (iAnimGc->IsActive() && aState) )
|
sl@0
|
712 |
{
|
sl@0
|
713 |
Panic();
|
sl@0
|
714 |
}
|
sl@0
|
715 |
|
sl@0
|
716 |
iWindow->SetVisible(aState);
|
sl@0
|
717 |
|
sl@0
|
718 |
STACK_REGION region;
|
sl@0
|
719 |
VisibleRegion(region);
|
sl@0
|
720 |
TRect rect = region.BoundingRect();
|
sl@0
|
721 |
region.Close();
|
sl@0
|
722 |
if(!rect.IsEmpty())
|
sl@0
|
723 |
iWindow->Screen()->ScheduleAnimation(EWindowAnim, rect,0,0,0, iWindow);
|
sl@0
|
724 |
}
|
sl@0
|
725 |
|
sl@0
|
726 |
MAnimGeneralFunctions::TAnimSync CWsAnim::Sync() const
|
sl@0
|
727 |
{
|
sl@0
|
728 |
return(iAnimSync);
|
sl@0
|
729 |
}
|
sl@0
|
730 |
|
sl@0
|
731 |
void CWsAnim::GetRawEvents(TBool aGetEvents) const
|
sl@0
|
732 |
{
|
sl@0
|
733 |
if (aGetEvents)
|
sl@0
|
734 |
{
|
sl@0
|
735 |
if (!iAnimAddedInHandler)
|
sl@0
|
736 |
{
|
sl@0
|
737 |
TWindowServerEvent::AddEventHandler(Anim(), iBitFlags.IsSet(EAdvancedPointersEnabled));
|
sl@0
|
738 |
iAnimAddedInHandler = ETrue;
|
sl@0
|
739 |
}
|
sl@0
|
740 |
}
|
sl@0
|
741 |
else
|
sl@0
|
742 |
{
|
sl@0
|
743 |
if (iAnimAddedInHandler)
|
sl@0
|
744 |
{
|
sl@0
|
745 |
TWindowServerEvent::RemoveEventHandler(Anim());
|
sl@0
|
746 |
iAnimAddedInHandler = EFalse;
|
sl@0
|
747 |
}
|
sl@0
|
748 |
}
|
sl@0
|
749 |
}
|
sl@0
|
750 |
|
sl@0
|
751 |
void CWsAnim::PostRawEvent(const TRawEvent &aRawEvent) const
|
sl@0
|
752 |
{
|
sl@0
|
753 |
// Cannot remove const from aRawEvent parameter type for compatibility reasons.
|
sl@0
|
754 |
if (TWsPointer::PreProcessClientEvent(const_cast<TRawEvent &>(aRawEvent), iBitFlags.IsSet(EAdvancedPointersEnabled)))
|
sl@0
|
755 |
{
|
sl@0
|
756 |
TWindowServerEvent::ProcessRawEvent(aRawEvent);
|
sl@0
|
757 |
}
|
sl@0
|
758 |
}
|
sl@0
|
759 |
|
sl@0
|
760 |
void CWsAnim::PostKeyEvent(const TKeyEvent &aRawEvent) const
|
sl@0
|
761 |
{
|
sl@0
|
762 |
TWindowServerEvent::ProcessKeyEvent(aRawEvent,0);
|
sl@0
|
763 |
}
|
sl@0
|
764 |
|
sl@0
|
765 |
/**
|
sl@0
|
766 |
Generate repeated key events.
|
sl@0
|
767 |
*/
|
sl@0
|
768 |
void CWsAnim::PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const
|
sl@0
|
769 |
{
|
sl@0
|
770 |
TWindowServerEvent::ProcessKeyEvent(aRawEvent,aRepeats);
|
sl@0
|
771 |
}
|
sl@0
|
772 |
|
sl@0
|
773 |
TInt CWsAnim::RegisterForNotifications(TUint32 aNotifications)
|
sl@0
|
774 |
{
|
sl@0
|
775 |
if (aNotifications)
|
sl@0
|
776 |
{
|
sl@0
|
777 |
return TWindowServerEvent::AddNotificationHandler(Anim(),aNotifications);
|
sl@0
|
778 |
}
|
sl@0
|
779 |
else
|
sl@0
|
780 |
{
|
sl@0
|
781 |
TWindowServerEvent::RemoveNotificationHandler(Anim());
|
sl@0
|
782 |
return KErrNone;
|
sl@0
|
783 |
}
|
sl@0
|
784 |
}
|
sl@0
|
785 |
|
sl@0
|
786 |
const RMessagePtr2* CWsAnim::Message()
|
sl@0
|
787 |
{
|
sl@0
|
788 |
return iMessage;
|
sl@0
|
789 |
}
|
sl@0
|
790 |
|
sl@0
|
791 |
void CWsAnim::SetMessage(const RMessagePtr2* aMessage)
|
sl@0
|
792 |
{
|
sl@0
|
793 |
iMessage=aMessage;
|
sl@0
|
794 |
}
|
sl@0
|
795 |
|
sl@0
|
796 |
TInt CWsAnim::CommandReply(TInt aOpcode, TAny* aArgs)
|
sl@0
|
797 |
{
|
sl@0
|
798 |
SetMessage(&iClient->ClientMessage()); // ClientMessage returns a reference, so taking the address of it is okay (it it returned it by value, then taking the address would be taking the address of a temporary which would be dodgey)
|
sl@0
|
799 |
TInt returnValue=0;
|
sl@0
|
800 |
TRAP(returnValue,returnValue=Anim()->CommandReplyL(aOpcode, aArgs));
|
sl@0
|
801 |
SetMessage(NULL);
|
sl@0
|
802 |
return returnValue;
|
sl@0
|
803 |
}
|
sl@0
|
804 |
|
sl@0
|
805 |
TSpriteMember *CWsAnim::GetSpriteMember(TInt aMember) const
|
sl@0
|
806 |
{
|
sl@0
|
807 |
if (!iSprite)
|
sl@0
|
808 |
Panic();
|
sl@0
|
809 |
return REINTERPRET_CAST(TSpriteMember*,&(*iSprite->iMembers)[aMember]->iBitmap); //The 2 classes involved in the cast have exactly the same data members in the same order
|
sl@0
|
810 |
}
|
sl@0
|
811 |
|
sl@0
|
812 |
void CWsAnim::UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)
|
sl@0
|
813 |
{
|
sl@0
|
814 |
if (!iSprite)
|
sl@0
|
815 |
Panic();
|
sl@0
|
816 |
iSprite->Update(aMember,aRect,aFullUpdate);
|
sl@0
|
817 |
}
|
sl@0
|
818 |
|
sl@0
|
819 |
void CWsAnim::Activate(TBool aActive)
|
sl@0
|
820 |
{
|
sl@0
|
821 |
if (!iSprite)
|
sl@0
|
822 |
Panic();
|
sl@0
|
823 |
if (!aActive)
|
sl@0
|
824 |
iSprite->Deactivate();
|
sl@0
|
825 |
else
|
sl@0
|
826 |
{
|
sl@0
|
827 |
if (iSprite->IsActive())
|
sl@0
|
828 |
Panic();
|
sl@0
|
829 |
iSprite->Activate();
|
sl@0
|
830 |
}
|
sl@0
|
831 |
}
|
sl@0
|
832 |
|
sl@0
|
833 |
void CWsAnim::SizeChangedL()
|
sl@0
|
834 |
{
|
sl@0
|
835 |
if (!iSprite)
|
sl@0
|
836 |
Panic();
|
sl@0
|
837 |
iSprite->CWsSpriteBase::CompleteL();
|
sl@0
|
838 |
}
|
sl@0
|
839 |
|
sl@0
|
840 |
void CWsAnim::SetPosition(const TPoint &aPos)
|
sl@0
|
841 |
{
|
sl@0
|
842 |
iSprite->SetPos(aPos);
|
sl@0
|
843 |
}
|
sl@0
|
844 |
|
sl@0
|
845 |
TAny* CWsAnim::ExtendedInterface(TInt aInterface)
|
sl@0
|
846 |
{
|
sl@0
|
847 |
switch(aInterface)
|
sl@0
|
848 |
{
|
sl@0
|
849 |
case ENumberOfExtendedInterfaces:
|
sl@0
|
850 |
return reinterpret_cast<TAny*>(EInterfaceCount-1);
|
sl@0
|
851 |
case EWindowExtensionInterface:
|
sl@0
|
852 |
return static_cast<MAnimGeneralFunctionsWindowExtension*>(this);
|
sl@0
|
853 |
case EEventExtentionInterface:
|
sl@0
|
854 |
return static_cast<MAnimGeneralFunctionsEventExtension*>(this);
|
sl@0
|
855 |
default:
|
sl@0
|
856 |
return NULL;
|
sl@0
|
857 |
}
|
sl@0
|
858 |
}
|
sl@0
|
859 |
|
sl@0
|
860 |
TInt CWsAnim::Screens() const
|
sl@0
|
861 |
{
|
sl@0
|
862 |
return CWsTop::NumberOfScreens();
|
sl@0
|
863 |
}
|
sl@0
|
864 |
|
sl@0
|
865 |
TInt CWsAnim::FocusScreens() const
|
sl@0
|
866 |
{
|
sl@0
|
867 |
return CWsTop::CurrentFocusScreen()->ScreenNumber();
|
sl@0
|
868 |
}
|
sl@0
|
869 |
|
sl@0
|
870 |
void CWsAnim::SetFocusScreen(TInt aScreenNo)
|
sl@0
|
871 |
{
|
sl@0
|
872 |
if (aScreenNo<CWsTop::NumberOfScreens() && aScreenNo>=0)
|
sl@0
|
873 |
{
|
sl@0
|
874 |
CWsTop::SetCurrentFocusScreen(aScreenNo);
|
sl@0
|
875 |
}
|
sl@0
|
876 |
else
|
sl@0
|
877 |
{
|
sl@0
|
878 |
Panic();
|
sl@0
|
879 |
}
|
sl@0
|
880 |
}
|
sl@0
|
881 |
|
sl@0
|
882 |
TInt CWsAnim::WindowGroups(TInt aScreen) const
|
sl@0
|
883 |
{
|
sl@0
|
884 |
return(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(aScreen)->RootWindow()->Child(),ETrue,0));
|
sl@0
|
885 |
}
|
sl@0
|
886 |
|
sl@0
|
887 |
TBool CWsAnim::WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const
|
sl@0
|
888 |
{
|
sl@0
|
889 |
CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
|
sl@0
|
890 |
if (!group)
|
sl@0
|
891 |
return EFalse;
|
sl@0
|
892 |
aInfo.iId=group->Identifier();
|
sl@0
|
893 |
if (group->ReceivesFocus() && group->ScreenDeviceValid())
|
sl@0
|
894 |
aInfo.iFlags=TWindowGroupInfo::EIsFocusable;
|
sl@0
|
895 |
else
|
sl@0
|
896 |
aInfo.iFlags=0;
|
sl@0
|
897 |
aInfo.iOrdinalPriority=group->OrdinalPriority();
|
sl@0
|
898 |
HBufC* groupName=group->GroupName();
|
sl@0
|
899 |
aInfo.iNameLength=groupName?group->GroupName()->Length():0;
|
sl@0
|
900 |
if (!group->IsChained(aInfo.iParentId))
|
sl@0
|
901 |
aInfo.iParentId=-1;
|
sl@0
|
902 |
return ETrue;
|
sl@0
|
903 |
}
|
sl@0
|
904 |
|
sl@0
|
905 |
TInt CWsAnim::WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const
|
sl@0
|
906 |
{
|
sl@0
|
907 |
CWsWindowGroup* group=CWsTop::Screen(aScreen)->RootWindow()->WindowGroup(aFullOrdinalPosition);
|
sl@0
|
908 |
if (!group)
|
sl@0
|
909 |
return EFalse;
|
sl@0
|
910 |
HBufC* name=group->GroupName();
|
sl@0
|
911 |
if (name)
|
sl@0
|
912 |
aWindowName.Set(*name);
|
sl@0
|
913 |
else
|
sl@0
|
914 |
aWindowName.Set(NULL,0);
|
sl@0
|
915 |
return ETrue;
|
sl@0
|
916 |
}
|
sl@0
|
917 |
|
sl@0
|
918 |
TInt CWsAnim::SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)
|
sl@0
|
919 |
{
|
sl@0
|
920 |
CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifier(aWindowGroupId);
|
sl@0
|
921 |
if (group)
|
sl@0
|
922 |
{
|
sl@0
|
923 |
group->SetOrdinalPriority(aPos,aOrdinalPriority);
|
sl@0
|
924 |
return KErrNone;
|
sl@0
|
925 |
}
|
sl@0
|
926 |
return KErrNotFound;
|
sl@0
|
927 |
}
|
sl@0
|
928 |
|
sl@0
|
929 |
void CWsAnim::WindowConfig(TWindowConfig& aWindowConfig) const
|
sl@0
|
930 |
{
|
sl@0
|
931 |
aWindowConfig.iFlags = 0x00;
|
sl@0
|
932 |
if (iWindow->IsTranslucent())
|
sl@0
|
933 |
{
|
sl@0
|
934 |
aWindowConfig.iFlags |= TWindowConfig::ETransparencyEnabled;
|
sl@0
|
935 |
if (iWindow->HasAlpha())
|
sl@0
|
936 |
{
|
sl@0
|
937 |
aWindowConfig.iFlags |= TWindowConfig::EAlphaBlendedTransparency;
|
sl@0
|
938 |
}
|
sl@0
|
939 |
}
|
sl@0
|
940 |
}
|
sl@0
|
941 |
|
sl@0
|
942 |
TBool CWsAnim::SpriteCanBeSeen() const
|
sl@0
|
943 |
{
|
sl@0
|
944 |
if(!iSprite)
|
sl@0
|
945 |
Panic();
|
sl@0
|
946 |
return iSprite->CanBeSeen();
|
sl@0
|
947 |
}
|
sl@0
|
948 |
|
sl@0
|
949 |
/** @see MWsWindowTreeNode */
|
sl@0
|
950 |
MWsWindowTreeNode::TType CWsAnim::NodeType() const
|
sl@0
|
951 |
{
|
sl@0
|
952 |
return (iSprite) ? iSprite->NodeType() : MWsWindowTreeNode::EWinTreeNodeAnim;
|
sl@0
|
953 |
}
|
sl@0
|
954 |
|
sl@0
|
955 |
/** @see MWsWindowTreeNode */
|
sl@0
|
956 |
const MWsWindow* CWsAnim::Window() const
|
sl@0
|
957 |
{
|
sl@0
|
958 |
return NULL;
|
sl@0
|
959 |
}
|
sl@0
|
960 |
|
sl@0
|
961 |
/** @see MWsWindowTreeNode */
|
sl@0
|
962 |
const MWsSprite* CWsAnim::Sprite() const
|
sl@0
|
963 |
{
|
sl@0
|
964 |
return iSprite;
|
sl@0
|
965 |
}
|
sl@0
|
966 |
|
sl@0
|
967 |
/** @see MWsWindowTreeNode */
|
sl@0
|
968 |
const MWsStandardTextCursor* CWsAnim::StandardTextCursor() const
|
sl@0
|
969 |
{
|
sl@0
|
970 |
return NULL;
|
sl@0
|
971 |
}
|
sl@0
|
972 |
|
sl@0
|
973 |
/** @see MWsWindowTreeNode */
|
sl@0
|
974 |
const MWsWindowGroup* CWsAnim::WindowGroup() const
|
sl@0
|
975 |
{
|
sl@0
|
976 |
if (iSprite)
|
sl@0
|
977 |
return iSprite->WindowGroup();
|
sl@0
|
978 |
else if (iWindow)
|
sl@0
|
979 |
return iWindow->WindowGroup();
|
sl@0
|
980 |
Panic();
|
sl@0
|
981 |
return NULL;
|
sl@0
|
982 |
}
|
sl@0
|
983 |
|
sl@0
|
984 |
/** @see MWsWindowTreeNode */
|
sl@0
|
985 |
const MWsWindowTreeNode* CWsAnim::ParentNode() const
|
sl@0
|
986 |
{
|
sl@0
|
987 |
if (iSprite)
|
sl@0
|
988 |
return iSprite->ParentNode();
|
sl@0
|
989 |
else if (iWindow)
|
sl@0
|
990 |
return iWindow; //A window-anim is considered to be a child of the window
|
sl@0
|
991 |
Panic();
|
sl@0
|
992 |
return NULL;
|
sl@0
|
993 |
}
|
sl@0
|
994 |
|
sl@0
|
995 |
//
|
sl@0
|
996 |
|
sl@0
|
997 |
CObjectConIx* CWsAnimDll::AnimObjectConIx=NULL;
|
sl@0
|
998 |
|
sl@0
|
999 |
void CWsAnimDll::InitStaticsL()
|
sl@0
|
1000 |
{
|
sl@0
|
1001 |
CWsAnimDll::AnimObjectConIx=CObjectConIx::NewL();
|
sl@0
|
1002 |
}
|
sl@0
|
1003 |
|
sl@0
|
1004 |
void CWsAnimDll::DeleteStatics()
|
sl@0
|
1005 |
{
|
sl@0
|
1006 |
delete CWsAnimDll::AnimObjectConIx;
|
sl@0
|
1007 |
}
|
sl@0
|
1008 |
|
sl@0
|
1009 |
CWsAnimDll::CWsAnimDll(CWsClient *aOwner) : CWsObject(aOwner,WS_HANDLE_ANIM_DLL)
|
sl@0
|
1010 |
{
|
sl@0
|
1011 |
__DECLARE_NAME(_S("CWsAnimDll"));
|
sl@0
|
1012 |
}
|
sl@0
|
1013 |
|
sl@0
|
1014 |
CWsAnimDll::~CWsAnimDll()
|
sl@0
|
1015 |
{
|
sl@0
|
1016 |
delete iInstanceIndex;
|
sl@0
|
1017 |
AnimObjectConIx->Remove(iInstanceCon);
|
sl@0
|
1018 |
delete iAnimDll;
|
sl@0
|
1019 |
iAnimLib.Close();
|
sl@0
|
1020 |
}
|
sl@0
|
1021 |
|
sl@0
|
1022 |
TInt CWsAnimDll::doCreateInstanceL(CWsAnim *aInstance, TInt aType, TAny *aArgs, TBool aIsWindow)
|
sl@0
|
1023 |
{
|
sl@0
|
1024 |
iInstanceCon->AddL(aInstance);
|
sl@0
|
1025 |
aInstance->ConstructL(iAnimDll->CreateInstanceL(aType),aArgs,this,aIsWindow);
|
sl@0
|
1026 |
return(iInstanceIndex->AddL(aInstance));
|
sl@0
|
1027 |
}
|
sl@0
|
1028 |
|
sl@0
|
1029 |
TInt CWsAnimDll::CreateInstanceL(TUint32 aHandle, TInt aType, TAny *aArgs, TBool aIsWindow)
|
sl@0
|
1030 |
{
|
sl@0
|
1031 |
TWindowServerEvent::PotentialEventHandlerL(1);
|
sl@0
|
1032 |
CWsAnim *instance=new(ELeave) CWsAnim(this);
|
sl@0
|
1033 |
CleanupClosePushL(*instance);
|
sl@0
|
1034 |
if (aIsWindow)
|
sl@0
|
1035 |
{
|
sl@0
|
1036 |
CWsClientWindow *win;
|
sl@0
|
1037 |
iWsOwner->HandleToClientWindow(aHandle,&win);
|
sl@0
|
1038 |
instance->Connect(win);
|
sl@0
|
1039 |
}
|
sl@0
|
1040 |
else
|
sl@0
|
1041 |
{
|
sl@0
|
1042 |
CWsObject *sprite=iWsOwner->HandleToObj(aHandle, WS_HANDLE_SPRITE);
|
sl@0
|
1043 |
if (!sprite)
|
sl@0
|
1044 |
OwnerPanic(EWservPanicSprite);
|
sl@0
|
1045 |
instance->Connect(STATIC_CAST(CWsSprite*,sprite));
|
sl@0
|
1046 |
}
|
sl@0
|
1047 |
TInt handle=doCreateInstanceL(instance, aType, aArgs, aIsWindow);
|
sl@0
|
1048 |
CleanupStack::Pop(instance);
|
sl@0
|
1049 |
return(handle);
|
sl@0
|
1050 |
}
|
sl@0
|
1051 |
|
sl@0
|
1052 |
void CWsAnimDll::LoadL(const TDesC &aDllName)
|
sl@0
|
1053 |
{
|
sl@0
|
1054 |
NewObjL();
|
sl@0
|
1055 |
TFileName name(aDllName);
|
sl@0
|
1056 |
User::LeaveIfError(iAnimLib.Load(name));
|
sl@0
|
1057 |
if (wsDebugLog)
|
sl@0
|
1058 |
{
|
sl@0
|
1059 |
TBuf<256> buf;
|
sl@0
|
1060 |
_LIT(KWSERVLoadedAnimDll,"Loaded Anim DLL: ");
|
sl@0
|
1061 |
buf.Append(KWSERVLoadedAnimDll);
|
sl@0
|
1062 |
buf.Append(iAnimLib.FileName());
|
sl@0
|
1063 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
|
sl@0
|
1064 |
}
|
sl@0
|
1065 |
TUidType uid=iAnimLib.Type();
|
sl@0
|
1066 |
if (uid[1]!=KWservAnimDllUid)
|
sl@0
|
1067 |
User::Leave(KErrNotSupported);
|
sl@0
|
1068 |
CreateCAnimDll f;
|
sl@0
|
1069 |
f=(CreateCAnimDll)User::LeaveIfNull((TAny *)iAnimLib.Lookup(1));
|
sl@0
|
1070 |
iAnimDll=(*f)();
|
sl@0
|
1071 |
iInstanceIndex=CObjectIx::NewL();
|
sl@0
|
1072 |
iInstanceCon=AnimObjectConIx->CreateL();
|
sl@0
|
1073 |
}
|
sl@0
|
1074 |
|
sl@0
|
1075 |
void CWsAnimDll::Remove(TInt aHandle)
|
sl@0
|
1076 |
{
|
sl@0
|
1077 |
iInstanceIndex->Remove(aHandle);
|
sl@0
|
1078 |
}
|
sl@0
|
1079 |
|
sl@0
|
1080 |
void CWsAnimDll::CommandL(TInt aOpcode, const TAny *aCmdData)
|
sl@0
|
1081 |
{
|
sl@0
|
1082 |
TWsAnimDllCmdUnion pData;
|
sl@0
|
1083 |
|
sl@0
|
1084 |
pData.any=aCmdData;
|
sl@0
|
1085 |
switch(aOpcode)
|
sl@0
|
1086 |
{
|
sl@0
|
1087 |
case EWsAnimDllOpFree:
|
sl@0
|
1088 |
delete this;
|
sl@0
|
1089 |
break;
|
sl@0
|
1090 |
case EWsAnimDllOpCreateInstance:
|
sl@0
|
1091 |
case EWsAnimDllOpCreateInstanceSprite:
|
sl@0
|
1092 |
SetReply(CreateInstanceL(*pData.UInt,*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)
|
sl@0
|
1093 |
,aOpcode==EWsAnimDllOpCreateInstance));
|
sl@0
|
1094 |
break;
|
sl@0
|
1095 |
case EWsAnimDllOpCommandReply:
|
sl@0
|
1096 |
case EWsAnimDllOpCommand:
|
sl@0
|
1097 |
case EWsAnimDllOpDestroyInstance:
|
sl@0
|
1098 |
{
|
sl@0
|
1099 |
CWsAnim *anim=(CWsAnim *)iInstanceIndex->At(*pData.UInt);
|
sl@0
|
1100 |
TInt ret;
|
sl@0
|
1101 |
//Deleting a non existant Anim is allowed as the Anim will be destroyed
|
sl@0
|
1102 |
//when the window it is on (or a parent of) it destroyed
|
sl@0
|
1103 |
if (anim==NULL && aOpcode!=EWsAnimDllOpDestroyInstance)
|
sl@0
|
1104 |
OwnerPanic(EWservPanicAnim);
|
sl@0
|
1105 |
switch(aOpcode)
|
sl@0
|
1106 |
{
|
sl@0
|
1107 |
case EWsAnimDllOpCommandReply:
|
sl@0
|
1108 |
{
|
sl@0
|
1109 |
TInt reply=KErrNone;
|
sl@0
|
1110 |
TRAP(ret,reply=anim->CommandReply(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
|
sl@0
|
1111 |
anim->UserDeactivateAnimGc();
|
sl@0
|
1112 |
if (ret!=KErrNone)
|
sl@0
|
1113 |
User::Leave(ret);
|
sl@0
|
1114 |
SetReply(reply);
|
sl@0
|
1115 |
}
|
sl@0
|
1116 |
break;
|
sl@0
|
1117 |
case EWsAnimDllOpCommand:
|
sl@0
|
1118 |
TRAP(ret,anim->Anim()->Command(*((TInt *)(pData.UInt+1)),(TAny *)(pData.UInt+2)));
|
sl@0
|
1119 |
if (ret!=KErrNone && ret!=CWsClient::EPanicLeave)
|
sl@0
|
1120 |
OwnerPanic(EWservPanicAnimLeave);
|
sl@0
|
1121 |
anim->UserDeactivateAnimGc();
|
sl@0
|
1122 |
break;
|
sl@0
|
1123 |
case EWsAnimDllOpDestroyInstance:
|
sl@0
|
1124 |
if (anim) // Added to go with changes described above
|
sl@0
|
1125 |
Remove(*pData.UInt);
|
sl@0
|
1126 |
break;
|
sl@0
|
1127 |
default:
|
sl@0
|
1128 |
break;
|
sl@0
|
1129 |
}
|
sl@0
|
1130 |
}
|
sl@0
|
1131 |
break;
|
sl@0
|
1132 |
default:
|
sl@0
|
1133 |
OwnerPanic(EWservPanicOpcode);
|
sl@0
|
1134 |
}
|
sl@0
|
1135 |
}
|
sl@0
|
1136 |
|
sl@0
|
1137 |
CAnimFbsFont::~CAnimFbsFont()
|
sl@0
|
1138 |
{}
|
sl@0
|
1139 |
|
sl@0
|
1140 |
CAnimFbsFont::CAnimFbsFont()
|
sl@0
|
1141 |
{}
|
sl@0
|
1142 |
|
sl@0
|
1143 |
CAnimFbsFont* CAnimFbsFont::NewL(TInt aHandle,TInt& aError)
|
sl@0
|
1144 |
{
|
sl@0
|
1145 |
CAnimFbsFont *font=new(ELeave) CAnimFbsFont();
|
sl@0
|
1146 |
font->iAccessCount=1;
|
sl@0
|
1147 |
aError=font->Duplicate(aHandle);
|
sl@0
|
1148 |
if (aError!=KErrNone)
|
sl@0
|
1149 |
{
|
sl@0
|
1150 |
delete font;
|
sl@0
|
1151 |
font=NULL;
|
sl@0
|
1152 |
}
|
sl@0
|
1153 |
return(font);
|
sl@0
|
1154 |
}
|
sl@0
|
1155 |
|
sl@0
|
1156 |
void CAnimFbsFont::Open()
|
sl@0
|
1157 |
{
|
sl@0
|
1158 |
iAccessCount++;
|
sl@0
|
1159 |
}
|
sl@0
|
1160 |
|
sl@0
|
1161 |
void CAnimFbsFont::Close()
|
sl@0
|
1162 |
{
|
sl@0
|
1163 |
if (--iAccessCount==0)
|
sl@0
|
1164 |
delete this;
|
sl@0
|
1165 |
}
|
sl@0
|
1166 |
|
sl@0
|
1167 |
|
sl@0
|
1168 |
/*MAnimGeneralFunctions*/
|
sl@0
|
1169 |
void MAnimGeneralFunctions::Reserved1() const
|
sl@0
|
1170 |
{}
|
sl@0
|
1171 |
|
sl@0
|
1172 |
void MAnimGeneralFunctions::Reserved2() const
|
sl@0
|
1173 |
{}
|
sl@0
|
1174 |
|
sl@0
|
1175 |
void MAnimGeneralFunctions::Reserved3() const
|
sl@0
|
1176 |
{}
|
sl@0
|
1177 |
|
sl@0
|
1178 |
|
sl@0
|
1179 |
/*MAnimGeneralFunctionsExtension*/
|
sl@0
|
1180 |
|
sl@0
|
1181 |
void MAnimGeneralFunctionsWindowExtension::Reserved1() const
|
sl@0
|
1182 |
{}
|
sl@0
|
1183 |
|
sl@0
|
1184 |
void MAnimGeneralFunctionsWindowExtension::Reserved2() const
|
sl@0
|
1185 |
{}
|
sl@0
|
1186 |
|
sl@0
|
1187 |
void MAnimGeneralFunctionsWindowExtension::Reserved3() const
|
sl@0
|
1188 |
{}
|
sl@0
|
1189 |
|
sl@0
|
1190 |
|
sl@0
|
1191 |
/*MAnimWindowFunctions*/
|
sl@0
|
1192 |
|
sl@0
|
1193 |
void MAnimWindowFunctions::Reserved() const
|
sl@0
|
1194 |
{}
|
sl@0
|
1195 |
|
sl@0
|
1196 |
void MAnimWindowFunctions::Reserved1() const
|
sl@0
|
1197 |
{}
|
sl@0
|
1198 |
|
sl@0
|
1199 |
void MAnimWindowFunctions::Reserved2() const
|
sl@0
|
1200 |
{}
|
sl@0
|
1201 |
|
sl@0
|
1202 |
void MAnimWindowFunctions::Reserved3() const
|
sl@0
|
1203 |
{}
|
sl@0
|
1204 |
|
sl@0
|
1205 |
|
sl@0
|
1206 |
/*MAnimFreeTimerWindowFunctions*/
|
sl@0
|
1207 |
|
sl@0
|
1208 |
void MAnimFreeTimerWindowFunctions::Reserved3() const
|
sl@0
|
1209 |
{}
|
sl@0
|
1210 |
|
sl@0
|
1211 |
|
sl@0
|
1212 |
/*MAnimSpriteFunctions*/
|
sl@0
|
1213 |
|
sl@0
|
1214 |
void MAnimSpriteFunctions::Reserved() const
|
sl@0
|
1215 |
{}
|
sl@0
|
1216 |
|
sl@0
|
1217 |
void MAnimSpriteFunctions::Reserved2() const
|
sl@0
|
1218 |
{}
|
sl@0
|
1219 |
|
sl@0
|
1220 |
void MAnimSpriteFunctions::Reserved3() const
|
sl@0
|
1221 |
{}
|
sl@0
|
1222 |
|
sl@0
|
1223 |
void MAnimSpriteFunctions::Reserved4() const
|
sl@0
|
1224 |
{}
|
sl@0
|
1225 |
|
sl@0
|
1226 |
/*MAnimGeneralFunctionsEventExtension*/
|
sl@0
|
1227 |
|
sl@0
|
1228 |
void MAnimGeneralFunctionsEventExtension::Reserved1() const
|
sl@0
|
1229 |
{}
|
sl@0
|
1230 |
|
sl@0
|
1231 |
void MAnimGeneralFunctionsEventExtension::Reserved2() const
|
sl@0
|
1232 |
{}
|