os/graphics/windowing/windowserver/nonnga/graphicdrawer/graphicdrawerarray.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
//
sl@0
    15
sl@0
    16
#include "WSGRAPHICDRAWERARRAY.H"
sl@0
    17
#include "Graphics/WSGRAPHICDRAWER.H"
sl@0
    18
#include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
sl@0
    19
#include "panics.h"
sl@0
    20
sl@0
    21
// CWsGraphicDrawerArray::XRollBackBase \\\\\\\\\\\\\\\\\\\\\\\\
sl@0
    22
sl@0
    23
/** Base class for cleanup operations - used as a handle for the CommitP() method
sl@0
    24
	This cleanup object is created on the heap with new(ELeave).
sl@0
    25
	It must be immediately pushed onto the cleanup stack, BEFORE the operation it protects,
sl@0
    26
	and must be written so that it does nothing until "activated" by the operation completing successfully.
sl@0
    27
	iArray==NULL indicates this state.
sl@0
    28
	This is because the client does not know whether the new(ELeave), the PushL, or the operational meat 
sl@0
    29
	generated the exception, and therefore the operation must be the last exception thrown in the method.
sl@0
    30
	@internalComponent
sl@0
    31
	@released
sl@0
    32
*/
sl@0
    33
NONSHARABLE_STRUCT(CWsGraphicDrawerArray::XRollBackBase)
sl@0
    34
	{
sl@0
    35
public:
sl@0
    36
	XRollBackBase():	iArray(NULL)	{}
sl@0
    37
	virtual ~XRollBackBase()			{}
sl@0
    38
public:
sl@0
    39
	CWsGraphicDrawerArray*				iArray;
sl@0
    40
	};
sl@0
    41
// CWsGraphicDrawerArray::XAddRollBack \\\\\\\\\\\\\\\\\\\\\\\\
sl@0
    42
sl@0
    43
/** Cleanup record for Add operation. Removes the array entry at the recorded array index.
sl@0
    44
	@internalComponent
sl@0
    45
	@released
sl@0
    46
*/
sl@0
    47
NONSHARABLE_STRUCT(CWsGraphicDrawerArray::XAddRollBack) :public  CWsGraphicDrawerArray::XRollBackBase
sl@0
    48
	{
sl@0
    49
	TGraphicDrawerId iId;
sl@0
    50
	static void RollBackD(TAny* aAddRollBack);
sl@0
    51
	};
sl@0
    52
sl@0
    53
/** Rolls back an adding of a drawer to an array, but does not delete the drawer.
sl@0
    54
	Removes the array entry at the given array index.	
sl@0
    55
*/
sl@0
    56
void CWsGraphicDrawerArray::XAddRollBack::RollBackD(TAny* aAddRollBack)
sl@0
    57
	{
sl@0
    58
	__ASSERT_DEBUG(aAddRollBack,Panic(EWsGraphicDrawerPanicBadAddLCCleanup));
sl@0
    59
	if(aAddRollBack)
sl@0
    60
		{
sl@0
    61
		XAddRollBack* rollBack = static_cast<XAddRollBack*>(aAddRollBack);
sl@0
    62
		// iArray would be NULL if you pushed a NULL drawer in release builds
sl@0
    63
		//It can also be null if the Add operation Leaves
sl@0
    64
		if(rollBack->iArray) 
sl@0
    65
			{
sl@0
    66
			rollBack->iArray->Remove(rollBack->iId);
sl@0
    67
			}
sl@0
    68
		delete  rollBack;
sl@0
    69
		}
sl@0
    70
	}
sl@0
    71
sl@0
    72
// CWsGraphicDrawerArray::XRemoveRollBack \\\\\\\\\\\\\\\\\\\\\\\\
sl@0
    73
sl@0
    74
/** Cleanup record for Swap operation. Re-inserts the recorded drawer by finding its index.
sl@0
    75
	@internalComponent
sl@0
    76
	@released
sl@0
    77
*/
sl@0
    78
NONSHARABLE_STRUCT(CWsGraphicDrawerArray::XSwapRollBack) :public  CWsGraphicDrawerArray::XRollBackBase
sl@0
    79
	{
sl@0
    80
	CWsGraphicDrawer* iDrawer;
sl@0
    81
	static void RollBackD(TAny* aSwapRollBack);
sl@0
    82
	};
sl@0
    83
sl@0
    84
/** Rolls back the swapping (replacing) of a drawer to an array, but does not delete the replacing drawer.
sl@0
    85
	Re-inserts the recorded drawer by finding its index.
sl@0
    86
 */
