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 "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.
14 * Description: This class is a utitlity class for conversion of Vodafone
26 // PICTOGRAPH_SHARED.CPP
30 #include "CnvPictographShared.h"
31 // #include "CnvPictograph1.h"
32 #include "CnvShiftJisDirectmap.h"
33 #include <convgeneratedcpp.h>
37 // Escape sequence for Vodafone pictograph
38 _LIT8(KLit8EscapeSequenceForPictograph, "\x1b\x24");
39 // _LIT8(KLit8EscapeSequenceForPictograph1, "\x1b\x24\x47");
41 const TInt KEscape = 0x1B;
42 const TInt KShiftIn = 0x0F;
44 // Intermidiate buffers for pictograph
45 const TInt KIntermediateBuffer1 = 'G';
47 const TUint KSingleByteRangeFirstBlockStart = 0xF0;
48 const TUint KSingleByteRangeFirstBlockEnd = 0xF9;
49 const TUint KSingleByteRangeSecondBlockStart = 0x40;
50 const TUint KSingleByteRangeSecondBlockEnd = 0xFC;
52 const TUint KFirstByteRangeFirstBlockStart = 0xF5;
53 const TUint KFirstByteRangeFirstBlockEnd = 0xFE;
54 const TUint KSecondByteRangeSecondBlockStart = 0xA1;
55 const TUint KSecondByteRangeSecondBlockEnd = 0xFE;
57 const TUint KEUCJPSecondBlockStart = 0xF5;
58 const TUint KEUCJPBlockSize = 0x5D;
59 const TUint KSingleShift3=0x8f;
61 const TUint KPictographStartFirstByte = 0xF0;
62 const TUint KPictographStartSecondByte = 0x40;
63 const TUint KShiftJisTrailByteIllegal = 0x7F;
65 // ============================ LOCAL FUNCTIONS ===============================
68 // -----------------------------------------------------------------------------
69 // DummyConvertToIntermediateBufferInPlace ?description.
71 // -----------------------------------------------------------------------------
73 LOCAL_C void DummyConvertToIntermediateBufferInPlace(TDes8&)
77 // -----------------------------------------------------------------------------
78 // DummyConvertFromIntermediateBufferInPlace
80 // -----------------------------------------------------------------------------
82 LOCAL_C void DummyConvertFromIntermediateBufferInPlace(TInt, TDes8&,
83 TInt& aNumberOfCharactersThatDroppedOut)
85 aNumberOfCharactersThatDroppedOut=0;
88 // -----------------------------------------------------------------------------
89 // ConvertFromPictogaphToEucJpDirectmapInPlace
90 // Converts from EucJp packed Pictograph to Unicode
91 // -----------------------------------------------------------------------------
93 LOCAL_C void ConvertFromPictogaphToEucJpDirectmapInPlace(
94 TInt aStartPositionInDescriptor, TDes8& aDescriptor,
95 TInt& aNumberOfCharactersThatDroppedOut)
97 TInt descriptorLength=aDescriptor.Length();
98 TInt bytesPerCharacter = 2;
99 if (aDescriptor[0] >= KEUCJPSecondBlockStart)
101 bytesPerCharacter = 3;
104 aNumberOfCharactersThatDroppedOut =
105 Max(0, ((descriptorLength - aStartPositionInDescriptor) / 2) -
106 ((aDescriptor.MaxLength() - aStartPositionInDescriptor) /
108 descriptorLength -= aNumberOfCharactersThatDroppedOut * 2;
109 if (descriptorLength <= aStartPositionInDescriptor)
111 aDescriptor.SetLength(descriptorLength);
115 // pointerToTargetByte is initialized properly when descriptorLength
116 // has been offset to the actual final length of aDescriptor
117 TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
118 const TUint8* const pointerToFirstByte =
119 pointerToTargetByte + aStartPositionInDescriptor;
120 const TUint8* pointerToSourceByte =
121 pointerToTargetByte + (descriptorLength - 1);
122 descriptorLength = (((descriptorLength - aStartPositionInDescriptor)
123 * bytesPerCharacter) / 2) + aStartPositionInDescriptor;
124 aDescriptor.SetLength(descriptorLength);
125 // pointerToTargetByte is is initialized properly here
126 pointerToTargetByte += descriptorLength - 1;
127 for (;pointerToTargetByte > pointerToFirstByte; )
129 TInt secondByte = *pointerToSourceByte;
130 TInt firstByte = *(pointerToSourceByte - 1);
132 if (bytesPerCharacter == 3)
134 firstByte = (firstByte - KEUCJPSecondBlockStart) * 2 +
135 KFirstByteRangeFirstBlockStart;
139 firstByte = (firstByte - KPictographStartFirstByte) * 2 +
140 KFirstByteRangeFirstBlockStart;
142 if (static_cast<TInt>(KEUCJPBlockSize + KPictographStartSecondByte + 1)
145 if (secondByte > KShiftJisTrailByteIllegal)
147 secondByte = secondByte -(KPictographStartSecondByte +
148 KEUCJPBlockSize + 1) + KSecondByteRangeSecondBlockStart;
153 if (secondByte > KShiftJisTrailByteIllegal)
155 secondByte += KSecondByteRangeSecondBlockStart - KPictographStartSecondByte;
157 *pointerToTargetByte = static_cast<TUint8>(secondByte);
158 --pointerToTargetByte;
159 *pointerToTargetByte = static_cast<TUint8>(firstByte);
160 if (bytesPerCharacter == 3)
162 --pointerToTargetByte;
163 *pointerToTargetByte = KSingleShift3;
165 --pointerToTargetByte;
166 pointerToSourceByte -= 2;
171 // ============================ MEMBER FUNCTIONS ===============================
173 // -----------------------------------------------------------------------------
174 // CnvPictographShared::SetCharacterSetsForPictograph
175 // It sets parameters to SCharacterSet array. It called in ConvertFromUnicode().
176 // It makes possible that pictograph conversion is called from other conversion
178 // (other items were commented in a header).
179 // -----------------------------------------------------------------------------
181 void CnvPictographShared::SetCharacterSetsForPictograph(
182 RArray<CnvUtilities::SCharacterSet>& /*aArrayOfCharacterSets*/)
185 // If this module needs to support escape sequence pictograph,
186 // Remove the comment from the following code.
188 // CnvUtilities::SCharacterSet characterSet;
189 // characterSet.iConversionData = &CnvPictograph1::ConversionData();
190 // characterSet.iConvertFromIntermediateBufferInPlace =
191 // CnvPictographShared::ConvertToPictograph1InPlace;
192 // characterSet.iEscapeSequence = &KLit8EscapeSequenceForPictograph1;
193 // aArrayOfCharacterSets.Append(characterSet);
197 // -----------------------------------------------------------------------------
198 // CnvPictographShared::SetMethodsForPictograph
199 // It sets parameters to SMethod array. It called in ConvertToUnicode().
200 // It makes possible that pictograph conversion is called from other conversion
202 // (other items were commented in a header).
203 // -----------------------------------------------------------------------------
205 void CnvPictographShared::SetMethodsForPictograph(
206 RArray<CnvUtilities::SMethod>& aArrayOfMethods, TOriginalCharset aOriginalCharset)
209 CnvUtilities::SMethod method;
210 switch (aOriginalCharset)
212 case ECharsetShiftJis:
213 method.iNumberOfBytesAbleToConvert =
214 CnvPictographShared::NumberOfBytesAbleToConvertSJisDirectMap;
215 method.iConvertToIntermediateBufferInPlace =
216 DummyConvertToIntermediateBufferInPlace;
217 method.iConversionData =
218 &CnvShiftJisDirectmap::ConversionData();
219 method.iNumberOfBytesPerCharacter = 2;
220 method.iNumberOfCoreBytesPerCharacter = 2;
221 ret |= aArrayOfMethods.Append(method);
224 method.iNumberOfBytesAbleToConvert =
225 CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap1;
226 method.iConvertToIntermediateBufferInPlace =
227 CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace;
228 method.iConversionData =
229 &CnvShiftJisDirectmap::ConversionData();
230 method.iNumberOfBytesPerCharacter = 2;
231 method.iNumberOfCoreBytesPerCharacter = 2;
232 ret |= aArrayOfMethods.Append(method);
233 method.iNumberOfBytesAbleToConvert =
234 CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap2;
235 method.iConvertToIntermediateBufferInPlace =
236 CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace;
237 method.iConversionData =
238 &CnvShiftJisDirectmap::ConversionData();
239 method.iNumberOfBytesPerCharacter = 3;
240 method.iNumberOfCoreBytesPerCharacter = 2;
241 ret |= aArrayOfMethods.Append(method);
246 __ASSERT_DEBUG(!ret, User::Panic(_L("RArray append failure"), ret));
248 // If this module needs to support escape sequence pictograph,
249 // Remove the comment from the following code.
251 // method.iNumberOfBytesAbleToConvert =
252 // CnvPictographShared::NumberOfBytesAbleToConvertToPicto1;
253 // method.iConvertToIntermediateBufferInPlace =
254 // CnvPictographShared::ConvertToPictographFromUnicode;
255 // method.iConversionData = &CnvPictograph1::ConversionData();
256 // method.iNumberOfBytesPerCharacter = 1;
257 // method.iNumberOfCoreBytesPerCharacter = 1;
258 // aArrayOfMethods.Append(method);
261 // -----------------------------------------------------------------------------
262 // CnvPictographShared::SetCharacterSetsForPictograph
263 // It sets parameters to SState array. It called in ConvertToUnicode().
264 // It makes possible that pictograph conversion is called from other
265 // conversion plug-ins.
266 // (other items were commented in a header).
267 // -----------------------------------------------------------------------------
269 void CnvPictographShared::SetCharacterSetsForPictograph(
270 RArray<CnvUtilities::SCharacterSet>& aArrayOfStates,
271 TOriginalCharset aOriginalCharset)
274 CnvUtilities::SCharacterSet characterSet;
275 switch (aOriginalCharset)
277 case ECharsetShiftJis:
278 // Append the character set for pictograph
279 characterSet.iConversionData =
280 &CnvShiftJisDirectmap::ConversionData();
281 characterSet.iConvertFromIntermediateBufferInPlace =
282 DummyConvertFromIntermediateBufferInPlace;
283 characterSet.iEscapeSequence = &KNullDesC8;
284 ret |= aArrayOfStates.Append(characterSet);
287 // Append the character set for pictograph1
288 characterSet.iConversionData = &CnvShiftJisDirectmap::ConversionData();
289 characterSet.iConvertFromIntermediateBufferInPlace =
290 ConvertFromPictogaphToEucJpDirectmapInPlace;
291 characterSet.iEscapeSequence = &KNullDesC8;
292 ret |= aArrayOfStates.Append(characterSet);
294 // Append the character set for pictograph2
295 characterSet.iConversionData = &CnvShiftJisDirectmap::ConversionData();
296 characterSet.iConvertFromIntermediateBufferInPlace =
297 ConvertFromPictogaphToEucJpDirectmapInPlace;
298 characterSet.iEscapeSequence = &KNullDesC8;
299 ret |= aArrayOfStates.Append(characterSet);
304 __ASSERT_DEBUG(!ret, User::Panic(_L("RArray append failure"), ret));
307 // -----------------------------------------------------------------------------
308 // CnvPictographShared::SetStatesForPictograph
309 // It sets parameters to SState array. It called in ConvertToUnicode().
310 // It makes possible that pictograph conversion is called from other
311 // conversion plug-ins.
312 // (other items were commented in a header).
313 // -----------------------------------------------------------------------------
315 void CnvPictographShared::SetStatesForPictograph(
316 RArray<CnvUtilities::SState>& /*aArrayOfStates*/)
319 // If this module needs to support escape sequence pictograph,
320 // Remove the comment from the following code.
322 // CnvUtilities::SState state;
323 // state.iEscapeSequence = &KLit8EscapeSequenceForPictograph1;
324 // state.iConversionData = &CnvPictograph1::ConversionData();
325 // aArrayOfStates.Append(state);
328 // -----------------------------------------------------------------------------
329 // CnvPictographShared::ConvertToPictograph1InPlace
330 // It converts from an intermediate buffer to a pictograph code.
331 // After that, it adds shift-in code(0x0F).
332 // (other items were commented in a header).
333 // -----------------------------------------------------------------------------
335 // void CnvPictographShared::ConvertToPictograph1InPlace(
336 // TInt aStartPositionInDescriptor,
337 // TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut)
339 // CnvUtilities::ConvertFromIntermediateBufferInPlace(
340 // aStartPositionInDescriptor, aDescriptor,
341 // aNumberOfCharactersThatDroppedOut,
342 // KLit8EscapeSequenceForPictograph1, 1);
343 // AppendShiftIn(aDescriptor, aNumberOfCharactersThatDroppedOut);
347 // -----------------------------------------------------------------------------
348 // CnvPictographShared::NumberOfBytesAbleToConvertToPicto1
349 // It returns a number of bytes that the conversion to pictograph is
350 // possible in the descriptor.
351 // (other items were commented in a header).
352 // -----------------------------------------------------------------------------
354 TInt CnvPictographShared::NumberOfBytesAbleToConvertSJisDirectMap(
355 const TDesC8& aDescriptor)
357 const TUint8* pointerToPreviousByte = aDescriptor.Ptr()-1;
358 const TUint8* const pointerToLastByte =
359 pointerToPreviousByte + aDescriptor.Length();
360 if (pointerToPreviousByte == pointerToLastByte)
364 for (; pointerToPreviousByte < pointerToLastByte; )
366 const TUint currentByte = *(pointerToPreviousByte + 1);
367 const TUint nextByte = *(pointerToPreviousByte + 2);
368 if (((currentByte < KSingleByteRangeFirstBlockStart) ||
369 (currentByte > KSingleByteRangeFirstBlockEnd)) ||
370 ((nextByte < KSingleByteRangeSecondBlockStart) ||
371 (nextByte > KSingleByteRangeSecondBlockEnd)))
375 pointerToPreviousByte += 2;
377 return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
380 // -----------------------------------------------------------------------------
381 // NumberOfBytesAbleToConvertToEucJpDirectMap1
383 // -----------------------------------------------------------------------------
385 TInt CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap1(
386 const TDesC8& aDescriptor)
388 const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
389 const TUint8* const pointerToLastByte =
390 pointerToPreviousByte + aDescriptor.Length();
391 if (pointerToPreviousByte == pointerToLastByte)
395 for (;pointerToPreviousByte < pointerToLastByte;)
397 TUint currentByte = *(pointerToPreviousByte + 1);
398 const TUint nextByte = *(pointerToPreviousByte + 2);
399 if (((currentByte < KFirstByteRangeFirstBlockStart) ||
400 (currentByte > KFirstByteRangeFirstBlockEnd)) ||
401 ((nextByte < KSecondByteRangeSecondBlockStart) ||
402 (nextByte > KSecondByteRangeSecondBlockEnd)))
406 pointerToPreviousByte += 2;
408 return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
411 // -----------------------------------------------------------------------------
412 // NumberOfBytesAbleToConvertToPictograph
414 // -----------------------------------------------------------------------------
416 TInt CnvPictographShared::NumberOfBytesAbleToConvertToEucJpDirectMap2(
417 const TDesC8& aDescriptor)
419 const TUint8* pointerToPreviousByte = aDescriptor.Ptr() - 1;
420 const TUint8* const pointerToLastByte =
421 pointerToPreviousByte + aDescriptor.Length();
422 if (pointerToPreviousByte == pointerToLastByte)
426 for (;pointerToPreviousByte < pointerToLastByte;)
428 TUint currentByte = *(pointerToPreviousByte + 1);
429 if (currentByte == KSingleShift3)
431 pointerToPreviousByte++;
432 currentByte = *(pointerToPreviousByte + 1);
438 if (currentByte < 0xa0)
440 return CCnvCharacterSetConverter::EErrorIllFormedInput;
442 const TUint nextByte = *(pointerToPreviousByte + 2);
445 return CCnvCharacterSetConverter::EErrorIllFormedInput;
447 if (((currentByte < KFirstByteRangeFirstBlockStart) ||
448 (currentByte > KFirstByteRangeFirstBlockEnd)) ||
449 ((nextByte < KSecondByteRangeSecondBlockStart) ||
450 (nextByte > KSecondByteRangeSecondBlockEnd)))
452 // return the previous byte to the beginning of loop.
453 pointerToPreviousByte--;
456 pointerToPreviousByte += 2;
458 return (pointerToPreviousByte + 1) - aDescriptor.Ptr();
461 // -----------------------------------------------------------------------------
462 // CnvPictographShared::NumberOfBytesAbleToConvertToPicto1
463 // It returns a number of bytes that the conversion to pictograph is
464 // possible in the descriptor.
465 // (other items were commented in a header).
466 // -----------------------------------------------------------------------------
468 TInt CnvPictographShared::NumberOfBytesAbleToConvertToPicto1(
469 const TDesC8& aDescriptor)
471 return NumberOfBytesAbleToConvertToPictograph(aDescriptor,
472 KIntermediateBuffer1);
475 // -----------------------------------------------------------------------------
476 // CnvPictographShared::NumberOfBytesAbleToConvertToPictograph
477 // It's a common function for checking the number of bytes that the conversion
479 // (other items were commented in a header).
480 // -----------------------------------------------------------------------------
482 TInt CnvPictographShared::NumberOfBytesAbleToConvertToPictograph(
483 const TDesC8& aDescriptor, TInt aIntermidiateCode)
485 TInt compLen(KLit8EscapeSequenceForPictograph().Length());
487 if (aDescriptor.Left(compLen) == KLit8EscapeSequenceForPictograph)
489 const TInt intermidiateBuff = aDescriptor[compLen];
490 if (intermidiateBuff == aIntermidiateCode)
494 const TInt descriptorLength = aDescriptor.Length();
495 const TUint8* pointerToCurrentByte = aDescriptor.Ptr();
496 const TUint8* pointerToLastByte = pointerToCurrentByte +
497 (descriptorLength - 1);
498 pointerToCurrentByte += compLen + 2;
499 for (; pointerToCurrentByte <= pointerToLastByte;
500 pointerToCurrentByte++)
502 if (*pointerToCurrentByte == KShiftIn)
507 if (*pointerToCurrentByte == KEscape)
516 // -----------------------------------------------------------------------------
517 // CnvPictographShared::ConvertToPictographFromUnicode
518 // It converts the string which includes a pictograph's escape sequence
520 // (other items were commented in a header).
521 // -----------------------------------------------------------------------------
523 void CnvPictographShared::ConvertToPictographFromUnicode(TDes8& aDescriptor)
525 const TInt descriptorLength = aDescriptor.Length();
526 TUint8* pointerToCurrentByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
527 TUint8* pointerToDataByte = pointerToCurrentByte +
528 KLit8EscapeSequenceForPictograph().Length();
529 const TUint8* const pointerToLastByte = pointerToCurrentByte +
530 (descriptorLength - 1);
531 const TUint8* const pointerToFirstByte = pointerToCurrentByte;
534 for (; pointerToDataByte <= pointerToLastByte; pointerToDataByte++)
536 if (*pointerToDataByte != KShiftIn)
538 *pointerToCurrentByte = *pointerToDataByte;
539 pointerToCurrentByte++;
542 aDescriptor.SetLength(pointerToCurrentByte - pointerToFirstByte);
545 // -----------------------------------------------------------------------------
546 // CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace
547 // Converts from EucJp packed Pictograph to Unicode
548 // -----------------------------------------------------------------------------
550 void CnvPictographShared::ConvertToPictographFromEucJpPackedInPlace(TDes8& aDescriptor)
552 const TInt descriptorLength = aDescriptor.Length();
553 TUint8* pointerToTargetByte = CONST_CAST(TUint8*, aDescriptor.Ptr());
554 const TUint8* pointerToSourceByte = pointerToTargetByte;
555 const TUint8* const pointerToLastByte =
556 pointerToSourceByte + (descriptorLength - 1);
557 TInt bytesPerCharacter = 2;
558 TInt sjisStartbyte = KSingleByteRangeFirstBlockStart;
559 if (*pointerToSourceByte == KSingleShift3)
561 ++pointerToSourceByte;
562 bytesPerCharacter = 3;
563 sjisStartbyte = KEUCJPSecondBlockStart;
565 for (;pointerToSourceByte < pointerToLastByte; )
567 TUint firstByte = (*pointerToSourceByte
568 - KFirstByteRangeFirstBlockStart) / 2 + sjisStartbyte;
569 TUint secondByte = *(pointerToSourceByte + 1);
570 if ((*pointerToSourceByte % 2) == 0)
572 secondByte += KSingleByteRangeSecondBlockStart - KSecondByteRangeSecondBlockStart
573 + KEUCJPBlockSize + 1;
574 if (secondByte >= KShiftJisTrailByteIllegal)
579 secondByte += KSingleByteRangeSecondBlockStart - KSecondByteRangeSecondBlockStart;
580 if (secondByte >= KShiftJisTrailByteIllegal)
583 *pointerToTargetByte = static_cast<TUint8>(firstByte);
585 ++pointerToTargetByte;
586 *pointerToTargetByte = static_cast<TUint8>(secondByte);
587 pointerToSourceByte += 2;
588 ++pointerToTargetByte;
590 aDescriptor.SetLength((descriptorLength / bytesPerCharacter) * 2);
593 // -----------------------------------------------------------------------------
594 // CnvPictographShared::AppendShiftIn
595 // It appends a shift-in code to the descriptor.
596 // (other items were commented in a header).
597 // -----------------------------------------------------------------------------
599 void CnvPictographShared::AppendShiftIn(TDes8& aDescriptor,
600 TInt& aNumberOfCharactersThatDroppedOut)
602 if (aDescriptor.MaxLength() > aDescriptor.Length())
604 aDescriptor.Append(KShiftIn);
608 aNumberOfCharactersThatDroppedOut++;
612 // ========================== OTHER EXPORTED FUNCTIONS =========================
614 // -----------------------------------------------------------------------------
615 // SetCharacterSetsForPictograph()
616 // It sets parameters to SCharacterSet array.
617 // It called in ConvertFromUnicode().
618 // It makes possible that pictograph conversion is called from other
619 // conversion plug-ins.
621 // @param aArrayOfCharacterSets The conversion table array
622 // -----------------------------------------------------------------------------
624 EXPORT_C void SetCharacterSetsForPictograph(
625 RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets)
627 CnvPictographShared::SetCharacterSetsForPictograph(aArrayOfCharacterSets);
630 // -----------------------------------------------------------------------------
631 // SetCharacterSetsForPictograph()
632 // It sets parameters to SCharacterSet array.
633 // It called in ConvertFromUnicode().
634 // It makes possible that pictograph conversion is called from other
635 // conversion plug-ins.
637 // @param aArrayOfCharacterSets The conversion table array
638 // @param aOriginalCharset The character set
639 // -----------------------------------------------------------------------------
641 EXPORT_C void SetCharacterSetsForPictograph(
642 RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets,
643 TOriginalCharset aOriginalCharset)
645 CnvPictographShared::SetCharacterSetsForPictograph(aArrayOfCharacterSets,
649 // -----------------------------------------------------------------------------
650 // SetMethodsForPictograph()
651 // It sets parameters to SMethod array.
652 // It called in ConvertToUnicode().
653 // It makes possible that pictograph conversion is called from other
654 // conversion plug-ins.
656 // @param aArrayOfMethods The conversion table array
657 // @param aOriginalCharset The character set
658 // -----------------------------------------------------------------------------
660 EXPORT_C void SetMethodsForPictograph(
661 RArray<CnvUtilities::SMethod>& aArrayOfMethods,
662 TOriginalCharset aOriginalCharset)
664 CnvPictographShared::SetMethodsForPictograph(aArrayOfMethods,
668 // -----------------------------------------------------------------------------
669 // SetStatesForPictograph()
670 // It sets parameters to SState array.
671 // It called in ConvertToUnicode().
672 // It makes possible that pictograph conversion is called from other
673 // conversion plug-ins.
675 // @param aArrayOfMethods The conversion table array
676 // -----------------------------------------------------------------------------
678 EXPORT_C void SetStatesForPictograph(
679 RArray<CnvUtilities::SState>& aArrayOfStates)
681 CnvPictographShared::SetStatesForPictograph(aArrayOfStates);
684 // -----------------------------------------------------------------------------
685 // CountOfPictographPagesFromUnicode()
686 // It returns count of pictograph pages.
687 // This method is used for the conversion from Unicode to foreign character
690 // @return count of pictograph pages.
691 // -----------------------------------------------------------------------------
693 EXPORT_C TInt CountOfPictographPagesFromUnicode()
695 return KCountOfPictoPages;
698 // -----------------------------------------------------------------------------
699 // CountOfPictographPagesToUnicode()
700 // It returns count of pictograph pages.
701 // This method is used for the conversion from foreign character set to
704 // @return count of pictograph pages.
705 // -----------------------------------------------------------------------------
707 EXPORT_C TInt CountOfPictographPagesToUnicode()
709 return KCountOfPictoPages + 1;