sl@0
|
1 |
// Copyright (c) 1996-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 |
// Client side sprite code
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include "../SERVER/w32cmd.h"
|
sl@0
|
20 |
#include "CLIENT.H"
|
sl@0
|
21 |
|
sl@0
|
22 |
TCmdSpriteMember::TCmdSpriteMember(const TSpriteMember &aSpriteMember)
|
sl@0
|
23 |
{
|
sl@0
|
24 |
if (aSpriteMember.iBitmap)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
iBitmap=aSpriteMember.iBitmap->Handle();
|
sl@0
|
27 |
iMaskBitmap=(aSpriteMember.iMaskBitmap) ? aSpriteMember.iMaskBitmap->Handle() : 0;
|
sl@0
|
28 |
iInvertMask=aSpriteMember.iInvertMask;
|
sl@0
|
29 |
iDrawMode=aSpriteMember.iDrawMode;
|
sl@0
|
30 |
iOffset=aSpriteMember.iOffset;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
else
|
sl@0
|
33 |
Mem::FillZ(this,sizeof(*this));
|
sl@0
|
34 |
iInterval=aSpriteMember.iInterval;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
//
|
sl@0
|
38 |
// RWsSpriteBase
|
sl@0
|
39 |
//
|
sl@0
|
40 |
|
sl@0
|
41 |
EXPORT_C RWsSpriteBase::RWsSpriteBase()
|
sl@0
|
42 |
/** Protected constructor.
|
sl@0
|
43 |
|
sl@0
|
44 |
This prevents objects of this type being directly created. */
|
sl@0
|
45 |
{}
|
sl@0
|
46 |
|
sl@0
|
47 |
EXPORT_C RWsSpriteBase::RWsSpriteBase(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
|
sl@0
|
48 |
/** Protected constructor with a window server session.
|
sl@0
|
49 |
|
sl@0
|
50 |
This prevents objects of this type being directly created.
|
sl@0
|
51 |
|
sl@0
|
52 |
@param aWs The window server session owning the sprite. */
|
sl@0
|
53 |
{}
|
sl@0
|
54 |
|
sl@0
|
55 |
EXPORT_C TInt RWsSpriteBase::UpdateMember(TInt aIndex, const TSpriteMember &aMemberData)
|
sl@0
|
56 |
/** Replaces one of a sprite's members.
|
sl@0
|
57 |
|
sl@0
|
58 |
This allows the appearance of the sprite to be modified after it has been
|
sl@0
|
59 |
activated.
|
sl@0
|
60 |
|
sl@0
|
61 |
You must call this function if you have changed the size of a member. After
|
sl@0
|
62 |
calling it, the sprite starts showing member zero again.
|
sl@0
|
63 |
|
sl@0
|
64 |
This function always causes a flush of the window server buffer.
|
sl@0
|
65 |
|
sl@0
|
66 |
@param aIndex Index of the sprite member. Sprite members are indexed in the
|
sl@0
|
67 |
order they were added to the sprite, beginning with 0.
|
sl@0
|
68 |
@param aMemberData New data for the sprite member.
|
sl@0
|
69 |
@return KErrNone if successful, otherwise one of the system-wide error codes. */
|
sl@0
|
70 |
{
|
sl@0
|
71 |
TWsSpriteCmdUpdateMember params(aIndex,aMemberData);
|
sl@0
|
72 |
return(WriteReply(¶ms,sizeof(params),EWsSpriteOpUpdateMember2));
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
EXPORT_C void RWsSpriteBase::UpdateMember(TInt aIndex)
|
sl@0
|
76 |
/** Updates the displayed sprite, taking into account any change to the content
|
sl@0
|
77 |
of the bitmaps for the specified member.
|
sl@0
|
78 |
|
sl@0
|
79 |
The appearance of a sprite can be changed after it has been activated by drawing
|
sl@0
|
80 |
to the appropriate TSpriteMember::iBitmap member, and then calling this function.
|
sl@0
|
81 |
Alternatively, a new sprite member can be created, containing a new bitmap,
|
sl@0
|
82 |
and the sprite can be updated to contain this new member by calling the other
|
sl@0
|
83 |
UpdateMember() overload.
|
sl@0
|
84 |
|
sl@0
|
85 |
You should only use this function if you have changed the content of
|
sl@0
|
86 |
the bitmap or mask. If you have changed the size of the bitmap then you must
|
sl@0
|
87 |
use the other overload.
|
sl@0
|
88 |
|
sl@0
|
89 |
You only need to call this function if you want the content of the screen
|
sl@0
|
90 |
to update immediately. If you don't call this function then the appearance
|
sl@0
|
91 |
of a member will update automatically next time that member is drawn to the
|
sl@0
|
92 |
screen.
|
sl@0
|
93 |
|
sl@0
|
94 |
@param aIndex Index of the sprite member. Sprite members are indexed in the
|
sl@0
|
95 |
order they were added to the sprite, beginning with 0. */
|
sl@0
|
96 |
{
|
sl@0
|
97 |
WriteInt(aIndex, EWsSpriteOpUpdateMember);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
EXPORT_C void RWsSpriteBase::Close()
|
sl@0
|
101 |
/** Destroys the sprite or pointer cursor in the window server, and frees client-side
|
sl@0
|
102 |
resources used by the sprite.
|
sl@0
|
103 |
|
sl@0
|
104 |
Any application which constructs an RWsSprite or RWsPointerCursor should call
|
sl@0
|
105 |
this function when the sprite or cursor is no longer needed.
|
sl@0
|
106 |
|
sl@0
|
107 |
Note that this function does not free resources used by sprite members. */
|
sl@0
|
108 |
{
|
sl@0
|
109 |
if (iBuffer && iWsHandle)
|
sl@0
|
110 |
Write(EWsSpriteOpFree);
|
sl@0
|
111 |
iWsHandle=NULL;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
EXPORT_C TInt RWsSpriteBase::Activate()
|
sl@0
|
115 |
/** Activates the sprite or pointer cursor.
|
sl@0
|
116 |
|
sl@0
|
117 |
Sprites are displayed on the screen when they are activated; pointer cursors
|
sl@0
|
118 |
are not displayed until they are set into a window using either RWindowTreeNode::SetCustomPointerCursor()
|
sl@0
|
119 |
or RWindowTreeNode::SetPointerCursor().
|
sl@0
|
120 |
|
sl@0
|
121 |
This function should not be called until the sprite or pointer cursor has
|
sl@0
|
122 |
been fully initialised, and its sprite members have been added.
|
sl@0
|
123 |
|
sl@0
|
124 |
Before it can call this function, a sprite must be fully constructed using
|
sl@0
|
125 |
the RWsSprite::RWsSprite(RWsSession& aWs) and RWsSprite::Construct() functions,
|
sl@0
|
126 |
and must have at least one sprite member. Otherwise, a panic will occur. Similarly,
|
sl@0
|
127 |
a pointer cursor must have at least one sprite member and must call RWsPointerCursor::RWsPointerCursor(RWsSession&
|
sl@0
|
128 |
aWs) and RWsPointerCursor::Construct().
|
sl@0
|
129 |
|
sl@0
|
130 |
This function always causes a flush of the window server buffer.
|
sl@0
|
131 |
|
sl@0
|
132 |
@return KErrNone if successful, otherwise one of the system-wide error codes.
|
sl@0
|
133 |
@panic If no member is present, a panic will occur. */
|
sl@0
|
134 |
{
|
sl@0
|
135 |
return(WriteReply(EWsSpriteOpActivate));
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
EXPORT_C TInt RWsSpriteBase::AppendMember(const TSpriteMember &aMemberData)
|
sl@0
|
139 |
/** Adds a sprite member to a sprite or pointer cursor.
|
sl@0
|
140 |
|
sl@0
|
141 |
Sprite members are displayed by the sprite in the order in which they were
|
sl@0
|
142 |
added to the sprite. This function can be called before and after the sprite
|
sl@0
|
143 |
has been activated.
|
sl@0
|
144 |
|
sl@0
|
145 |
The position of the bitmap can be changed in relation to the sprite's origin
|
sl@0
|
146 |
using the iOffset member of aSpriteList.
|
sl@0
|
147 |
|
sl@0
|
148 |
This function always causes a flush of the window server buffer.
|
sl@0
|
149 |
|
sl@0
|
150 |
@param aMemberData The sprite member to add.
|
sl@0
|
151 |
@return KErrNone if successful, otherwise one of the system-wide error codes. */
|
sl@0
|
152 |
{
|
sl@0
|
153 |
TCmdSpriteMember params(aMemberData);
|
sl@0
|
154 |
return(WriteReply(¶ms,sizeof(params),EWsSpriteOpAppendMember));
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
//
|
sl@0
|
158 |
// RWsSprite
|
sl@0
|
159 |
//
|
sl@0
|
160 |
|
sl@0
|
161 |
EXPORT_C RWsSprite::RWsSprite() : RWsSpriteBase()
|
sl@0
|
162 |
/** Default C++ constructor.
|
sl@0
|
163 |
|
sl@0
|
164 |
This allows classes that contain an RWsSprite to be constructed before an
|
sl@0
|
165 |
RWsSession exists.
|
sl@0
|
166 |
|
sl@0
|
167 |
Note: do not use this version of the constructor on its own. Before an RWsSprite
|
sl@0
|
168 |
object can be used it must be constructed using the RWsSprite(RWsSession)
|
sl@0
|
169 |
constructor. An example of this might be as follows:
|
sl@0
|
170 |
|
sl@0
|
171 |
@code
|
sl@0
|
172 |
RWsSprite iSprite;
|
sl@0
|
173 |
iSprite=RWsSprite(iWsSession);
|
sl@0
|
174 |
@endcode */
|
sl@0
|
175 |
{}
|
sl@0
|
176 |
|
sl@0
|
177 |
EXPORT_C RWsSprite::RWsSprite(RWsSession &aWs) : RWsSpriteBase(aWs)
|
sl@0
|
178 |
/** Constructs a sprite with a window server session.
|
sl@0
|
179 |
|
sl@0
|
180 |
Initialisation must be completed using the Construct() function before the
|
sl@0
|
181 |
sprite can be activated using RWsSpriteBase::Activate().
|
sl@0
|
182 |
|
sl@0
|
183 |
@param aWs The window server session owning the sprite. */
|
sl@0
|
184 |
{}
|
sl@0
|
185 |
|
sl@0
|
186 |
EXPORT_C TInt RWsSprite::Construct(RWindowTreeNode &aWindow, const TPoint &aPos, TInt aFlags)
|
sl@0
|
187 |
/** Completes the construction of a sprite.
|
sl@0
|
188 |
|
sl@0
|
189 |
This function must be called before a sprite is activated using RWsSpriteBase::Activate().
|
sl@0
|
190 |
|
sl@0
|
191 |
It always causes a flush of the window server buffer.
|
sl@0
|
192 |
|
sl@0
|
193 |
@param aWindow The window in which the sprite is displayed.
|
sl@0
|
194 |
@param aPos The position of the sprite's origin relative to aWindow's origin.
|
sl@0
|
195 |
The origin is the top left corner of the window.
|
sl@0
|
196 |
@param aFlags Any one of the TSpriteFlags values, or a combination of the flags,
|
sl@0
|
197 |
using a bit-wise OR operation.
|
sl@0
|
198 |
@return KErrNone if successful, otherwise one of the system-wide error codes.
|
sl@0
|
199 |
@panic TW32Panic 17 in debug builds if called on an already constructed object.
|
sl@0
|
200 |
@see TSpriteFlags */
|
sl@0
|
201 |
{
|
sl@0
|
202 |
__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
|
sl@0
|
203 |
TWsClCmdCreateSprite params(aWindow.WsHandle(),aPos,aFlags);
|
sl@0
|
204 |
TInt ret;
|
sl@0
|
205 |
if ((ret=iBuffer->WriteReplyWs(¶ms,sizeof(params),EWsClOpCreateSprite))>=0)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
iWsHandle=ret;
|
sl@0
|
208 |
ret=KErrNone;
|
sl@0
|
209 |
}
|
sl@0
|
210 |
return(ret);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
EXPORT_C void RWsSprite::SetPosition(const TPoint &aPos)
|
sl@0
|
214 |
/** Sets the sprite's position.
|
sl@0
|
215 |
|
sl@0
|
216 |
This function can be called before or after the sprite has been activated.
|
sl@0
|
217 |
|
sl@0
|
218 |
Note: the sprite's initial position is set when the sprite is constructed (see Construct()).
|
sl@0
|
219 |
|
sl@0
|
220 |
@param aPos Position of the sprite's origin relative to the origin of the
|
sl@0
|
221 |
window that owns it. The origin is the top left corner of the window. */
|
sl@0
|
222 |
{
|
sl@0
|
223 |
WritePoint(aPos,EWsSpriteOpSetPosition);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
//
|
sl@0
|
227 |
// RWsPointerCursor
|
sl@0
|
228 |
//
|
sl@0
|
229 |
|
sl@0
|
230 |
EXPORT_C RWsPointerCursor::RWsPointerCursor() : RWsSpriteBase()
|
sl@0
|
231 |
/** Default C++ constructor.
|
sl@0
|
232 |
|
sl@0
|
233 |
Use this constructor to allow classes that contain an RWsPointerCursor
|
sl@0
|
234 |
to be constructed before an RWsSession exists.
|
sl@0
|
235 |
|
sl@0
|
236 |
Note: do not use this version of the constructor on its own.
|
sl@0
|
237 |
Before an RWsPointerCursor object can be used, it must be constructed
|
sl@0
|
238 |
using the RWsPointerCursor(RWsSession) constructor. An example of this
|
sl@0
|
239 |
might be as follows:
|
sl@0
|
240 |
|
sl@0
|
241 |
@code
|
sl@0
|
242 |
RWsPointerCursor pointerCursor;
|
sl@0
|
243 |
pointerCursor=RWsPointerCursor(iWsSession);
|
sl@0
|
244 |
@endcode */
|
sl@0
|
245 |
{}
|
sl@0
|
246 |
|
sl@0
|
247 |
EXPORT_C RWsPointerCursor::RWsPointerCursor(RWsSession &aWs) : RWsSpriteBase(aWs)
|
sl@0
|
248 |
/** Constructs a pointer cursor initialised with a window server session.
|
sl@0
|
249 |
|
sl@0
|
250 |
Initialisation must be completed using the Construct() function before the
|
sl@0
|
251 |
sprite can be activated using RWsSpriteBase::Activate().
|
sl@0
|
252 |
|
sl@0
|
253 |
Once initialisation is complete, the pointer cursor can be passed as an argument
|
sl@0
|
254 |
to RWsSession::SetSystemPointerCursor() or RWindowTreeNode::SetCustomPointerCursor().
|
sl@0
|
255 |
|
sl@0
|
256 |
@param aWs The window server session owning the pointer cursor. */
|
sl@0
|
257 |
{}
|
sl@0
|
258 |
|
sl@0
|
259 |
EXPORT_C TInt RWsPointerCursor::Construct(TInt aFlags)
|
sl@0
|
260 |
/** Completes pointer cursor construction.
|
sl@0
|
261 |
|
sl@0
|
262 |
This function must be called before the pointer cursor is activated.
|
sl@0
|
263 |
|
sl@0
|
264 |
It always causes a flush of the window server buffer.
|
sl@0
|
265 |
|
sl@0
|
266 |
@param aFlags ESpriteFlash to flash the sprite on and off or 0 for a non-flashing
|
sl@0
|
267 |
cursor. Note that pointer cursors always behave as if ESpriteNoChildClip and
|
sl@0
|
268 |
ESpriteNoShadows are set.
|
sl@0
|
269 |
@return KErrNone if successful, otherwise one of the system-wide error codes.
|
sl@0
|
270 |
@panic TW32Panic 17 in debug builds if called on an already constructed object.
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
{
|
sl@0
|
273 |
__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
|
sl@0
|
274 |
TWsClCmdCreatePointerCursor params;
|
sl@0
|
275 |
params.flags=aFlags;
|
sl@0
|
276 |
TInt ret;
|
sl@0
|
277 |
if ((ret=iBuffer->WriteReplyWs(¶ms,sizeof(params),EWsClOpCreatePointerCursor))>=0)
|
sl@0
|
278 |
{
|
sl@0
|
279 |
iWsHandle=ret;
|
sl@0
|
280 |
ret=KErrNone;
|
sl@0
|
281 |
}
|
sl@0
|
282 |
return(ret);
|
sl@0
|
283 |
}
|