sl@0
    87
void CWsGraphicDrawerArray::XSwapRollBack::RollBackD(TAny* aSwapRollBack)
sl@0
    88
	{
sl@0
    89
	__ASSERT_DEBUG(aSwapRollBack,Panic(EWsGraphicDrawerPanicBadSwapLCCleanup));
sl@0
    90
	if(aSwapRollBack)
sl@0
    91
		{
sl@0
    92
		XSwapRollBack* rollBack = static_cast<XSwapRollBack*>(aSwapRollBack);
sl@0
    93
		// would be NULL if you removed an id that wasn't in the array in release builds
sl@0
    94
		// or if the swap itself Leaves
sl@0
    95
		if(rollBack->iArray) 
sl@0
    96
			{
sl@0
    97
			const TInt idx = rollBack->iArray->IndexOf(rollBack->iDrawer->Id());
sl@0
    98
			__ASSERT_DEBUG(0 <= idx,Panic(EWsGraphicDrawerPanicBadSwapLCCleanup));
sl@0
    99
			if(0 <= idx) // hmm, don't see how this could ever happen.  If it does, better to leak memory etc 
sl@0
   100
				{
sl@0
   101
				rollBack->iArray->iArray[idx].iDrawer = rollBack->iDrawer;
sl@0
   102
				}
sl@0
   103
			}
sl@0
   104
		delete rollBack;
sl@0
   105
		}
sl@0
   106
	}
sl@0
   107
sl@0
   108
// CWsGraphicDrawerArray::XRemoveRollBack \\\\\\\\\\\\\\\\\\\\\\\\
sl@0
   109
sl@0
   110
/** Cleanup record for Remove operation. Re-inserts the recorded drawer by finding its index.
sl@0
   111
	@internalComponent
sl@0
   112
	@released
sl@0
   113
*/
sl@0
   114
NONSHARABLE_STRUCT(CWsGraphicDrawerArray::XRemoveRollBack) :public  CWsGraphicDrawerArray::XRollBackBase
sl@0
   115
	{
sl@0
   116
	CWsGraphicDrawer* iDrawer;
sl@0
   117
	static void RollBackD(TAny* aSwapRollBack);
sl@0
   118
	};
sl@0
   119
sl@0
   120
/** Rolls back the deleting of a drawer from an array, but does not delete the replacing drawer.
sl@0
   121
	Re-inserts the recorded drawer by finding its index.
sl@0
   122
 */
sl@0
   123
void CWsGraphicDrawerArray::XRemoveRollBack::RollBackD(TAny* aRemoveRollBack)
sl@0
   124
	{
sl@0
   125
	__ASSERT_DEBUG(aRemoveRollBack,Panic(EWsGraphicDrawerPanicBadSwapLCCleanup));
sl@0
   126
	if(aRemoveRollBack)
sl@0
   127
		{
sl@0
   128
		XRemoveRollBack* rollBack = static_cast<XRemoveRollBack*>(aRemoveRollBack);
sl@0
   129
		// would be NULL if you removed an id that wasn't in the array in release builds
sl@0
   130
		// or if the swap itself Leaves
sl@0
   131
		if(rollBack->iArray) 
sl@0
   132
			{
sl@0
   133
			TGraphic graphic;
sl@0
   134
			graphic.iId = rollBack->iDrawer->Id();
sl@0
   135
			graphic.iDrawer = rollBack->iDrawer;
sl@0
   136
			TInt errCode= rollBack->iArray->iArray.InsertInOrder(graphic,GraphicDrawerCompare); // dups not allowed
sl@0
   137
			//This should not happen unless some non-transactional method has modified the array
sl@0
   138
			//between the call and the leave.
sl@0
   139
			__ASSERT_DEBUG(KErrAlreadyExists != errCode,Panic(EWsGraphicDrawerPanicBadSwapLCCleanup));
sl@0
   140
			//Other memory failure errors should not occur unless the array has been Compress()ed
sl@0
   141
			//between the call and the leave, and then memory fails.
sl@0
   142
			__ASSERT_DEBUG(KErrNone <= errCode,Panic(EWsGraphicDrawerPanicBadSwapLCCleanup));
sl@0
   143
			}
sl@0
   144
		delete rollBack;
sl@0
   145
		}
sl@0
   146
	}
sl@0
   147
sl@0
   148
