os/graphics/windowing/windowserver/nga/CLIENT/RANIM.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// Shells Animate DLL
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 "w32comm.h"
sl@0
    21
#include "CLIENT.H"
sl@0
    22
sl@0
    23
EXPORT_C RAnimDll::RAnimDll()
sl@0
    24
/** Default constructor. 
sl@0
    25
sl@0
    26
RAnimDll is a lightweight class which can be allocated as a non-pointer member. 
sl@0
    27
This constructor is provided to allow such a member to be instantiated while 
sl@0
    28
its owner is constructed.
sl@0
    29
sl@0
    30
Note that an RAnimDll constructed without a reference to a window server session 
sl@0
    31
is invalid. */
sl@0
    32
	{}
sl@0
    33
sl@0
    34
EXPORT_C RAnimDll::RAnimDll(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
sl@0
    35
/** Valid constructor. 
sl@0
    36
sl@0
    37
To be useable, an animation DLL should always be constructed with a reference 
sl@0
    38
to a window server session as argument.
sl@0
    39
sl@0
    40
@param aWs Window server session to use. */
sl@0
    41
	{}
sl@0
    42
sl@0
    43
EXPORT_C RAnimDll::~RAnimDll()
sl@0
    44
/** Empty virtual destructor. 
sl@0
    45
sl@0
    46
Destroy() should be used to instead of this function to destroy both this 
sl@0
    47
object and the server-side CAnimDll object.
sl@0
    48
sl@0
    49
@see Destroy()
sl@0
    50
@see Close() */
sl@0
    51
	{}
sl@0
    52
sl@0
    53
EXPORT_C void RAnimDll::Close()
sl@0
    54
/** Closes an animation DLL. 
sl@0
    55
sl@0
    56
Use this function to close a polymorphic DLL which was previously loaded on 
sl@0
    57
the server. Cleans up and frees all resources belonging to the DLL but does 
sl@0
    58
not delete it. Closing is in accordance with the RLibrary mechanism.
sl@0
    59
sl@0
    60
Load() and Close() are symmetrical operations. A DLL can be re-loaded after 
sl@0
    61
a close has been called on it.
sl@0
    62
sl@0
    63
To both close and delete a previously loaded DLL, use Destroy(). */
sl@0
    64
	{
sl@0
    65
	if (iBuffer && iWsHandle)
sl@0
    66
		Write(EWsAnimDllOpFree);
sl@0
    67
	iWsHandle=NULL;
sl@0
    68
	}
sl@0
    69
sl@0
    70
EXPORT_C void RAnimDll::Destroy()
sl@0
    71
/** Closes and deletes a previously loaded polymorphic DLL. 
sl@0
    72
sl@0
    73
This function is equivalent to calling this->Close() followed by delete this, 
sl@0
    74
in accordance with the RLibrary mechanism provided for managing polymorphic 
sl@0
    75
DLLs. */
sl@0
    76
	{
sl@0
    77
	Close();
sl@0
    78
	delete this;
sl@0
    79
	}
sl@0
    80
sl@0
    81
EXPORT_C TInt RAnimDll::Load(const TDesC &aFileName)
sl@0
    82
/** Instructs the server to load an animation DLL. 
sl@0
    83
sl@0
    84
Use this function to pass the name of a polymorphic DLL, the animation DLL, 
sl@0
    85
for loading on the server side. Loading is in accordance with the RLibrary 
sl@0
    86
mechanism. The DLL must conform to the interface defined by the window server, 
sl@0
    87
otherwise an error will result. For requirements, see the description of CAnimDll.
sl@0
    88
sl@0
    89
Load() and Close() are symmetrical operations. A DLL can be re-loaded after 
sl@0
    90
a close has been called on it.
sl@0
    91
sl@0
    92
This function always causes a flush of the window server buffer.
sl@0
    93
sl@0
    94
@param aFileName Filename of the DLL to load. 
sl@0
    95
@return KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
    96
@panic TW32Panic 17 in debug builds if called on an already constructed object.*/
sl@0
    97
	{
sl@0
    98
	 __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
sl@0
    99
	TWsClCmdLoadAnimDll load;
sl@0
   100
	load.length=aFileName.Length();
sl@0
   101
	TInt ret;
sl@0
   102
	ret=iBuffer->WriteReplyWs(&load,sizeof(load),aFileName.Ptr(),aFileName.Size(),EWsClOpCreateAnimDll);
sl@0
   103
	if (ret<0)
sl@0
   104
		return(ret);
sl@0
   105
	iWsHandle=ret;
sl@0
   106
	return(KErrNone);
sl@0
   107
	}
sl@0
   108
sl@0
   109
TInt RAnimDll::CommandReply(TInt aHandle, TInt aOpcode, const TDesC8& aArgs, const TIpcArgs* aIpcArgs)
sl@0
   110
	{
sl@0
   111
	TInt params[2];
sl@0
   112
	params[0]=aHandle;
sl@0
   113
	params[1]=aOpcode;
sl@0
   114
	return(WriteReply(&params,sizeof(params),aArgs.Ptr(),aArgs.Length(),EWsAnimDllOpCommandReply,aIpcArgs));
sl@0
   115
	}
sl@0
   116
sl@0
   117
TInt RAnimDll::CommandReply(TInt aHandle, TInt aOpcode, const TIpcArgs* aIpcArgs)
sl@0
   118
	{
sl@0
   119
	TInt params[2];
sl@0
   120
	params[0]=aHandle;
sl@0
   121
	params[1]=aOpcode;
sl@0
   122
	return(WriteReply(&params,sizeof(params),EWsAnimDllOpCommandReply,aIpcArgs));
sl@0
   123
	}
sl@0
   124
sl@0
   125
void RAnimDll::Command(TInt aHandle, TInt aOpcode, const TPtrC8 &aArgs)
sl@0
   126
	{
sl@0
   127
	TInt params[2];
sl@0
   128
	params[0]=aHandle;
sl@0
   129
	params[1]=aOpcode;
sl@0
   130
	Write(&params,sizeof(params),aArgs.Ptr(),aArgs.Length(),EWsAnimDllOpCommand);
sl@0
   131
	}
sl@0
   132
sl@0
   133
void RAnimDll::Command(TInt aHandle, TInt aOpcode)
sl@0
   134
	{
sl@0
   135
	TInt params[2];
sl@0
   136
	params[0]=aHandle;
sl@0
   137
	params[1]=aOpcode;
sl@0
   138
	Write(&params,sizeof(params),EWsAnimDllOpCommand);
sl@0
   139
	}
sl@0
   140
sl@0
   141
void RAnimDll::AsyncCommandReply(TRequestStatus& aStatus, TInt aOpcode, TIpcArgs& aIpcArgs)
sl@0
   142
	{
sl@0
   143
	__ASSERT_DEBUG((aOpcode&EWservMessAnimDllAsyncCommand)==0, Assert(EW32AssertIllegalOpcode));
sl@0
   144
	aIpcArgs.Set(KAsyncMessageSlotAnimDllHandle,iWsHandle);
sl@0
   145
	iBuffer->Flush(); // needs to happen first so that things occur in their correct order, and because this asynchronous function uses a different mechanism, i.e. assigns different meanings to, say, the first slot in the TIpcArgs
sl@0
   146
	iBuffer->Session()->SendReceive((aOpcode|EWservMessAnimDllAsyncCommand),aIpcArgs,aStatus);
sl@0
   147
	}
sl@0
   148
sl@0
   149
TInt RAnimDll::CreateInstance(TInt32& aHandle, const MWsClientClass &aDevice, TInt aType, const TDesC8 &aArgs, TInt aOpcode, const TIpcArgs* aIpcArgs)
sl@0
   150
	{
sl@0
   151
	TInt params[2];
sl@0
   152
	params[0]=aDevice.WsHandle();
sl@0
   153
	params[1]=aType;
sl@0
   154
	const TInt returnValue=WriteReply(&params,sizeof(params),aArgs.Ptr(),aArgs.Length(),aOpcode,aIpcArgs);
sl@0
   155
	if (returnValue>=0)
sl@0
   156
		{
sl@0
   157
		aHandle=returnValue;
sl@0
   158
		return KErrNone;
sl@0
   159
		}
sl@0
   160
	return returnValue;
sl@0
   161
	}
sl@0
   162
sl@0
   163
void RAnimDll::DestroyInstance(TInt aHandle)
sl@0
   164
	{
sl@0
   165
	WriteReplyInt(aHandle,EWsAnimDllOpDestroyInstance);
sl@0
   166
	}
sl@0
   167
sl@0
   168
EXPORT_C RAnim::RAnim() : iHandle(0)
sl@0
   169
/** Default constructor. Developers should use the other constructor overload. */
sl@0
   170
	{}
sl@0
   171
sl@0
   172
EXPORT_C RAnim::RAnim(RAnimDll &aDll) : iHandle(0),iAnimDll(&aDll)
sl@0
   173
/** Protected C++ constructor.
sl@0
   174
sl@0
   175
This constructor should be used to construct an animation object from a given 
sl@0
   176
animation DLL. The DLL must be loaded first, see the discussion of RAnimDll.
sl@0
   177
sl@0
   178
@param aDll The animation DLL. */
sl@0
   179
	{}
sl@0
   180
sl@0
   181
EXPORT_C RAnim::~RAnim()
sl@0
   182
/** Empty virtual destructor. */
sl@0
   183
	{}
sl@0
   184
sl@0
   185
EXPORT_C TInt RAnim::Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams)
sl@0
   186
