os/graphics/windowing/windowserver/nga/CLIENT/RSPRITE.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/CLIENT/RSPRITE.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,283 @@
     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(&params,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 +@panic If no member is present, a panic will occur. */
   1.137 +	{
   1.138 +	return(WriteReply(EWsSpriteOpActivate));
   1.139 +	}
   1.140 +
   1.141 +EXPORT_C TInt RWsSpriteBase::AppendMember(const TSpriteMember &aMemberData)
   1.142 +/** Adds a sprite member to a sprite or pointer cursor. 
   1.143 +
   1.144 +Sprite members are displayed by the sprite in the order in which they were 
   1.145 +added to the sprite. This function can be called before and after the sprite 
   1.146 +has been activated.
   1.147 +
   1.148 +The position of the bitmap can be changed in relation to the sprite's origin 
   1.149 +using the iOffset member of aSpriteList.
   1.150 + 
   1.151 +This function always causes a flush of the window server buffer.
   1.152 +
   1.153 +@param aMemberData The sprite member to add.
   1.154 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
   1.155 +	{
   1.156 +	TCmdSpriteMember params(aMemberData);
   1.157 +	return(WriteReply(&params,sizeof(params),EWsSpriteOpAppendMember));
   1.158 +	}
   1.159 +
   1.160 +//
   1.161 +// RWsSprite
   1.162 +//
   1.163 +
   1.164 +EXPORT_C RWsSprite::RWsSprite() : RWsSpriteBase()
   1.165 +/** Default C++ constructor. 
   1.166 +
   1.167 +This allows classes that contain an RWsSprite to be constructed before an 
   1.168 +RWsSession exists.
   1.169 +
   1.170 +Note: do not use this version of the constructor on its own. Before an RWsSprite 
   1.171 +object can be used it must be constructed using the RWsSprite(RWsSession) 
   1.172 +constructor. An example of this might be as follows:
   1.173 +
   1.174 +@code
   1.175 +RWsSprite iSprite;
   1.176 +iSprite=RWsSprite(iWsSession);
   1.177 +@endcode */
   1.178 +	{}
   1.179 +
   1.180 +EXPORT_C RWsSprite::RWsSprite(RWsSession &aWs) : RWsSpriteBase(aWs)
   1.181 +/** Constructs a sprite with a window server session. 
   1.182 +
   1.183 +Initialisation must be completed using the Construct() function before the 
   1.184 +sprite can be activated using RWsSpriteBase::Activate().
   1.185 +
   1.186 +@param aWs The window server session owning the sprite. */
   1.187 +	{}
   1.188 +
   1.189 +EXPORT_C TInt RWsSprite::Construct(RWindowTreeNode &aWindow, const TPoint &aPos, TInt aFlags)
   1.190 +/** Completes the construction of a sprite. 
   1.191 +
   1.192 +This function must be called before a sprite is activated using RWsSpriteBase::Activate().
   1.193 + 
   1.194 +It always causes a flush of the window server buffer.
   1.195 +
   1.196 +@param aWindow The window in which the sprite is displayed.
   1.197 +@param aPos The position of the sprite's origin relative to aWindow's origin. 
   1.198 +The origin is the top left corner of the window. 
   1.199 +@param aFlags Any one of the TSpriteFlags values, or a combination of the flags, 
   1.200 +using a bit-wise OR operation.
   1.201 +@return KErrNone if successful, otherwise one of the system-wide error codes. 
   1.202 +@panic TW32Panic 17 in debug builds if called on an already constructed object.
   1.203 +@see TSpriteFlags */
   1.204 +	{
   1.205 +	__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
   1.206 +	TWsClCmdCreateSprite params(aWindow.WsHandle(),aPos,aFlags);
   1.207 +	TInt ret;
   1.208 +	if ((ret=iBuffer->WriteReplyWs(&params,sizeof(params),EWsClOpCreateSprite))>=0)
   1.209 +		{
   1.210 +		iWsHandle=ret;
   1.211 +		ret=KErrNone;
   1.212 +		}
   1.213 +	return(ret);
   1.214 +	}
   1.215 +
   1.216 +EXPORT_C void RWsSprite::SetPosition(const TPoint &aPos)
   1.217 +/** Sets the sprite's position. 
   1.218 +
   1.219 +This function can be called before or after the sprite has been activated. 
   1.220 +
   1.221 +Note: the sprite's initial position is set when the sprite is constructed (see Construct()).
   1.222 +
   1.223 +@param aPos Position of the sprite's origin relative to the origin of the 
   1.224 +window that owns it. The origin is the top left corner of the window. */
   1.225 +	{
   1.226 +	WritePoint(aPos,EWsSpriteOpSetPosition);
   1.227 +	}
   1.228 +
   1.229 +//
   1.230 +// RWsPointerCursor
   1.231 +//
   1.232 +
   1.233 +EXPORT_C RWsPointerCursor::RWsPointerCursor() : RWsSpriteBase()
   1.234 +/** Default C++ constructor. 
   1.235 +
   1.236 +Use this constructor to allow classes that contain an RWsPointerCursor 
   1.237 +to be constructed before an RWsSession exists.
   1.238 +
   1.239 +Note: do not use this version of the constructor on its own. 
   1.240 +Before an RWsPointerCursor object can be used, it must be constructed 
   1.241 +using the RWsPointerCursor(RWsSession) constructor. An example of this 
   1.242 +might be as follows:
   1.243 +
   1.244 +@code
   1.245 +RWsPointerCursor pointerCursor;
   1.246 +pointerCursor=RWsPointerCursor(iWsSession);
   1.247 +@endcode */
   1.248 +	{}
   1.249 +
   1.250 +EXPORT_C RWsPointerCursor::RWsPointerCursor(RWsSession &aWs) : RWsSpriteBase(aWs)
   1.251 +/** Constructs a pointer cursor initialised with a window server session. 
   1.252 +
   1.253 +Initialisation must be completed using the Construct() function before the 
   1.254 +sprite can be activated using RWsSpriteBase::Activate().
   1.255 +
   1.256 +Once initialisation is complete, the pointer cursor can be passed as an argument 
   1.257 +to RWsSession::SetSystemPointerCursor() or RWindowTreeNode::SetCustomPointerCursor().
   1.258 +
   1.259 +@param aWs The window server session owning the pointer cursor. */
   1.260 +	{}
   1.261 +
   1.262 +EXPORT_C TInt RWsPointerCursor::Construct(TInt aFlags)
   1.263 +/** Completes pointer cursor construction. 
   1.264 +
   1.265 +This function must be called before the pointer cursor is activated.
   1.266 + 
   1.267 +It always causes a flush of the window server buffer.
   1.268 +
   1.269 +@param aFlags ESpriteFlash to flash the sprite on and off or 0 for a non-flashing 
   1.270 +cursor. Note that pointer cursors always behave as if ESpriteNoChildClip and 
   1.271 +ESpriteNoShadows are set. 
   1.272 +@return KErrNone if successful, otherwise one of the system-wide error codes. 
   1.273 +@panic TW32Panic 17 in debug builds if called on an already constructed object.
   1.274 +*/
   1.275 +	{
   1.276 +	__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
   1.277 +	TWsClCmdCreatePointerCursor params;
   1.278 +	params.flags=aFlags;
   1.279 +	TInt ret;
   1.280 +	if ((ret=iBuffer->WriteReplyWs(&params,sizeof(params),EWsClOpCreatePointerCursor))>=0)
   1.281 +		{
   1.282 +		iWsHandle=ret;
   1.283 +		ret=KErrNone;
   1.284 +		}
   1.285 +	return(ret);
   1.286 +	}