1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/CLIENT/RSPRITE.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,280 @@
1.4 +// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Client side sprite code
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include "../SERVER/w32cmd.h"
1.23 +#include "CLIENT.H"
1.24 +
1.25 +TCmdSpriteMember::TCmdSpriteMember(const TSpriteMember &aSpriteMember)
1.26 + {
1.27 + if (aSpriteMember.iBitmap)
1.28 + {
1.29 + iBitmap=aSpriteMember.iBitmap->Handle();
1.30 + iMaskBitmap=(aSpriteMember.iMaskBitmap) ? aSpriteMember.iMaskBitmap->Handle() : 0;
1.31 + iInvertMask=aSpriteMember.iInvertMask;
1.32 + iDrawMode=aSpriteMember.iDrawMode;
1.33 + iOffset=aSpriteMember.iOffset;
1.34 + }
1.35 + else
1.36 + Mem::FillZ(this,sizeof(*this));
1.37 + iInterval=aSpriteMember.iInterval;
1.38 + }
1.39 +
1.40 +//
1.41 +// RWsSpriteBase
1.42 +//
1.43 +
1.44 +EXPORT_C RWsSpriteBase::RWsSpriteBase()
1.45 +/** Protected constructor.
1.46 +
1.47 +This prevents objects of this type being directly created. */
1.48 + {}
1.49 +
1.50 +EXPORT_C RWsSpriteBase::RWsSpriteBase(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
1.51 +/** Protected constructor with a window server session.
1.52 +
1.53 +This prevents objects of this type being directly created.
1.54 +
1.55 +@param aWs The window server session owning the sprite. */
1.56 + {}
1.57 +
1.58 +EXPORT_C TInt RWsSpriteBase::UpdateMember(TInt aIndex, const TSpriteMember &aMemberData)
1.59 +/** Replaces one of a sprite's members.
1.60 +
1.61 +This allows the appearance of the sprite to be modified after it has been
1.62 +activated.
1.63 +
1.64 +You must call this function if you have changed the size of a member. After
1.65 +calling it, the sprite starts showing member zero again.
1.66 +
1.67 +This function always causes a flush of the window server buffer.
1.68 +
1.69 +@param aIndex Index of the sprite member. Sprite members are indexed in the
1.70 +order they were added to the sprite, beginning with 0.
1.71 +@param aMemberData New data for the sprite member.
1.72 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
1.73 + {
1.74 + TWsSpriteCmdUpdateMember params(aIndex,aMemberData);
1.75 + return(WriteReply(¶ms,sizeof(params),EWsSpriteOpUpdateMember2));
1.76 + }
1.77 +
1.78 +EXPORT_C void RWsSpriteBase::UpdateMember(TInt aIndex)
1.79 +/** Updates the displayed sprite, taking into account any change to the content
1.80 +of the bitmaps for the specified member.
1.81 +
1.82 +The appearance of a sprite can be changed after it has been activated by drawing
1.83 +to the appropriate TSpriteMember::iBitmap member, and then calling this function.
1.84 +Alternatively, a new sprite member can be created, containing a new bitmap,
1.85 +and the sprite can be updated to contain this new member by calling the other
1.86 +UpdateMember() overload.
1.87 +
1.88 +You should only use this function if you have changed the content of
1.89 +the bitmap or mask. If you have changed the size of the bitmap then you must
1.90 +use the other overload.
1.91 +
1.92 +You only need to call this function if you want the content of the screen
1.93 +to update immediately. If you don't call this function then the appearance
1.94 +of a member will update automatically next time that member is drawn to the
1.95 +screen.
1.96 +
1.97 +@param aIndex Index of the sprite member. Sprite members are indexed in the
1.98 +order they were added to the sprite, beginning with 0. */
1.99 + {
1.100 + WriteInt(aIndex, EWsSpriteOpUpdateMember);
1.101 + }
1.102 +
1.103 +EXPORT_C void RWsSpriteBase::Close()
1.104 +/** Destroys the sprite or pointer cursor in the window server, and frees client-side
1.105 +resources used by the sprite.
1.106 +
1.107 +Any application which constructs an RWsSprite or RWsPointerCursor should call
1.108 +this function when the sprite or cursor is no longer needed.
1.109 +
1.110 +Note that this function does not free resources used by sprite members. */
1.111 + {
1.112 + if (iBuffer && iWsHandle)
1.113 + Write(EWsSpriteOpFree);
1.114 + iWsHandle=NULL;
1.115 + }
1.116 +
1.117 +EXPORT_C TInt RWsSpriteBase::Activate()
1.118 +/** Activates the sprite or pointer cursor.
1.119 +
1.120 +Sprites are displayed on the screen when they are activated; pointer cursors
1.121 +are not displayed until they are set into a window using either RWindowTreeNode::SetCustomPointerCursor()
1.122 +or RWindowTreeNode::SetPointerCursor().
1.123 +
1.124 +This function should not be called until the sprite or pointer cursor has
1.125 +been fully initialised, and its sprite members have been added.
1.126 +
1.127 +Before it can call this function, a sprite must be fully constructed using
1.128 +the RWsSprite::RWsSprite(RWsSession& aWs) and RWsSprite::Construct() functions,
1.129 +and must have at least one sprite member. Otherwise, a panic will occur. Similarly,
1.130 +a pointer cursor must have at least one sprite member and must call RWsPointerCursor::RWsPointerCursor(RWsSession&
1.131 +aWs) and RWsPointerCursor::Construct().
1.132 +
1.133 +This function always causes a flush of the window server buffer.
1.134 +
1.135 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
1.136 + {
1.137 + return(WriteReply(EWsSpriteOpActivate));
1.138 + }
1.139 +
1.140 +EXPORT_C TInt RWsSpriteBase::AppendMember(const TSpriteMember &aMemberData)
1.141 +/** Adds a sprite member to a sprite or pointer cursor.
1.142 +
1.143 +Sprite members are displayed by the sprite in the order in which they were
1.144 +added to the sprite. This function can be called before and after the sprite
1.145 +has been activated.
1.146 +
1.147 +The position of the bitmap can be changed in relation to the sprite's origin
1.148 +using the iOffset member of aSpriteList.
1.149 +
1.150 +This function always causes a flush of the window server buffer.
1.151 +
1.152 +@param aMemberData The sprite member to add.
1.153 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
1.154 + {
1.155 + TCmdSpriteMember params(aMemberData);
1.156 + return(WriteReply(¶ms,sizeof(params),EWsSpriteOpAppendMember));
1.157 + }
1.158 +
1.159 +//
1.160 +// RWsSprite
1.161 +//
1.162 +
1.163 +EXPORT_C RWsSprite::RWsSprite() : RWsSpriteBase()
1.164 +/** Default C++ constructor.
1.165 +
1.166 +This allows classes that contain an RWsSprite to be constructed before an
1.167 +RWsSession exists.
1.168 +
1.169 +Note: do not use this version of the constructor on its own. Before an RWsSprite
1.170 +object can be used it must be constructed using the RWsSprite(RWsSession)
1.171 +constructor. An example of this might be as follows:
1.172 +
1.173 +@code
1.174 +RWsSprite iSprite;
1.175 +iSprite=RWsSprite(iWsSession);
1.176 +@endcode */
1.177 + {}
1.178 +
1.179 +EXPORT_C RWsSprite::RWsSprite(RWsSession &aWs) : RWsSpriteBase(aWs)
1.180 +/** Constructs a sprite with a window server session.
1.181 +
1.182 +Initialisation must be completed using the Construct() function before the
1.183 +sprite can be activated using RWsSpriteBase::Activate().
1.184 +
1.185 +@param aWs The window server session owning the sprite. */
1.186 + {}
1.187 +
1.188 +EXPORT_C TInt RWsSprite::Construct(RWindowTreeNode &aWindow, const TPoint &aPos, TInt aFlags)
1.189 +/** Completes the construction of a sprite.
1.190 +
1.191 +This function must be called before a sprite is activated using RWsSpriteBase::Activate().
1.192 +
1.193 +It always causes a flush of the window server buffer.
1.194 +
1.195 +@param aWindow The window in which the sprite is displayed.
1.196 +@param aPos The position of the sprite's origin relative to aWindow's origin.
1.197 +The origin is the top left corner of the window.
1.198 +@param aFlags Any one of the TSpriteFlags values, or a combination of the flags,
1.199 +using a bit-wise OR operation.
1.200 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.201 +@panic TW32Panic 17 in debug builds if called on an already constructed object.
1.202 +@see TSpriteFlags */
1.203 + {
1.204 + __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
1.205 + TWsClCmdCreateSprite params(aWindow.WsHandle(),aPos,aFlags);
1.206 + TInt ret;
1.207 + if ((ret=iBuffer->WriteReplyWs(¶ms,sizeof(params),EWsClOpCreateSprite))>=0)
1.208 + {
1.209 + iWsHandle=ret;
1.210 + ret=KErrNone;
1.211 + }
1.212 + return(ret);
1.213 + }
1.214 +
1.215 +EXPORT_C void RWsSprite::SetPosition(const TPoint &aPos)
1.216 +/** Sets the sprite's position.
1.217 +
1.218 +This function can be called before or after the sprite has been activated.
1.219 +
1.220 +Note: the sprite's initial position is set when the sprite is constructed (see Construct()).
1.221 +
1.222 +@param aPos Position of the sprite's origin relative to the origin of the
1.223 +window that owns it. The origin is the top left corner of the window. */
1.224 + {
1.225 + WritePoint(aPos,EWsSpriteOpSetPosition);
1.226 + }
1.227 +
1.228 +//
1.229 +// RWsPointerCursor
1.230 +//
1.231 +
1.232 +EXPORT_C RWsPointerCursor::RWsPointerCursor() : RWsSpriteBase()
1.233 +/** Default C++ constructor.
1.234 +
1.235 +Use this constructor to allow classes that contain an RWsPointerCursor
1.236 +to be constructed before an RWsSession exists.
1.237 +
1.238 +Note: do not use this version of the constructor on its own.
1.239 +Before an RWsPointerCursor object can be used, it must be constructed
1.240 +using the RWsPointerCursor(RWsSession) constructor. An example of this
1.241 +might be as follows:
1.242 +
1.243 +@code
1.244 +RWsPointerCursor pointerCursor;
1.245 +pointerCursor=RWsPointerCursor(iWsSession);
1.246 +@endcode */
1.247 + {}
1.248 +
1.249 +EXPORT_C RWsPointerCursor::RWsPointerCursor(RWsSession &aWs) : RWsSpriteBase(aWs)
1.250 +/** Constructs a pointer cursor initialised with a window server session.
1.251 +
1.252 +Initialisation must be completed using the Construct() function before the
1.253 +sprite can be activated using RWsSpriteBase::Activate().
1.254 +
1.255 +Once initialisation is complete, the pointer cursor can be passed as an argument
1.256 +to RWsSession::SetSystemPointerCursor() or RWindowTreeNode::SetCustomPointerCursor().
1.257 +
1.258 +@param aWs The window server session owning the pointer cursor. */
1.259 + {}
1.260 +
1.261 +EXPORT_C TInt RWsPointerCursor::Construct(TInt aFlags)
1.262 +/** Completes pointer cursor construction.
1.263 +
1.264 +This function must be called before the pointer cursor is activated.
1.265 +
1.266 +It always causes a flush of the window server buffer.
1.267 +
1.268 +@param aFlags ESpriteFlash to flash the sprite on and off or 0 for a non-flashing
1.269 +cursor. Note that pointer cursors always behave as if ESpriteNoChildClip and
1.270 +ESpriteNoShadows are set.
1.271 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
1.272 + {
1.273 + __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
1.274 + TWsClCmdCreatePointerCursor params;
1.275 + params.flags=aFlags;
1.276 + TInt ret;
1.277 + if ((ret=iBuffer->WriteReplyWs(¶ms,sizeof(params),EWsClOpCreatePointerCursor))>=0)
1.278 + {
1.279 + iWsHandle=ret;
1.280 + ret=KErrNone;
1.281 + }
1.282 + return(ret);
1.283 + }