/** Completes construction of the object based on a window device, and creates 
sl@0
   187
the server-side animation system. 
sl@0
   188
sl@0
   189
Construction information is passed to the server side via aType and aParams. 
sl@0
   190
The server then passes the information to the function CreateInstanceL() inside 
sl@0
   191
the Anim DLL.
sl@0
   192
sl@0
   193
This function always causes a flush of the window server buffer.
sl@0
   194
sl@0
   195
@param aDevice A window device. 
sl@0
   196
@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL(). 
sl@0
   197
@param aParams Packaged arguments which will be passed to the server side object 
sl@0
   198
to tell it how to construct itself or initialise itself. 
sl@0
   199
@return KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
   200
@see CAnim::ConstructL()
sl@0
   201
@see CAnimDll::CreateInstanceL() */
sl@0
   202
	{
sl@0
   203
	return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstance, NULL);
sl@0
   204
	}
sl@0
   205
sl@0
   206
EXPORT_C TInt RAnim::Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs)
sl@0
   207
/** Completes construction of the object based on a window device, and creates 
sl@0
   208
the server-side animation system. 
sl@0
   209
sl@0
   210
Construction information is passed to the server side via aType and aParams. 
sl@0
   211
The server then passes the information to the function CreateInstanceL() inside 
sl@0
   212
the Anim DLL.
sl@0
   213
sl@0
   214
This function always causes a flush of the window server buffer.
sl@0
   215
sl@0
   216
@param aDevice A window device. 
sl@0
   217
@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL(). 
sl@0
   218
@param aParams Packaged arguments which will be passed to the server side object 
sl@0
   219
to tell it how to construct itself or initialise itself. 
sl@0
   220
@param aIpcArgs Inter-process communication arguments which will be passed to the server side 
sl@0
   221
object. Panics if the first "slot" is set to anything other than TIpcArgs::ENothing.
sl@0
   222
@return KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
   223
@see CAnim::ConstructL()
sl@0
   224
@see CAnimDll::CreateInstanceL() */
sl@0
   225
	{
sl@0
   226
	return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstance, &aIpcArgs);
