Update contrib.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Client side sprite code
19 #include "../SERVER/w32cmd.h"
22 TCmdSpriteMember::TCmdSpriteMember(const TSpriteMember &aSpriteMember)
24 if (aSpriteMember.iBitmap)
26 iBitmap=aSpriteMember.iBitmap->Handle();
27 iMaskBitmap=(aSpriteMember.iMaskBitmap) ? aSpriteMember.iMaskBitmap->Handle() : 0;
28 iInvertMask=aSpriteMember.iInvertMask;
29 iDrawMode=aSpriteMember.iDrawMode;
30 iOffset=aSpriteMember.iOffset;
33 Mem::FillZ(this,sizeof(*this));
34 iInterval=aSpriteMember.iInterval;
41 EXPORT_C RWsSpriteBase::RWsSpriteBase()
42 /** Protected constructor.
44 This prevents objects of this type being directly created. */
47 EXPORT_C RWsSpriteBase::RWsSpriteBase(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
48 /** Protected constructor with a window server session.
50 This prevents objects of this type being directly created.
52 @param aWs The window server session owning the sprite. */
55 EXPORT_C TInt RWsSpriteBase::UpdateMember(TInt aIndex, const TSpriteMember &aMemberData)
56 /** Replaces one of a sprite's members.
58 This allows the appearance of the sprite to be modified after it has been
61 You must call this function if you have changed the size of a member. After
62 calling it, the sprite starts showing member zero again.
64 This function always causes a flush of the window server buffer.
66 @param aIndex Index of the sprite member. Sprite members are indexed in the
67 order they were added to the sprite, beginning with 0.
68 @param aMemberData New data for the sprite member.
69 @return KErrNone if successful, otherwise one of the system-wide error codes. */
71 TWsSpriteCmdUpdateMember params(aIndex,aMemberData);
72 return(WriteReply(¶ms,sizeof(params),EWsSpriteOpUpdateMember2));
75 EXPORT_C void RWsSpriteBase::UpdateMember(TInt aIndex)
76 /** Updates the displayed sprite, taking into account any change to the content
77 of the bitmaps for the specified member.
79 The appearance of a sprite can be changed after it has been activated by drawing
80 to the appropriate TSpriteMember::iBitmap member, and then calling this function.
81 Alternatively, a new sprite member can be created, containing a new bitmap,
82 and the sprite can be updated to contain this new member by calling the other
83 UpdateMember() overload.
85 You should only use this function if you have changed the content of
86 the bitmap or mask. If you have changed the size of the bitmap then you must
87 use the other overload.
89 You only need to call this function if you want the content of the screen
90 to update immediately. If you don't call this function then the appearance
91 of a member will update automatically next time that member is drawn to the
94 @param aIndex Index of the sprite member. Sprite members are indexed in the
95 order they were added to the sprite, beginning with 0. */
97 WriteInt(aIndex, EWsSpriteOpUpdateMember);
100 EXPORT_C void RWsSpriteBase::Close()
101 /** Destroys the sprite or pointer cursor in the window server, and frees client-side
102 resources used by the sprite.
104 Any application which constructs an RWsSprite or RWsPointerCursor should call
105 this function when the sprite or cursor is no longer needed.
107 Note that this function does not free resources used by sprite members. */
109 if (iBuffer && iWsHandle)
110 Write(EWsSpriteOpFree);
114 EXPORT_C TInt RWsSpriteBase::Activate()
115 /** Activates the sprite or pointer cursor.
117 Sprites are displayed on the screen when they are activated; pointer cursors
118 are not displayed until they are set into a window using either RWindowTreeNode::SetCustomPointerCursor()
119 or RWindowTreeNode::SetPointerCursor().
121 This function should not be called until the sprite or pointer cursor has
122 been fully initialised, and its sprite members have been added.
124 Before it can call this function, a sprite must be fully constructed using
125 the RWsSprite::RWsSprite(RWsSession& aWs) and RWsSprite::Construct() functions,
126 and must have at least one sprite member. Otherwise, a panic will occur. Similarly,
127 a pointer cursor must have at least one sprite member and must call RWsPointerCursor::RWsPointerCursor(RWsSession&
128 aWs) and RWsPointerCursor::Construct().
130 This function always causes a flush of the window server buffer.
132 @return KErrNone if successful, otherwise one of the system-wide error codes. */
134 return(WriteReply(EWsSpriteOpActivate));
137 EXPORT_C TInt RWsSpriteBase::AppendMember(const TSpriteMember &aMemberData)
138 /** Adds a sprite member to a sprite or pointer cursor.
140 Sprite members are displayed by the sprite in the order in which they were
141 added to the sprite. This function can be called before and after the sprite
144 The position of the bitmap can be changed in relation to the sprite's origin
145 using the iOffset member of aSpriteList.
147 This function always causes a flush of the window server buffer.
149 @param aMemberData The sprite member to add.
150 @return KErrNone if successful, otherwise one of the system-wide error codes. */
152 TCmdSpriteMember params(aMemberData);
153 return(WriteReply(¶ms,sizeof(params),EWsSpriteOpAppendMember));
160 EXPORT_C RWsSprite::RWsSprite() : RWsSpriteBase()
161 /** Default C++ constructor.
163 This allows classes that contain an RWsSprite to be constructed before an
166 Note: do not use this version of the constructor on its own. Before an RWsSprite
167 object can be used it must be constructed using the RWsSprite(RWsSession)
168 constructor. An example of this might be as follows:
172 iSprite=RWsSprite(iWsSession);
176 EXPORT_C RWsSprite::RWsSprite(RWsSession &aWs) : RWsSpriteBase(aWs)
177 /** Constructs a sprite with a window server session.
179 Initialisation must be completed using the Construct() function before the
180 sprite can be activated using RWsSpriteBase::Activate().
182 @param aWs The window server session owning the sprite. */
185 EXPORT_C TInt RWsSprite::Construct(RWindowTreeNode &aWindow, const TPoint &aPos, TInt aFlags)
186 /** Completes the construction of a sprite.
188 This function must be called before a sprite is activated using RWsSpriteBase::Activate().
190 It always causes a flush of the window server buffer.
192 @param aWindow The window in which the sprite is displayed.
193 @param aPos The position of the sprite's origin relative to aWindow's origin.
194 The origin is the top left corner of the window.
195 @param aFlags Any one of the TSpriteFlags values, or a combination of the flags,
196 using a bit-wise OR operation.
197 @return KErrNone if successful, otherwise one of the system-wide error codes.
198 @panic TW32Panic 17 in debug builds if called on an already constructed object.
201 __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
202 TWsClCmdCreateSprite params(aWindow.WsHandle(),aPos,aFlags);
204 if ((ret=iBuffer->WriteReplyWs(¶ms,sizeof(params),EWsClOpCreateSprite))>=0)
212 EXPORT_C void RWsSprite::SetPosition(const TPoint &aPos)
213 /** Sets the sprite's position.
215 This function can be called before or after the sprite has been activated.
217 Note: the sprite's initial position is set when the sprite is constructed (see Construct()).
219 @param aPos Position of the sprite's origin relative to the origin of the
220 window that owns it. The origin is the top left corner of the window. */
222 WritePoint(aPos,EWsSpriteOpSetPosition);
229 EXPORT_C RWsPointerCursor::RWsPointerCursor() : RWsSpriteBase()
230 /** Default C++ constructor.
232 Use this constructor to allow classes that contain an RWsPointerCursor
233 to be constructed before an RWsSession exists.
235 Note: do not use this version of the constructor on its own.
236 Before an RWsPointerCursor object can be used, it must be constructed
237 using the RWsPointerCursor(RWsSession) constructor. An example of this
241 RWsPointerCursor pointerCursor;
242 pointerCursor=RWsPointerCursor(iWsSession);
246 EXPORT_C RWsPointerCursor::RWsPointerCursor(RWsSession &aWs) : RWsSpriteBase(aWs)
247 /** Constructs a pointer cursor initialised with a window server session.
249 Initialisation must be completed using the Construct() function before the
250 sprite can be activated using RWsSpriteBase::Activate().
252 Once initialisation is complete, the pointer cursor can be passed as an argument
253 to RWsSession::SetSystemPointerCursor() or RWindowTreeNode::SetCustomPointerCursor().
255 @param aWs The window server session owning the pointer cursor. */
258 EXPORT_C TInt RWsPointerCursor::Construct(TInt aFlags)
259 /** Completes pointer cursor construction.
261 This function must be called before the pointer cursor is activated.
263 It always causes a flush of the window server buffer.
265 @param aFlags ESpriteFlash to flash the sprite on and off or 0 for a non-flashing
266 cursor. Note that pointer cursors always behave as if ESpriteNoChildClip and
267 ESpriteNoShadows are set.
268 @return KErrNone if successful, otherwise one of the system-wide error codes. */
270 __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
271 TWsClCmdCreatePointerCursor params;
274 if ((ret=iBuffer->WriteReplyWs(¶ms,sizeof(params),EWsClOpCreatePointerCursor))>=0)