os/graphics/windowing/windowserver/test/t_integ/inc/t_wservconfigdata.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_wservconfigdata.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,111 @@
     1.4 +// Copyright (c) 2007-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 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @test
    1.22 +*/
    1.23 +
    1.24 +#ifndef __T_WSERV_CONFIG_DATA_H__
    1.25 +#define __T_WSERV_CONFIG_DATA_H__
    1.26 +
    1.27 +#include <e32base.h>
    1.28 +
    1.29 +const TInt								KMaxWServConfigDataSize=256;
    1.30 +typedef TBuf<KMaxWServConfigDataSize>	TWServConfigData;
    1.31 +
    1.32 +/**
    1.33 + * Test Active Notification class
    1.34 + *
    1.35 + */
    1.36 +class CT_WServConfigData
    1.37 +	{
    1.38 +public:
    1.39 +	/**
    1.40 +	* Constructor
    1.41 +	*/
    1.42 +	CT_WServConfigData();
    1.43 +
    1.44 +	/**
    1.45 +	* Destructor
    1.46 +	*/
    1.47 +	virtual ~CT_WServConfigData();
    1.48 +
    1.49 +	/**
    1.50 +	* Add a data entry to the config
    1.51 +	*
    1.52 +	* @param	aName name of the config entry
    1.53 +	* @param	aData the data to add. 
    1.54 +	* @leave	KErrAlreadyExists if the config entry aName already exists
    1.55 +	*/
    1.56 +	void		AddDataL(const TDesC& aName, const TDesC& aData);
    1.57 +
    1.58 +	/**
    1.59 +	* Add a data entry to the config
    1.60 +	*
    1.61 +	* @param	aName name of the config entry to be replaced
    1.62 +	* @param	aData the data to add. 
    1.63 +	* @leave	KErrNotFound if the config entry aName is not found
    1.64 +	*/
    1.65 +	void		ReplaceData(const TDesC& aName, const TDesC& aData);
    1.66 +
    1.67 +	/**
    1.68 +	* Delete a data entry from the config
    1.69 +	*
    1.70 +	* @param	aName name of the config entry
    1.71 +	*
    1.72 +	* @leave	KErrNotFound if the config entry aName is not found
    1.73 +	*/
    1.74 +	void		DeleteDataL(const TDesC& aName);
    1.75 +
    1.76 +	/**
    1.77 +	* Get the list of data
    1.78 +	*
    1.79 +	* @param	aIndex of an index into the list of data
    1.80 +	*
    1.81 +	* @return	Pointer to list of data
    1.82 +	*/
    1.83 +	const TWServConfigData& GetData(const TInt aIndex) const;
    1.84 +
    1.85 +	/**
    1.86 +	* Get the list of names
    1.87 +	*
    1.88 +	* @param	aIndex of an index into the list of names
    1.89 +	*
    1.90 +	* @return	Pointer to list of names
    1.91 +	*/
    1.92 +	const TWServConfigData& GetName(const TInt aIndex) const;
    1.93 +
    1.94 +
    1.95 +	/**
    1.96 +	* Return the number of entries
    1.97 +	*
    1.98 +	* @return   The number of entries stored in the config data.
    1.99 +	* @leave	KErrGeneral
   1.100 +	*/
   1.101 +	TInt		NoOfEntriesL() const;
   1.102 +
   1.103 +	/**
   1.104 +	* Empty the object config
   1.105 +	*/
   1.106 +	void		Empty();
   1.107 +
   1.108 +private:
   1.109 +	RArray<TWServConfigData>	iArrayName;
   1.110 +	RArray<TWServConfigData>	iArrayData;
   1.111 +	};
   1.112 +
   1.113 +#endif // __T_WSERV_CONFIG_DATA_H__
   1.114 +