sl@0
   227
	}
sl@0
   228
sl@0
   229
EXPORT_C TInt RAnim::Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams)
sl@0
   230
/** Completes construction of the Anim DLL based on a sprite. 
sl@0
   231
sl@0
   232
Construction information is passed to the server side via aType and aParams. 
sl@0
   233
The server then passes the information to the function CreateInstanceL() inside 
sl@0
   234
the Anim DLL.
sl@0
   235
sl@0
   236
This function always causes a flush of the window server buffer.
sl@0
   237
sl@0
   238
@param aDevice A sprite. 
sl@0
   239
@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL(). 
sl@0
   240
@param aParams Packaged arguments which will be passed to the server side object 
sl@0
   241
to tell it how to construct itself or initialise itself. 
sl@0
   242
@return KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
   243
@see CAnim::ConstructL()
sl@0
   244
@see CAnimDll::CreateInstanceL() */
sl@0
   245
	{
sl@0
   246
	return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstanceSprite, NULL);
sl@0
   247
	}
sl@0
   248
sl@0
   249
EXPORT_C TInt RAnim::Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs)
sl@0
   250
/** Completes construction of the Anim DLL based on a sprite. 
sl@0
   251
sl@0
   252
Construction information is passed to the server side via aType and aParams. 
sl@0
   253
The server then passes the information to the function CreateInstanceL() inside 
sl@0
   254
the Anim DLL.
sl@0
   255
sl@0
   256
This function always causes a flush of the window server buffer.
sl@0
   257
sl@0
   258
@param aDevice A sprite. 
sl@0
   259
@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL(). 
sl@0
   260
@param aParams Packaged arguments which will be passed to the server side object 
sl@0
   261
to tell it how to construct itself or initialise itself. 
sl@0
   262
@param aIpcArgs Inter-process communication arguments which will be passed to the server side 
sl@0
   263
object. Panics if the first "slot" is set to anything other than TIpcArgs::ENothing.
sl@0
   264
@return KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
   265
@see CAnim::ConstructL()
sl@0
   266
@see CAnimDll::CreateInstanceL() */
sl@0
   267
	{
sl@0
   268
	return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstanceSprite, &aIpcArgs);
