sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#if !defined(__CONVNAMES_H__)
|
sl@0
|
20 |
#define __CONVNAMES_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#if !defined(__E32STD_H__)
|
sl@0
|
23 |
#include <e32std.h>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
#if !defined(__E32BASE_H__)
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
#if !defined(__BAMDESCA_H__)
|
sl@0
|
31 |
#include <bamdesca.h>
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
#if !defined(__CHARCONV_H__)
|
sl@0
|
35 |
#include <charconv.h>
|
sl@0
|
36 |
#endif
|
sl@0
|
37 |
|
sl@0
|
38 |
class RFs;
|
sl@0
|
39 |
class CBaNamedPlugins;
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
class CCnvCharacterSetNames : public CBase, public MDesCArray
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
A localised list of the names of non-Unicode character set encodings supported
|
sl@0
|
45 |
on the phone.
|
sl@0
|
46 |
|
sl@0
|
47 |
For each character conversion plug-in DLL, there are one or more resource
|
sl@0
|
48 |
files which contain the name of the encoding translated into a different language.
|
sl@0
|
49 |
|
sl@0
|
50 |
This class populates a list of the names of all encodings supported on the
|
sl@0
|
51 |
phone by reading the appropriate resource file for each one. The list is sorted
|
sl@0
|
52 |
according to the collation rules for the device's current locale.
|
sl@0
|
53 |
|
sl@0
|
54 |
The virtual functions MdcaCount() (returns the number of items in the list)
|
sl@0
|
55 |
and MdcaPoint() (returns a TPtrC for the item at the given index) are implemented
|
sl@0
|
56 |
privately in this class. Users of this class can call them through the MDesCArray
|
sl@0
|
57 |
interface.
|
sl@0
|
58 |
@publishedAll
|
sl@0
|
59 |
@released
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
{
|
sl@0
|
62 |
public:
|
sl@0
|
63 |
IMPORT_C static CCnvCharacterSetNames* NewL(RFs& aFileServerSession, const TArray<CCnvCharacterSetConverter::SCharacterSet>& aArrayOfCharacterSetsAvailable);
|
sl@0
|
64 |
IMPORT_C static CCnvCharacterSetNames* NewLC(RFs& aFileServerSession, const TArray<CCnvCharacterSetConverter::SCharacterSet>& aArrayOfCharacterSetsAvailable);
|
sl@0
|
65 |
IMPORT_C virtual ~CCnvCharacterSetNames();
|
sl@0
|
66 |
IMPORT_C TInt IndexOfIdentifier(TUint aIdentifier) const;
|
sl@0
|
67 |
IMPORT_C TUint IdentifierAtIndex(TInt aIndex) const;
|
sl@0
|
68 |
|
sl@0
|
69 |
private:
|
sl@0
|
70 |
CCnvCharacterSetNames();
|
sl@0
|
71 |
void ConstructL(RFs& aFileServerSession, const TArray<CCnvCharacterSetConverter::SCharacterSet>& aArrayOfCharacterSetsAvailable);
|
sl@0
|
72 |
// from MDesCArray
|
sl@0
|
73 |
virtual TInt MdcaCount() const;
|
sl@0
|
74 |
virtual TPtrC MdcaPoint(TInt aIndex) const;
|
sl@0
|
75 |
static void DestroyResourceFileArray(TAny* aArrayOfCharconvResourceFiles);
|
sl@0
|
76 |
|
sl@0
|
77 |
private:
|
sl@0
|
78 |
CBaNamedPlugins* iNamedPlugins;
|
sl@0
|
79 |
};
|
sl@0
|
80 |
|
sl@0
|
81 |
#endif
|
sl@0
|
82 |
|