Update contrib.
2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * A utility for providing Japanese Language-specific (UNICODE) functions.
21 #ifndef __JPLANGUTIL_H__
22 #define __JPLANGUTIL_H__
32 * This is the only class provided buy the JPLangUtil Library,
33 * and is intended for encapsulation only.
34 * As such, it should not be instantiated.
41 public: // Conversion API
44 * Converts all Half-width conformant text (including ASCII, Special
45 * Characters and Katakana) found in aUnicodeSource to their Full-width
46 * counterparts and places the resulting text into aUnicodeTarget.
48 * @param aUnicodeSource Descriptor that contains the text to be
50 * @param aUnicodeTarget The target descriptor for the converted text.
52 * @return Either a positive integer signifying the count of converted
53 * characters, or the negative error code KErrToBig when the
54 * target descriptor cannot hold all the converted text.
56 IMPORT_C static TInt ConvertHalfToFullWidth
57 (const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
60 * Converts all Full-width conformant text found in aUnicodeSource to
61 * their Half-width counterparts and places the resulting text into
62 * aUnicodeTarget. Only those characters with existing Half-width
63 * variants are converted. There will be a 2-for-1 conversion for each
64 * Full-width Voiced and Semi-voiced Katakana character.
66 * @param aUnicodeSource Descriptor that contains the text to be
68 * @param aUnicodeTarget The target descriptor for the converted text.
70 * @return Either a positive integer signifying the count of converted
71 * characters, or the negative error code KErrToBig when the
72 * target descriptor cannot hold all the converted text.
74 IMPORT_C static TInt ConvertFullToHalfWidth
75 ( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
78 * Converts Half-width Katakana and Special Character text found in
79 * aUnicodeSource to their Full-width counterparts and places the
80 * resulting text into aUnicodeTarget.
82 * @param aUnicodeSource Descriptor that contains the text to be
84 * @param aUnicodeTarget The target descriptor for the converted text.
86 * @return Either a positive integer signifying the count of converted
87 * characters, or the negative error code KErrToBig when the
88 * target descriptor cannot hold all the converted text.
90 IMPORT_C static TInt ConvertHalfToFullWidthKatakana
91 ( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
94 * Converts Full-width Katakana and Special Character text found in
95 * aUnicodeSource to their Half-width counterparts and places the
96 * resulting text into aUnicodeTarget. There will be a 2-for-1 conversion
97 * for each Full-width Voiced and Semi-voiced Katakana character.
99 * @param aUnicodeSource Descriptor that contains the text to be
101 * @param aUnicodeTarget The target descriptor for the converted text.
103 * @return Either a positive integer signifying the count of converted
104 * characters, or the negative error code KErrToBig when the
105 * target descriptor cannot hold all the converted text.
107 IMPORT_C static TInt ConvertFullToHalfWidthKatakana
108 ( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
111 * Converts Full-width Hiragana and Special Character text found in
112 * aUnicodeSource to their Full-width counterparts and places the
113 * resulting text into aUnicodeTarget.
115 * @param aUnicodeSource Descriptor that contains the text to be
117 * @param aUnicodeTarget The target descriptor for the converted text.
119 * @return Either a positive integer signifying the count of converted
120 * characters, or the negative error code KErrToBig when the
121 * target descriptor cannot hold all the converted text.
123 IMPORT_C static TInt ConvertFullHiragnaToFullKatakana
124 ( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget );
126 public: // Character Category Query API
129 * Returns ETrue if aUnicodeChar is Katakana.
130 * This includes both Full and Half-width Katakana.
132 * @param aUnicodeChar The unicode character to test.
134 * @return Etrue : aUnicodeChar is Katakana
136 IMPORT_C static TBool IsKatakana( const TText aUnicodeChar );
139 * Returns ETrue if aUnicodeChar is Hiragana.
140 * There are no Half-width Hiragana variants.
142 * @param aUnicodeChar The unicode character to test.
144 * @return Etrue : aUnicodeChar is Hiragana
146 IMPORT_C static TBool IsHiragana( const TText aUnicodeChar );
149 * Returns ETrue if aUnicodeChar is Kanji, or CJK ideographic
150 * All characters in the CJK ideographic range are Full-width.
152 * @param aUnicodeChar The unicode character to test.
154 * @return Etrue : aUnicodeChar is Kanji
156 IMPORT_C static TBool IsKanji( const TText aUnicodeChar );
159 * Returns ETrue if aUnicodeChar is Half-width according to
160 * the UNICODE definition of the term.
162 * @param aUnicodeChar The unicode character to test.
164 * @return Etrue : aUnicodeChar is Half-width
166 IMPORT_C static TBool IsHalfWidth( const TText aUnicodeChar );
169 * Returns ETrue if aUnicodeChar is Full-width.
170 * Essentially, all text that is not Half-width.
172 * @param aUnicodeChar The unicode character to test.
174 * @return Etrue : aUnicodeChar is Full-width
176 IMPORT_C static TBool IsFullWidth( const TText aUnicodeChar );
180 #endif // __JPLANGUTIL_H__