sl@0
   269
	}
sl@0
   270
sl@0
   271
EXPORT_C TInt RAnim::CommandReply(TInt aOpcode)
sl@0
   272
/** Sends a command to the server-side CAnim instance, and waits for a response. 
sl@0
   273
sl@0
   274
This function executes synchronously and returns the code returned by the 
sl@0
   275
server-side method CAnim::CommandReplyL(). The request is not buffered.
sl@0
   276
sl@0
   277
@param aOpcode An opcode meaningful to the server-side CAnim-derived class. 
sl@0
   278
@return A value defined by the animation writer. The value may, in some cases, 
sl@0
   279
be defined to be an error code.
sl@0
   280
sl@0
   281
This function always causes a flush of the window server buffer. 
sl@0
   282
sl@0
   283
@see Command()
sl@0
   284
@see AsyncCommandReply()
sl@0
   285
@see CAnim::CommandReplyL() */
sl@0
   286
	{
sl@0
   287
	return(iAnimDll->CommandReply(iHandle,aOpcode));
sl@0
   288
	}
sl@0
   289
sl@0
   290
EXPORT_C TInt RAnim::CommandReply(TInt aOpcode, const TPtrC8 &aArgs)
sl@0
   291
/** Sends a command and its arguments to the server-side CAnim instance, and waits 
sl@0
   292
for a response. 
sl@0
   293
sl@0
   294
The packaged command arguments are passed to the matching server side function, 
sl@0
   295
where the behaviour should be implemented. The request is not buffered. The 
sl@0
   296
function executes synchronously and returns the code returned by the server-side 
sl@0
   297
method CAnim::CommandReplyL().
sl@0
   298
sl@0
   299
This function always causes a flush of the window server buffer. 
sl@0
   300
sl@0
   301
@param aOpcode An opcode meaningful to the server-side CAnim-derived class. 
sl@0
   302
@param aArgs Packaged arguments which will be passed to the server side object. 
sl@0
   303
@return A value defined by the animation writer. The value may, in some cases, 
sl@0
   304
be defined to be an error code. 
sl@0
   305
@see Command()
sl@0
   306
@see AsyncCommandReply()
sl@0
   307
@see CAnim::CommandReplyL() */
sl@0
   308
	{
sl@0
   309
	return(iAnimDll->CommandReply(iHandle,aOpcode, aArgs));
sl@0
   310
	}
sl@0
   311
sl@0
   312
EXPORT_C TInt RAnim::CommandReply(TInt aOpcode, const TDesC8& aArgs, const TIpcArgs& aIpcArgs)
sl@0
   313
