os/graphics/windowing/windowserver/inc/WSGRAPHICDRAWERARRAY.H
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) 2005-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
// Utility class for indexing instances of CWsGraphicDrawer
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __WSGRAPHICDRAWERARRAY_H__
sl@0
    19
#define __WSGRAPHICDRAWERARRAY_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <graphics/wsgraphicdrawer.h>
sl@0
    23
sl@0
    24
class CWsGraphicDrawerArray: public CBase
sl@0
    25
/** An index of CWsGraphicDrawer instances
sl@0
    26
A CWsGraphicDrawer can be in many such indexes, as an index does not imply ownership
sl@0
    27
@publishedPartner
sl@0
    28
@released
sl@0
    29
*/	{
sl@0
    30
public:
sl@0
    31
	//Placeholder for transacion record
sl@0
    32
	struct XRollBackBase;
sl@0
    33
	
sl@0
    34
	//transactional manipulation methods that are deprecated because they leak 
sl@0
    35
	IMPORT_C void AddLC(CWsGraphicDrawer* aDrawer);
sl@0
    36
	IMPORT_C TInt SwapLC(CWsGraphicDrawer* aDrawer);
sl@0
    37
	
sl@0
    38
	//non-transactional manipulation
sl@0
    39
	IMPORT_C TInt Remove(const TGraphicDrawerId& aId);
sl@0
    40
	IMPORT_C TInt Add(CWsGraphicDrawer* aDrawer);
sl@0
    41
	IMPORT_C TInt Swap(CWsGraphicDrawer* aDrawer);
sl@0
    42
	
sl@0
    43
	//safe transactional methods
sl@0
    44
	//The array should not be Compressed() during the transaction period to ensure that the Remove RollBack operation will always succeed.
sl@0
    45
	IMPORT_C XRollBackBase* AddTLC(CWsGraphicDrawer* aDrawer);
sl@0
    46
	IMPORT_C XRollBackBase* SwapTLC(CWsGraphicDrawer* aDrawer);
sl@0
    47
	IMPORT_C XRollBackBase* RemoveTLC(const TGraphicDrawerId& aId);
sl@0
    48
	IMPORT_C void CommitP(XRollBackBase*);
sl@0
    49
sl@0
    50
	//Query
sl@0
    51
	IMPORT_C const CWsGraphicDrawer* ResolveGraphic(const TGraphicDrawerId& aId) const;
sl@0
    52
	IMPORT_C TBool IsEmpty() const;
sl@0
    53
sl@0
    54
	//Other non-transactional methods
sl@0
    55
	IMPORT_C TInt RemoveAndDestroy(const TGraphicDrawerId& aId);
sl@0
    56
	IMPORT_C TInt RemoveAll(const MWsClient& aOwner);
sl@0
    57
	IMPORT_C TInt RemoveAndDestroyAll(const MWsClient& aOwner);
sl@0
    58
	IMPORT_C void Close();
sl@0
    59
	IMPORT_C void ResetAndDestroy();
sl@0
    60
private:
sl@0
    61
	NONSHARABLE_STRUCT(TGraphic)
sl@0
    62
		{
sl@0
    63
		TGraphicDrawerId iId;
sl@0
    64
		CWsGraphicDrawer* iDrawer;
sl@0
    65
		};
sl@0
    66
	RArray<TGraphic> iArray;
sl@0
    67
	CWsGraphicDrawer* SwapIn(CWsGraphicDrawer* aDrawer);
sl@0
    68
	TInt IndexOf(const TGraphicDrawerId& aId) const;
sl@0
    69
	static TInt GraphicDrawerCompare(const TGraphic& aFirst,const TGraphic& aSecond);
sl@0
    70
private:
sl@0
    71
	//Transactional unwinding support classes
sl@0
    72
	class XAddRollBack;
sl@0
    73
	friend class XAddRollBack;
sl@0
    74
	class XSwapRollBack;
sl@0
    75
	friend class XSwapRollBack;
sl@0
    76
	class XRemoveRollBack;
sl@0
    77
	friend class XRemoveRollBack;
sl@0
    78
	class testArrayValidator;
sl@0
    79
	friend class testArrayValidator;
sl@0
    80
	};
sl@0
    81
sl@0
    82
#endif //#ifndef __WSGRAPHICDRAWERARRAY_H__