sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2002 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 the License "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 |
* A utility for providing Japanese Language-specific (UNICODE) functions.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __JPLANGUTIL_H__
|
sl@0
|
22 |
#define __JPLANGUTIL_H__
|
sl@0
|
23 |
|
sl@0
|
24 |
// INCLUDES
|
sl@0
|
25 |
#include <e32std.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
// CONSTANTS
|
sl@0
|
28 |
|
sl@0
|
29 |
// CLASS DECLARATION
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
* This is the only class provided buy the JPLangUtil Library,
|
sl@0
|
33 |
* and is intended for encapsulation only.
|
sl@0
|
34 |
* As such, it should not be instantiated.
|
sl@0
|
35 |
*
|
sl@0
|
36 |
* @lib JPLangUtil.lib
|
sl@0
|
37 |
* @since 2.6
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
class JPLangUtil
|
sl@0
|
40 |
{
|
sl@0
|
41 |
public: // Conversion API
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
* Converts all Half-width conformant text (including ASCII, Special
|
sl@0
|
45 |
* Characters and Katakana) found in aUnicodeSource to their Full-width
|
sl@0
|
46 |
* counterparts and places the resulting text into aUnicodeTarget.
|
sl@0
|
47 |
*
|
sl@0
|
48 |
* @param aUnicodeSource Descriptor that contains the text to be
|
sl@0
|
49 |
* converted.
|
sl@0
|
50 |
* @param aUnicodeTarget The target descriptor for the converted text.
|
sl@0
|
51 |
*
|
sl@0
|
52 |
* @return Either a positive integer signifying the count of converted
|
sl@0
|
53 |
* characters, or the negative error code KErrToBig when the
|
sl@0
|
54 |
* target descriptor cannot hold all the converted text.
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
IMPORT_C static TInt ConvertHalfToFullWidth
|
sl@0
|
57 |
(const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
* Converts all Full-width conformant text found in aUnicodeSource to
|
sl@0
|
61 |
* their Half-width counterparts and places the resulting text into
|
sl@0
|
62 |
* aUnicodeTarget. Only those characters with existing Half-width
|
sl@0
|
63 |
* variants are converted. There will be a 2-for-1 conversion for each
|
sl@0
|
64 |
* Full-width Voiced and Semi-voiced Katakana character.
|
sl@0
|
65 |
*
|
sl@0
|
66 |
* @param aUnicodeSource Descriptor that contains the text to be
|
sl@0
|
67 |
* converted.
|
sl@0
|
68 |
* @param aUnicodeTarget The target descriptor for the converted text.
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* @return Either a positive integer signifying the count of converted
|
sl@0
|
71 |
* characters, or the negative error code KErrToBig when the
|
sl@0
|
72 |
* target descriptor cannot hold all the converted text.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
IMPORT_C static TInt ConvertFullToHalfWidth
|
sl@0
|
75 |
( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
* Converts Half-width Katakana and Special Character text found in
|
sl@0
|
79 |
* aUnicodeSource to their Full-width counterparts and places the
|
sl@0
|
80 |
* resulting text into aUnicodeTarget.
|
sl@0
|
81 |
*
|
sl@0
|
82 |
* @param aUnicodeSource Descriptor that contains the text to be
|
sl@0
|
83 |
* converted.
|
sl@0
|
84 |
* @param aUnicodeTarget The target descriptor for the converted text.
|
sl@0
|
85 |
*
|
sl@0
|
86 |
* @return Either a positive integer signifying the count of converted
|
sl@0
|
87 |
* characters, or the negative error code KErrToBig when the
|
sl@0
|
88 |
* target descriptor cannot hold all the converted text.
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
IMPORT_C static TInt ConvertHalfToFullWidthKatakana
|
sl@0
|
91 |
( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
* Converts Full-width Katakana and Special Character text found in
|
sl@0
|
95 |
* aUnicodeSource to their Half-width counterparts and places the
|
sl@0
|
96 |
* resulting text into aUnicodeTarget. There will be a 2-for-1 conversion
|
sl@0
|
97 |
* for each Full-width Voiced and Semi-voiced Katakana character.
|
sl@0
|
98 |
*
|
sl@0
|
99 |
* @param aUnicodeSource Descriptor that contains the text to be
|
sl@0
|
100 |
* converted.
|
sl@0
|
101 |
* @param aUnicodeTarget The target descriptor for the converted text.
|
sl@0
|
102 |
*
|
sl@0
|
103 |
* @return Either a positive integer signifying the count of converted
|
sl@0
|
104 |
* characters, or the negative error code KErrToBig when the
|
sl@0
|
105 |
* target descriptor cannot hold all the converted text.
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
IMPORT_C static TInt ConvertFullToHalfWidthKatakana
|
sl@0
|
108 |
( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
* Converts Full-width Hiragana and Special Character text found in
|
sl@0
|
112 |
* aUnicodeSource to their Full-width counterparts and places the
|
sl@0
|
113 |
* resulting text into aUnicodeTarget.
|
sl@0
|
114 |
*
|
sl@0
|
115 |
* @param aUnicodeSource Descriptor that contains the text to be
|
sl@0
|
116 |
* converted.
|
sl@0
|
117 |
* @param aUnicodeTarget The target descriptor for the converted text.
|
sl@0
|
118 |
*
|
sl@0
|
119 |
* @return Either a positive integer signifying the count of converted
|
sl@0
|
120 |
* characters, or the negative error code KErrToBig when the
|
sl@0
|
121 |
* target descriptor cannot hold all the converted text.
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
IMPORT_C static TInt ConvertFullHiragnaToFullKatakana
|
sl@0
|
124 |
( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
|
sl@0
|
125 |
|
sl@0
|
126 |
public: // Character Category Query API
|
sl@0
|
127 |
|
sl@0
|
128 |
/**
|
sl@0
|
129 |
* Returns ETrue if aUnicodeChar is Katakana.
|
sl@0
|
130 |
* This includes both Full and Half-width Katakana.
|
sl@0
|
131 |
*
|
sl@0
|
132 |
* @param aUnicodeChar The unicode character to test.
|
sl@0
|
133 |
*
|
sl@0
|
134 |
* @return Etrue : aUnicodeChar is Katakana
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
IMPORT_C static TBool IsKatakana( const TText aUnicodeChar );
|
sl@0
|
137 |
|
sl@0
|
138 |
/**
|
sl@0
|
139 |
* Returns ETrue if aUnicodeChar is Hiragana.
|
sl@0
|
140 |
* There are no Half-width Hiragana variants.
|
sl@0
|
141 |
*
|
sl@0
|
142 |
* @param aUnicodeChar The unicode character to test.
|
sl@0
|
143 |
*
|
sl@0
|
144 |
* @return Etrue : aUnicodeChar is Hiragana
|
sl@0
|
145 |
*/
|
sl@0
|
146 |
IMPORT_C static TBool IsHiragana( const TText aUnicodeChar );
|
sl@0
|
147 |
|
sl@0
|
148 |
/**
|
sl@0
|
149 |
* Returns ETrue if aUnicodeChar is Kanji, or CJK ideographic
|
sl@0
|
150 |
* All characters in the CJK ideographic range are Full-width.
|
sl@0
|
151 |
*
|
sl@0
|
152 |
* @param aUnicodeChar The unicode character to test.
|
sl@0
|
153 |
*
|
sl@0
|
154 |
* @return Etrue : aUnicodeChar is Kanji
|
sl@0
|
155 |
*/
|
sl@0
|
156 |
IMPORT_C static TBool IsKanji( const TText aUnicodeChar );
|
sl@0
|
157 |
|
sl@0
|
158 |
/**
|
sl@0
|
159 |
* Returns ETrue if aUnicodeChar is Half-width according to
|
sl@0
|
160 |
* the UNICODE definition of the term.
|
sl@0
|
161 |
*
|
sl@0
|
162 |
* @param aUnicodeChar The unicode character to test.
|
sl@0
|
163 |
*
|
sl@0
|
164 |
* @return Etrue : aUnicodeChar is Half-width
|
sl@0
|
165 |
*/
|
sl@0
|
166 |
IMPORT_C static TBool IsHalfWidth( const TText aUnicodeChar );
|
sl@0
|
167 |
|
sl@0
|
168 |
/**
|
sl@0
|
169 |
* Returns ETrue if aUnicodeChar is Full-width.
|
sl@0
|
170 |
* Essentially, all text that is not Half-width.
|
sl@0
|
171 |
*
|
sl@0
|
172 |
* @param aUnicodeChar The unicode character to test.
|
sl@0
|
173 |
*
|
sl@0
|
174 |
* @return Etrue : aUnicodeChar is Full-width
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
IMPORT_C static TBool IsFullWidth( const TText aUnicodeChar );
|
sl@0
|
177 |
|
sl@0
|
178 |
};
|
sl@0
|
179 |
|
sl@0
|
180 |
#endif // __JPLANGUTIL_H__
|
sl@0
|
181 |
|
sl@0
|
182 |
// End of file
|