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.
22 #include "jplangutil.h"
23 #include "jplangutil.tables.h"
27 // LOCAL CONSTANTS AND ENUMS
30 _LIT( KJPLangUtilPanic, "JPLangUtil" );
31 enum TJPLangUtilPanicCodes
33 EErrNotKatakana = 0x777,
44 const TInt KHalfWidthKatakanaRange = 59;
45 const TInt KHalfWidthIndex = 0;
46 const TInt KFullWidthIndex = 1;
47 const TInt KFullWidthVoicableKatakanaRange = 23;
48 const TInt KFullWidthSemiVoicableKatakanaRange = 5;
49 const TInt KHalfWidthSpecialCharRange = 21;
51 const TText KHalfWidthKatakanaVoicedSoundMark = 0xff9e;
52 const TText KHalfWidthKatakanaSemiVoicedSoundMark = 0xff9f;
54 // The following Full-width (semi-)voiced markers are
55 // *also* considered Hiragana, per Unicode spec.
56 const TText KFullWidthKatakanaVoicedSoundMark = 0x309b;
57 const TText KFullWidthKatakanaSemiVoicedSoundMark = 0x309c;
59 const TText KHalfWidthKatakanaLowerBound = 0xff65;
60 const TText KHalfWidthKatakanaUpperBound = 0xff9f;
61 const TText KFullWidthKatakanaLowerBound = 0x30a0;
62 const TText KFullWidthKatakanaUpperBound = 0x30ff;
64 const TText KCJKUnifiedIdiographLowerBound = 0x4e00;
65 const TText KCJKUnifiedIdiographUpperBound = 0x9fa5;
66 const TText KCJKUnifiedIdeographExtALowerBound = 0x3400;
67 const TText KCJKUnifiedIdeographExtAUpperBound = 0x4dbf;
69 const TText KHalfToFullWidthASCIIOffset = 0xfee0;
70 const TText KHalfWidthASCIILowerBound = 0x0021; // Leaves out space (0x0020)
71 const TText KHalfWidthASCIIUpperBound = 0x007e;
72 const TText KFullWidthASCIILowerBound = 0xff01;
73 const TText KFullWidthASCIIUpperBound = 0xff5e;
75 const TUint KFullWidthHiraganaSmallA = 0x3041;
76 const TUint KFullWidthHiraganaVU = 0x3094;
77 const TUint KFullWidthHiraganaU = 0x3046;
78 const TUint KFullWidthHiraganaVoicedSound = 0x309B;
79 const TUint KFullWidthKatakanaSmallA = 0x30a1;
80 const TUint KFullWidthKatakanaSmallVU = 0x30F4;
83 // ============================== LOCAL CLASSES ================================
86 * This is an internal utility class used by the JPLangUtil class
87 * and is intended for encapsulation only.
94 public: // Query Functions
97 * Determines if aUnicodeChar is a base Katakana that is capable
98 * of being converted into either a Vioced or Semi-voiced Full-width
100 * If aSemiVoiced is true, then the check is only performed
101 * for Semi-voiced conversion capability.
103 * @param aUnicodeChar The character to be tested.
104 * @param aSemiVoiced Whether or not the character is to be tested
105 * as convertable to a Semi-voiced Full-width
106 * Katakana, rather than just voiced.
108 * @return ETrue is the character is in fact convertable to either
109 * a voiced or semi-voiced fullwidth katakana character,
110 * depending on the aSemiVoiced flag.
112 static TBool IsFullWidthVoicedConvertableHalfWidthBaseKatakana
113 ( TText aUnicodeChar, TBool aSemiVoiced = EFalse );
116 * Determines if aUnicodeChar is a Vioced or Semi-voiced Full-width
117 * Katakana character.
118 * If aSemiVoiced is true, then the check is only performed
121 * @param aUnicodeChar The character to be tested.
122 * @param aSemiVoiced Whether or not the character is a Semi-voiced
123 * Full-width Katakana, rather than just voiced.
125 * @return ETrue is the character is in fact a voiced or semi-voiced
126 * fullwidth katakana character, depending on the aSemiVoiced
129 static TBool IsFullWidthVoicedKatakana( TText aUnicodeChar,
130 TBool aSemiVoiced = EFalse);
132 public: // Conversion Functions
135 * Converts one Katakana character from either Half to Full-width
136 * or vice versa, depending on the direction specified by aDirection
138 * @param aDirection Direction to convert.
139 * @param aKatakanaChar The character to convert.
141 * @return The opposite width Katakana character.
143 static TChar ConvertKatakanaChar( TConvDirection aDirection,
144 TText aKatakanaChar );
147 * Converts one voiced Katakana character from either Half to Full-width
148 * or vice versa, depending on the direction specified by aDirection,
149 * and appends the converted character to the descriptor aTarget.
150 * In the case that it is from Full to Half-width, it is necessary to
151 * convert it into a base-katakana + (semi-)voiced mark pair, thus
152 * the necessity for passing in the TDes reference return type.
153 * In the case of converting from Half to Full-width, it is only
154 * necessary to pass in a base-katakana that has a (semi-)voiced
155 * Full-width counterpart.
157 * @param aDirection Direction to convert.
158 * @param aVoicedKatakana The character to convert.
159 * @param aTarget The descriptor to append the converted character(s) to.
160 * @param aSemiVoiced ETrue if performing a Semi-voiced conversion.
163 static void ConvertVoicedKatakanaCharAndAppendToTarget(
164 TConvDirection aDirection,
165 TText aVoicedKatakana,
167 TBool aSemiVoiced = EFalse );
170 * Converts all special characters *in-place* from either Half to
171 * Full-width or vice versa, depending on the direction specified
174 * @param aDirection Direction to convert.
175 * @param aUnicodeText The character to convert.
177 * @return The number of converted special characters.
179 static TInt ConvertSpecialCharactersInPlace( TConvDirection aDirection,
180 TDes16& aUnicodeText );
183 * Converts all ASCII *in-place* from either Half to
184 * Full-width or vice versa, depending on the direction specified
187 * @param aDirection Direction to convert.
188 * @param aUnicodeText The character to convert.
190 * @return The number of converted ASCII-range characters.
192 static TInt ConvertASCIIInPlace( TConvDirection aDirection,
193 TDes16& aUnicodeText );
196 // ============================= LOCAL FUNCTIONS ===============================
198 // -----------------------------------------------------------------------------
199 // UnicodeTextUtil::IsFullWidthVoicedConvertableHalfWidthBaseKatakana
200 // Determines if aUnicodeChar is a base Katakana that is capable
201 // of being converted into either a Vioced or Semi-voiced
202 // Full-width character.
203 // If aSemiVoiced is true, then the check is only performed
204 // for Semi-voiced conversion capability.
205 // Returns: ETrue if it is convertable.
206 // -----------------------------------------------------------------------------
208 TBool UnicodeTextUtil::IsFullWidthVoicedConvertableHalfWidthBaseKatakana
209 ( TText aUnicodeChar, TBool aSemiVoiced )
213 return ( aUnicodeChar >= 0xff8a && aUnicodeChar <= 0xff8e );
217 return ( ( aUnicodeChar == 0xff73 ) ||
218 ( aUnicodeChar >= 0xff76 && aUnicodeChar <= 0xff7f ) ||
219 ( aUnicodeChar >= 0xff80 && aUnicodeChar <= 0xff84 ) ||
220 ( aUnicodeChar >= 0xff8a && aUnicodeChar <= 0xff8e ) ||
221 ( aUnicodeChar == 0xff9c ) ||
222 ( aUnicodeChar == 0xff66 ) );
226 // -----------------------------------------------------------------------------
227 // UnicodeTextUtil::IsFullWidthVoicedKatakana
228 // Determines if aUnicodeChar is Full-width Katakana.
229 // Returns: ETrue if it is Full-width Katakana.
230 // -----------------------------------------------------------------------------
232 TBool UnicodeTextUtil::IsFullWidthVoicedKatakana( TText aUnicodeChar,
235 const TInt voicableRange( aSemiVoiced ?
236 KFullWidthSemiVoicableKatakanaRange :
237 KFullWidthVoicableKatakanaRange );
238 const TText* const (*voicedTable) = aSemiVoiced ?
239 KHalfWidthBaseToFullWidthSemiVoicedKatakanaTable :
240 KHalfWidthBaseToFullWidthVoicedKatakanaTable;
241 for( TInt i( 0 ); i < voicableRange; ++i )
243 if( aUnicodeChar == voicedTable[i][KFullWidthIndex] )
251 // -----------------------------------------------------------------------------
252 // UnicodeTextUtil::ConvertKatakanaChar
253 // Converts one Katakana Char in the direction specified by aDirection.
254 // Assumes aKatakanaChar is within range.
255 // Returns: A TText containing either the varient character or the character
256 // itself, in the case there is no conversion.
257 // -----------------------------------------------------------------------------
259 TChar UnicodeTextUtil::ConvertKatakanaChar( TConvDirection aDirection,
260 TText aKatakanaChar )
263 JPLangUtil::IsKatakana( aKatakanaChar ) &&
264 !IsFullWidthVoicedKatakana( aKatakanaChar ),
265 User::Panic( KJPLangUtilPanic, EErrNotKatakana )
267 TChar convChar( aKatakanaChar );
268 const TInt directionIndex( ( aDirection == EHalfToFullWidth ) ?
269 KHalfWidthIndex : KFullWidthIndex );
270 for( TInt i( 0 ); i < KHalfWidthKatakanaRange; ++i )
273 KHalfToFullWidthKatakanaCharTable[i][directionIndex] )
275 convChar = KHalfToFullWidthKatakanaCharTable[i][!directionIndex];
282 // -----------------------------------------------------------------------------
283 // UnicodeTextUtil::ConvertVoicedKatakanaChar
284 // Converts one Voiced Katakana Char in the direction specified by aDirection,
285 // and appends to the descriptor, aTarget.
286 // If aSemiVoiced is ETrue, then the code point is converted to the Semi-voiced
288 // Assumes aVoicedKatakana is within range.
289 // -----------------------------------------------------------------------------
291 void UnicodeTextUtil::ConvertVoicedKatakanaCharAndAppendToTarget(
292 TConvDirection aDirection,
293 TText aVoicedKatakana,
298 IsFullWidthVoicedConvertableHalfWidthBaseKatakana( aVoicedKatakana ) ||
299 IsFullWidthVoicedKatakana( aVoicedKatakana, aSemiVoiced ),
300 User::Panic( KJPLangUtilPanic, EErrNotVoicedKatakana )
303 const TInt voicableRange( aSemiVoiced ?
304 KFullWidthSemiVoicableKatakanaRange :
305 KFullWidthVoicableKatakanaRange );
306 const TText* const (*voicedTable) = aSemiVoiced ?
307 KHalfWidthBaseToFullWidthSemiVoicedKatakanaTable :
308 KHalfWidthBaseToFullWidthVoicedKatakanaTable;
309 if( aDirection == EHalfToFullWidth )
311 // In the case of Half Width, only the base character is needed for
313 for( TInt i( 0 ); i < voicableRange; ++i )
315 if( aVoicedKatakana == voicedTable[i][KHalfWidthIndex] )
317 const TChar uniChar( voicedTable[i][KFullWidthIndex] );
318 aTarget.Append( uniChar );
325 for( TInt i( 0 ); i < voicableRange; ++i )
327 if( aVoicedKatakana == voicedTable[i][KFullWidthIndex] )
329 const TChar uniChar( voicedTable[i][KHalfWidthIndex] );
330 aTarget.Append( uniChar );
334 const TChar voicedSoundMark( aSemiVoiced ?
335 KHalfWidthKatakanaSemiVoicedSoundMark :
336 KHalfWidthKatakanaVoicedSoundMark );
337 aTarget.Append( voicedSoundMark );
341 // -----------------------------------------------------------------------------
342 // UnicodeTextUtil::ConvertSpecialCharactersInPlace
343 // Converts all special characters in the aUnicodeText descriptor in-place
344 // that have both Full and Half-width variants.
345 // Conversion occurs in the direction specified by aDirection.
346 // Returns: The total number of characters converted.
347 // -----------------------------------------------------------------------------
349 TInt UnicodeTextUtil::ConvertSpecialCharactersInPlace
350 ( TConvDirection aDirection, TDes16& aUnicodeText )
352 TInt totalConverted( 0 );
353 const TInt directionIndex( ( aDirection == EHalfToFullWidth ) ?
354 KHalfWidthIndex : KFullWidthIndex );
355 for( TInt i( 0 ); i < aUnicodeText.Length(); ++i )
357 const TText uniChar( aUnicodeText[i] );
358 for( TInt j( 0 ); j < KHalfWidthSpecialCharRange; ++j )
360 if( uniChar == KHalfToFullWidthSpecialCharTable[j][directionIndex] )
363 KHalfToFullWidthSpecialCharTable[j][!directionIndex];
369 return totalConverted;
372 // -----------------------------------------------------------------------------
373 // UnicodeTextUtil::ConvertASCIIInPlace
374 // Converts all ASCII *in-place* from either Half to Full-width or vice versa,
375 // depending on the direction specified by aDirection.
376 // Returns: The total number of characters converted.
377 // -----------------------------------------------------------------------------
379 TInt UnicodeTextUtil::ConvertASCIIInPlace( TConvDirection aDirection,
380 TDes16& aUnicodeText )
382 TInt totalConverted( 0 );
383 TText lowerBound( ( aDirection == EHalfToFullWidth ) ?
384 KHalfWidthASCIILowerBound :
385 KFullWidthASCIILowerBound );
386 TText upperBound( ( aDirection == EHalfToFullWidth ) ?
387 KHalfWidthASCIIUpperBound :
388 KFullWidthASCIIUpperBound );
389 TInt offset( ( aDirection == EHalfToFullWidth ) ?
390 KHalfToFullWidthASCIIOffset :
391 -KHalfToFullWidthASCIIOffset );
392 for( TInt i( 0 ); i < aUnicodeText.Length(); ++i )
394 const TText uniChar( aUnicodeText[i] );
395 if( uniChar >= lowerBound && uniChar <= upperBound )
397 TText convertedChar( static_cast<TText>( uniChar + offset ) );
398 aUnicodeText[i] = convertedChar;
402 return totalConverted;
405 // EXPORTED FUNCTIONS
407 // ============================ MEMBER FUNCTIONS ===============================
409 // -----------------------------------------------------------------------------
410 // JPLangUtil::ConvertHalfToFullWidth
411 // Converts all Half-width conformant text (including ASCII, Special Characters
412 // and Katakana) found in aUnicodeSource to their Full-width counterparts and
413 // places the resulting text into aUnicodeTarget.
414 // (detailed information about the parameters and return values can be found
415 // in the header file)
416 // -----------------------------------------------------------------------------
418 EXPORT_C TInt JPLangUtil::ConvertHalfToFullWidth( const TDesC16& aUnicodeSource,
419 TDes16& aUnicodeTarget )
421 TInt totalConverted( 0 );
422 // Special Characters are handled in the Katakana conversion...
423 totalConverted = ConvertHalfToFullWidthKatakana( aUnicodeSource,
425 totalConverted += UnicodeTextUtil::ConvertASCIIInPlace( EHalfToFullWidth,
427 return totalConverted;
430 // -----------------------------------------------------------------------------
431 // JPLangUtil::ConvertFullToHalfWidth
432 // Converts all Full-width conformant text found in aUnicodeSource to their
433 // Full-width counterparts and places the resulting text into aUnicodeTarget.
434 // Only those characters with existing Half-width variants are converted. There
435 // will be a 2-for-1 conversion for each Full-width Voiced and Semi-voiced
436 // Katakana character.
437 // (detailed information about the parameters and return values can be found in
439 // -----------------------------------------------------------------------------
441 EXPORT_C TInt JPLangUtil::ConvertFullToHalfWidth( const TDesC16& aUnicodeSource,
442 TDes16& aUnicodeTarget )
444 TInt totalConverted( 0 );
445 // Special Characters are handled in the Katakana conversion...
446 totalConverted = ConvertFullToHalfWidthKatakana( aUnicodeSource,
448 totalConverted += UnicodeTextUtil::ConvertASCIIInPlace( EFullToHalfWidth,
450 return totalConverted;
453 // -----------------------------------------------------------------------------
454 // JPLangUtil::ConvertHalfToFullWidthKatakana
455 // Converts Half-width Katakana and Special Character text found in
456 // aUnicodeSource to their Full-width counterparts and places the resulting text
457 // into aUnicodeTarget.
458 // (detailed information about the parameters and return values can be found in
460 // -----------------------------------------------------------------------------
462 EXPORT_C TInt JPLangUtil::ConvertHalfToFullWidthKatakana
463 ( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget )
465 TInt totalConverted( 0 );
466 const TInt length( aUnicodeSource.Length() );
467 if( length > aUnicodeTarget.MaxLength() )
471 aUnicodeTarget.Zero();
472 for( TInt i( 0 ); i < length; ++i )
474 const TText uniChar( aUnicodeSource[i] );
475 // Check if the next character is a Half Width Katakana (Semi-)Voiced
476 // Sound Mark and if the current character + the voiced sound mark have
477 // a Full Width counterpart
480 const TBool isVoiced(
481 ( UnicodeTextUtil::IsFullWidthVoicedConvertableHalfWidthBaseKatakana
483 ( aUnicodeSource[i + 1] == KHalfWidthKatakanaVoicedSoundMark )
486 const TBool isSemiVoiced(
487 ( UnicodeTextUtil::IsFullWidthVoicedConvertableHalfWidthBaseKatakana
488 ( uniChar, ETrue ) &&
489 ( aUnicodeSource[i + 1] == KHalfWidthKatakanaSemiVoicedSoundMark )
492 if( isVoiced || isSemiVoiced )
494 UnicodeTextUtil::ConvertVoicedKatakanaCharAndAppendToTarget(
500 i++; // Skip the (semi-)voice marker
505 // If not, then just convert directly if in range
506 if( uniChar >= KHalfWidthKatakanaLowerBound &&
507 uniChar <= KHalfWidthKatakanaUpperBound )
509 aUnicodeTarget.Append(
510 UnicodeTextUtil::ConvertKatakanaChar( EHalfToFullWidth,
515 // Else this is not Half Width Katakana, so copy directly...
518 const TChar uniCharacter( uniChar );
519 aUnicodeTarget.Append( uniCharacter );
523 // Now handle special characters
524 // This logic may be moved into this function to avoid another
525 // loop over the text.
527 UnicodeTextUtil::ConvertSpecialCharactersInPlace( EHalfToFullWidth,
530 return totalConverted;
533 // -----------------------------------------------------------------------------
534 // JPLangUtil::ConvertFullToHalfWidthKatakana
535 // Converts Full-width Katakana and Special Character text found in
536 // aUnicodeSource to their Half-width counterparts and places the resulting text
537 // into aUnicodeTarget. There will be a 2-for-1 conversion for each Full-width
538 // Voiced and Semi-voiced Katakana character.
539 // (detailed information about the parameters and return values can be found in
541 // -----------------------------------------------------------------------------
543 EXPORT_C TInt JPLangUtil::ConvertFullToHalfWidthKatakana
544 ( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget )
546 TInt totalConverted( 0 );
547 const TInt length( aUnicodeSource.Length() );
548 const TInt maxLength( aUnicodeTarget.MaxLength() );
549 if( length > maxLength )
553 aUnicodeTarget.Zero();
554 for( TInt i( 0 ); i < length; ++i )
556 const TText uniChar( aUnicodeSource[i] );
557 // First check if this is this Full Width Katakana
558 if( ( uniChar >= KFullWidthKatakanaLowerBound &&
559 uniChar <= KFullWidthKatakanaUpperBound ) ||
560 ( uniChar == KFullWidthKatakanaVoicedSoundMark ||
561 uniChar == KFullWidthKatakanaSemiVoicedSoundMark ) )
563 // Then check if it is (Semi-)Voiced and convert it properly
564 const TBool isVoiced(
565 UnicodeTextUtil::IsFullWidthVoicedKatakana( uniChar )
567 const TBool isSemiVoiced(
568 UnicodeTextUtil::IsFullWidthVoicedKatakana( uniChar, ETrue )
570 if( isVoiced || isSemiVoiced )
572 if( aUnicodeTarget.Length() + 2 > maxLength )
574 // This descriptor can't hold the new data
575 aUnicodeTarget.Zero();
578 UnicodeTextUtil::ConvertVoicedKatakanaCharAndAppendToTarget(
588 if( aUnicodeTarget.Length() + 1 > maxLength )
590 // This descriptor can't hold the new data
591 aUnicodeTarget.Zero();
594 aUnicodeTarget.Append(
595 UnicodeTextUtil::ConvertKatakanaChar(
603 // This is not Full Width Katakana, so copy directly...
606 if( aUnicodeTarget.Length() + 1 > maxLength )
608 // This descriptor can't hold the new data
609 aUnicodeTarget.Zero();
612 const TChar uniCharacter( uniChar );
613 aUnicodeTarget.Append( uniCharacter );
617 // Now handle special characters
618 // This logic may be moved into this function to avoid another loop over
621 UnicodeTextUtil::ConvertSpecialCharactersInPlace( EFullToHalfWidth,
624 return totalConverted;
627 // -----------------------------------------------------------------------------
628 // JPLangUtil::ConvertFullHiragnaToFullKatakana
629 // Converts Full-width Hiragana and Special Character text found in
630 // aUnicodeSource to their Full-width counterparts and places the
631 // resulting text into aUnicodeTarget.
632 // -----------------------------------------------------------------------------
634 EXPORT_C TInt JPLangUtil::ConvertFullHiragnaToFullKatakana
635 ( const TDesC16& aUnicodeSource, TDes16& aUnicodeTarget )
637 TInt totalConverted( 0 );
638 const TInt length( aUnicodeSource.Length() );
639 const TInt maxLength( aUnicodeTarget.MaxLength() );
640 if( length > maxLength )
645 const TUint comp = KFullWidthKatakanaSmallA - KFullWidthHiraganaSmallA;
647 aUnicodeTarget.Zero();
648 for( TInt i( 0 ); i < length; ++i )
650 const TText uniChar( aUnicodeSource[i] );
654 uniChar2 = aUnicodeSource[i+1];
656 // First check if this is this Full Width Katakana
657 if (KFullWidthHiraganaSmallA <= uniChar && uniChar <= KFullWidthHiraganaVU)
659 if (uniChar == KFullWidthHiraganaU
660 && uniChar2 == KFullWidthHiraganaVoicedSound)
662 aUnicodeTarget.Append(KFullWidthKatakanaSmallVU);
668 TUint katakana = uniChar + comp;
669 if (IsKatakana(katakana))
671 aUnicodeTarget.Append(katakana);
678 aUnicodeTarget.Append(uniChar);
683 // Now handle special characters
684 // This logic may be moved into this function to avoid another loop over
687 UnicodeTextUtil::ConvertSpecialCharactersInPlace( EFullToHalfWidth,
690 return totalConverted;
693 // -----------------------------------------------------------------------------
694 // JPLangUtil::IsKatakana
695 // Determines whether or not the character is Katakana
696 // (detailed information about the parameters and return values can be found in
698 // -----------------------------------------------------------------------------
700 EXPORT_C TBool JPLangUtil::IsKatakana( const TText aUnicodeChar )
702 return ( ( aUnicodeChar >= KFullWidthKatakanaLowerBound &&
703 aUnicodeChar <= KFullWidthKatakanaUpperBound ) ||
704 ( aUnicodeChar >= KHalfWidthKatakanaLowerBound &&
705 aUnicodeChar <= KHalfWidthKatakanaUpperBound ) ||
706 ( aUnicodeChar == KFullWidthKatakanaVoicedSoundMark ||
707 aUnicodeChar == KFullWidthKatakanaSemiVoicedSoundMark ) );
710 // -----------------------------------------------------------------------------
711 // JPLangUtil::IsHiragana
712 // Determines whether or not the character is Hiragana
713 // (detailed information about the parameters and return values can be found in
715 // -----------------------------------------------------------------------------
717 EXPORT_C TBool JPLangUtil::IsHiragana( const TText aUnicodeChar )
719 return ( ( aUnicodeChar >= 0x3041 && aUnicodeChar <= 0x3096 ) ||
720 ( aUnicodeChar >= 0x3099 && aUnicodeChar <= 0x309f ) );
723 // -----------------------------------------------------------------------------
724 // JPLangUtil::IsKanji
725 // Determines whether or not the character is a CJK Unified Ideograph (ExtA)
726 // (detailed information about the parameters and return values can be found in
728 // -----------------------------------------------------------------------------
730 EXPORT_C TBool JPLangUtil::IsKanji( const TText aUnicodeChar )
732 return( ( aUnicodeChar >= KCJKUnifiedIdiographLowerBound &&
733 aUnicodeChar <= KCJKUnifiedIdiographUpperBound ) ||
734 ( aUnicodeChar >= KCJKUnifiedIdeographExtALowerBound &&
735 aUnicodeChar <= KCJKUnifiedIdeographExtAUpperBound ) );
738 // -----------------------------------------------------------------------------
739 // JPLangUtil::IsHalfWidth
740 // Determines whether or not the character is UNICODE defined Half-width.
741 // (detailed information about the parameters and return values can be found in
743 // -----------------------------------------------------------------------------
745 EXPORT_C TBool JPLangUtil::IsHalfWidth( const TText aUnicodeChar )
747 return // HW Katakana
748 ( ( aUnicodeChar >= 0xff61 && aUnicodeChar <= 0xff9f ) ||
750 ( aUnicodeChar >= 0x0020 && aUnicodeChar <= 0x007e ) ||
751 // Special Characters
752 ( aUnicodeChar == 0x00a2 || aUnicodeChar == 0x00a3 ||
753 aUnicodeChar == 0x00a5 || aUnicodeChar == 0x00a6 ||
754 aUnicodeChar == 0x00a9 || aUnicodeChar == 0x00ac ||
755 aUnicodeChar == 0x00af || aUnicodeChar == 0x2985 ||
756 aUnicodeChar == 0x2986 ) ||
757 // HW Symbol Variants
758 ( aUnicodeChar >= 0xffe8 && aUnicodeChar <= 0xffee ) );
761 // -----------------------------------------------------------------------------
762 // JPLangUtil::IsFullWidth
763 // Determines whether or not the character is UNICODE defined Full-width.
764 // Essentially, all code values that are not Half-width.
765 // (detailed information about the parameters and return values can be found in
767 // -----------------------------------------------------------------------------
769 EXPORT_C TBool JPLangUtil::IsFullWidth( const TText aUnicodeChar )
771 return !IsHalfWidth( aUnicodeChar );