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(__SHIFTJIS_H__)
|
sl@0
|
20 |
#define __SHIFTJIS_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(__CHARCONV_H__)
|
sl@0
|
27 |
#include <charconv.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
#if !defined(__CONVUTILS_H__)
|
sl@0
|
31 |
#include <convutils.h>
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
class CnvShiftJis
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
only to be used by CHARCONV plug-in DLLs and by locale-DLLs (Locl::FatUtilityFunctions)
|
sl@0
|
37 |
@internalComponent
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
IMPORT_C static const TDesC8& ReplacementForUnconvertibleUnicodeCharacters();
|
sl@0
|
42 |
IMPORT_C static TInt ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
43 |
const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
44 |
TDes8& aForeign, const TDesC16& aUnicode,
|
sl@0
|
45 |
CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters);
|
sl@0
|
46 |
|
sl@0
|
47 |
IMPORT_C static TInt ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
48 |
const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
49 |
TDes8& aForeign, const TDesC16& aUnicode,
|
sl@0
|
50 |
CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters,
|
sl@0
|
51 |
const TArray<CnvUtilities::SCharacterSet>& aArrayOfAdditionalCharacterSets);
|
sl@0
|
52 |
|
sl@0
|
53 |
IMPORT_C static TInt ConvertToUnicode(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
54 |
TDes16& aUnicode, const TDesC8& aForeign,
|
sl@0
|
55 |
TInt& aNumberOfUnconvertibleCharacters,
|
sl@0
|
56 |
TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter);
|
sl@0
|
57 |
|
sl@0
|
58 |
IMPORT_C static TInt ConvertToUnicode(CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
|
sl@0
|
59 |
TDes16& aUnicode, const TDesC8& aForeign,
|
sl@0
|
60 |
TInt& aNumberOfUnconvertibleCharacters,
|
sl@0
|
61 |
TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter,
|
sl@0
|
62 |
const TArray<CnvUtilities::SMethod>& aArrayOfAdditionalMethods);
|
sl@0
|
63 |
|
sl@0
|
64 |
private:
|
sl@0
|
65 |
|
sl@0
|
66 |
static TInt DoConvertToUnicode(TDes16& aUnicode, const TDesC8& aForeign,
|
sl@0
|
67 |
TInt& aNumberOfUnconvertibleCharacters,
|
sl@0
|
68 |
TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter) ;
|
sl@0
|
69 |
|
sl@0
|
70 |
static TInt DoConvertFromUnicode(const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
|
sl@0
|
71 |
TDes8& aForeign, const TDesC16& aUnicode, CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters) ;
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
Returns the single character (as one or more byte values) which is used by
|
sl@0
|
77 |
default as the replacement for unconvertible Unicode characters. These byte
|
sl@0
|
78 |
values are output when converting from Unicode into a foreign character set
|
sl@0
|
79 |
for each Unicode character that has no equivalent in the foreign character
|
sl@0
|
80 |
set.
|
sl@0
|
81 |
|
sl@0
|
82 |
@return The single character which is used to replace unconvertible characters.
|
sl@0
|
83 |
@internalComponent
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
GLREF_C const TDesC8& ReplacementForUnconvertibleUnicodeCharacters_internal();
|
sl@0
|
86 |
|
sl@0
|
87 |
#endif
|
sl@0
|
88 |
|