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 |
// Header for writing animated DLL add ons
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#if !defined(__W32ADLL_H__)
|
sl@0
|
19 |
#define __W32ADLL_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#if !defined(__W32STD_H__)
|
sl@0
|
22 |
#include <w32std.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
#if !defined(__BITSTD_H__)
|
sl@0
|
26 |
#include <bitstd.h>
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@publishedAll
|
sl@0
|
31 |
@deprecated
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
const TUint KWservAnimDllUidValue8=268435858;
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
@publishedAll
|
sl@0
|
37 |
@deprecated
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
const TUid KWservAnimDllUid8={KWservAnimDllUidValue8};
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
@publishedAll
|
sl@0
|
43 |
@released
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
const TUint KWservAnimDllUidValue16=268450594;
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
@publishedAll
|
sl@0
|
49 |
@released
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
const TUid KWservAnimDllUid16={KWservAnimDllUidValue16};
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
@publishedAll
|
sl@0
|
55 |
@released
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
const TUint KWservAnimDllUidValue=KWservAnimDllUidValue16;
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
@publishedAll
|
sl@0
|
61 |
@released
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
const TUid KWservAnimDllUid={KWservAnimDllUidValue};
|
sl@0
|
64 |
|
sl@0
|
65 |
//
|
sl@0
|
66 |
// Contains functions callable from animated DLLs
|
sl@0
|
67 |
//
|
sl@0
|
68 |
|
sl@0
|
69 |
|
sl@0
|
70 |
class TWindowInfo
|
sl@0
|
71 |
/** Animation window information.
|
sl@0
|
72 |
|
sl@0
|
73 |
Stores the window position and display mode for the animation.
|
sl@0
|
74 |
During a redraw of the animation window, the redraw regions
|
sl@0
|
75 |
can be retrieved by calling GetRedrawRegionAndRedrawShadowRegion().
|
sl@0
|
76 |
|
sl@0
|
77 |
@publishedAll
|
sl@0
|
78 |
@released
|
sl@0
|
79 |
@see TWindowInfo::GetRedrawRegionAndRedrawShadowRegion() */
|
sl@0
|
80 |
{
|
sl@0
|
81 |
public:
|
sl@0
|
82 |
/** The screen position. */
|
sl@0
|
83 |
TRect iScreenPos;
|
sl@0
|
84 |
/** The display mode.
|
sl@0
|
85 |
|
sl@0
|
86 |
This is the minimum display mode that the screen has to be in to display this window. */
|
sl@0
|
87 |
TDisplayMode iMode;
|
sl@0
|
88 |
public:
|
sl@0
|
89 |
/** Constructs an animation window information object. */
|
sl@0
|
90 |
inline TWindowInfo() : iRegionPair(NULL) {}
|
sl@0
|
91 |
public:
|
sl@0
|
92 |
/** Stores a pair of region pointers. */
|
sl@0
|
93 |
struct TRegionPair
|
sl@0
|
94 |
{
|
sl@0
|
95 |
const TRegion* iRegion1;
|
sl@0
|
96 |
const TRegion* iRegion2;
|
sl@0
|
97 |
};
|
sl@0
|
98 |
/** Returns the current redraw region and redraw shadow region.
|
sl@0
|
99 |
This function must only be called from an override of CWindowAnim's pure virtual Redraw function.
|
sl@0
|
100 |
The region pointers retrieved must not be used beyond the end of the Redraw override.
|
sl@0
|
101 |
@param aRedrawRegion The redraw region in screen coordinates.
|
sl@0
|
102 |
@param aRedrawShadowRegion The redraw shadow region in screen coordinates. */
|
sl@0
|
103 |
inline void GetRedrawRegionAndRedrawShadowRegion(const TRegion*& aRedrawRegion, const TRegion*& aRedrawShadowRegion) const
|
sl@0
|
104 |
{
|
sl@0
|
105 |
if (iRegionPair)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
aRedrawRegion=iRegionPair->iRegion1;
|
sl@0
|
108 |
aRedrawShadowRegion=iRegionPair->iRegion2;
|
sl@0
|
109 |
iRegionPair=NULL;
|
sl@0
|
110 |
}
|
sl@0
|
111 |
else
|
sl@0
|
112 |
{
|
sl@0
|
113 |
aRedrawRegion=NULL;
|
sl@0
|
114 |
aRedrawShadowRegion=NULL;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
}
|
sl@0
|
117 |
private:
|
sl@0
|
118 |
mutable const TRegionPair* iRegionPair;
|
sl@0
|
119 |
TAny *iFree2;
|
sl@0
|
120 |
friend class CWsAnim;
|
sl@0
|
121 |
};
|
sl@0
|
122 |
|
sl@0
|
123 |
|
sl@0
|
124 |
class MEventHandler
|
sl@0
|
125 |
/** Event handler interface.
|
sl@0
|
126 |
|
sl@0
|
127 |
The interface provides a function to handle raw events, e.g. key presses,
|
sl@0
|
128 |
pen events, power buttons etc. Raw events are passed to the OfferRawEvent()
|
sl@0
|
129 |
function when the MAnimGeneralFunctions::GetRawEvents() function has been
|
sl@0
|
130 |
called.
|
sl@0
|
131 |
|
sl@0
|
132 |
@publishedAll
|
sl@0
|
133 |
@released */
|
sl@0
|
134 |
{
|
sl@0
|
135 |
public:
|
sl@0
|
136 |
/** Handles raw events.
|
sl@0
|
137 |
|
sl@0
|
138 |
If the incoming event can be handled, the function should
|
sl@0
|
139 |
process it and then return true. If it cannot be processed the function should
|
sl@0
|
140 |
return false, and the event will be passed to other event handling code.
|
sl@0
|
141 |
|
sl@0
|
142 |
This function must be implemented in every animation DLL. If event
|
sl@0
|
143 |
handling is not required, the function should simply return false.
|
sl@0
|
144 |
|
sl@0
|
145 |
@param aRawEvent The raw event to be processed
|
sl@0
|
146 |
@return ETrue if the raw event is handled by this function, EFalse if the function
|
sl@0
|
147 |
chooses not to process it. */
|
sl@0
|
148 |
virtual TBool OfferRawEvent(const TRawEvent &aRawEvent)=0;
|
sl@0
|
149 |
};
|
sl@0
|
150 |
|
sl@0
|
151 |
enum TAnimNotifications
|
sl@0
|
152 |
/** Bit flags to be used by anims when registering for notifications */
|
sl@0
|
153 |
{
|
sl@0
|
154 |
/** Notify when direct screen access begins or ends.*/
|
sl@0
|
155 |
EDirectScreenAccess = 0x0001,
|
sl@0
|
156 |
/** Notify when the wserv heartbeat timer starts or stops. */
|
sl@0
|
157 |
EHeartbeatTimer = 0x0002,
|
sl@0
|
158 |
/** Notify when screen device changes.*/
|
sl@0
|
159 |
EScreenDeviceChange = 0x0004
|
sl@0
|
160 |
};
|
sl@0
|
161 |
//Forward Declaration.
|
sl@0
|
162 |
class MAnimGeneralFunctionsWindowExtension;
|
sl@0
|
163 |
class MAnimGeneralFunctionsEventExtension ;
|
sl@0
|
164 |
|
sl@0
|
165 |
class MAnimGeneralFunctions
|
sl@0
|
166 |
/** General animation utility functions interface.
|
sl@0
|
167 |
|
sl@0
|
168 |
The interface provides functions to set the animation timing,
|
sl@0
|
169 |
event functions, and other general functions.
|
sl@0
|
170 |
|
sl@0
|
171 |
You do not have to create an object of this type. The class is implemented
|
sl@0
|
172 |
by the window server and provides utility functions to all CAnim-derived
|
sl@0
|
173 |
classes via the CAnim::iFunctions pointer.
|
sl@0
|
174 |
|
sl@0
|
175 |
It is not intended for user derivation.
|
sl@0
|
176 |
|
sl@0
|
177 |
@publishedAll
|
sl@0
|
178 |
@released */
|
sl@0
|
179 |
{
|
sl@0
|
180 |
public:
|
sl@0
|
181 |
/** Animation synchronisation flags.
|
sl@0
|
182 |
|
sl@0
|
183 |
The animation can be synchronised to any of these values;
|
sl@0
|
184 |
the Animate() call will take place at the start of the new unit (day, hour, etc...). */
|
sl@0
|
185 |
enum TAnimSync
|
sl@0
|
186 |
{
|
sl@0
|
187 |
/** Not synchronised. Animate() is called after some number of flash cycles -
|
sl@0
|
188 |
set by SetSync(). */
|
sl@0
|
189 |
ESyncNone,
|
sl@0
|
190 |
/** Animate() every flash tick. This occurs twice a second, on the second and after
|
sl@0
|
191 |
7/12ths of a second, e.g. the function is called in a flash-on (7/12 seconds) -
|
sl@0
|
192 |
flash-off (5/12 seconds) cycle. */
|
sl@0
|
193 |
ESyncFlash,
|
sl@0
|
194 |
/** Animate() called as soon after every second as system activity allows. */
|
sl@0
|
195 |
ESyncSecond,
|
sl@0
|
196 |
/** Animate() called as soon after every minute as system activity allows. */
|
sl@0
|
197 |
ESyncMinute,
|
sl@0
|
198 |
/** Animate() called as soon after midnight every day as system activity allows. */
|
sl@0
|
199 |
ESyncDay,
|
sl@0
|
200 |
};
|
sl@0
|
201 |
enum
|
sl@0
|
202 |
{
|
sl@0
|
203 |
ENumberOfExtendedInterfaces=0,
|
sl@0
|
204 |
EWindowExtensionInterface,
|
sl@0
|
205 |
EEventExtentionInterface,
|
sl@0
|
206 |
EInterfaceCount, // Always keep at the end.
|
sl@0
|
207 |
};
|
sl@0
|
208 |
//Timing functions
|
sl@0
|
209 |
/** Calls the DLL's Animate() function then deactivates the graphics context.
|
sl@0
|
210 |
|
sl@0
|
211 |
This allows users to do drawing from their own active object.
|
sl@0
|
212 |
|
sl@0
|
213 |
Note:
|
sl@0
|
214 |
|
sl@0
|
215 |
If the user calls the CAnim-derived classes' Animate() function directly,
|
sl@0
|
216 |
or otherwise does drawing from their own active object, then this will not
|
sl@0
|
217 |
deactivate the graphics context. This causes the window server to panic the
|
sl@0
|
218 |
client.
|
sl@0
|
219 |
|
sl@0
|
220 |
Alternatively, use CFreeTimerWindowAnim, which allows you to deactivate the
|
sl@0
|
221 |
graphics context yourself.
|
sl@0
|
222 |
|
sl@0
|
223 |
@param aDateTime The parameter passed into the animation DLL's Animate()
|
sl@0
|
224 |
function. */
|
sl@0
|
225 |
virtual void Animate(TDateTime *aDateTime)=0;
|
sl@0
|
226 |
/** Sets the synchronisation mode.
|
sl@0
|
227 |
|
sl@0
|
228 |
This determines the time intervals between calls to the Animate() function.
|
sl@0
|
229 |
|
sl@0
|
230 |
@param aSyncMode The synchronisation mode. */
|
sl@0
|
231 |
virtual void SetSync(TAnimSync aSyncMode)=0;
|
sl@0
|
232 |
/** Sets the repeat interval.
|
sl@0
|
233 |
|
sl@0
|
234 |
If the synchronisation mode is TAnimSync::ESyncNone, then the Animate() function
|
sl@0
|
235 |
is called at intervals defined by some number of flash ticks. There are two
|
sl@0
|
236 |
flash ticks a second, with a 7/12 second - 5/12 second cycle. If the function
|
sl@0
|
237 |
is called when the synchronisation mode is not TAnimSync::ESyncNone, then
|
sl@0
|
238 |
the window server panics the client.
|
sl@0
|
239 |
|
sl@0
|
240 |
If the new interval is greater than the current countdown, then the call does
|
sl@0
|
241 |
not affect the current countdown. For example, if the countdown has 10 flash
|
sl@0
|
242 |
ticks remaining, and the interval is set to 20, the new interval does not
|
sl@0
|
243 |
apply until the current countdown is complete.
|
sl@0
|
244 |
|
sl@0
|
245 |
However if the new interval is less the current countdown, then the new interval
|
sl@0
|
246 |
applies immediately i.e. the countdown is reset to the interval value.
|
sl@0
|
247 |
|
sl@0
|
248 |
If the interval is set to zero the countdown stops, and the Animate() function
|
sl@0
|
249 |
is no longer called.
|
sl@0
|
250 |
|
sl@0
|
251 |
@param aInterval The number of flash ticks between calls to the Animate()
|
sl@0
|
252 |
function. */
|
sl@0
|
253 |
virtual void SetInterval(TInt aInterval)=0;
|
sl@0
|
254 |
/** Sets the next interval.
|
sl@0
|
255 |
|
sl@0
|
256 |
This function immediately resets the current countdown to the specified number
|
sl@0
|
257 |
of flash ticks, irrespective of its current value. After the countdown expires,
|
sl@0
|
258 |
the interval returns to its usual rate. Note that this may be zero (i.e.
|
sl@0
|
259 |
not at all).
|
sl@0
|
260 |
|
sl@0
|
261 |
To call this function, the synchronisation mode must be TAnimSync::ESyncNone,
|
sl@0
|
262 |
otherwise the window server panics the client.
|
sl@0
|
263 |
|
sl@0
|
264 |
Note: there are two flash ticks a second, with a 7/12 second - 5/12 second cycle.
|
sl@0
|
265 |
|
sl@0
|
266 |
@param aInterval The interval to the next Animate(). If the value is less
|
sl@0
|
267 |
than 1, it automatically gets set to 1.
|
sl@0
|
268 |
@see SetInterval() */
|
sl@0
|
269 |
virtual void SetNextInterval(TInt aInterval)=0;
|
sl@0
|
270 |
/** Gets the system time as it was when Animate() was last called.
|
sl@0
|
271 |
|
sl@0
|
272 |
@return The system time when Animate() was last called. */
|
sl@0
|
273 |
virtual TDateTime SystemTime() const=0;
|
sl@0
|
274 |
/** Tests the flash cycle state.
|
sl@0
|
275 |
|
sl@0
|
276 |
The flash cycle has 2 states: on (7/12 second) or off (5/12 second).
|
sl@0
|
277 |
|
sl@0
|
278 |
@return ETrue if in the on part of the flash cycle, otherwise EFalse. */
|
sl@0
|
279 |
virtual TBool FlashStateOn() const=0;
|
sl@0
|
280 |
/** Gets the current synchronisation mode.
|
sl@0
|
281 |
|
sl@0
|
282 |
@return The current sync mode. */
|
sl@0
|
283 |
virtual TAnimSync Sync() const=0;
|
sl@0
|
284 |
//Other functions generally useful
|
sl@0
|
285 |
/** Gets a pointer to the screen device.
|
sl@0
|
286 |
|
sl@0
|
287 |
For example, this might be used to gain access to twips to pixel conversion functions.
|
sl@0
|
288 |
|
sl@0
|
289 |
@return A pointer to the screen device. */
|
sl@0
|
290 |
virtual const CFbsScreenDevice *ScreenDevice()=0;
|
sl@0
|
291 |
/** Creates and duplicates a bitmap from a handle.
|
sl@0
|
292 |
|
sl@0
|
293 |
This function might be used to duplicate client side bitmaps on the server side.
|
sl@0
|
294 |
|
sl@0
|
295 |
@param aHandle A handle to the bitmap to be duplicated.
|
sl@0
|
296 |
@return A pointer to the duplicate bitmap. */
|
sl@0
|
297 |
virtual CFbsBitmap *DuplicateBitmapL(TInt aHandle)=0;
|
sl@0
|
298 |
/** Creates and duplicates a font from a handle.
|
sl@0
|
299 |
|
sl@0
|
300 |
This function might be used to duplicate client side fonts on the server side.
|
sl@0
|
301 |
|
sl@0
|
302 |
@param aHandle A handle to the font to be duplicated.
|
sl@0
|
303 |
@return A pointer to the duplicate font. */
|
sl@0
|
304 |
virtual CFbsFont *DuplicateFontL(TInt aHandle)=0;
|
sl@0
|
305 |
/** Closes a duplicate font.
|
sl@0
|
306 |
|
sl@0
|
307 |
@param Pointer to the duplicate font.
|
sl@0
|
308 |
@see DuplicateFontL() */
|
sl@0
|
309 |
virtual void CloseFont(CFbsFont *)=0;
|
sl@0
|
310 |
/** Gets a reference to the calling client's thread.
|
sl@0
|
311 |
|
sl@0
|
312 |
@return A reference to the calling client's thread. */
|
sl@0
|
313 |
virtual const RThread &Client()=0;
|
sl@0
|
314 |
/** Send a reply to the client process in response to a request
|
sl@0
|
315 |
from the client.
|
sl@0
|
316 |
|
sl@0
|
317 |
@see RAnim::CommandReply()
|
sl@0
|
318 |
|
sl@0
|
319 |
@param aDes The data to be sent back to the client
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
virtual void ReplyBuf(const TDesC8 &aDes)=0;
|
sl@0
|
322 |
/** Send a reply to the client process in response to a request
|
sl@0
|
323 |
from the client.
|
sl@0
|
324 |
|
sl@0
|
325 |
@see RAnim::CommandReply()
|
sl@0
|
326 |
|
sl@0
|
327 |
@param aDes The data to be sent back to the client
|
sl@0
|
328 |
*/
|
sl@0
|
329 |
virtual void ReplyBuf(const TDesC16 &aDes)=0;
|
sl@0
|
330 |
/** Panics the client.
|
sl@0
|
331 |
|
sl@0
|
332 |
This will result in the client thread being destroyed. */
|
sl@0
|
333 |
virtual void Panic() const=0;
|
sl@0
|
334 |
|
sl@0
|
335 |
//Event functions
|
sl@0
|
336 |
|
sl@0
|
337 |
/** Switches animation raw event handling on and off.
|
sl@0
|
338 |
|
sl@0
|
339 |
If raw event handling is switched on, then raw events, e.g. pointer, key, or power events
|
sl@0
|
340 |
are all offered to the animation event handling code's MEventHandler::OfferRawEvent().
|
sl@0
|
341 |
|
sl@0
|
342 |
If Animation works in a window for which advanced pointers have been enabled,
|
sl@0
|
343 |
then after switching on raw event handling it will receive pointer events from all
|
sl@0
|
344 |
detected pointers. Otherwise it will receive events only from one emulated pointer.
|
sl@0
|
345 |
|
sl@0
|
346 |
@param aGetEvents If ETrue, raw events are passed to the animation
|
sl@0
|
347 |
event handling code. If EFalse, events are not passed to the animation.
|
sl@0
|
348 |
@see RWindowBase::EnableAdvancedPointers() */
|
sl@0
|
349 |
virtual void GetRawEvents(TBool aGetEvents) const=0;
|
sl@0
|
350 |
/** Posts a raw event, just as if it had come from the kernel.
|
sl@0
|
351 |
|
sl@0
|
352 |
If aRawEvent has pointer-related type (move, switch on, down, up or out of range),
|
sl@0
|
353 |
then its Z coordinate and iPointerNumber fields will be validated and may be
|
sl@0
|
354 |
overwritten by WSERV in order to guarantee correct behaviour depending on:
|
sl@0
|
355 |
1. Pointer Pressure and Proximity support on current platform.
|
sl@0
|
356 |
2. Multiple pointers support on current platform.
|
sl@0
|
357 |
3. Animation's awareness of these fields. If Animation works in a window
|
sl@0
|
358 |
for which advanced pointers have been enabled, it is assumed that it has
|
sl@0
|
359 |
initialized these fields. Otherwise WSERV will assume that these fields have
|
sl@0
|
360 |
not been provided and may overwrite them with most appropriate values.
|
sl@0
|
361 |
For more information about event validation, please refer to System Documentation.
|
sl@0
|
362 |
|
sl@0
|
363 |
@param aRawEvent The raw event
|
sl@0
|
364 |
@see RWindowBase::EnableAdvancedPointers() */
|
sl@0
|
365 |
virtual void PostRawEvent(const TRawEvent &aRawEvent) const=0;
|
sl@0
|
366 |
/** Posts a key event.
|
sl@0
|
367 |
|
sl@0
|
368 |
The function is similar to PostRawEvent() but should be
|
sl@0
|
369 |
used for posting key events.
|
sl@0
|
370 |
|
sl@0
|
371 |
@param aRawEvent The key event. */
|
sl@0
|
372 |
virtual void PostKeyEvent(const TKeyEvent &aRawEvent) const=0;
|
sl@0
|
373 |
/** Get the address of an object which can retrieve information from and send
|
sl@0
|
374 |
information to the client-side.
|
sl@0
|
375 |
|
sl@0
|
376 |
@return A pointer to RMessagePtr2. Complete must be called on the returned object (or a
|
sl@0
|
377 |
copy of it) if and only if Message is called from an override of CAnim's CommandReplyL which
|
sl@0
|
378 |
has been caused by a client-side RAnim::AsyncCommandReply call. If Message is called outside
|
sl@0
|
379 |
an override of CAnim's CommandReplyL or outside an override of CWindowAnim's ConstructL or
|
sl@0
|
380 |
CSpriteAnim's ConstructL, the it returns NULL.
|
sl@0
|
381 |
@see RMessagePtr2 */
|
sl@0
|
382 |
virtual const RMessagePtr2* Message()=0; // replaces Reserved1
|
sl@0
|
383 |
/**Returns an extension interface, maybe extended further in the future.
|
sl@0
|
384 |
@param aInterfaceId The ID of the interface to return.
|
sl@0
|
385 |
@return A pointer to the extension interface.
|
sl@0
|
386 |
When aInterface=0 (ENumberOfExtendedInterfaces), the number of interfaces is returned (currently 2).
|
sl@0
|
387 |
When aInterface=1 (EWindowExtensionInterface), a pointer to the Window Extension interface is returned.
|
sl@0
|
388 |
When aInterface=2 (EEventExtentionInterface), a pointer to the Event Extension interface is returned.
|
sl@0
|
389 |
*/
|
sl@0
|
390 |
virtual TAny* ExtendedInterface(TInt aInterface)=0; // replaces Reserved2
|
sl@0
|
391 |
|
sl@0
|
392 |
/** Register to receive notifications.
|
sl@0
|
393 |
@param aNotifications A bitset of TAnimNotifications values indicating which notifications are required
|
sl@0
|
394 |
@return One of the system wide error codes
|
sl@0
|
395 |
*/
|
sl@0
|
396 |
virtual TInt RegisterForNotifications(TUint32 aNotifications)=0;
|
sl@0
|
397 |
/*
|
sl@0
|
398 |
Return number of ExtendedInterfaces. */
|
sl@0
|
399 |
inline TInt NumberOfExtendedInterfaces()
|
sl@0
|
400 |
{
|
sl@0
|
401 |
return reinterpret_cast<TInt>(ExtendedInterface(ENumberOfExtendedInterfaces));
|
sl@0
|
402 |
}
|
sl@0
|
403 |
/** Gets access to Window Extension utility functions.
|
sl@0
|
404 |
@return A pointer to a class containing functions for working with Window. */
|
sl@0
|
405 |
inline MAnimGeneralFunctionsWindowExtension* WindowExtension()
|
sl@0
|
406 |
{
|
sl@0
|
407 |
return static_cast<MAnimGeneralFunctionsWindowExtension*>(ExtendedInterface(EWindowExtensionInterface));
|
sl@0
|
408 |
}
|
sl@0
|
409 |
/** Gets access to EventExtension utility functions.
|
sl@0
|
410 |
@return A pointer to a class containing functions for working with Event. */
|
sl@0
|
411 |
inline MAnimGeneralFunctionsEventExtension* EventExtension()
|
sl@0
|
412 |
{
|
sl@0
|
413 |
return static_cast<MAnimGeneralFunctionsEventExtension*>(ExtendedInterface(EEventExtentionInterface));
|
sl@0
|
414 |
}
|
sl@0
|
415 |
private:
|
sl@0
|
416 |
virtual void Reserved1() const;
|
sl@0
|
417 |
virtual void Reserved2() const;
|
sl@0
|
418 |
virtual void Reserved3() const;
|
sl@0
|
419 |
};
|
sl@0
|
420 |
|
sl@0
|
421 |
/* Structure for passing window configuration information. Currently transparancey
|
sl@0
|
422 |
related configuration information is supported, though this may be added to, as
|
sl@0
|
423 |
apprioriate.
|
sl@0
|
424 |
|
sl@0
|
425 |
@publishedAll
|
sl@0
|
426 |
@released
|
sl@0
|
427 |
*/
|
sl@0
|
428 |
class TWindowConfig
|
sl@0
|
429 |
{
|
sl@0
|
430 |
public:
|
sl@0
|
431 |
/** Transparency flags.
|
sl@0
|
432 |
|
sl@0
|
433 |
Used to represent transparency configuration of the window. */
|
sl@0
|
434 |
enum
|
sl@0
|
435 |
{
|
sl@0
|
436 |
/** Transparency is enabled on the window. */
|
sl@0
|
437 |
ETransparencyEnabled=0x0001,
|
sl@0
|
438 |
/** Window transparency uses alpha blending channel. */
|
sl@0
|
439 |
EAlphaBlendedTransparency=0x0002,
|
sl@0
|
440 |
};
|
sl@0
|
441 |
public:
|
sl@0
|
442 |
/** Indicate configuration of window, using enumerations defined within this class. */
|
sl@0
|
443 |
TInt iFlags;
|
sl@0
|
444 |
private:
|
sl@0
|
445 |
TInt iReserved0;
|
sl@0
|
446 |
TInt iReserved1;
|
sl@0
|
447 |
TInt iReserved2;
|
sl@0
|
448 |
};
|
sl@0
|
449 |
|
sl@0
|
450 |
class MAnimGeneralFunctionsWindowExtension
|
sl@0
|
451 |
/** General Window utility functions interface.
|
sl@0
|
452 |
|
sl@0
|
453 |
The member functions define the interface for querying and manipulating
|
sl@0
|
454 |
the window and screen attributes.
|
sl@0
|
455 |
|
sl@0
|
456 |
You obtain one by calling: iFunctions->ExtendedInterface(MAnimGeneralFunctions::EWindowExtensionInterface)
|
sl@0
|
457 |
and casting the result.
|
sl@0
|
458 |
|
sl@0
|
459 |
It is not intended for user derivation.
|
sl@0
|
460 |
|
sl@0
|
461 |
@publishedAll
|
sl@0
|
462 |
@released */
|
sl@0
|
463 |
{
|
sl@0
|
464 |
public:
|
sl@0
|
465 |
/** Class contains the information pertaining to a window group: name, priority,
|
sl@0
|
466 |
focusability. */
|
sl@0
|
467 |
class TWindowGroupInfo
|
sl@0
|
468 |
{
|
sl@0
|
469 |
public:
|
sl@0
|
470 |
enum
|
sl@0
|
471 |
{
|
sl@0
|
472 |
/** Window is focusable flag. */
|
sl@0
|
473 |
EIsFocusable=0x0001,
|
sl@0
|
474 |
};
|
sl@0
|
475 |
public:
|
sl@0
|
476 |
/** Returns whether or not the window is focusable.
|
sl@0
|
477 |
@return ETrue if focusable, else returns EFalse. */
|
sl@0
|
478 |
inline TBool IsFocusable() const {return iFlags&EIsFocusable;}
|
sl@0
|
479 |
public:
|
sl@0
|
480 |
/* Window group attributes. */
|
sl@0
|
481 |
TInt iId;
|
sl@0
|
482 |
TUint32 iFlags;
|
sl@0
|
483 |
TInt iOrdinalPriority;
|
sl@0
|
484 |
TInt iNameLength;
|
sl@0
|
485 |
TInt iParentId;
|
sl@0
|
486 |
};
|
sl@0
|
487 |
public:
|
sl@0
|
488 |
/** Returns the total number of screens.
|
sl@0
|
489 |
@return The total number of screens. */
|
sl@0
|
490 |
virtual TInt Screens() const=0;
|
sl@0
|
491 |
|
sl@0
|
492 |
/** Returns the number of the screen which is currently in focus.
|
sl@0
|
493 |
@return The number of the screen which is currently in focus.*/
|
sl@0
|
494 |
virtual TInt FocusScreens() const=0;
|
sl@0
|
495 |
|
sl@0
|
496 |
/** Changes the focused screen.
|
sl@0
|
497 |
@param aScreenNo New screen number. */
|
sl@0
|
498 |
virtual void SetFocusScreen(TInt aScreenNo)=0;
|
sl@0
|
499 |
|
sl@0
|
500 |
/** Returns the number of window groups available for the specified screen.
|
sl@0
|
501 |
|
sl@0
|
502 |
@param aScreen The screen number.
|
sl@0
|
503 |
@return The number of window groups. */
|
sl@0
|
504 |
virtual TInt WindowGroups(TInt aScreen) const=0;
|
sl@0
|
505 |
|
sl@0
|
506 |
/** Takes a screen number and an ordinal position and returns the complete window
|
sl@0
|
507 |
group information of the specified window. If the window group does not exist, the
|
sl@0
|
508 |
function returns EFalse.
|
sl@0
|
509 |
|
sl@0
|
510 |
Note: the ordinal position specified should be the total or full ordinal position
|
sl@0
|
511 |
of all group windows of all priorities on that screen.
|
sl@0
|
512 |
|
sl@0
|
513 |
@param aInfo on return, complete window information.
|
sl@0
|
514 |
@param aScreen Screen number.
|
sl@0
|
515 |
@param aFullOrdinalPosition Ordinal position of the window.
|
sl@0
|
516 |
@return ETrue if window group information exists, EFalse otherwise. */
|
sl@0
|
517 |
virtual TBool WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const=0;
|
sl@0
|
518 |
|
sl@0
|
519 |
/** Takes a screen number and an ordinal position and returns the window group name.
|
sl@0
|
520 |
If the window group does not exist, the function returns false.
|
sl@0
|
521 |
|
sl@0
|
522 |
Note: the ordinal position specified should be the total or full ordinal position of
|
sl@0
|
523 |
all group windows of all priorities on that screen.
|
sl@0
|
524 |
|
sl@0
|
525 |
Note: if the name does not fit into the descriptor provided then it will be truncated.
|
sl@0
|
526 |
|
sl@0
|
527 |
@param aWindowName On return, the window group name.
|
sl@0
|
528 |
@param aScreen The screen number.
|
sl@0
|
529 |
@param aFullOrdinalPosition The ordinal position of the window.
|
sl@0
|
530 |
@return ETrue if the window group name exists, EFalse otherwise. */
|
sl@0
|
531 |
virtual TBool WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const=0;
|
sl@0
|
532 |
|
sl@0
|
533 |
/** Changes the ordinal position and priority of the window group with the specified ID.
|
sl@0
|
534 |
|
sl@0
|
535 |
@param aWindowGroupId The window group ID.
|
sl@0
|
536 |
@param aPos The ordinal position to move the window to.
|
sl@0
|
537 |
@param aOrdinalPriority The new ordinal priority of the window.
|
sl@0
|
538 |
@return KErrNotFound if there is no window group with the specified ID, KErrNone otherwise. */
|
sl@0
|
539 |
virtual TInt SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)=0;
|
sl@0
|
540 |
|
sl@0
|
541 |
/** Accessor for window configuration.
|
sl@0
|
542 |
|
sl@0
|
543 |
@param aWindowConfig Gets filled in with window configuration details. */
|
sl@0
|
544 |
virtual void WindowConfig(TWindowConfig& aWindowConfig) const=0;
|
sl@0
|
545 |
private:
|
sl@0
|
546 |
virtual void Reserved1() const;
|
sl@0
|
547 |
virtual void Reserved2() const;
|
sl@0
|
548 |
virtual void Reserved3() const;
|
sl@0
|
549 |
};
|
sl@0
|
550 |
|
sl@0
|
551 |
class MAnimGeneralFunctionsEventExtension
|
sl@0
|
552 |
/** Event utility functions interface.
|
sl@0
|
553 |
|
sl@0
|
554 |
The member functions define the interface for generate repeated key events .
|
sl@0
|
555 |
|
sl@0
|
556 |
It is not intended for user derivation.
|
sl@0
|
557 |
*/
|
sl@0
|
558 |
{
|
sl@0
|
559 |
public:
|
sl@0
|
560 |
/** Posts a key event.
|
sl@0
|
561 |
|
sl@0
|
562 |
The function is similar to PostKeyEvent() but should be
|
sl@0
|
563 |
used for posting repeated key events.
|
sl@0
|
564 |
|
sl@0
|
565 |
@param aRawEvent The key event.
|
sl@0
|
566 |
@param aRepeats value */
|
sl@0
|
567 |
virtual void PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const=0;
|
sl@0
|
568 |
|
sl@0
|
569 |
private:
|
sl@0
|
570 |
virtual void Reserved1() const;
|
sl@0
|
571 |
virtual void Reserved2() const;
|
sl@0
|
572 |
};
|
sl@0
|
573 |
|
sl@0
|
574 |
class MAnimWindowFunctions
|
sl@0
|
575 |
/** Window utility functions interface.
|
sl@0
|
576 |
|
sl@0
|
577 |
The member functions define the interface for querying and manipulating
|
sl@0
|
578 |
the window in which the animation takes place.
|
sl@0
|
579 |
|
sl@0
|
580 |
You do not have to create an object of this type. The class is implemented
|
sl@0
|
581 |
by the window server, and provides these utility functions to all CWindowAnim
|
sl@0
|
582 |
and CFreeTimerWindowAnim derived classes via the iWindowFunctions pointer.
|
sl@0
|
583 |
|
sl@0
|
584 |
It is not intended for user derivation.
|
sl@0
|
585 |
|
sl@0
|
586 |
@publishedAll
|
sl@0
|
587 |
@released */
|
sl@0
|
588 |
{
|
sl@0
|
589 |
public:
|
sl@0
|
590 |
/** Activates the graphics context.
|
sl@0
|
591 |
|
sl@0
|
592 |
This function should be called to enable drawing in the CAnim-derived classes'
|
sl@0
|
593 |
Command(), CommandReplyL(), Animate(), or FocusChanged() functions.
|
sl@0
|
594 |
|
sl@0
|
595 |
Note: this function is called automatically by the animation DLL framework in the
|
sl@0
|
596 |
Redraw() function. */
|
sl@0
|
597 |
virtual void ActivateGc()=0;
|
sl@0
|
598 |
/** Sets the rectangle that this animation will draw to.
|
sl@0
|
599 |
|
sl@0
|
600 |
This function must be called as part of the initialisation/construction of
|
sl@0
|
601 |
the CAnim-derived object, i.e. in CAnim::ConstructL(). This is so that the
|
sl@0
|
602 |
window server knows which area the animation is operating in. Anything that
|
sl@0
|
603 |
is drawn by the animation outside this rectangle may not be redrawn correctly
|
sl@0
|
604 |
as the window server uses this rectangle to decide when the animation should
|
sl@0
|
605 |
be redrawn.
|
sl@0
|
606 |
|
sl@0
|
607 |
@param aRect The rectangle to be drawn to. */
|
sl@0
|
608 |
virtual void SetRect(const TRect &aRect)=0;
|
sl@0
|
609 |
/** Gets the window size.
|
sl@0
|
610 |
|
sl@0
|
611 |
@return The window size, in pixels. */
|
sl@0
|
612 |
virtual TSize WindowSize() const=0;
|
sl@0
|
613 |
/** Tests whether to draw the animation.
|
sl@0
|
614 |
|
sl@0
|
615 |
If the window is completely hidden, there is normally no need to draw
|
sl@0
|
616 |
the animation. However in some conditions the animation should be drawn even
|
sl@0
|
617 |
if it is obscured. The window server is aware of these cases, and returns
|
sl@0
|
618 |
ETrue if it is not safe to draw the animation.
|
sl@0
|
619 |
|
sl@0
|
620 |
@return True if the window is completely hidden and there is no requirement
|
sl@0
|
621 |
to continue drawing the animation, otherwise false. */
|
sl@0
|
622 |
virtual TBool IsHidden()=0;
|
sl@0
|
623 |
/** Sets the visibility of the window the animation is drawing to.
|
sl@0
|
624 |
|
sl@0
|
625 |
This does the same as RWindowBase::SetVisible().
|
sl@0
|
626 |
|
sl@0
|
627 |
@param aState True for visible, false otherwise. */
|
sl@0
|
628 |
virtual void SetVisible(TBool aState)=0;
|
sl@0
|
629 |
/** Forces a redraw of a rectangular part of the window.
|
sl@0
|
630 |
|
sl@0
|
631 |
The function causes a redraw message on the part of the window specified,
|
sl@0
|
632 |
which provides a non-immediate way to do drawing.
|
sl@0
|
633 |
|
sl@0
|
634 |
It can be used to redraw the whole of the window, not just the part used by
|
sl@0
|
635 |
the animation.
|
sl@0
|
636 |
|
sl@0
|
637 |
@param aRect The rectangle to be redrawn. These co-ordinates are relative
|
sl@0
|
638 |
to the origin of the window. */
|
sl@0
|
639 |
virtual void Invalidate(const TRect &aRect)=0;
|
sl@0
|
640 |
/** Gets window information.
|
sl@0
|
641 |
|
sl@0
|
642 |
@param aData The window information. */
|
sl@0
|
643 |
virtual void Parameters(TWindowInfo &aData)=0;
|
sl@0
|
644 |
/** Gets the visible region.
|
sl@0
|
645 |
|
sl@0
|
646 |
This region is the area of the visible window which
|
sl@0
|
647 |
is currently unshadowed. If there is not enough memory to calculate this region
|
sl@0
|
648 |
then aRegion's error flag is set.
|
sl@0
|
649 |
|
sl@0
|
650 |
@param aRegion The visible region. */
|
sl@0
|
651 |
virtual void VisibleRegion(TRegion& aRegion)=0;
|
sl@0
|
652 |
//virtual void CopyScreen(CFbsBitGc *aBitmapGc,TRect aRect)=0;
|
sl@0
|
653 |
private:
|
sl@0
|
654 |
virtual void Reserved() const;
|
sl@0
|
655 |
virtual void Reserved1() const;
|
sl@0
|
656 |
virtual void Reserved2() const;
|
sl@0
|
657 |
virtual void Reserved3() const;
|
sl@0
|
658 |
};
|
sl@0
|
659 |
|
sl@0
|
660 |
|
sl@0
|
661 |
class MAnimFreeTimerWindowFunctions : public MAnimWindowFunctions
|
sl@0
|
662 |
/** Free timer animation utility functions interface.
|
sl@0
|
663 |
|
sl@0
|
664 |
The class inherits functions from MAnimWindowFunctions, and defines the additional
|
sl@0
|
665 |
interface required for window operations which support animations with their
|
sl@0
|
666 |
own timers.
|
sl@0
|
667 |
|
sl@0
|
668 |
You do NOT have to create an object of this type. The class is implemented
|
sl@0
|
669 |
by the window server, and provides utility functions to all CFreeTimerWindowAnim
|
sl@0
|
670 |
derived classes via the WindowFunctions() member.
|
sl@0
|
671 |
|
sl@0
|
672 |
It is not intended for user derivation.
|
sl@0
|
673 |
|
sl@0
|
674 |
@publishedAll
|
sl@0
|
675 |
@released */
|
sl@0
|
676 |
{
|
sl@0
|
677 |
public:
|
sl@0
|
678 |
/** Deactivates the graphics context.
|
sl@0
|
679 |
|
sl@0
|
680 |
This function is used in the context of a CFreeTimerWindowAnim derived class
|
sl@0
|
681 |
when writing animation DLLs with their own timer. Within the timer's RunL(),
|
sl@0
|
682 |
the ActivateGc() function should be called prior to drawing to the window.
|
sl@0
|
683 |
DeactivateGc() should be called after drawing is finished. */
|
sl@0
|
684 |
virtual void DeactivateGc()=0;
|
sl@0
|
685 |
/** Forces the screen to update. */
|
sl@0
|
686 |
virtual void Update()=0;
|
sl@0
|
687 |
private:
|
sl@0
|
688 |
virtual void Reserved3() const;
|
sl@0
|
689 |
};
|
sl@0
|
690 |
|
sl@0
|
691 |
class MAnimSpriteFunctions
|
sl@0
|
692 |
/** Sprite animation utility functions interface.
|
sl@0
|
693 |
|
sl@0
|
694 |
The interface includes functions for querying and manipulating a sprite.
|
sl@0
|
695 |
|
sl@0
|
696 |
You do NOT have to create an object of this type. The class is implemented
|
sl@0
|
697 |
by the window server, and provides utility functions to all CSpriteAnim derived
|
sl@0
|
698 |
classes via the CSpriteAnim::iSpriteFunctions pointer.
|
sl@0
|
699 |
|
sl@0
|
700 |
It is not intended for user derivation.
|
sl@0
|
701 |
|
sl@0
|
702 |
@publishedAll
|
sl@0
|
703 |
@released */
|
sl@0
|
704 |
{
|
sl@0
|
705 |
public:
|
sl@0
|
706 |
/** Gets sprite member data.
|
sl@0
|
707 |
|
sl@0
|
708 |
Each member of the sprite is effectively a bitmap, which is displayed for a
|
sl@0
|
709 |
different amount of time.
|
sl@0
|
710 |
|
sl@0
|
711 |
@param aMember The index of the sprite member for which information is required.
|
sl@0
|
712 |
@return A pointer to the sprite member. */
|
sl@0
|
713 |
virtual TSpriteMember *GetSpriteMember(TInt aMember) const=0;
|
sl@0
|
714 |
/** Redraws part of a sprite.
|
sl@0
|
715 |
Updates a sprite on the screen, possibly after the bitmap for a particular
|
sl@0
|
716 |
sprite member has been changed.
|
sl@0
|
717 |
|
sl@0
|
718 |
Use the aRect parameter to specify the (small) part of the sprite which has been changed,
|
sl@0
|
719 |
then any flicker will only occur in this rectangle.
|
sl@0
|
720 |
|
sl@0
|
721 |
A full update used to be required if you had removed pixels from the mask, i.e. made
|
sl@0
|
722 |
pixels in the sprite transparent when they were not before. If drawing is
|
sl@0
|
723 |
additive, e.g. you are using a mask or the draw mode is EDrawModePEN, a partial
|
sl@0
|
724 |
update used to be possible. But current versions of the window-server always do full back to front rendering.
|
sl@0
|
725 |
|
sl@0
|
726 |
Note: if the sprite member aMember is not visible then there is no need for a change
|
sl@0
|
727 |
to the display, so the aRect and aFullUpdate parameters are ignored.
|
sl@0
|
728 |
|
sl@0
|
729 |
@param aMember The index of the sprite member that is to be updated.
|
sl@0
|
730 |
@param aRect The part of the sprite member which has changed.
|
sl@0
|
731 |
@param aFullUpdate Not used. Wserv now always do full back to front rendering. */
|
sl@0
|
732 |
virtual void UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)=0;
|
sl@0
|
733 |
/** Turns a sprite on or off.
|
sl@0
|
734 |
|
sl@0
|
735 |
In effect this makes the sprite bitmap visible.
|
sl@0
|
736 |
|
sl@0
|
737 |
@param aActive ETrue to turn sprite on. EFalse to turn it off. */
|
sl@0
|
738 |
virtual void Activate(TBool aActive)=0;
|
sl@0
|
739 |
/** Finishes constructing the sprite.
|
sl@0
|
740 |
|
sl@0
|
741 |
It also sets the currently displayed sprite member to zero.
|
sl@0
|
742 |
|
sl@0
|
743 |
This function must be called after members change size. */
|
sl@0
|
744 |
virtual void SizeChangedL()=0;
|
sl@0
|
745 |
/** Set the sprite's position.
|
sl@0
|
746 |
|
sl@0
|
747 |
@param aPos The new position of the sprite. */
|
sl@0
|
748 |
virtual void SetPosition(const TPoint &aPos)=0;
|
sl@0
|
749 |
private:
|
sl@0
|
750 |
virtual void Reserved() const;
|
sl@0
|
751 |
public:
|
sl@0
|
752 |
/** Returns the visibility of the sprite.
|
sl@0
|
753 |
|
sl@0
|
754 |
A sprite can be seen if it is neither obscured by another window nor hidden.
|
sl@0
|
755 |
|
sl@0
|
756 |
@return ETrue if the sprite can be seen, EFalse otherwise. */
|
sl@0
|
757 |
virtual TBool SpriteCanBeSeen() const = 0;
|
sl@0
|
758 |
private:
|
sl@0
|
759 |
virtual void Reserved2() const;
|
sl@0
|
760 |
virtual void Reserved3() const;
|
sl@0
|
761 |
virtual void Reserved4() const;
|
sl@0
|
762 |
};
|
sl@0
|
763 |
|
sl@0
|
764 |
|
sl@0
|
765 |
class CAnimGc : public CBitmapContext
|
sl@0
|
766 |
/** Animation graphics context.
|
sl@0
|
767 |
|
sl@0
|
768 |
An object of this type is linked into CAnim by the window server, which allows
|
sl@0
|
769 |
you to draw to the animation window. The object's functions allow you to set
|
sl@0
|
770 |
and cancel the clipping region, and to draw to the visible window using
|
sl@0
|
771 |
the inherited CBitmapContext functions.
|
sl@0
|
772 |
|
sl@0
|
773 |
@publishedAll
|
sl@0
|
774 |
@released */
|
sl@0
|
775 |
{
|
sl@0
|
776 |
public:
|
sl@0
|
777 |
/** Sets the clipping region.
|
sl@0
|
778 |
|
sl@0
|
779 |
Only the parts of the animation which are within the clipping region are drawn.
|
sl@0
|
780 |
|
sl@0
|
781 |
@param aRegion The clipping region. */
|
sl@0
|
782 |
virtual TInt SetClippingRegion(const TRegion &aRegion)=0;
|
sl@0
|
783 |
/** Cancels the clipping region.
|
sl@0
|
784 |
|
sl@0
|
785 |
@see SetClippingRegion() */
|
sl@0
|
786 |
virtual void CancelClippingRegion()=0;
|
sl@0
|
787 |
};
|
sl@0
|
788 |
|
sl@0
|
789 |
class CWsAnim; // Forward ref for friend declaration
|
sl@0
|
790 |
|
sl@0
|
791 |
|
sl@0
|
792 |
class CAnim : public CBase , public MEventHandler
|
sl@0
|
793 |
/** Server side animated object base interface.
|
sl@0
|
794 |
|
sl@0
|
795 |
Animations implement this interface, which is called by the window server
|
sl@0
|
796 |
to pass commands from clients, perform a step in the animation, or to pass
|
sl@0
|
797 |
window server events (if required) so that the animation can handle them
|
sl@0
|
798 |
before the application.
|
sl@0
|
799 |
|
sl@0
|
800 |
The functions are all pure virtual, and must be implemented in
|
sl@0
|
801 |
the derived class to provide server side behaviour. The functions will be
|
sl@0
|
802 |
called by the window server with optional arguments passed in from the client
|
sl@0
|
803 |
side animation class RAnim.
|
sl@0
|
804 |
|
sl@0
|
805 |
You should derive from CWindowAnim, CFreeTimerWindowAnim or CSpriteAnim,
|
sl@0
|
806 |
depending on whether the animation is to draw to a sprite or a window,
|
sl@0
|
807 |
rather than directly from this class.
|
sl@0
|
808 |
|
sl@0
|
809 |
The derived class is constructed in the DLL factory class CAnimDll::CreateInstanceL()
|
sl@0
|
810 |
function.
|
sl@0
|
811 |
|
sl@0
|
812 |
The operation to perform an animation step is called by the window server
|
sl@0
|
813 |
on a timer. The timing properties are set through an MAnimGeneralFunctions
|
sl@0
|
814 |
member, which also provides other utility functions.
|
sl@0
|
815 |
|
sl@0
|
816 |
@publishedAll
|
sl@0
|
817 |
@released */
|
sl@0
|
818 |
{
|
sl@0
|
819 |
public:
|
sl@0
|
820 |
/** Implements client-side initiated commands, returning a value.
|
sl@0
|
821 |
|
sl@0
|
822 |
The window server calls this function in response to application calls to
|
sl@0
|
823 |
the client side command function RAnim::CommandReplyL(). The arguments passed
|
sl@0
|
824 |
to the function by the window server are the same as were used on the client
|
sl@0
|
825 |
side function call.
|
sl@0
|
826 |
|
sl@0
|
827 |
This function returns values to the client side, and should be used to return
|
sl@0
|
828 |
error codes for commands which might leave.
|
sl@0
|
829 |
|
sl@0
|
830 |
@param aOpcode Opcode understood by the class.
|
sl@0
|
831 |
@param aArgs Arguments packaged on the client side, for example as a struct
|
sl@0
|
832 |
of a type determined by the aOpcode argument. These mirror the aArgs argument
|
sl@0
|
833 |
passed in to RAnim::CommandReply().
|
sl@0
|
834 |
@return Value passed back to client side function when this function completes.
|
sl@0
|
835 |
Typically this would be KErrNone or another of the system-wide error codes.
|
sl@0
|
836 |
However any value may be returned to the client side.
|
sl@0
|
837 |
@see RAnim */
|
sl@0
|
838 |
virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs)=0;
|
sl@0
|
839 |
/** Implements client-side initiated commands.
|
sl@0
|
840 |
|
sl@0
|
841 |
The window server calls this function in response to application calls to
|
sl@0
|
842 |
the client side command function RAnim::Command(). The arguments passed to
|
sl@0
|
843 |
the function by the window server are the same as were used on the client
|
sl@0
|
844 |
side function call.
|
sl@0
|
845 |
|
sl@0
|
846 |
Because this function does not return errors, it is not safe for commands
|
sl@0
|
847 |
which might leave.
|
sl@0
|
848 |
|
sl@0
|
849 |
@param aOpcode Opcode understood by the class
|
sl@0
|
850 |
@param aArgs Arguments packaged on the client side, for example as a struct
|
sl@0
|
851 |
of a type determined by the aOpcode argument. These mirror the aArgs argument
|
sl@0
|
852 |
passed in to RAnim::Command().
|
sl@0
|
853 |
@see RAnim */
|
sl@0
|
854 |
virtual void Command(TInt aOpcode, TAny *aArgs)=0;
|
sl@0
|
855 |
/** Main animation function, called by the window server.
|
sl@0
|
856 |
|
sl@0
|
857 |
The drawing code which implements a given animation should be provided here.
|
sl@0
|
858 |
|
sl@0
|
859 |
This function is called at a frequency determined by the SetSync() helper
|
sl@0
|
860 |
function. Note that if sync is not set, then this function will never be
|
sl@0
|
861 |
called. This effect can be exploited to use the animation framework, with
|
sl@0
|
862 |
its server side speed, for what are strictly not animations, e.g. for streaming
|
sl@0
|
863 |
video images.
|
sl@0
|
864 |
|
sl@0
|
865 |
The aDateTime parameter will be null if the current time (as determined by
|
sl@0
|
866 |
the window server) matches the time implied by the sync period, modulo normalisation,
|
sl@0
|
867 |
otherwise it will contain a valid (non-normalised) time.
|
sl@0
|
868 |
|
sl@0
|
869 |
Normalisation is to some specified granularity, for example if one minute
|
sl@0
|
870 |
is specified as the animation frequency, then in effect the window server
|
sl@0
|
871 |
will decide whether the implied time is correct to the minute, but not to
|
sl@0
|
872 |
the second.
|
sl@0
|
873 |
|
sl@0
|
874 |
Implied time is the time implied by the (normalised) actual time of the previous
|
sl@0
|
875 |
animation call plus the sync interval. For example if the last call was at
|
sl@0
|
876 |
time 't' and the sync interval is 1 second then if the time at this call
|
sl@0
|
877 |
is t + 1 second, then actual time and implied time match and the value placed
|
sl@0
|
878 |
into aDateTime will be NULL.
|
sl@0
|
879 |
|
sl@0
|
880 |
Cases in which the two may not match include, for example, system time having
|
sl@0
|
881 |
been reset between animation calls (perhaps British Summer Time or other daylight
|
sl@0
|
882 |
saving time has just come into effect). The intention is that when system
|
sl@0
|
883 |
time changes, a mechanism is provided to alert the animation code and allow
|
sl@0
|
884 |
it to reset itself. The assumption is that somewhere in its initialisation
|
sl@0
|
885 |
code, the animation will have performed a CAnimFunctions utility call to set
|
sl@0
|
886 |
a base time, which is then implicitly tracked by incrementing by a suitable
|
sl@0
|
887 |
interval; when aDateTime is non-NULL after a call to Animate(), base time
|
sl@0
|
888 |
should be reset.
|
sl@0
|
889 |
|
sl@0
|
890 |
@param aDateTime Null if the current time w.r.t. the window server matches
|
sl@0
|
891 |
the time implied by the synch period. Otherwise a valid (non-normalised) time. */
|
sl@0
|
892 |
virtual void Animate(TDateTime *aDateTime)=0;
|
sl@0
|
893 |
virtual void HandleNotification(const TWsEvent& /*aEvent*/) {};
|
sl@0
|
894 |
private:
|
sl@0
|
895 |
inline CAnim() {}
|
sl@0
|
896 |
virtual void Reserved1() const {};
|
sl@0
|
897 |
virtual void Reserved2() const {};
|
sl@0
|
898 |
virtual void Reserved3() const {};
|
sl@0
|
899 |
protected:
|
sl@0
|
900 |
/** Pointer to a class containing functions implemented by the window server.
|
sl@0
|
901 |
|
sl@0
|
902 |
These are available to any CAnim derived class.
|
sl@0
|
903 |
|
sl@0
|
904 |
Note that this value is automatically set for you by the animation framework.
|
sl@0
|
905 |
You do not need to assign a value to this pointer.
|
sl@0
|
906 |
@publishedAll
|
sl@0
|
907 |
@released */
|
sl@0
|
908 |
MAnimGeneralFunctions *iFunctions;
|
sl@0
|
909 |
friend class CWsAnim;
|
sl@0
|
910 |
friend class CWindowAnim;
|
sl@0
|
911 |
friend class CSpriteAnim;
|
sl@0
|
912 |
};
|
sl@0
|
913 |
|
sl@0
|
914 |
|
sl@0
|
915 |
class CWindowAnim : public CAnim
|
sl@0
|
916 |
/** Window animation interface.
|
sl@0
|
917 |
|
sl@0
|
918 |
This interface is provided to create animations other than sprites. A window
|
sl@0
|
919 |
animation can be provided by deriving from this class.
|
sl@0
|
920 |
|
sl@0
|
921 |
The interface inherits from CAnim and has access to its functions. It additionally
|
sl@0
|
922 |
can access an interface for querying and manipulating the window in which
|
sl@0
|
923 |
the animation takes place, using its iWindowFunctions member.
|
sl@0
|
924 |
|
sl@0
|
925 |
The derived class is constructed in the DLL factory class CAnimDll::CreateInstanceL().
|
sl@0
|
926 |
|
sl@0
|
927 |
@publishedAll
|
sl@0
|
928 |
@released
|
sl@0
|
929 |
@see CFreeTimerWindowAnim
|
sl@0
|
930 |
@see CSpriteAnim */
|
sl@0
|
931 |
{
|
sl@0
|
932 |
public:
|
sl@0
|
933 |
/** Server side construction and initialisation of an animation class.
|
sl@0
|
934 |
|
sl@0
|
935 |
Note: the aHasFocus argument allows the animation to start in a known focus state.
|
sl@0
|
936 |
For example, an animation may or may not have focus, depending on how it was
|
sl@0
|
937 |
started. Together with the FocusChanged() function, this allows an animation
|
sl@0
|
938 |
to always know its focus state.
|
sl@0
|
939 |
|
sl@0
|
940 |
@param aArgs Packaged arguments which may be required during construction.
|
sl@0
|
941 |
These are transferred from the aParams argument of the client side constructor's
|
sl@0
|
942 |
RAnim::Construct().
|
sl@0
|
943 |
@param aHasFocus Specifies whether or not the animation has window server focus. */
|
sl@0
|
944 |
virtual void ConstructL(TAny *aArgs, TBool aHasFocus)=0;
|
sl@0
|
945 |
/** Redraws the objects.
|
sl@0
|
946 |
|
sl@0
|
947 |
The function is called by the window server when it needs to redraw the object.
|
sl@0
|
948 |
The object must provide all the low level drawing code. */
|
sl@0
|
949 |
virtual void Redraw()=0;
|
sl@0
|
950 |
/** Notifies change of focus.
|
sl@0
|
951 |
|
sl@0
|
952 |
The function is called by the window server to notify a change of focus,
|
sl@0
|
953 |
allowing the animation code to track whether it does or does not have focus,
|
sl@0
|
954 |
and to change its appearance accordingly.
|
sl@0
|
955 |
|
sl@0
|
956 |
@param aState Indicates whether the focus has or has not changed. */
|
sl@0
|
957 |
virtual void FocusChanged(TBool aState)=0;
|
sl@0
|
958 |
protected:
|
sl@0
|
959 |
/** Protected constructor.
|
sl@0
|
960 |
|
sl@0
|
961 |
Prevents objects of this class being directly constructed. */
|
sl@0
|
962 |
inline CWindowAnim() {}
|
sl@0
|
963 |
private:
|
sl@0
|
964 |
virtual void ReservedW1() const {};
|
sl@0
|
965 |
virtual void ReservedW2() const {};
|
sl@0
|
966 |
protected:
|
sl@0
|
967 |
/** Pointer to a class containing functions implemented by the window server.
|
sl@0
|
968 |
|
sl@0
|
969 |
These are available to any CWindowAnim-derived class.
|
sl@0
|
970 |
|
sl@0
|
971 |
Note that this and the iGc pointer are automatically set for you by the
|
sl@0
|
972 |
animation framework - you do not need to assign a value to them.*/
|
sl@0
|
973 |
MAnimWindowFunctions *iWindowFunctions;
|
sl@0
|
974 |
/** Pointer to the graphics context. */
|
sl@0
|
975 |
CAnimGc *iGc;
|
sl@0
|
976 |
friend class CWsAnim;
|
sl@0
|
977 |
};
|
sl@0
|
978 |
|
sl@0
|
979 |
|
sl@0
|
980 |
class CFreeTimerWindowAnim : public CWindowAnim
|
sl@0
|
981 |
/** Free timer animation interface.
|
sl@0
|
982 |
|
sl@0
|
983 |
This interface allows animations to have their own timers or other active
|
sl@0
|
984 |
objects, and to draw to the window when the timer completes. The implication
|
sl@0
|
985 |
of this is that animations derived from this class can have an extremely short
|
sl@0
|
986 |
user-defined time between calls to the Animate() function, unlike the
|
sl@0
|
987 |
other animation classes, which are tied to the (approximately) half second
|
sl@0
|
988 |
flash cycle.
|
sl@0
|
989 |
|
sl@0
|
990 |
The interface inherits from CWindowAnim and has access to its functions. It
|
sl@0
|
991 |
additionally can access functions declared in the MAnimFreeTimerWindowFunctions
|
sl@0
|
992 |
interface, using WindowFunctions().
|
sl@0
|
993 |
|
sl@0
|
994 |
In order to draw to the window inside the RunL() of your own timer, you will
|
sl@0
|
995 |
need call the ActivateGc() function before doing any drawing, and the DeactivateGc()
|
sl@0
|
996 |
function after finishing the drawing.
|
sl@0
|
997 |
|
sl@0
|
998 |
@publishedAll
|
sl@0
|
999 |
@released
|
sl@0
|
1000 |
@see CSpriteAnim */
|
sl@0
|
1001 |
{
|
sl@0
|
1002 |
protected:
|
sl@0
|
1003 |
inline MAnimFreeTimerWindowFunctions* WindowFunctions()
|
sl@0
|
1004 |
/** Gets the free timer utility functions.
|
sl@0
|
1005 |
|
sl@0
|
1006 |
These functions include all the MAnimWindowFunctions,
|
sl@0
|
1007 |
and additional functions to deactivate the graphics context and to force the
|
sl@0
|
1008 |
screen to update.
|
sl@0
|
1009 |
|
sl@0
|
1010 |
@return A pointer to the free timer utility functions. */
|
sl@0
|
1011 |
{return STATIC_CAST(MAnimFreeTimerWindowFunctions*,iWindowFunctions);}
|
sl@0
|
1012 |
private:
|
sl@0
|
1013 |
virtual void ReservedF1() const {};
|
sl@0
|
1014 |
};
|
sl@0
|
1015 |
|
sl@0
|
1016 |
|
sl@0
|
1017 |
class CSpriteAnim : public CAnim
|
sl@0
|
1018 |
/** Sprite animation interface.
|
sl@0
|
1019 |
|
sl@0
|
1020 |
Sprites are bitmaps that can overlay a window or the screen. A sprite animation
|
sl@0
|
1021 |
can be provided by deriving from this class.
|
sl@0
|
1022 |
|
sl@0
|
1023 |
The interface inherits from CAnim and has access to its functions. It additionally
|
sl@0
|
1024 |
can access an interface for querying and manipulating a sprite, using its
|
sl@0
|
1025 |
iSpriteFunctions member.
|
sl@0
|
1026 |
|
sl@0
|
1027 |
The derived class is constructed in the DLL factory class CAnimDll::CreateInstanceL()
|
sl@0
|
1028 |
function.
|
sl@0
|
1029 |
|
sl@0
|
1030 |
@publishedAll
|
sl@0
|
1031 |
@released
|
sl@0
|
1032 |
@see CFreeTimerWindowAnim
|
sl@0
|
1033 |
@see CWindowAnim */
|
sl@0
|
1034 |
{
|
sl@0
|
1035 |
public:
|
sl@0
|
1036 |
/** Server side construction and initialisation of an animation class.
|
sl@0
|
1037 |
|
sl@0
|
1038 |
@param aArgs Packaged arguments which may be required during construction.
|
sl@0
|
1039 |
These are transferred from the aParams argument of the client side constructor's
|
sl@0
|
1040 |
RAnim::Construct(). */
|
sl@0
|
1041 |
virtual void ConstructL(TAny *aArgs)=0;
|
sl@0
|
1042 |
protected:
|
sl@0
|
1043 |
inline CSpriteAnim()
|
sl@0
|
1044 |
/** Protected constructor.
|
sl@0
|
1045 |
|
sl@0
|
1046 |
Ensures that only derived classes can be constructed. */
|
sl@0
|
1047 |
{}
|
sl@0
|
1048 |
private:
|
sl@0
|
1049 |
virtual void ReservedS1() const {};
|
sl@0
|
1050 |
virtual void ReservedS2() const {};
|
sl@0
|
1051 |
protected:
|
sl@0
|
1052 |
/** Pointer to a class containing functions implemented by the window server.
|
sl@0
|
1053 |
|
sl@0
|
1054 |
These are available to any CSpriteAnim-derived class.
|
sl@0
|
1055 |
|
sl@0
|
1056 |
Note that this value is automatically set for you by the animation framework.
|
sl@0
|
1057 |
You do not need to assign a value to this pointer. */
|
sl@0
|
1058 |
MAnimSpriteFunctions *iSpriteFunctions;
|
sl@0
|
1059 |
friend class CWsAnim;
|
sl@0
|
1060 |
};
|
sl@0
|
1061 |
|
sl@0
|
1062 |
|
sl@0
|
1063 |
class CAnimDll : public CBase
|
sl@0
|
1064 |
/** Animation DLL factory interface.
|
sl@0
|
1065 |
|
sl@0
|
1066 |
An animation DLL class must be a derived class of CAnimDll, and can be thought
|
sl@0
|
1067 |
of as a server side factory class. CAnimDll consists of a single pure virtual
|
sl@0
|
1068 |
factory function, CreateInstanceL(TInt aType), which is used to create new
|
sl@0
|
1069 |
instances of animation objects of type CAnim contained in the DLL. Animation
|
sl@0
|
1070 |
DLL objects are created by the CreateCAnimDllL() function, which is called
|
sl@0
|
1071 |
by the window server at the request of the client.
|
sl@0
|
1072 |
|
sl@0
|
1073 |
For efficiency reasons, it makes sense to collect multiple animation classes
|
sl@0
|
1074 |
into a single DLL, even if they are otherwise logically quite separate classes.
|
sl@0
|
1075 |
|
sl@0
|
1076 |
@publishedAll
|
sl@0
|
1077 |
@released */
|
sl@0
|
1078 |
{
|
sl@0
|
1079 |
public:
|
sl@0
|
1080 |
/** Factory function for animation DLLs.
|
sl@0
|
1081 |
|
sl@0
|
1082 |
It must be provided in the derived class.
|
sl@0
|
1083 |
|
sl@0
|
1084 |
The parameter can be used to differentiate between multiple animation
|
sl@0
|
1085 |
classes contained in the same animation DLL.
|
sl@0
|
1086 |
|
sl@0
|
1087 |
@param aType Identifies an animation class to be constructed. This is the
|
sl@0
|
1088 |
same value as the aType argument of the client side animation constructor
|
sl@0
|
1089 |
RAnim::Construct(). It is passed from the client side by the animation framework.
|
sl@0
|
1090 |
@return Pointer to a CAnim-derived animation class object. */
|
sl@0
|
1091 |
virtual CAnim *CreateInstanceL(TInt aType)=0;
|
sl@0
|
1092 |
};
|
sl@0
|
1093 |
|
sl@0
|
1094 |
#endif
|