os/textandloc/charconvfw/charconv_fw/inc/convnames.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/charconvfw/charconv_fw/inc/convnames.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,82 @@
     1.4 +/*
     1.5 +* Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#if !defined(__CONVNAMES_H__)
    1.23 +#define __CONVNAMES_H__
    1.24 +
    1.25 +#if !defined(__E32STD_H__)
    1.26 +#include <e32std.h>
    1.27 +#endif
    1.28 +
    1.29 +#if !defined(__E32BASE_H__)
    1.30 +#include <e32base.h>
    1.31 +#endif
    1.32 +
    1.33 +#if !defined(__BAMDESCA_H__)
    1.34 +#include <bamdesca.h>
    1.35 +#endif 
    1.36 +
    1.37 +#if !defined(__CHARCONV_H__)
    1.38 +#include <charconv.h>
    1.39 +#endif
    1.40 +
    1.41 +class RFs;
    1.42 +class CBaNamedPlugins;
    1.43 +
    1.44 + 
    1.45 +class CCnvCharacterSetNames : public CBase, public MDesCArray
    1.46 +/** 
    1.47 +A localised list of the names of non-Unicode character set encodings supported 
    1.48 +on the phone.
    1.49 +
    1.50 +For each character conversion plug-in DLL, there are one or more resource 
    1.51 +files which contain the name of the encoding translated into a different language.
    1.52 +
    1.53 +This class populates a list of the names of all encodings supported on the 
    1.54 +phone by reading the appropriate resource file for each one. The list is sorted 
    1.55 +according to the collation rules for the device's current locale.
    1.56 +
    1.57 +The virtual functions MdcaCount() (returns the number of items in the list) 
    1.58 +and MdcaPoint() (returns a TPtrC for the item at the given index) are implemented 
    1.59 +privately in this class. Users of this class can call them through the MDesCArray 
    1.60 +interface. 
    1.61 +@publishedAll
    1.62 +@released
    1.63 +*/
    1.64 +	{
    1.65 +public:
    1.66 +	IMPORT_C static CCnvCharacterSetNames* NewL(RFs& aFileServerSession, const TArray<CCnvCharacterSetConverter::SCharacterSet>& aArrayOfCharacterSetsAvailable);
    1.67 +	IMPORT_C static CCnvCharacterSetNames* NewLC(RFs& aFileServerSession, const TArray<CCnvCharacterSetConverter::SCharacterSet>& aArrayOfCharacterSetsAvailable);
    1.68 +	IMPORT_C virtual ~CCnvCharacterSetNames();
    1.69 +	IMPORT_C TInt IndexOfIdentifier(TUint aIdentifier) const;
    1.70 +	IMPORT_C TUint IdentifierAtIndex(TInt aIndex) const;
    1.71 +
    1.72 +private:
    1.73 +	CCnvCharacterSetNames();
    1.74 +	void ConstructL(RFs& aFileServerSession, const TArray<CCnvCharacterSetConverter::SCharacterSet>& aArrayOfCharacterSetsAvailable);
    1.75 +	// from MDesCArray
    1.76 +	virtual TInt MdcaCount() const;
    1.77 +	virtual TPtrC MdcaPoint(TInt aIndex) const;
    1.78 +	static void DestroyResourceFileArray(TAny* aArrayOfCharconvResourceFiles);
    1.79 +
    1.80 +private:
    1.81 +	CBaNamedPlugins* iNamedPlugins;
    1.82 +	};
    1.83 +
    1.84 +#endif
    1.85 +