sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2005-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 |
* Code used to actually access lookup tables. Included by
|
sl@0
|
16 |
* automatically generated files which define the tables to
|
sl@0
|
17 |
* implement the functions prototyped in Charconv_table_utilties.h
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
|
sl@0
|
24 |
This function attempts to look up "Foreign" character and return
|
sl@0
|
25 |
the Unicode character defined as being the appropriate representation
|
sl@0
|
26 |
for this character set.
|
sl@0
|
27 |
@param aRow The most significant 8 bits of the input charachter.
|
sl@0
|
28 |
@param aColumn The least significant 8 bits of the input charachter.
|
sl@0
|
29 |
@return KUnicodeUnmappedChar if no mapping is defined for the input character, otherwise a valid unicode character.
|
sl@0
|
30 |
@internalTechnology
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
TUint16 lookupUnicodeChar(TUint aRow, TUint aColumn)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
const TUint16* unicodeColumn ;
|
sl@0
|
35 |
TUint16 unicodeChar ;
|
sl@0
|
36 |
|
sl@0
|
37 |
unicodeColumn = ForeignToUnicodeRowMappings[aRow] ;
|
sl@0
|
38 |
if (unicodeColumn)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
if ((aColumn >= unicodeColumn[KlowestIndex]) &&
|
sl@0
|
41 |
(aColumn <= unicodeColumn[KhighestIndex]))
|
sl@0
|
42 |
{
|
sl@0
|
43 |
aColumn += KFirstDataIndex ;
|
sl@0
|
44 |
aColumn -= unicodeColumn[KlowestIndex] ;
|
sl@0
|
45 |
unicodeChar = unicodeColumn[aColumn] ;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
else
|
sl@0
|
48 |
{
|
sl@0
|
49 |
unicodeChar = KUnicodeUnmappedChar ;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
}
|
sl@0
|
52 |
else
|
sl@0
|
53 |
{
|
sl@0
|
54 |
unicodeChar = KUnicodeUnmappedChar ;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
return unicodeChar ;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
This function attempts to look up a Unicode character and return
|
sl@0
|
63 |
the "Foreign" character defined as being the appropriate representation
|
sl@0
|
64 |
for this character set.
|
sl@0
|
65 |
@param aRow The most significant 8 bits of the input character.
|
sl@0
|
66 |
@param aColumn The least significant 8 bits of the input character.
|
sl@0
|
67 |
@return KForeignUnmappedChar if no mapping is defined for the input character, otherwise a valid unicode character.
|
sl@0
|
68 |
@internalTechnology
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
TUint16 lookupForeignChar(TUint aRow, TUint aColumn)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
|
sl@0
|
73 |
const TUint16* foreignColumn ;
|
sl@0
|
74 |
TUint16 foreignChar ;
|
sl@0
|
75 |
|
sl@0
|
76 |
foreignColumn = UnicodeToForeignRowMappings[aRow] ;
|
sl@0
|
77 |
if (foreignColumn)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
if ((aColumn >= foreignColumn[KlowestIndex]) &&
|
sl@0
|
80 |
(aColumn <= foreignColumn[KhighestIndex]))
|
sl@0
|
81 |
{
|
sl@0
|
82 |
aColumn += KFirstDataIndex ;
|
sl@0
|
83 |
aColumn -= foreignColumn[KlowestIndex] ;
|
sl@0
|
84 |
foreignChar = foreignColumn[aColumn] ;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
else
|
sl@0
|
87 |
{
|
sl@0
|
88 |
foreignChar = KForeignUnmappedChar ;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
}
|
sl@0
|
91 |
else
|
sl@0
|
92 |
{
|
sl@0
|
93 |
foreignChar = KForeignUnmappedChar ;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
return foreignChar ;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
|
sl@0
|
99 |
/**
|
sl@0
|
100 |
This function returns the value of KUnicodeUnmappedChar (may vary for
|
sl@0
|
101 |
different character sets..
|
sl@0
|
102 |
@return Value of KUnicodeUnmappedChar for this particular implementation
|
sl@0
|
103 |
@internalComponent
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
TUint16 getUnicodeUnmappedCharacter(void)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
return KUnicodeUnmappedChar ;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
This function returns the value of KForeignUnmappedChar (may vary for
|
sl@0
|
113 |
different character sets..
|
sl@0
|
114 |
@return Value of KForeignUnmappedChar for this particular implementation
|
sl@0
|
115 |
@internalComponent
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
TUint16 getForeignUnmappedCharacter(void)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
return KForeignUnmappedChar ;
|
sl@0
|
120 |
}
|