// CWsGraphicDrawerArray \\\\\\\\\\\\\\\\\\\\\\\\
sl@0
   149
sl@0
   150
/** Compares two graphic array slots for id equality; the iDrawer pointer is ignored.
sl@0
   151
	Used to order the array.
sl@0
   152
@internalComponent
sl@0
   153
@released
sl@0
   154
*/
sl@0
   155
TInt CWsGraphicDrawerArray::GraphicDrawerCompare(const TGraphic& aFirst,const TGraphic& aSecond)
sl@0
   156
	{
sl@0
   157
	return aFirst.iId.Compare(aSecond.iId);
sl@0
   158
	}
sl@0
   159
sl@0
   160
/** Adds a drawer to the array, with a transactional cleanup item that automatically removes
sl@0
   161
	it until popped (not destroying the drawer, however). This operation leaks memory and should not be used.
sl@0
   162
	@deprecated	 - Use AddL or AddRLC
sl@0
   163
*/
sl@0
   164
EXPORT_C void CWsGraphicDrawerArray::AddLC(CWsGraphicDrawer* aDrawer)
sl@0
   165
	{
sl@0
   166
	__ASSERT_DEBUG(aDrawer,Panic(EWsGraphicDrawerPanicBadArgument));
sl@0
   167
	XAddRollBack* rollBack = new(ELeave) XAddRollBack;
sl@0
   168
	CleanupStack::PushL(TCleanupItem(XAddRollBack::RollBackD,rollBack));
sl@0
   169
	if(aDrawer)
sl@0
   170
		{
sl@0
   171
		User::LeaveIfError(Add(aDrawer));
sl@0
   172
		rollBack->iArray = this;
sl@0
   173
		rollBack->iId = aDrawer->Id();		
sl@0
   174
		}
sl@0
   175
	}
sl@0
   176
sl@0
   177
/** Adds a drawer to the array, with a transactional cleanup item that automatically removes
sl@0
   178
	it (not destroying the drawer, however).
sl@0
   179
	CommitP() must be called on the returned pointer to release resources owned by the cleanup item,
sl@0
   180
	unless a Leave occurs.
sl@0
   181
	@param 	 aDrawer	the drawer to add
sl@0
   182
	@return		cleanup record
sl@0
   183
*/
sl@0
   184
EXPORT_C CWsGraphicDrawerArray::XRollBackBase* CWsGraphicDrawerArray::AddTLC(CWsGraphicDrawer* aDrawer)
sl@0
   185
	{
sl@0
   186
	if(!aDrawer)
sl@0
   187
		{
sl@0
   188
		User::Leave(KErrArgument);
sl@0
   189
		}
sl@0
   190
	//need to create the rollback before the add because the client can't tell the difference between 
sl@0
   191
	//the add failing and the new(ELeave) failing!
sl@0
   192
	XAddRollBack* rollBack = new(ELeave) XAddRollBack;
sl@0
   193
	CleanupStack::PushL(TCleanupItem(XAddRollBack::RollBackD,rollBack));
sl@0
   194
	User::LeaveIfError(Add(aDrawer));
sl@0
   195
	rollBack->iId = aDrawer->Id();		
sl@0
   196
	rollBack->iArray = this;
sl@0
   197
	
sl@0
   198
	return rollBack;
sl@0
   199
	}
sl@0
   200
sl@0
   201
/** Adds a drawer to the array. No cleanup - no leak 
sl@0
   202
	@param 	 aDrawer	the drawer to add
sl@0
   203
	@return		error code if the Add did not take place
sl@0
   204
*/
sl@0
   205
EXPORT_C TInt CWsGraphicDrawerArray::Add(CWsGraphicDrawer* aDrawer)
sl@0
   206
	{
sl@0
   207
	if(aDrawer)
sl@0
   208
		{
sl@0
   209
		TGraphic graphic;
sl@0
   210
		graphic.iId = aDrawer->Id();
sl@0
   211
		graphic.iDrawer = aDrawer;
sl@0
   212
		return iArray.InsertInOrder(graphic,GraphicDrawerCompare); // dups not allowed
sl@0
   213
		}
sl@0
   214
	else
sl@0
   215
		return KErrArgument;
sl@0
   216
	}
sl@0
   217
sl@0
   218
/*Internal method to swap the given drawer into the array, removing the existing one and returning a pointer to it.
sl@0
   219
	Note that in an error just a NULL pointer is returned.
sl@0
   220
	Internal caller must infer KErrNotFound error code.
sl@0
   221
	@param 	 aDrawer	the drawer to add
sl@0
   222
	@return				the drawer displaced, or NULL if the operation did not take place
sl@0
   223
*/
sl@0
   224