/** Sends a command and its arguments to the server-side CAnim instance, and waits 
sl@0
   314
for a response. 
sl@0
   315
sl@0
   316
The IPC (inter-process communication) arguments are passed to the matching server side function, 
sl@0
   317
where the behaviour should be implemented. The request is not buffered. The 
sl@0
   318
function executes synchronously and returns the code returned by the server-side 
sl@0
   319
method CAnim::CommandReplyL(). The first slot of the TIpcArgs parameter is reserved for 
sl@0
   320
internal use. The second slot is used to receive an additional reply from the server-side CAnim.
sl@0
   321
sl@0
   322
This function always causes a flush of the window server buffer. 
sl@0
   323
sl@0
   324
@param aOpcode An opcode meaningful to the server-side CAnim-derived class. 
sl@0
   325
@param aArgs Packaged arguments which will be passed to the server side object. 
sl@0
   326
@param aIpcArgs Inter-process communication arguments which will be passed to the server side 
sl@0
   327
object. Panics if the first "slot" is set to anything other than TIpcArgs::ENothing.
sl@0
   328
@return A value defined by the animation writer. The value may, in some cases, 
sl@0
   329
be defined to be an error code. 
sl@0
   330
@see Command()
sl@0
   331
@see AsyncCommandReply()
sl@0
   332
@see CAnim::CommandReplyL() */
sl@0
   333
	{
sl@0
   334
	return(iAnimDll->CommandReply(iHandle,aOpcode,aArgs,&aIpcArgs));
sl@0
   335
	}
sl@0
   336
sl@0
   337
EXPORT_C void RAnim::Command(TInt aOpcode)
sl@0
   338
/** Sends a command to the server-side CAnim instance, and returns immediately. 
sl@0
   339
sl@0
   340
Commands issued by this function may be buffered before being passed to the 
sl@0
   341
server.
sl@0
   342
sl@0
   343
Server-side errors cannot be detected, so Command() should not be used for 
sl@0
   344
operations which could fail or which may leave. Use CommandReply() for those. 
sl@0
   345
Although the window server will not fail due to errors not being returned 
sl@0
   346
to the client side, client side behaviour will almost certainly not be correct 
sl@0
   347
if errors have been generated but not received.
sl@0
   348
sl@0
   349
Use of this function results in a server-side call to the equivalent CAnim::Command().
sl@0
   350
sl@0
   351
@param aOpcode An operation meaningful to the server-side CAnim object. 
sl@0
   352
@see CommandReply()
sl@0
   353
@see AsyncCommandReply()
sl@0
   354
@see CAnim::Command() */
sl@0
   355
	{
sl@0
   356
	iAnimDll->Command(iHandle,aOpcode);
sl@0
   357
	}
sl@0
   358
sl@0
   359
EXPORT_C void RAnim::Command(TInt aOpcode, const TPtrC8 &aArgs)
sl@0
   360
/** Sends a command and its arguments to the server-side CAnim instance, and returns 
sl@0
   361
immediately. 
sl@0
   362
sl@0
   363
Commands issued by this function may be buffered before being passed to the 
sl@0
   364
server.
sl@0
   365
sl@0
   366
Server-side errors cannot be detected, so Command() should not be used for 
sl@0
   367
operations which could fail or which may leave. Use CommandReply() for those. 
sl@0
   368
Although the window server will not fail due to errors not being returned 
sl@0
   369
to the client side, client side behaviour will almost certainly not be correct 
sl@0
   370
if errors have been generated but not received.
sl@0
   371
sl@0
   372
Use of this function results in a server-side call to the equivalent CAnim::Command().
sl@0
   373
sl@0
   374
@param aOpcode An operation meaningful to the server-side CAnim object. 
sl@0
   375
@param aArgs Packaged arguments which will be passed to the server side object. 
sl@0
   376
sl@0
   377
@see CommandReply()
sl@0
   378
@see AsyncCommandReply()
sl@0
   379
@see CAnim::Command() */
sl@0
   380
	{
sl@0
   381
	iAnimDll->Command(iHandle,aOpcode, aArgs);
sl@0
   382
	}
sl@0
   383
sl@0
   384
EXPORT_C void RAnim::AsyncCommandReply(TRequestStatus& aRequestStatus,TInt aOpcode, const TIpcArgs& aIpcArgs)
sl@0
   385
