sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2002-2004 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: This class is a utitlity class for conversion of Vodafone
|
sl@0
|
15 |
* pictograph.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
#ifndef CNVPICTOGRAPHSHARED_H
|
sl@0
|
29 |
#define CNVPICTOGRAPHSHARED_H
|
sl@0
|
30 |
|
sl@0
|
31 |
// INCLUDES
|
sl@0
|
32 |
#include <e32std.h>
|
sl@0
|
33 |
#include <charconv.h>
|
sl@0
|
34 |
#include <convutils.h>
|
sl@0
|
35 |
#include "PictographObserver.h"
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
// CONSTANTS
|
sl@0
|
39 |
// Count of Vodafone pictograph's pages
|
sl@0
|
40 |
const TInt KCountOfPictoPages(6);
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
// CLASS DECLARATION
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
* This class is a utitlity class for conversion of Vodafone pictograph.
|
sl@0
|
47 |
* The conversion data are in each CnvPctograph1 - 6 dll.
|
sl@0
|
48 |
* CnvPictographShared only to be used by ISO2022Jp.cpl, SHIFTJIS_SHARED.dll or
|
sl@0
|
49 |
* something. For example, when CCnvCharacterSetConverter::ConvertFromUnicode()
|
sl@0
|
50 |
* is called, and ConvertFromUnicode() of ISO2022Jp.cpl is called. After that,
|
sl@0
|
51 |
* ISO2022Jp.cpl sets some parameters for the conversion. At that time,
|
sl@0
|
52 |
* CnvPictographShared::SetCharacterSetsForPictograph() is called.
|
sl@0
|
53 |
* In a nut shell, CnvPictographShared is chaind from Japanese conversion
|
sl@0
|
54 |
* plug-ins.
|
sl@0
|
55 |
*
|
sl@0
|
56 |
* @lib CnvPictograph1.dll
|
sl@0
|
57 |
* @lib CnvPictograph2.dll
|
sl@0
|
58 |
* @lib CnvPictograph3.dll
|
sl@0
|
59 |
* @lib CnvPictograph4.dll
|
sl@0
|
60 |
* @lib CnvPictograph5.dll
|
sl@0
|
61 |
* @lib CnvPictograph6.dll
|
sl@0
|
62 |
* @since 2.6
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
class CnvPictographShared
|
sl@0
|
65 |
{
|
sl@0
|
66 |
public:
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
* It sets parameters to SCharacterSet array.
|
sl@0
|
69 |
* It called in ConvertFromUnicode().
|
sl@0
|
70 |
* It makes possible that pictograph conversion is called from other
|
sl@0
|
71 |
* conversion plug-ins.
|
sl@0
|
72 |
* @since 2.6
|
sl@0
|
73 |
* @param aArrayOfCharacterSets The conversion table array
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
static void SetCharacterSetsForPictograph(
|
sl@0
|
76 |
RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets);
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
* It sets parameters to SCharacterSet array.
|
sl@0
|
79 |
* It called in ConvertFromUnicode().
|
sl@0
|
80 |
* It makes possible that pictograph conversion is called from other
|
sl@0
|
81 |
* conversion plug-ins.
|
sl@0
|
82 |
* @since 2.6
|
sl@0
|
83 |
* @param aArrayOfCharacterSets The conversion table array
|
sl@0
|
84 |
* @param aOriginalCharset The character set
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
static void SetCharacterSetsForPictograph(
|
sl@0
|
87 |
RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets,
|
sl@0
|
88 |
TOriginalCharset aOriginalCharset);
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
* It sets parameters to SMethod array.
|
sl@0
|
91 |
* It called in ConvertToUnicode().
|
sl@0
|
92 |
* It makes possible that pictograph conversion is called from other
|
sl@0
|
93 |
* conversion plug-ins.
|
sl@0
|
94 |
* @since 2.6
|
sl@0
|
95 |
* @param aArrayOfMethods The conversion table array
|
sl@0
|
96 |
* @param aOriginalCharset The character set
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
static void SetMethodsForPictograph(
|
sl@0
|
99 |
RArray<CnvUtilities::SMethod>& aArrayOfMethods,
|
sl@0
|
100 |
TOriginalCharset aOriginalCharset);
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
* It sets parameters to SState array.
|
sl@0
|
103 |
* It called in ConvertToUnicode().
|
sl@0
|
104 |
* It makes possible that pictograph conversion is called from other
|
sl@0
|
105 |
* conversion plug-ins.
|
sl@0
|
106 |
* @since 2.6
|
sl@0
|
107 |
* @param aArrayOfMethods The conversion table array
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
static void SetStatesForPictograph(
|
sl@0
|
110 |
RArray<CnvUtilities::SState>& aArrayOfStates);
|
sl@0
|
111 |
|
sl@0
|
112 |
private:
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
* It converts from an intermediate buffer to a pictograph code.
|
sl@0
|
115 |
* After that, it adds shift-in code(0x0F).
|
sl@0
|
116 |
* @since 2.6
|
sl@0
|
117 |
* @param aStartPositionInDescriptor The start postion for checking
|
sl@0
|
118 |
* @param aDescriptor The descripter has intermidiate buffer.
|
sl@0
|
119 |
* @param aNumberOfCharactersThatDroppedOut The number of characters
|
sl@0
|
120 |
* that it's dropped out
|
sl@0
|
121 |
*/
|
sl@0
|
122 |
static void ConvertToPictograph1InPlace(
|
sl@0
|
123 |
TInt aStartPositionInDescriptor,
|
sl@0
|
124 |
TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut);
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
* It converts from an intermediate buffer to a pictograph code.
|
sl@0
|
127 |
* After that, it adds shift-in code(0x0F).
|
sl@0
|
128 |
* @since 2.6
|
sl@0
|
129 |
* @param aStartPositionInDescriptor The start postion for checking
|
sl@0
|
130 |
* @param aDescriptor The descripter has intermidiate buffer.
|
sl@0
|
131 |
* @param aNumberOfCharactersThatDroppedOut The number of characters
|
sl@0
|
132 |
* that it's dropped out
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
static void ConvertToPictograph2InPlace(
|
sl@0
|
135 |
TInt aStartPositionInDescriptor,
|
sl@0
|
136 |
TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut);
|
sl@0
|
137 |
/**
|
sl@0
|
138 |
* It converts from an intermediate buffer to a pictograph code.
|
sl@0
|
139 |
* After that, it adds shift-in code(0x0F).
|
sl@0
|
140 |
* @since 2.6
|
sl@0
|
141 |
* @param aStartPositionInDescriptor The start postion for checking
|
sl@0
|
142 |
* @param aDescriptor The descripter has intermidiate buffer.
|
sl@0
|
143 |
* @param aNumberOfCharactersThatDroppedOut The number of characters
|
sl@0
|
144 |
* that it's dropped out
|
sl@0
|
145 |
*/
|
sl@0
|
146 |
static void ConvertToPictograph3InPlace(
|
sl@0
|
147 |
TInt aStartPositionInDescriptor,
|
sl@0
|
148 |
TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut);
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
* It converts from an intermediate buffer to a pictograph code.
|
sl@0
|
151 |
* After that, it adds shift-in code(0x0F).
|
sl@0
|
152 |
* @since 2.6
|
sl@0
|
153 |
* @param aStartPositionInDescriptor The start postion for checking
|
sl@0
|
154 |
* @param aDescriptor The descripter has intermidiate buffer.
|
sl@0
|
155 |
* @param aNumberOfCharactersThatDroppedOut The number of characters
|
sl@0
|
156 |
* that it's dropped out
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
static void ConvertToPictograph4InPlace(
|
sl@0
|
159 |
TInt aStartPositionInDescriptor,
|
sl@0
|
160 |
TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut);
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
* It converts from an intermediate buffer to a pictograph code.
|
sl@0
|
163 |
* After that, it adds shift-in code(0x0F).
|
sl@0
|
164 |
* @since 2.6
|
sl@0
|
165 |
* @param aStartPositionInDescriptor The start postion for checking
|
sl@0
|
166 |
* @param aDescriptor The descripter has intermidiate buffer.
|
sl@0
|
167 |
* @param aNumberOfCharactersThatDroppedOut The number of characters
|
sl@0
|
168 |
* that it's dropped out
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
static void ConvertToPictograph5InPlace(
|
sl@0
|
171 |
TInt aStartPositionInDescriptor,
|
sl@0
|
172 |
TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut);
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
* It converts from an intermediate buffer to a pictograph code.
|
sl@0
|
175 |
* After that, it adds shift-in code(0x0F).
|
sl@0
|
176 |
* @since 2.6
|
sl@0
|
177 |
* @param aStartPositionInDescriptor The start postion for checking
|
sl@0
|
178 |
* @param aDescriptor The descripter has intermidiate buffer.
|
sl@0
|
179 |
* @param aNumberOfCharactersThatDroppedOut The number of characters
|
sl@0
|
180 |
* that it's dropped out
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
static void ConvertToPictograph6InPlace(
|
sl@0
|
183 |
TInt aStartPositionInDescriptor,
|
sl@0
|
184 |
TDes8& aDescriptor, TInt& aNumberOfCharactersThatDroppedOut);
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
188 |
* possible in the descriptor.
|
sl@0
|
189 |
* @since 2.6
|
sl@0
|
190 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
191 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
192 |
*/
|
sl@0
|
193 |
static TInt NumberOfBytesAbleToConvertSJisDirectMap(const TDesC8& aDescriptor);
|
sl@0
|
194 |
|
sl@0
|
195 |
/**
|
sl@0
|
196 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
197 |
* possible in the descriptor.
|
sl@0
|
198 |
* @since 2.6
|
sl@0
|
199 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
200 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
static TInt NumberOfBytesAbleToConvertToEucJpDirectMap1(const TDesC8& aDescriptor);
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
206 |
* possible in the descriptor.
|
sl@0
|
207 |
* @since 2.6
|
sl@0
|
208 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
209 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
210 |
*/
|
sl@0
|
211 |
static TInt NumberOfBytesAbleToConvertToEucJpDirectMap2(const TDesC8& aDescriptor);
|
sl@0
|
212 |
|
sl@0
|
213 |
/**
|
sl@0
|
214 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
215 |
* possible in the descriptor.
|
sl@0
|
216 |
* @since 2.6
|
sl@0
|
217 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
218 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
219 |
*/
|
sl@0
|
220 |
static TInt NumberOfBytesAbleToConvertToPicto1(
|
sl@0
|
221 |
const TDesC8& aDescriptor);
|
sl@0
|
222 |
/**
|
sl@0
|
223 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
224 |
* possible in the descriptor.
|
sl@0
|
225 |
* @since 2.6
|
sl@0
|
226 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
227 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
228 |
*/
|
sl@0
|
229 |
static TInt NumberOfBytesAbleToConvertToPicto2(
|
sl@0
|
230 |
const TDesC8& aDescriptor);
|
sl@0
|
231 |
/**
|
sl@0
|
232 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
233 |
* possible in the descriptor.
|
sl@0
|
234 |
* @since 2.6
|
sl@0
|
235 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
236 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
237 |
*/
|
sl@0
|
238 |
static TInt NumberOfBytesAbleToConvertToPicto3(
|
sl@0
|
239 |
const TDesC8& aDescriptor);
|
sl@0
|
240 |
/**
|
sl@0
|
241 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
242 |
* possible in the descriptor.
|
sl@0
|
243 |
* @since 2.6
|
sl@0
|
244 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
245 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
246 |
*/
|
sl@0
|
247 |
static TInt NumberOfBytesAbleToConvertToPicto4(
|
sl@0
|
248 |
const TDesC8& aDescriptor);
|
sl@0
|
249 |
/**
|
sl@0
|
250 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
251 |
* possible in the descriptor.
|
sl@0
|
252 |
* @since 2.6
|
sl@0
|
253 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
254 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
255 |
*/
|
sl@0
|
256 |
static TInt NumberOfBytesAbleToConvertToPicto5(
|
sl@0
|
257 |
const TDesC8& aDescriptor);
|
sl@0
|
258 |
/**
|
sl@0
|
259 |
* It returns a number of bytes that the conversion to pictograph is
|
sl@0
|
260 |
* possible in the descriptor.
|
sl@0
|
261 |
* @since 2.6
|
sl@0
|
262 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
263 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
static TInt NumberOfBytesAbleToConvertToPicto6(
|
sl@0
|
266 |
const TDesC8& aDescriptor);
|
sl@0
|
267 |
/**
|
sl@0
|
268 |
* It's a common function for checking the number of bytes that
|
sl@0
|
269 |
* the conversion to pictograph
|
sl@0
|
270 |
* @since 2.6
|
sl@0
|
271 |
* @param aDescriptor A descriptor has any character code.
|
sl@0
|
272 |
* @param aIntermidiateCode An intermidiate buffer
|
sl@0
|
273 |
* @return Number of bytes that the conversion is possible
|
sl@0
|
274 |
*/
|
sl@0
|
275 |
static TInt NumberOfBytesAbleToConvertToPictograph(
|
sl@0
|
276 |
const TDesC8& aDescriptor, TInt aIntermidiateCode);
|
sl@0
|
277 |
/**
|
sl@0
|
278 |
* It converts the string which includes a pictograph's escape sequence
|
sl@0
|
279 |
* to unicode.
|
sl@0
|
280 |
* @since 2.6
|
sl@0
|
281 |
* @param aDescriptor It includes a pictograph's escape sequence
|
sl@0
|
282 |
*/
|
sl@0
|
283 |
static void ConvertToPictographFromUnicode(TDes8& aDescriptor);
|
sl@0
|
284 |
|
sl@0
|
285 |
/**
|
sl@0
|
286 |
* It converts the string which has Unicode with pictograph to EUC-jp
|
sl@0
|
287 |
* with direct mapped pictograph
|
sl@0
|
288 |
* @since 2.6
|
sl@0
|
289 |
* @param aDescriptor It includes a pictograph's escape sequence
|
sl@0
|
290 |
*/
|
sl@0
|
291 |
static void ConvertToPictographFromEucJpPackedInPlace(TDes8& aDescriptor);
|
sl@0
|
292 |
/**
|
sl@0
|
293 |
* It appends a shift-in code to the descriptor.
|
sl@0
|
294 |
* @since 2.6
|
sl@0
|
295 |
* @param aDescriptor It's append a shift-in code.
|
sl@0
|
296 |
* @param aNumberOfCharactersThatDroppedOut The number of characters
|
sl@0
|
297 |
* that it's dropped out
|
sl@0
|
298 |
*/
|
sl@0
|
299 |
static void AppendShiftIn(TDes8& aDescriptor,
|
sl@0
|
300 |
TInt& aNumberOfCharactersThatDroppedOut);
|
sl@0
|
301 |
};
|
sl@0
|
302 |
|
sl@0
|
303 |
#endif // CNVPICTOGRAPHSHARED_H
|
sl@0
|
304 |
|
sl@0
|
305 |
// End of File
|