CWsGraphicDrawer* CWsGraphicDrawerArray::SwapIn(CWsGraphicDrawer* aDrawer)
sl@0
   225
	{
sl@0
   226
	if (aDrawer==NULL)
sl@0
   227
		return NULL;
sl@0
   228
	const TInt idx = IndexOf(aDrawer->Id());
sl@0
   229
	if (idx<KErrNone)
sl@0
   230
		return NULL;
sl@0
   231
	CWsGraphicDrawer* rv= iArray[idx].iDrawer;
sl@0
   232
	iArray[idx].iDrawer=aDrawer;
sl@0
   233
	return rv;
sl@0
   234
	}
sl@0
   235
sl@0
   236
/** Replaces the drawer with the existing Id with this newer one.  
sl@0
   237
	Pushes a transactional cleanup item to restore the previous drawer. 
sl@0
   238
	This operation leaks memory when it does not get Leave clean-up and should not be used.
sl@0
   239
	@deprecated	 - Use SwapL or SwapRLC
sl@0
   240
*/
sl@0
   241
EXPORT_C TInt CWsGraphicDrawerArray::SwapLC(CWsGraphicDrawer* aDrawer)
sl@0
   242
	{
sl@0
   243
	__ASSERT_DEBUG(aDrawer,Panic(EWsGraphicDrawerPanicBadArgument));
sl@0
   244
	XSwapRollBack* rollBack = new(ELeave) XSwapRollBack;
sl@0
   245
	CleanupStack::PushL(TCleanupItem(XSwapRollBack::RollBackD,rollBack));
sl@0
   246
	CWsGraphicDrawer* rollBackDrawer=SwapIn(aDrawer);
sl@0
   247
	if (rollBackDrawer)
sl@0
   248
		{
sl@0
   249
		rollBack->iArray = this;
sl@0
   250
		rollBack->iDrawer = rollBackDrawer;
sl@0
   251
		return KErrNone;
sl@0
   252
		}
sl@0
   253
	else
sl@0
   254
		{
sl@0
   255
		__ASSERT_DEBUG(0,Panic(EWsGraphicDrawerPanicBadArgument));
sl@0
   256
		return KErrNotFound;
sl@0
   257
		}
sl@0
   258
	}
sl@0
   259
sl@0
   260
/** Replaces the drawer with the existing Id with this newer one.  
sl@0
   261
	Pushes a transactional cleanup item to restore the previous drawer. 
sl@0
   262
	CommitP() must be called on the returned pointer to release resources owned by the cleanup item,
sl@0
   263
	unless a Leave occurs.
sl@0
   264
	@param 	 aDrawer	the drawer to add
sl@0
   265
	@return		cleanup record
sl@0
   266
*/
sl@0
   267
EXPORT_C CWsGraphicDrawerArray::XRollBackBase* CWsGraphicDrawerArray::SwapTLC(CWsGraphicDrawer* aDrawer)
sl@0
   268
	{
sl@0
   269
	if (!aDrawer)
sl@0
   270
		User::Leave(KErrArgument);
sl@0
   271
	XSwapRollBack* rollBack = new(ELeave) XSwapRollBack;
sl@0
   272
	CleanupStack::PushL(TCleanupItem(XSwapRollBack::RollBackD,rollBack));
sl@0
   273
	CWsGraphicDrawer* rollBackDrawer=SwapIn(aDrawer);
sl@0
   274
	if (!rollBackDrawer)
sl@0
   275
		User::Leave(KErrNotFound);
sl@0
   276
	rollBack->iDrawer = rollBackDrawer;
sl@0
   277
	rollBack->iArray = this;
sl@0
   278
	return rollBack;
sl@0
   279
	}
sl@0
   280
sl@0
   281
/** Replaces the drawer with the existing Id with this newer one. No cleanup - no leak 
sl@0
   282
	@param 	 aDrawer	the drawer to add
sl@0
   283
	@return		error code if the Swap did not take place
sl@0
   284
*/
sl@0
   285
EXPORT_C TInt CWsGraphicDrawerArray::Swap(CWsGraphicDrawer* aDrawer)
sl@0
   286
	{
sl@0
   287
	if (!aDrawer)
sl@0
   288
		return KErrArgument;
sl@0
   289
	CWsGraphicDrawer* oldDrawer=SwapIn(aDrawer);
sl@0
   290
	if (!oldDrawer)
sl@0
   291
		return KErrNotFound;
sl@0
   292
	else
sl@0
   293
		return KErrNone;
sl@0
   294
	}