/** Sends a command and its arguments to the server-side CAnim instance asynchronously. 
sl@0
   386
sl@0
   387
The IPC (inter-process communication) arguments are passed to the CAnim-derived class' 
sl@0
   388
CommandReplyL function, where the behaviour should be implemented. The request is not 
sl@0
   389
buffered - rather the function executes asynchronously. The first and second slots of the 
sl@0
   390
TIpcArgs parameter are reserved for internal use. 
sl@0
   391
sl@0
   392
If the code calling this function is itself an API that is asynchronous (i.e. if the 
sl@0
   393
TRequestStatus passed into this function is simply a parameter to a higher-level API), then that 
sl@0
   394
higher-level API should typically provide a corresponding "Cancel" function that its own clients 
sl@0
   395
can use to cancel their asynchronous request - this would typically be implemented by the 
sl@0
   396
higher-level API by using RAnim::CommandReply.
sl@0
   397
sl@0
   398
@param aRequestStatus Set initially by the function to KRequestPending. Then when this 
sl@0
   399
asynchronous function at some potentially later point in time "completes", aRequestStatus 
sl@0
   400
is set to the completion code which is a value defined by the animation writer (i.e. the value 
sl@0
   401
that the server-side CAnim-derived class' CommandReplyL returns or leaves with). The value may, 
sl@0
   402
in some cases, be defined to be an error code. 
sl@0
   403
@param aOpcode An opcode meaningful to the server-side CAnim-derived class. 
sl@0
   404
@param aIpcArgs Inter-process communication arguments which will be passed to the server side 
sl@0
   405
object. Panics if either the first or second "slot" is set to anything other than 
sl@0
   406
TIpcArgs::ENothing.
sl@0
   407
sl@0
   408
@see CommandReply()
sl@0
   409
@see Command()
sl@0
   410
@see CAnim::CommandReplyL() */
sl@0
   411
	{
sl@0
   412
	TIpcArgs ipcArgs;
sl@0
   413
	ipcArgs=aIpcArgs; // GCC doesn't seem to like doing a copy constructor on TIpcArgs, probably because it's confused by all the templated-ness of TIpcArgs' constructors
sl@0
   414
	// check that the caller hasn't used the first or second slot (the first is set by the RAnimDll::AsyncCommandReply call below)
sl@0
   415
	ipcArgs.Set(KAsyncMessageSlotAnimDllHandle,TIpcArgs::ENothing);
sl@0
   416
	ipcArgs.Set(KAsyncMessageSlotAnimHandle,TIpcArgs::ENothing);
sl@0
   417
	__ASSERT_ALWAYS(Mem::Compare(REINTERPRET_CAST(const TUint8*, &ipcArgs), sizeof(TIpcArgs), REINTERPRET_CAST(const TUint8*, &aIpcArgs), sizeof(TIpcArgs))==0,Panic(EW32PanicUsingReservedIpcSlot));
sl@0
   418
	ipcArgs.Set(KAsyncMessageSlotAnimHandle,iHandle);
sl@0
   419
	iAnimDll->AsyncCommandReply(aRequestStatus, aOpcode, ipcArgs);
sl@0
   420
	}
sl@0
   421
sl@0
   422
EXPORT_C void RAnim::Close()
sl@0
   423
/** Sends the close command.
sl@0
   424
sl@0
   425
This frees resources belonging to an animation object. It would be called 
sl@0
   426
to release resources when the RAnim is owned in-line by another object (so 
sl@0
   427
that destruction is automatic). 
sl@0
   428
sl@0
   429
This function always causes a flush of the window server buffer. */
sl@0
   430
	{
sl@0
   431
	if (iHandle!=0)
sl@0
   432
		{
sl@0
   433
		iAnimDll->DestroyInstance(iHandle);
sl@0
   434
		iHandle=0;
sl@0
   435
		}
sl@0
   436
	}
sl@0
   437
sl@0
   438
EXPORT_C void RAnim::Destroy()
sl@0
   439
/** Closes and deletes the server-side animation object. 
sl@0
   440
sl@0
   441
This should be called on heap allocated objects. 
sl@0
   442
sl@0
   443
This function always causes a flush of the window server buffer. */
sl@0
   444
	{
sl@0
   445
	Close();
sl@0
   446
	delete this;
sl@0
   447
	}