os/graphics/windowing/windowserver/nga/SERVER/WSOBJIX.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) 1999-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
// Definition of object index class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __WSOBJIX_H__
sl@0
    19
#define __WSOBJIX_H__
sl@0
    20
sl@0
    21
#include <e32std.h>
sl@0
    22
#include <e32base.h>
sl@0
    23
sl@0
    24
class CWsObject;
sl@0
    25
sl@0
    26
/**
sl@0
    27
A simple structure to hold a CWsObject and the associated handle.
sl@0
    28
sl@0
    29
@internalComponent
sl@0
    30
@released
sl@0
    31
*/
sl@0
    32
class TWsObject
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	enum
sl@0
    36
		{
sl@0
    37
		ESlotMask=0x0000FFFF,			//The handle on the client side uses these 16 bits to store the slot position
sl@0
    38
		ECountMask=0x7FFF0000,			//These 15 bits are used to keep a unique number (the slot reuse count)
sl@0
    39
		ETypeMask=ESlotMask,			//The handle on the server side uses these 16 bits to store the type of the object
sl@0
    40
		ECountPosition=16,
sl@0
    41
		ECountBits=15,
sl@0
    42
		ECountInc=1<<ECountPosition,
sl@0
    43
		ECountWrapAround=1<<ECountBits,
sl@0
    44
		};
sl@0
    45
public:
sl@0
    46
	inline TWsObject(CWsObject* aObject,TInt aHandle);
sl@0
    47
public:
sl@0
    48
	CWsObject* iObject;
sl@0
    49
	TUint iHandle;
sl@0
    50
	};
sl@0
    51
sl@0
    52
/**
sl@0
    53
An array of CWsObject instances and their handles. 
sl@0
    54
sl@0
    55
Each client session maintains a list of the objects it owns.
sl@0
    56
sl@0
    57
Note that the first item in the iObjectArray array is a dummy item. This is because part of the 
sl@0
    58
handle is used as an index in the array and we want to avoid index 0 because a null handle has a special
sl@0
    59
meaning.
sl@0
    60
sl@0
    61
@see CWsClient
sl@0
    62
@internalComponent
sl@0
    63
@released
sl@0
    64
*/
sl@0
    65
class CWsObjectIx : public CBase
sl@0
    66
	{
sl@0
    67
public:
sl@0
    68
	CWsObjectIx();
sl@0
    69
	~CWsObjectIx();
sl@0
    70
	void ConstructL();
sl@0
    71
	TInt AddL(CWsObject* anObj);
sl@0
    72
	void Remove(const TWsObject* aObject);
sl@0
    73
	void Remove(CWsObject* anObj);
sl@0
    74
	CWsObject* HandleToObject(TInt aHandle) const;
sl@0
    75
	inline const CWsObject* At(TInt aPos) const;
sl@0
    76
	const TWsObject* FirstObject() const;
sl@0
    77
	TInt At(const CWsObject* anObj);
sl@0
    78
	void Tidy();
sl@0
    79
	TInt Count() const;		// Count of non NULL objects in the array
sl@0
    80
	TInt Length() const;	// Length of array including empty slots
sl@0
    81
private:
sl@0
    82
	CArrayFixFlat<TWsObject> iObjectArray;
sl@0
    83
	TInt iNewObjectCount;
sl@0
    84
	};
sl@0
    85
sl@0
    86
sl@0
    87
//
sl@0
    88
// inlines			//
sl@0
    89
//
sl@0
    90
sl@0
    91
//
sl@0
    92
// TWsObject
sl@0
    93
//
sl@0
    94
inline TWsObject::TWsObject(CWsObject* aObject,TInt aHandle) :iObject(aObject), iHandle(aHandle) {}
sl@0
    95
//
sl@0
    96
// CWsObjectIx
sl@0
    97
//
sl@0
    98
inline const CWsObject* CWsObjectIx::At(TInt aPos) const
sl@0
    99
	{return iObjectArray[aPos].iObject;}
sl@0
   100
#endif