sl@0
   295
	
sl@0
   296
/**	Removes the cleanup record after a SwapTLC or AddTLC operation,
sl@0
   297
	removing the opportunity to back out of the operation.
sl@0
   298
	Note that SwapTLC, AddTLC, and RemoveTLC cleanup operations can be stacked and should be committed 
sl@0
   299
	in the opposite order. They cannot be safely intermingled with non-transactional operations.
sl@0
   300
	This method can be safely called with a NULL parameter indicating a failed operation.
sl@0
   301
	@param aRollBack	handle to rollback information that will be discarded.
sl@0
   302
**/
sl@0
   303
EXPORT_C void  CWsGraphicDrawerArray::CommitP(CWsGraphicDrawerArray::XRollBackBase* aRollBack)
sl@0
   304
	{
sl@0
   305
	if (aRollBack)
sl@0
   306
		{
sl@0
   307
		CleanupStack::Pop(aRollBack);
sl@0
   308
		delete aRollBack;
sl@0
   309
		}
sl@0
   310
	}
sl@0
   311
sl@0
   312
/** Removes the specified drawer from the array.
sl@0
   313
	Pushes a transactional cleanup item to restore the previous drawer.
sl@0
   314
	@note 	The array should not be Compressed() during the transaction period 
sl@0
   315
			to ensure that the RollBack operation will always succeed.
sl@0
   316
	@param aId the ID of the drawer to remove
sl@0
   317
	@return	cleanup record
sl@0
   318
*/
sl@0
   319
EXPORT_C CWsGraphicDrawerArray::XRollBackBase*  CWsGraphicDrawerArray::RemoveTLC(const TGraphicDrawerId& aId)
sl@0
   320
	{
sl@0
   321
	XRemoveRollBack* rollBack = new(ELeave) XRemoveRollBack;
sl@0
   322
	CleanupStack::PushL(TCleanupItem(XRemoveRollBack::RollBackD,rollBack));
sl@0
   323
	const TInt idx = IndexOf(aId);
sl@0
   324
	if(0 > idx)
sl@0
   325
		{
sl@0
   326
		User::Leave(idx);
sl@0
   327
		}
sl@0
   328
	rollBack->iDrawer=iArray[idx].iDrawer;
sl@0
   329
	iArray.Remove(idx);
sl@0
   330
	rollBack->iArray=this;
sl@0
   331
	return rollBack;
sl@0
   332
	}
sl@0
   333
	
sl@0
   334
/** Removes the specified drawer from the array
sl@0
   335
	@param aId the ID of the drawer to remove
sl@0
   336
	@return KErrNone if the drawer was removed, KErrNotFound if the drawer was not in the array
sl@0
   337
*/
sl@0
   338
EXPORT_C TInt CWsGraphicDrawerArray::Remove(const TGraphicDrawerId& aId)
sl@0
   339
	{
sl@0
   340
	const TInt idx = IndexOf(aId);
sl@0
   341
	if(0 <= idx)
sl@0
   342
		{
sl@0
   343
		iArray.Remove(idx);
sl@0
   344
		return KErrNone;
sl@0
   345
		}
sl@0
   346
	return idx;
sl@0
   347
	}
sl@0
   348
	
sl@0
   349
EXPORT_C TInt CWsGraphicDrawerArray::RemoveAndDestroy(const TGraphicDrawerId& aId)
sl@0
   350
/** Removes and deletes the specified drawer from the array
sl@0
   351
	@param aId the ID of the drawer to remove and delete
sl@0
   352
	@return KErrNone if the drawer was removed and deleted, KErrNotFound if the drawer was not in the array
sl@0
   353
*/	{
sl@0
   354
	const TInt idx = IndexOf(aId);
sl@0
   355
	if(0 <= idx)
sl@0
   356
		{
sl@0
   357
		delete iArray[idx].iDrawer;
sl@0
   358
		iArray.Remove(idx);
sl@0
   359
		return KErrNone;
sl@0
   360
		}
sl@0
   361
	return idx;
sl@0
   362
	}
sl@0
   363
sl@0
   364
/** Removes all drawers from the array which are owned by the specified client session
sl@0
   365
	@param aOwner the client session that owns the drawers to be removed
sl@0
   366
	@return the number of drawers that were removed
sl@0
   367
*/
sl@0
   368
EXPORT_C TInt CWsGraphicDrawerArray::RemoveAll(const MWsClient& aOwner)
sl@0
   369
	{
sl@0
   370
	TInt removed = 0;
sl@0
   371
	TInt count = iArray.Count();
sl@0
   372
	TInt i = 0;
sl@0
   373
	while(i < count)
sl@0
   374
		{
sl@0
   375
		if(iArray[i].iDrawer && (&(iArray[i].iDrawer->Owner()) == &aOwner))
sl@0
   376
			{
sl@0
   377
			iArray.Remove(i);
sl@0
   378
			count--;
sl@0
   379
			removed++;
sl@0
   380
			}
sl@0
   381
		else
sl@0
   382
			{
sl@0
   383
			i++;
sl@0
   384
			}
sl@0
   385
		}
sl@0
   386
	return removed;
sl@0
   387
	}
sl@0
   388
sl@0
   389
/** Removes and deletes all drawers from the array which are owned by the specified client session
sl@0
   390
	@param aOwner the client session that owns the drawers to be removed and deleted
sl@0
   391
	@return the number of drawers that were removed and deleted
sl@0
   392
*/
sl@0
   393
EXPORT_C TInt CWsGraphicDrawerArray::RemoveAndDestroyAll(const MWsClient& aOwner)
sl@0
   394
	{
sl@0
   395
	TInt removed = 0;
sl@0
   396
	TInt count = iArray.Count();
sl@0
   397
	TInt i = 0;
sl@0
   398
	while(i < count)
sl@0
   399
		{
sl@0
   400
		if(iArray[i].iDrawer && (&(iArray[i].iDrawer->Owner()) == &aOwner))
sl@0
   401
			{
sl@0
   402
			delete iArray[i].iDrawer;
sl@0
   403
			iArray.Remove(i);
sl@0
   404
			count--;
sl@0
   405
			removed++;
sl@0
   406
			}
sl@0
   407
		else
sl@0
   408
			{
sl@0
   409
			i++;
sl@0
   410
			}
sl@0
   411
		}
sl@0
   412
	return removed;
sl@0
   413
	}
sl@0
   414
sl@0
   415
EXPORT_C const CWsGraphicDrawer* CWsGraphicDrawerArray::ResolveGraphic(const TGraphicDrawerId& aId) const
sl@0
   416
/** Find a graphic by it's ID
sl@0
   417
	@param aId the ID of the graphic to find
sl@0
   418
	@return the drawer if it is in the array, else NULL
sl@0
   419
*/	{
sl@0
   420
	const TInt idx = IndexOf(aId);
sl@0
   421
	if(KErrNotFound != idx)
sl@0
   422
		{
sl@0
   423
		return iArray[idx].iDrawer;
sl@0
   424
		}
sl@0
   425
	return NULL;
sl@0
   426
	}
sl@0
   427
sl@0
   428
EXPORT_C void CWsGraphicDrawerArray::Close()
sl@0
   429
/** Close the array, not destroying the drawers that it indexes
sl@0
   430
*/	{
sl@0
   431
	iArray.Close();
sl@0
   432
	}
sl@0
   433
sl@0
   434
EXPORT_C void CWsGraphicDrawerArray::ResetAndDestroy()
sl@0
   435
/** Reset the array, destroying the drawers that it indexes.
sl@0
   436
Only the 'owner' array should call this
sl@0
   437
*/	{
sl@0
   438
	const TInt count = iArray.Count();
sl@0
   439
	for(TInt i=0; i<count; i++)
sl@0
   440
		{
sl@0
   441
		delete iArray[i].iDrawer;
sl@0
   442
		}
sl@0
   443
	iArray.Reset();
sl@0
   444
	}
sl@0
   445
	
sl@0
   446
EXPORT_C TBool CWsGraphicDrawerArray::IsEmpty() const
sl@0
   447
/** @return ETrue if the array contains no drawers
sl@0
   448
*/	{
sl@0
   449
	return !iArray.Count();
sl@0
   450
	}
sl@0
   451
	
sl@0
   452
TInt CWsGraphicDrawerArray::IndexOf(const TGraphicDrawerId& aId) const
sl@0
   453
/** @internalComponent
sl@0
   454
*/	{
sl@0
   455
	return iArray.FindInOrder(reinterpret_cast<const TGraphic&>(aId),GraphicDrawerCompare);
sl@0
   456
	}
sl@0
   457