45
|
1 |
/*
|
|
2 |
* Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
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".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: Test EIKINFO.H EIKPROGI.H AknNoteDialog.h aknnotewrappers.h
|
|
15 |
* AknProgressDialog.h aknprogresstimer.h AknStaticNoteDialog.h
|
|
16 |
* aknwaitdialog.h AknWaitNoteWrapper.h aknnotecontrol.h
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
#ifndef C_TESTSDKNOTES_H
|
|
23 |
#define C_TESTSDKNOTES_H
|
|
24 |
|
|
25 |
// INCLUDES
|
|
26 |
#include <stiflogger.h>
|
|
27 |
#include <testscripterinternal.h>
|
|
28 |
#include <stiftestmodule.h>
|
|
29 |
#include <testclassassert.h>
|
|
30 |
|
|
31 |
// MACROS
|
|
32 |
#define TEST_CLASS_VERSION_MAJOR 0
|
|
33 |
#define TEST_CLASS_VERSION_MINOR 0
|
|
34 |
#define TEST_CLASS_VERSION_BUILD 0
|
|
35 |
|
|
36 |
// Logging path
|
|
37 |
_LIT( KtestsdknotesLogPath, "\\logs\\testframework\\testsdknotes\\" );
|
|
38 |
// Log file
|
|
39 |
_LIT( KtestsdknotesLogFile, "testsdknotes.txt" );
|
|
40 |
_LIT( KtestsdknotesLogFileWithTitle, "testsdknotes_[%S].txt" );
|
|
41 |
|
|
42 |
// FORWARD DECLARATIONS
|
|
43 |
class CEikSpacer;
|
|
44 |
|
|
45 |
/**
|
|
46 |
* CTestSDKNotes test class for STIF Test Framework TestScripter.
|
|
47 |
* @since S60 5.0
|
|
48 |
*/
|
|
49 |
NONSHARABLE_CLASS(CTestSDKNotes) : public CScriptBase
|
|
50 |
{
|
|
51 |
public: // Constructors and destructor
|
|
52 |
|
|
53 |
/**
|
|
54 |
* Two-phased constructor.
|
|
55 |
*/
|
|
56 |
static CTestSDKNotes* NewL( CTestModuleIf& aTestModuleIf );
|
|
57 |
|
|
58 |
/**
|
|
59 |
* Destructor.
|
|
60 |
*/
|
|
61 |
virtual ~CTestSDKNotes();
|
|
62 |
|
|
63 |
public: // Functions from base classes
|
|
64 |
|
|
65 |
/**
|
|
66 |
* From CScriptBase Runs a script line.
|
|
67 |
* @since S60 5.0
|
|
68 |
* @param aItem Script line containing method name and parameters
|
|
69 |
* @return Symbian OS error code
|
|
70 |
*/
|
|
71 |
virtual TInt RunMethodL( CStifItemParser& aItem );
|
|
72 |
|
|
73 |
private:
|
|
74 |
|
|
75 |
/**
|
|
76 |
* C++ default constructor.
|
|
77 |
*/
|
|
78 |
CTestSDKNotes( CTestModuleIf& aTestModuleIf );
|
|
79 |
|
|
80 |
/**
|
|
81 |
* By default Symbian 2nd phase constructor is private.
|
|
82 |
*/
|
|
83 |
void ConstructL();
|
|
84 |
|
|
85 |
/**
|
|
86 |
* Frees all resources allocated from test methods.
|
|
87 |
* @since S60 5.0
|
|
88 |
*/
|
|
89 |
void Delete();
|
|
90 |
|
|
91 |
/**
|
|
92 |
* Method used to log version of test class
|
|
93 |
*/
|
|
94 |
void SendTestClassVersion();
|
|
95 |
|
|
96 |
private: // Test EIKINFO.H
|
|
97 |
/* class CEikInfoDialog */
|
|
98 |
/**
|
|
99 |
* TestNCEikInfoDialogL test function for testing the
|
|
100 |
* CEikInfoDialog function
|
|
101 |
* @since S60 5.0
|
|
102 |
* @param aItem never used
|
|
103 |
* @return Symbian OS error code.
|
|
104 |
*/
|
|
105 |
virtual TInt TestNCEikInfoDialogL( CStifItemParser& aItem );
|
|
106 |
|
|
107 |
/**
|
|
108 |
* TestNRunDlgLD test function for testing the
|
|
109 |
* RunDlgLD function
|
|
110 |
* @since S60 5.0
|
|
111 |
* @param aItem never used
|
|
112 |
* @return Symbian OS error code.
|
|
113 |
*/
|
|
114 |
virtual TInt TestNRunDlgLD( CStifItemParser& aItem );
|
|
115 |
|
|
116 |
/**
|
|
117 |
* TestNHandlePointerEventL test function for testing the
|
|
118 |
* HandlePointerEventL function
|
|
119 |
* @since S60 5.0
|
|
120 |
* @param aItem never used
|
|
121 |
* @return Symbian OS error code.
|
|
122 |
*/
|
|
123 |
virtual TInt TestNHandlePointerEventL( CStifItemParser& aItem );
|
|
124 |
|
|
125 |
private: // Test EIKPROGI.H
|
|
126 |
/* class CEikProgressInfo */
|
|
127 |
/**
|
|
128 |
* TestNPIDeconstructorL test function for testing the
|
|
129 |
* ~CEikProgressInfo function
|
|
130 |
* @since S60 5.0
|
|
131 |
* @param aItem never used
|
|
132 |
* @return Symbian OS error code.
|
|
133 |
*/
|
|
134 |
virtual TInt TestNPIDeconstructorL( CStifItemParser& aItem );
|
|
135 |
|
|
136 |
/**
|
|
137 |
* TestNPICEikProgressInfoL test function for testing the
|
|
138 |
* CEikProgressInfo function
|
|
139 |
* @since S60 5.0
|
|
140 |
* @param aItem never used
|
|
141 |
* @return Symbian OS error code.
|
|
142 |
*/
|
|
143 |
virtual TInt TestNPICEikProgressInfoL( CStifItemParser& aItem );
|
|
144 |
|
|
145 |
/**
|
|
146 |
* TestNPICEikProgressInfoSinfoL test function for testing the
|
|
147 |
* CEikProgressInfo function using the information held in
|
|
148 |
* the specified @c SInfo struct.
|
|
149 |
* @since S60 5.0
|
|
150 |
* @param aItem never used
|
|
151 |
* @return Symbian OS error code.
|
|
152 |
*/
|
|
153 |
virtual TInt TestNPICEikProgressInfoSinfoL( CStifItemParser& aItem );
|
|
154 |
|
|
155 |
/**
|
|
156 |
* TestNPIIncrementAndDrawL test function for testing the
|
|
157 |
* IncrementAndDraw function
|
|
158 |
* @since S60 5.0
|
|
159 |
* @param aItem never used
|
|
160 |
* @return Symbian OS error code.
|
|
161 |
*/
|
|
162 |
virtual TInt TestNPIIncrementAndDrawL( CStifItemParser& aItem );
|
|
163 |
|
|
164 |
/**
|
|
165 |
* TestNPISetAndDrawL test function for testing the
|
|
166 |
* SetAndDraw function
|
|
167 |
* @since S60 5.0
|
|
168 |
* @param aItem never used
|
|
169 |
* @return Symbian OS error code.
|
|
170 |
*/
|
|
171 |
virtual TInt TestNPISetAndDrawL( CStifItemParser& aItem );
|
|
172 |
|
|
173 |
/**
|
|
174 |
* TestNPIConstructFromResourceL test function for testing the
|
|
175 |
* ConstructFromResourceL function
|
|
176 |
* @since S60 5.0
|
|
177 |
* @param aItem never used
|
|
178 |
* @return Symbian OS error code.
|
|
179 |
*/
|
|
180 |
virtual TInt TestNPIConstructFromResourceL( CStifItemParser& aItem );
|
|
181 |
|
|
182 |
/**
|
|
183 |
* TestNPISetLayoutL test function for testing the
|
|
184 |
* SetLayout function
|
|
185 |
* @since S60 5.0
|
|
186 |
* @param aItem never used
|
|
187 |
* @return Symbian OS error code.
|
|
188 |
*/
|
|
189 |
virtual TInt TestNPISetLayoutL( CStifItemParser& aItem );
|
|
190 |
|
|
191 |
/**
|
|
192 |
* TestNPISetBorderL test function for testing the
|
|
193 |
* SetBorder function
|
|
194 |
* @since S60 5.0
|
|
195 |
* @param aItem never used
|
|
196 |
* @return Symbian OS error code.
|
|
197 |
*/
|
|
198 |
virtual TInt TestNPISetBorderL( CStifItemParser& aItem );
|
|
199 |
|
|
200 |
/**
|
|
201 |
* TestNPISetFinalValueL test function for testing the
|
|
202 |
* SetFinalValue function
|
|
203 |
* @since S60 5.0
|
|
204 |
* @param aItem never used
|
|
205 |
* @return Symbian OS error code.
|
|
206 |
*/
|
|
207 |
virtual TInt TestNPISetFinalValueL( CStifItemParser& aItem );
|
|
208 |
|
|
209 |
/**
|
|
210 |
* TestNPIConstructL test function for testing the
|
|
211 |
* ConstructL function
|
|
212 |
* @since S60 5.0
|
|
213 |
* @param aItem never used
|
|
214 |
* @return Symbian OS error code.
|
|
215 |
*/
|
|
216 |
virtual TInt TestNPIConstructL( CStifItemParser& aItem );
|
|
217 |
|
|
218 |
/**
|
|
219 |
* TestNPIInfoL test function for testing the
|
|
220 |
* Info function
|
|
221 |
* @since S60 5.0
|
|
222 |
* @param aItem never used
|
|
223 |
* @return Symbian OS error code.
|
|
224 |
*/
|
|
225 |
virtual TInt TestNPIInfoL( CStifItemParser& aItem );
|
|
226 |
|
|
227 |
/**
|
|
228 |
* TestNPILayoutL test function for testing the
|
|
229 |
* Layout function
|
|
230 |
* @since S60 5.0
|
|
231 |
* @param aItem never used
|
|
232 |
* @return Symbian OS error code.
|
|
233 |
*/
|
|
234 |
virtual TInt TestNPILayoutL( CStifItemParser& aItem );
|
|
235 |
|
|
236 |
/**
|
|
237 |
* TestNPICurrentValueL test function for testing the
|
|
238 |
* CurrentValue function
|
|
239 |
* @since S60 5.0
|
|
240 |
* @param aItem never used
|
|
241 |
* @return Symbian OS error code.
|
|
242 |
*/
|
|
243 |
virtual TInt TestNPICurrentValueL( CStifItemParser& aItem );
|
|
244 |
|
|
245 |
/**
|
|
246 |
* TestNPIEvaluateTextL test function for testing the
|
|
247 |
* EvaluateText function
|
|
248 |
* @since S60 5.0
|
|
249 |
* @param aItem never used
|
|
250 |
* @return Symbian OS error code.
|
|
251 |
*/
|
|
252 |
virtual TInt TestNPIEvaluateTextL( CStifItemParser& aItem );
|
|
253 |
|
|
254 |
/**
|
|
255 |
* TestNPIActivateL test function for testing the
|
|
256 |
* ActivateL function
|
|
257 |
* @since S60 5.0
|
|
258 |
* @param aItem never used
|
|
259 |
* @return Symbian OS error code.
|
|
260 |
*/
|
|
261 |
virtual TInt TestNPIActivateL( CStifItemParser& aItem );
|
|
262 |
|
|
263 |
/**
|
|
264 |
* TestNPIMinimumSizeL test function for testing the
|
|
265 |
* MinimumSize function
|
|
266 |
* @since S60 5.0
|
|
267 |
* @param aItem never used
|
|
268 |
* @return Symbian OS error code.
|
|
269 |
*/
|
|
270 |
virtual TInt TestNPIMinimumSizeL( CStifItemParser& aItem );
|
|
271 |
|
|
272 |
/**
|
|
273 |
* TestNPISizeChangedL test function for testing the
|
|
274 |
* SizeChanged function
|
|
275 |
* @since S60 5.0
|
|
276 |
* @param aItem never used
|
|
277 |
* @return Symbian OS error code.
|
|
278 |
*/
|
|
279 |
virtual TInt TestNPISizeChangedL( CStifItemParser& aItem );
|
|
280 |
|
|
281 |
/**
|
|
282 |
* TestNPIGetColorUseListL test function for testing the
|
|
283 |
* GetColorUseListL function
|
|
284 |
* @since S60 5.0
|
|
285 |
* @param aItem never used
|
|
286 |
* @return Symbian OS error code.
|
|
287 |
*/
|
|
288 |
virtual TInt TestNPIGetColorUseListL( CStifItemParser& aItem );
|
|
289 |
|
|
290 |
/**
|
|
291 |
* TestNPIHandleResourceChangeL test function for testing the
|
|
292 |
* HandleResourceChange function
|
|
293 |
* @since S60 5.0
|
|
294 |
* @param aItem never used
|
|
295 |
* @return Symbian OS error code.
|
|
296 |
*/
|
|
297 |
virtual TInt TestNPIHandleResourceChangeL( CStifItemParser& aItem );
|
|
298 |
|
|
299 |
/**
|
|
300 |
* TestNPIHandlePointerEventL test function for testing the
|
|
301 |
* HandlePointerEventL function
|
|
302 |
* @since S60 5.0
|
|
303 |
* @param aItem never used
|
|
304 |
* @return Symbian OS error code.
|
|
305 |
*/
|
|
306 |
virtual TInt TestNPIHandlePointerEventL( CStifItemParser& aItem );
|
|
307 |
|
|
308 |
/**
|
|
309 |
* TestNPIWriteInternalStateL test function for testing the
|
|
310 |
* WriteInternalStateL function
|
|
311 |
* @since S60 5.0
|
|
312 |
* @param aItem never used
|
|
313 |
* @return Symbian OS error code.
|
|
314 |
*/
|
|
315 |
virtual TInt TestNPIWriteInternalStateL( CStifItemParser& aItem );
|
|
316 |
|
|
317 |
private: // Test AknNoteDialog.h
|
|
318 |
/* class CAknNoteDialog */
|
|
319 |
/**
|
|
320 |
* TestNDCAknNoteDialogL test function for testing the
|
|
321 |
* CAknNoteDialog function
|
|
322 |
* @since S60 5.0
|
|
323 |
* @param aItem never used
|
|
324 |
* @return Symbian OS error code.
|
|
325 |
*/
|
|
326 |
virtual TInt TestNDCAknNoteDialogL( CStifItemParser& aItem );
|
|
327 |
|
|
328 |
/**
|
|
329 |
* TestNDCAknNoteDialogToneL test function for testing the
|
|
330 |
* CAknNoteDialog function with the tone
|
|
331 |
* @since S60 5.0
|
|
332 |
* @param aItem never used
|
|
333 |
* @return Symbian OS error code.
|
|
334 |
*/
|
|
335 |
virtual TInt TestNDCAknNoteDialogToneL( CStifItemParser& aItem );
|
|
336 |
|
|
337 |
/**
|
|
338 |
* TestNDCAknNoteDialogPointerL test function for testing the
|
|
339 |
* CAknNoteDialog function
|
|
340 |
* @since S60 5.0
|
|
341 |
* @param aItem never used
|
|
342 |
* @return Symbian OS error code.
|
|
343 |
*/
|
|
344 |
virtual TInt TestNDCAknNoteDialogPointerL( CStifItemParser& aItem );
|
|
345 |
|
|
346 |
/**
|
|
347 |
* TestNDDeconstructorL test function for testing the
|
|
348 |
* ~CAknNoteDialog function
|
|
349 |
* @since S60 5.0
|
|
350 |
* @param aItem never used
|
|
351 |
* @return Symbian OS error code.
|
|
352 |
*/
|
|
353 |
virtual TInt TestNDDeconstructorL( CStifItemParser& aItem );
|
|
354 |
|
|
355 |
/**
|
|
356 |
* TestNDSetTimeoutL test function for testing the
|
|
357 |
* SetTimeout function
|
|
358 |
* @since S60 5.0
|
|
359 |
* @param aItem never used
|
|
360 |
* @return Symbian OS error code.
|
|
361 |
*/
|
|
362 |
virtual TInt TestNDSetTimeoutL( CStifItemParser& aItem );
|
|
363 |
|
|
364 |
/**
|
|
365 |
* TestNDSetToneL test function for testing the
|
|
366 |
* SetTone function
|
|
367 |
* @since S60 5.0
|
|
368 |
* @param aItem never used
|
|
369 |
* @return Symbian OS error code.
|
|
370 |
*/
|
|
371 |
virtual TInt TestNDSetToneL( CStifItemParser& aItem );
|
|
372 |
|
|
373 |
/**
|
|
374 |
* TestNDSetTextWrappingL test function for testing the
|
|
375 |
* SetTextWrapping function
|
|
376 |
* @since S60 5.0
|
|
377 |
* @param aItem never used
|
|
378 |
* @return Symbian OS error code.
|
|
379 |
*/
|
|
380 |
virtual TInt TestNDSetTextWrappingL( CStifItemParser& aItem );
|
|
381 |
|
|
382 |
/**
|
|
383 |
* TestNDSetTextProcessingL test function for testing the
|
|
384 |
* SetTextProcessing function
|
|
385 |
* @since S60 5.0
|
|
386 |
* @param aItem never used
|
|
387 |
* @return Symbian OS error code.
|
|
388 |
*/
|
|
389 |
virtual TInt TestNDSetTextProcessingL( CStifItemParser& aItem );
|
|
390 |
|
|
391 |
/**
|
|
392 |
* TestNDSetImageL test function for testing the
|
|
393 |
* SetImageL function
|
|
394 |
* @since S60 5.0
|
|
395 |
* @param aItem never used
|
|
396 |
* @return Symbian OS error code.
|
|
397 |
*/
|
|
398 |
virtual TInt TestNDSetImageL( CStifItemParser& aItem );
|
|
399 |
|
|
400 |
/**
|
|
401 |
* TestNDSetIconL test function for testing the
|
|
402 |
* SetIconL function
|
|
403 |
* @since S60 5.0
|
|
404 |
* @param aItem never used
|
|
405 |
* @return Symbian OS error code.
|
|
406 |
*/
|
|
407 |
virtual TInt TestNDSetIconL( CStifItemParser& aItem );
|
|
408 |
|
|
409 |
/**
|
|
410 |
* TestNDSetTextNumberL test function for testing the
|
|
411 |
* SetTextNumberL function
|
|
412 |
* @since S60 5.0
|
|
413 |
* @param aItem never used
|
|
414 |
* @return Symbian OS error code.
|
|
415 |
*/
|
|
416 |
virtual TInt TestNDSetTextNumberL( CStifItemParser& aItem );
|
|
417 |
|
|
418 |
/**
|
|
419 |
* TestNDSetTextPluralityL test function for testing the
|
|
420 |
* SetTextPluralityL function
|
|
421 |
* @since S60 5.0
|
|
422 |
* @param aItem never used
|
|
423 |
* @return Symbian OS error code.
|
|
424 |
*/
|
|
425 |
virtual TInt TestNDSetTextPluralityL( CStifItemParser& aItem );
|
|
426 |
|
|
427 |
/**
|
|
428 |
* TestNDSetTextL test function for testing the
|
|
429 |
* SetTextL function
|
|
430 |
* @since S60 5.0
|
|
431 |
* @param aItem never used
|
|
432 |
* @return Symbian OS error code.
|
|
433 |
*/
|
|
434 |
virtual TInt TestNDSetTextL( CStifItemParser& aItem );
|
|
435 |
|
|
436 |
/**
|
|
437 |
* TestNDOfferKeyEventL test function for testing the
|
|
438 |
* OfferKeyEventL function
|
|
439 |
* @since S60 5.0
|
|
440 |
* @param aItem never used
|
|
441 |
* @return Symbian OS error code.
|
|
442 |
*/
|
|
443 |
virtual TInt TestNDOfferKeyEventL( CStifItemParser& aItem );
|
|
444 |
|
|
445 |
/**
|
|
446 |
* TestNDHandleResourceChangeL test function for testing the
|
|
447 |
* HandleResourceChange function
|
|
448 |
* @since S60 5.0
|
|
449 |
* @param aItem never used
|
|
450 |
* @return Symbian OS error code.
|
|
451 |
*/
|
|
452 |
virtual TInt TestNDHandleResourceChangeL( CStifItemParser& aItem );
|
|
453 |
|
|
454 |
/**
|
|
455 |
* TestNDLayoutAndDrawL test function for testing the
|
|
456 |
* LayoutAndDraw function
|
|
457 |
* @since S60 5.0
|
|
458 |
* @param aItem never used
|
|
459 |
* @return Symbian OS error code.
|
|
460 |
*/
|
|
461 |
virtual TInt TestNDLayoutAndDrawL( CStifItemParser& aItem );
|
|
462 |
|
|
463 |
/**
|
|
464 |
* TestNDRunLD test function for testing the
|
|
465 |
* RunLD function
|
|
466 |
* @since S60 5.0
|
|
467 |
* @param aItem never used
|
|
468 |
* @return Symbian OS error code.
|
|
469 |
*/
|
|
470 |
virtual TInt TestNDRunLD( CStifItemParser& aItem );
|
|
471 |
|
|
472 |
/**
|
|
473 |
* TestNDExitSleepingDialogL test function for testing the
|
|
474 |
* ExitSleepingDialog function
|
|
475 |
* @since S60 5.0
|
|
476 |
* @param aItem never used
|
|
477 |
* @return Symbian OS error code.
|
|
478 |
*/
|
|
479 |
virtual TInt TestNDExitSleepingDialogL( CStifItemParser& aItem );
|
|
480 |
|
|
481 |
/**
|
|
482 |
* TestNDSetSizeAndPositionL test function for testing the
|
|
483 |
* SetSizeAndPosition function
|
|
484 |
* @since S60 5.0
|
|
485 |
* @param aItem never used
|
|
486 |
* @return Symbian OS error code.
|
|
487 |
*/
|
|
488 |
virtual TInt TestNDSetSizeAndPositionL( CStifItemParser& aItem );
|
|
489 |
|
|
490 |
/**
|
|
491 |
* TestNDPreLayoutDynInitL test function for testing the
|
|
492 |
* PreLayoutDynInitL function
|
|
493 |
* @since S60 5.0
|
|
494 |
* @param aItem never used
|
|
495 |
* @return Symbian OS error code.
|
|
496 |
*/
|
|
497 |
virtual TInt TestNDPreLayoutDynInitL( CStifItemParser& aItem );
|
|
498 |
|
|
499 |
/**
|
|
500 |
* TestNDPostLayoutDynInitL test function for testing the
|
|
501 |
* PostLayoutDynInitL function
|
|
502 |
* @since S60 5.0
|
|
503 |
* @param aItem never used
|
|
504 |
* @return Symbian OS error code.
|
|
505 |
*/
|
|
506 |
virtual TInt TestNDPostLayoutDynInitL( CStifItemParser& aItem );
|
|
507 |
|
|
508 |
/**
|
|
509 |
* TestNDPlayToneL test function for testing the
|
|
510 |
* PlayTone function
|
|
511 |
* @since S60 5.0
|
|
512 |
* @param aItem never used
|
|
513 |
* @return Symbian OS error code.
|
|
514 |
*/
|
|
515 |
virtual TInt TestNDPlayToneL( CStifItemParser& aItem );
|
|
516 |
|
|
517 |
/**
|
|
518 |
* TestNDReportUserActivityL test function for testing the
|
|
519 |
* ReportUserActivity function
|
|
520 |
* @since S60 5.0
|
|
521 |
* @param aItem never used
|
|
522 |
* @return Symbian OS error code.
|
|
523 |
*/
|
|
524 |
virtual TInt TestNDReportUserActivityL( CStifItemParser& aItem );
|
|
525 |
|
|
526 |
/**
|
|
527 |
* TestNDStaticDeleteL test function for testing the
|
|
528 |
* StaticDeleteL function
|
|
529 |
* @since S60 5.0
|
|
530 |
* @param aItem never used
|
|
531 |
* @return Symbian OS error code.
|
|
532 |
*/
|
|
533 |
virtual TInt TestNDStaticDeleteL( CStifItemParser& aItem );
|
|
534 |
|
|
535 |
/**
|
|
536 |
* TestNDControlAttributesL test function for testing the
|
|
537 |
* ControlAttributes function
|
|
538 |
* @since S60 5.0
|
|
539 |
* @param aItem never used
|
|
540 |
* @return Symbian OS error code.
|
|
541 |
*/
|
|
542 |
virtual TInt TestNDControlAttributesL( CStifItemParser& aItem );
|
|
543 |
|
|
544 |
/**
|
|
545 |
* TestNDTransferControlAttributesL test function for testing the
|
|
546 |
* TransferControlAttributes function
|
|
547 |
* @since S60 5.0
|
|
548 |
* @param aItem never used
|
|
549 |
* @return Symbian OS error code.
|
|
550 |
*/
|
|
551 |
virtual TInt TestNDTransferControlAttributesL( CStifItemParser& aItem );
|
|
552 |
|
|
553 |
/**
|
|
554 |
* TestNDSoundSystemL test function for testing the
|
|
555 |
* SoundSystem function
|
|
556 |
* @since S60 5.0
|
|
557 |
* @param aItem never used
|
|
558 |
* @return Symbian OS error code.
|
|
559 |
*/
|
|
560 |
virtual TInt TestNDSoundSystemL( CStifItemParser& aItem );
|
|
561 |
|
|
562 |
/**
|
|
563 |
* TestNDNoteControlL test function for testing the
|
|
564 |
* NoteControl function
|
|
565 |
* @since S60 5.0
|
|
566 |
* @param aItem never used
|
|
567 |
* @return Symbian OS error code.
|
|
568 |
*/
|
|
569 |
virtual TInt TestNDNoteControlL( CStifItemParser& aItem );
|
|
570 |
|
|
571 |
/**
|
|
572 |
* TestNDExecuteDlgLD test function for testing the
|
|
573 |
* ExecuteDlgLD function with Timeout
|
|
574 |
* @since S60 5.0
|
|
575 |
* @param aItem never used
|
|
576 |
* @return Symbian OS error code.
|
|
577 |
*/
|
|
578 |
virtual TInt TestNDExecuteDlgTimeOutLD( CStifItemParser& aItem );
|
|
579 |
|
|
580 |
/**
|
|
581 |
* TestNDExecuteDlgToneLD test function for testing the
|
|
582 |
* ExecuteDlgLD function with Tone
|
|
583 |
* @since S60 5.0
|
|
584 |
* @param aItem never used
|
|
585 |
* @return Symbian OS error code.
|
|
586 |
*/
|
|
587 |
virtual TInt TestNDExecuteDlgToneLD( CStifItemParser& aItem );
|
|
588 |
|
|
589 |
/**
|
|
590 |
* TestNDExecuteDlgLD test function for testing the
|
|
591 |
* ExecuteDlgLD function
|
|
592 |
* @since S60 5.0
|
|
593 |
* @param aItem never used
|
|
594 |
* @return Symbian OS error code.
|
|
595 |
*/
|
|
596 |
virtual TInt TestNDExecuteDlgLD( CStifItemParser& aItem );
|
|
597 |
|
|
598 |
/**
|
|
599 |
* TestNDRunDlgLD test function for testing the
|
|
600 |
* RunDlgLD function with Timeout
|
|
601 |
* @since S60 5.0
|
|
602 |
* @param aItem never used
|
|
603 |
* @return Symbian OS error code.
|
|
604 |
*/
|
|
605 |
virtual TInt TestNDRunDlgTimeOuntLD( CStifItemParser& aItem );
|
|
606 |
|
|
607 |
/**
|
|
608 |
* TestNDRunDlgLD test function for testing the
|
|
609 |
* RunDlgLD function with Tone
|
|
610 |
* @since S60 5.0
|
|
611 |
* @param aItem never used
|
|
612 |
* @return Symbian OS error code.
|
|
613 |
*/
|
|
614 |
virtual TInt TestNDRunDlgToneLD( CStifItemParser& aItem );
|
|
615 |
|
|
616 |
/**
|
|
617 |
* TestNDRunDlgLD test function for testing the
|
|
618 |
* RunDlgLD function
|
|
619 |
* @since S60 5.0
|
|
620 |
* @param aItem never used
|
|
621 |
* @return Symbian OS error code.
|
|
622 |
*/
|
|
623 |
virtual TInt TestNDRunDlgLD( CStifItemParser& aItem );
|
|
624 |
|
|
625 |
/**
|
|
626 |
* TestNDRunDlgIdLD test function for testing the
|
|
627 |
* RunDlgLD function with Id
|
|
628 |
* @since S60 5.0
|
|
629 |
* @param aItem never used
|
|
630 |
* @return Symbian OS error code.
|
|
631 |
*/
|
|
632 |
virtual TInt TestNDRunDlgIdLD( CStifItemParser& aItem );
|
|
633 |
|
|
634 |
/**
|
|
635 |
* TestNDSetCurrentLabelL test function for testing the
|
|
636 |
* SetCurrentLabelL function
|
|
637 |
* @since S60 5.0
|
|
638 |
* @param aItem never used
|
|
639 |
* @return Symbian OS error code.
|
|
640 |
*/
|
|
641 |
virtual TInt TestNDSetCurrentLabelL( CStifItemParser& aItem );
|
|
642 |
|
|
643 |
/**
|
|
644 |
* TestNDSetNoMemoryAllocationL test function for testing the
|
|
645 |
* SetNoMemoryAllocation function
|
|
646 |
* @since S60 5.0
|
|
647 |
* @param aItem never used
|
|
648 |
* @return Symbian OS error code.
|
|
649 |
*/
|
|
650 |
virtual TInt TestNDSetNoMemoryAllocationL( CStifItemParser& aItem );
|
|
651 |
|
|
652 |
/**
|
|
653 |
* TestNDHandlePointerEventL test function for testing the
|
|
654 |
* HandlePointerEventL function
|
|
655 |
* @since S60 5.0
|
|
656 |
* @param aItem never used
|
|
657 |
* @return Symbian OS error code.
|
|
658 |
*/
|
|
659 |
virtual TInt TestNDHandlePointerEventL( CStifItemParser& aItem );
|
|
660 |
|
|
661 |
private: // Test AknNoteWrappers.h
|
|
662 |
/* class CAknNoteWrapper */
|
|
663 |
/**
|
|
664 |
* TestNWCAknNoteWrapperL test function for testing the
|
|
665 |
* CAknNoteWrapper function
|
|
666 |
* @since S60 5.0
|
|
667 |
* @param aItem never used
|
|
668 |
* @return Symbian OS error code.
|
|
669 |
*/
|
|
670 |
virtual TInt TestNWCAknNoteWrapperL( CStifItemParser& aItem );
|
|
671 |
|
|
672 |
/**
|
|
673 |
* TestNWCAknNoteWrapperPointerL test function for testing the
|
|
674 |
* CAknNoteWrapper function with pointer
|
|
675 |
* @since S60 5.0
|
|
676 |
* @param aItem never used
|
|
677 |
* @return Symbian OS error code.
|
|
678 |
*/
|
|
679 |
virtual TInt TestNWCAknNoteWrapperPointerL( CStifItemParser& aItem );
|
|
680 |
|
|
681 |
/**
|
|
682 |
* TestNWExecuteLD test function for testing the
|
|
683 |
* ExecuteLD function
|
|
684 |
* @since S60 5.0
|
|
685 |
* @param aItem never used
|
|
686 |
* @return Symbian OS error code.
|
|
687 |
*/
|
|
688 |
virtual TInt TestNWExecuteLD( CStifItemParser& aItem );
|
|
689 |
|
|
690 |
/**
|
|
691 |
* TestNWExecutePromptLD test function for testing the
|
|
692 |
* ExecuteLD function
|
|
693 |
* @since S60 5.0
|
|
694 |
* @param aItem never used
|
|
695 |
* @return Symbian OS error code.
|
|
696 |
*/
|
|
697 |
virtual TInt TestNWExecutePromptLD( CStifItemParser& aItem );
|
|
698 |
|
|
699 |
/**
|
|
700 |
* TestNWHandlePointerEventL test function for testing the
|
|
701 |
* HandlePointerEventL function
|
|
702 |
* @since S60 5.0
|
|
703 |
* @param aItem never used
|
|
704 |
* @return Symbian OS error code.
|
|
705 |
*/
|
|
706 |
virtual TInt TestNWHandlePointerEventL( CStifItemParser& aItem );
|
|
707 |
|
|
708 |
/**
|
|
709 |
* TestNWHandleDialogPageEventL test function for testing the
|
|
710 |
* HandleDialogPageEventL function
|
|
711 |
* @since S60 5.0
|
|
712 |
* @param aItem never used
|
|
713 |
* @return Symbian OS error code.
|
|
714 |
*/
|
|
715 |
virtual TInt TestNWHandleDialogPageEventL( CStifItemParser& aItem );
|
|
716 |
|
|
717 |
/* class CAknResourceNoteDialog */
|
|
718 |
/**
|
|
719 |
* TestNRNDExecuteLD test function for testing the
|
|
720 |
* ExecuteLD function
|
|
721 |
* @since S60 5.0
|
|
722 |
* @param aItem never used
|
|
723 |
* @return Symbian OS error code.
|
|
724 |
*/
|
|
725 |
virtual TInt TestNRNDExecuteLD( CStifItemParser& aItem );
|
|
726 |
|
|
727 |
/**
|
|
728 |
* TestNRNDExecutePromptLD test function for testing the
|
|
729 |
* ExecuteLD function with prompt
|
|
730 |
* @since S60 5.0
|
|
731 |
* @param aItem never used
|
|
732 |
* @return Symbian OS error code.
|
|
733 |
*/
|
|
734 |
virtual TInt TestNRNDExecutePromptLD( CStifItemParser& aItem );
|
|
735 |
|
|
736 |
/**
|
|
737 |
* TestNRNDHandlePointerEventL test function for testing the
|
|
738 |
* HandlePointerEventL function with prompt
|
|
739 |
* @since S60 5.0
|
|
740 |
* @param aItem never used
|
|
741 |
* @return Symbian OS error code.
|
|
742 |
*/
|
|
743 |
virtual TInt TestNRNDHandlePointerEventL( CStifItemParser& aItem );
|
|
744 |
|
|
745 |
/**
|
|
746 |
* TestNRNDCAknResourceNoteDialogL test function for testing the
|
|
747 |
* CAknResourceNoteDialog function
|
|
748 |
* @since S60 5.0
|
|
749 |
* @param aItem never used
|
|
750 |
* @return Symbian OS error code.
|
|
751 |
*/
|
|
752 |
virtual TInt TestNRNDCAknResourceNoteDialogL( CStifItemParser& aItem );
|
|
753 |
|
|
754 |
/**
|
|
755 |
* TestNRNDCAknResourceNoteDialogPointerL test function for testing the
|
|
756 |
* CAknResourceNoteDialog function with pointer
|
|
757 |
* @since S60 5.0
|
|
758 |
* @param aItem never used
|
|
759 |
* @return Symbian OS error code.
|
|
760 |
*/
|
|
761 |
virtual TInt TestNRNDCAknResourceNoteDialogPointerL( CStifItemParser& aItem );
|
|
762 |
|
|
763 |
/* class CAknConfirmationNote */
|
|
764 |
/**
|
|
765 |
* TestNCNCAknConfirmationNoteL test function for testing the
|
|
766 |
* CAknConfirmationNote function
|
|
767 |
* @since S60 5.0
|
|
768 |
* @param aItem never used
|
|
769 |
* @return Symbian OS error code.
|
|
770 |
*/
|
|
771 |
virtual TInt TestNCNCAknConfirmationNoteL( CStifItemParser& aItem );
|
|
772 |
|
|
773 |
/**
|
|
774 |
* TestNCNCAknConfirmationNoteParameterL test function for testing the
|
|
775 |
* CAknConfirmationNote function with parameter
|
|
776 |
* @since S60 5.0
|
|
777 |
* @param aItem never used
|
|
778 |
* @return Symbian OS error code.
|
|
779 |
*/
|
|
780 |
virtual TInt TestNCNCAknConfirmationNoteParameterL( CStifItemParser& aItem );
|
|
781 |
|
|
782 |
/**
|
|
783 |
* TestNCNCAknConfirmationNotePointerL test function for testing the
|
|
784 |
* CAknConfirmationNote function with Pointer
|
|
785 |
* @since S60 5.0
|
|
786 |
* @param aItem never used
|
|
787 |
* @return Symbian OS error code.
|
|
788 |
*/
|
|
789 |
virtual TInt TestNCNCAknConfirmationNotePointerL( CStifItemParser& aItem );
|
|
790 |
|
|
791 |
/**
|
|
792 |
* TestNCNHandlePointerEventL test function for testing the
|
|
793 |
* HandlePointerEventL function with Pointer
|
|
794 |
* @since S60 5.0
|
|
795 |
* @param aItem never used
|
|
796 |
* @return Symbian OS error code.
|
|
797 |
*/
|
|
798 |
virtual TInt TestNCNHandlePointerEventL( CStifItemParser& aItem );
|
|
799 |
|
|
800 |
/* class CAknInformationNote */
|
|
801 |
/**
|
|
802 |
* TestNINCAknInformationNoteL test function for testing the
|
|
803 |
* CAknInformationNote function
|
|
804 |
* @since S60 5.0
|
|
805 |
* @param aItem never used
|
|
806 |
* @return Symbian OS error code.
|
|
807 |
*/
|
|
808 |
virtual TInt TestNINCAknInformationNoteL( CStifItemParser& aItem );
|
|
809 |
|
|
810 |
/**
|
|
811 |
* TestNINCAknInformationNoteParameterL test function for testing the
|
|
812 |
* CAknInformationNote function with Parameter
|
|
813 |
* @since S60 5.0
|
|
814 |
* @param aItem never used
|
|
815 |
* @return Symbian OS error code.
|
|
816 |
*/
|
|
817 |
virtual TInt TestNINCAknInformationNoteParameterL( CStifItemParser& aItem );
|
|
818 |
|
|
819 |
/**
|
|
820 |
* TestNINCAknInformationNotePointerL test function for testing the
|
|
821 |
* CAknInformationNote function with Pointer
|
|
822 |
* @since S60 5.0
|
|
823 |
* @param aItem never used
|
|
824 |
* @return Symbian OS error code.
|
|
825 |
*/
|
|
826 |
virtual TInt TestNINCAknInformationNotePointerL( CStifItemParser& aItem );
|
|
827 |
|
|
828 |
/**
|
|
829 |
* TestNINHandlePointerEventL test function for testing the
|
|
830 |
* HandlePointerEventL function with Pointer
|
|
831 |
* @since S60 5.0
|
|
832 |
* @param aItem never used
|
|
833 |
* @return Symbian OS error code.
|
|
834 |
*/
|
|
835 |
virtual TInt TestNINHandlePointerEventL( CStifItemParser& aItem );
|
|
836 |
|
|
837 |
/* class CAknErrorNote */
|
|
838 |
/**
|
|
839 |
* TestNENCAknErrorNoteL test function for testing the
|
|
840 |
* CAknErrorNote function
|
|
841 |
* @since S60 5.0
|
|
842 |
* @param aItem never used
|
|
843 |
* @return Symbian OS error code.
|
|
844 |
*/
|
|
845 |
virtual TInt TestNENCAknErrorNoteL( CStifItemParser& aItem );
|
|
846 |
|
|
847 |
/**
|
|
848 |
* TestNENCAknErrorNoteParameterL test function for testing the
|
|
849 |
* CAknErrorNote function with Parameter
|
|
850 |
* @since S60 5.0
|
|
851 |
* @param aItem never used
|
|
852 |
* @return Symbian OS error code.
|
|
853 |
*/
|
|
854 |
virtual TInt TestNENCAknErrorNoteParameterL( CStifItemParser& aItem );
|
|
855 |
|
|
856 |
/**
|
|
857 |
* TestNENCAknErrorNotePointerL test function for testing the
|
|
858 |
* CAknErrorNote function with Pointer
|
|
859 |
* @since S60 5.0
|
|
860 |
* @param aItem never used
|
|
861 |
* @return Symbian OS error code.
|
|
862 |
*/
|
|
863 |
virtual TInt TestNENCAknErrorNotePointerL( CStifItemParser& aItem );
|
|
864 |
|
|
865 |
/**
|
|
866 |
* TestNENHandlePointerEventL test function for testing the
|
|
867 |
* HandlePointerEventL function with Pointer
|
|
868 |
* @since S60 5.0
|
|
869 |
* @param aItem never used
|
|
870 |
* @return Symbian OS error code.
|
|
871 |
*/
|
|
872 |
virtual TInt TestNENHandlePointerEventL( CStifItemParser& aItem );
|
|
873 |
|
|
874 |
/* class CAknWarningNote */
|
|
875 |
/**
|
|
876 |
* TestNWNCAknWarningNoteL test function for testing the
|
|
877 |
* CAknWarningNote function with Pointer
|
|
878 |
* @since S60 5.0
|
|
879 |
* @param aItem never used
|
|
880 |
* @return Symbian OS error code.
|
|
881 |
*/
|
|
882 |
virtual TInt TestNWNCAknWarningNoteL( CStifItemParser& aItem );
|
|
883 |
|
|
884 |
/**
|
|
885 |
* TestNWNCAknWarningNoteParameterL test function for testing the
|
|
886 |
* CAknWarningNote function with Parameter
|
|
887 |
* @since S60 5.0
|
|
888 |
* @param aItem never used
|
|
889 |
* @return Symbian OS error code.
|
|
890 |
*/
|
|
891 |
virtual TInt TestNWNCAknWarningNoteParameterL( CStifItemParser& aItem );
|
|
892 |
|
|
893 |
/**
|
|
894 |
* TestNWNCAknWarningNotePointerL test function for testing the
|
|
895 |
* CAknWarningNote function with Pointer
|
|
896 |
* @since S60 5.0
|
|
897 |
* @param aItem never used
|
|
898 |
* @return Symbian OS error code.
|
|
899 |
*/
|
|
900 |
virtual TInt TestNWNCAknWarningNotePointerL( CStifItemParser& aItem );
|
|
901 |
|
|
902 |
/**
|
|
903 |
* TestNWNHandlePointerEventL test function for testing the
|
|
904 |
* HandlePointerEventL function with Pointer
|
|
905 |
* @since S60 5.0
|
|
906 |
* @param aItem never used
|
|
907 |
* @return Symbian OS error code.
|
|
908 |
*/
|
|
909 |
virtual TInt TestNWNHandlePointerEventL( CStifItemParser& aItem );
|
|
910 |
|
|
911 |
/* class CAknProgressDialog */
|
|
912 |
/**
|
|
913 |
* TestNPDCAknProgressDialogValueL test function for testing the
|
|
914 |
* CAknProgressDialog function with Value
|
|
915 |
* @since S60 5.0
|
|
916 |
* @param aItem never used
|
|
917 |
* @return Symbian OS error code.
|
|
918 |
*/
|
|
919 |
virtual TInt TestNPDCAknProgressDialogValueL( CStifItemParser& aItem );
|
|
920 |
|
|
921 |
/**
|
|
922 |
* TestNPDCAknProgressDialogPointerL test function for testing the
|
|
923 |
* CAknProgressDialog function with Pointer
|
|
924 |
* @since S60 5.0
|
|
925 |
* @param aItem never used
|
|
926 |
* @return Symbian OS error code.
|
|
927 |
*/
|
|
928 |
virtual TInt TestNPDCAknProgressDialogPointerL( CStifItemParser& aItem );
|
|
929 |
|
|
930 |
/**
|
|
931 |
* TestNPDCAknProgressDialogL test function for testing the
|
|
932 |
* CAknProgressDialog function
|
|
933 |
* @since S60 5.0
|
|
934 |
* @param aItem never used
|
|
935 |
* @return Symbian OS error code.
|
|
936 |
*/
|
|
937 |
virtual TInt TestNPDCAknProgressDialogL( CStifItemParser& aItem );
|
|
938 |
|
|
939 |
/**
|
|
940 |
* TestNPDDeconstructorL test function for testing the
|
|
941 |
* ~CAknProgressDialog function
|
|
942 |
* @since S60 5.0
|
|
943 |
* @param aItem never used
|
|
944 |
* @return Symbian OS error code.
|
|
945 |
*/
|
|
946 |
virtual TInt TestNPDDeconstructorL( CStifItemParser& aItem );
|
|
947 |
|
|
948 |
/**
|
|
949 |
* TestNPDRunLD test function for testing the
|
|
950 |
* RunLD function
|
|
951 |
* @since S60 5.0
|
|
952 |
* @param aItem never used
|
|
953 |
* @return Symbian OS error code.
|
|
954 |
*/
|
|
955 |
virtual TInt TestNPDRunLD( CStifItemParser& aItem );
|
|
956 |
|
|
957 |
/**
|
|
958 |
* TestNPDGetProgressInfoL test function for testing the
|
|
959 |
* GetProgressInfoL function
|
|
960 |
* @since S60 5.0
|
|
961 |
* @param aItem never used
|
|
962 |
* @return Symbian OS error code.
|
|
963 |
*/
|
|
964 |
virtual TInt TestNPDGetProgressInfoL( CStifItemParser& aItem );
|
|
965 |
|
|
966 |
/**
|
|
967 |
* TestNPDOfferKeyEventL test function for testing the
|
|
968 |
* OfferKeyEventL function
|
|
969 |
* @since S60 5.0
|
|
970 |
* @param aItem never used
|
|
971 |
* @return Symbian OS error code.
|
|
972 |
*/
|
|
973 |
virtual TInt TestNPDOfferKeyEventL( CStifItemParser& aItem );
|
|
974 |
|
|
975 |
/**
|
|
976 |
* TestNPDProcessFinishedL test function for testing the
|
|
977 |
* ProcessFinishedL function
|
|
978 |
* @since S60 5.0
|
|
979 |
* @param aItem never used
|
|
980 |
* @return Symbian OS error code.
|
|
981 |
*/
|
|
982 |
virtual TInt TestNPDProcessFinishedL( CStifItemParser& aItem );
|
|
983 |
|
|
984 |
/**
|
|
985 |
* TestNPDSetCallbackL test function for testing the
|
|
986 |
* SetCallback function
|
|
987 |
* @since S60 5.0
|
|
988 |
* @param aItem never used
|
|
989 |
* @return Symbian OS error code.
|
|
990 |
*/
|
|
991 |
virtual TInt TestNPDSetCallbackL( CStifItemParser& aItem );
|
|
992 |
|
|
993 |
/**
|
|
994 |
* TestNPDHandlePointerEventL test function for testing the
|
|
995 |
* HandlePointerEventL function
|
|
996 |
* @since S60 5.0
|
|
997 |
* @param aItem never used
|
|
998 |
* @return Symbian OS error code.
|
|
999 |
*/
|
|
1000 |
virtual TInt TestNPDHandlePointerEventL( CStifItemParser& aItem );
|
|
1001 |
|
|
1002 |
/**
|
|
1003 |
* TestNPDPreLayoutDynInitL test function for testing the
|
|
1004 |
* PreLayoutDynInitL function
|
|
1005 |
* @since S60 5.0
|
|
1006 |
* @param aItem never used
|
|
1007 |
* @return Symbian OS error code.
|
|
1008 |
*/
|
|
1009 |
virtual TInt TestNPDPreLayoutDynInitL( CStifItemParser& aItem );
|
|
1010 |
|
|
1011 |
/**
|
|
1012 |
* TestNPDOkToExitL test function for testing the
|
|
1013 |
* OkToExitL function
|
|
1014 |
* @since S60 5.0
|
|
1015 |
* @param aItem never used
|
|
1016 |
* @return Symbian OS error code.
|
|
1017 |
*/
|
|
1018 |
virtual TInt TestNPDOkToExitL( CStifItemParser& aItem );
|
|
1019 |
|
|
1020 |
/* class CAknStaticNoteStackIndicator */
|
|
1021 |
/**
|
|
1022 |
* TestNSNSIHandleResourceChangeL test function for testing the
|
|
1023 |
* HandleResourceChange function
|
|
1024 |
* @since S60 5.0
|
|
1025 |
* @param aItem never used
|
|
1026 |
* @return Symbian OS error code.
|
|
1027 |
*/
|
|
1028 |
virtual TInt TestNSNSIHandleResourceChangeL( CStifItemParser& aItem );
|
|
1029 |
|
|
1030 |
/**
|
|
1031 |
* TestNSNSIHandlePointerEventL test function for testing the
|
|
1032 |
* HandlePointerEventL function
|
|
1033 |
* @since S60 5.0
|
|
1034 |
* @param aItem never used
|
|
1035 |
* @return Symbian OS error code.
|
|
1036 |
*/
|
|
1037 |
virtual TInt TestNSNSIHandlePointerEventL( CStifItemParser& aItem );
|
|
1038 |
|
|
1039 |
/* class CAknStaticNoteDialog */
|
|
1040 |
/**
|
|
1041 |
* TestNSNDCAknStaticNoteDialogL test function for testing the
|
|
1042 |
* CAknStaticNoteDialog function
|
|
1043 |
* @since S60 5.0
|
|
1044 |
* @param aItem never used
|
|
1045 |
* @return Symbian OS error code.
|
|
1046 |
*/
|
|
1047 |
virtual TInt TestNSNDCAknStaticNoteDialogL( CStifItemParser& aItem );
|
|
1048 |
|
|
1049 |
/**
|
|
1050 |
* TestNSNDCAknStaticNoteDialogPointerL test function for testing the
|
|
1051 |
* CAknStaticNoteDialog function with pointer
|
|
1052 |
* @since S60 5.0
|
|
1053 |
* @param aItem never used
|
|
1054 |
* @return Symbian OS error code.
|
|
1055 |
*/
|
|
1056 |
virtual TInt TestNSNDCAknStaticNoteDialogPointerL( CStifItemParser& aItem );
|
|
1057 |
|
|
1058 |
/**
|
|
1059 |
* TestNSNDDeconstructorL test function for testing the
|
|
1060 |
* ~CAknStaticNoteDialog function
|
|
1061 |
* @since S60 5.0
|
|
1062 |
* @param aItem never used
|
|
1063 |
* @return Symbian OS error code.
|
|
1064 |
*/
|
|
1065 |
virtual TInt TestNSNDDeconstructorL( CStifItemParser& aItem );
|
|
1066 |
|
|
1067 |
/**
|
|
1068 |
* TestNSNDSetNumberOfBordersL test function for testing the
|
|
1069 |
* SetNumberOfBorders function
|
|
1070 |
* @since S60 5.0
|
|
1071 |
* @param aItem never used
|
|
1072 |
* @return Symbian OS error code.
|
|
1073 |
*/
|
|
1074 |
virtual TInt TestNSNDSetNumberOfBordersL( CStifItemParser& aItem );
|
|
1075 |
|
|
1076 |
/**
|
|
1077 |
* TestNSNDHandlePointerEventL test function for testing the
|
|
1078 |
* HandlePointerEventL function
|
|
1079 |
* @since S60 5.0
|
|
1080 |
* @param aItem never used
|
|
1081 |
* @return Symbian OS error code.
|
|
1082 |
*/
|
|
1083 |
virtual TInt TestNSNDHandlePointerEventL( CStifItemParser& aItem );
|
|
1084 |
|
|
1085 |
/**
|
|
1086 |
* TestNSNDPostLayoutDynInitL test function for testing the
|
|
1087 |
* PostLayoutDynInitL function
|
|
1088 |
* @since S60 5.0
|
|
1089 |
* @param aItem never used
|
|
1090 |
* @return Symbian OS error code.
|
|
1091 |
*/
|
|
1092 |
virtual TInt TestNSNDPostLayoutDynInitL( CStifItemParser& aItem );
|
|
1093 |
|
|
1094 |
/**
|
|
1095 |
* TestNSNDOfferKeyEventL test function for testing the
|
|
1096 |
* OfferKeyEventL function
|
|
1097 |
* @since S60 5.0
|
|
1098 |
* @param aItem never used
|
|
1099 |
* @return Symbian OS error code.
|
|
1100 |
*/
|
|
1101 |
virtual TInt TestNSNDOfferKeyEventL( CStifItemParser& aItem );
|
|
1102 |
|
|
1103 |
/* class CAknWaitDialog */
|
|
1104 |
/**
|
|
1105 |
* TestNWDCAknWaitDialogL test function for testing the
|
|
1106 |
* CAknWaitDialog function with pointer
|
|
1107 |
* @since S60 5.0
|
|
1108 |
* @param aItem never used
|
|
1109 |
* @return Symbian OS error code.
|
|
1110 |
*/
|
|
1111 |
virtual TInt TestNWDCAknWaitDialogL( CStifItemParser& aItem );
|
|
1112 |
|
|
1113 |
/**
|
|
1114 |
* TestNWDCAknWaitDialogBoolL test function for testing the
|
|
1115 |
* CAknWaitDialog function with two parameters
|
|
1116 |
* @since S60 5.0
|
|
1117 |
* @param aItem never used
|
|
1118 |
* @return Symbian OS error code.
|
|
1119 |
*/
|
|
1120 |
virtual TInt TestNWDCAknWaitDialogBoolL( CStifItemParser& aItem );
|
|
1121 |
|
|
1122 |
/**
|
|
1123 |
* TestNWDHandlePointerEventL test function for testing the
|
|
1124 |
* HandlePointerEventL function with two parameters
|
|
1125 |
* @since S60 5.0
|
|
1126 |
* @param aItem never used
|
|
1127 |
* @return Symbian OS error code.
|
|
1128 |
*/
|
|
1129 |
virtual TInt TestNWDHandlePointerEventL( CStifItemParser& aItem );
|
|
1130 |
|
|
1131 |
/**
|
|
1132 |
* TestNWDGetProgressInfoL test function for testing the
|
|
1133 |
* GetProgressInfo function with two parameters
|
|
1134 |
* @since S60 5.0
|
|
1135 |
* @param aItem never used
|
|
1136 |
* @return Symbian OS error code.
|
|
1137 |
*/
|
|
1138 |
virtual TInt TestNWDGetProgressInfoL( CStifItemParser& aItem );
|
|
1139 |
|
|
1140 |
/* class CAknWaitNoteWrapper */
|
|
1141 |
/**
|
|
1142 |
* TestNWNWCAknWaitNoteWrapperL test function for testing the
|
|
1143 |
* CAknWaitNoteWrapper function
|
|
1144 |
* @since S60 5.0
|
|
1145 |
* @param aItem never used
|
|
1146 |
* @return Symbian OS error code.
|
|
1147 |
*/
|
|
1148 |
virtual TInt TestNWNWCAknWaitNoteWrapperL( CStifItemParser& aItem );
|
|
1149 |
|
|
1150 |
/**
|
|
1151 |
* TestNWNWDeconstructorL test function for testing the
|
|
1152 |
* ~CAknWaitNoteWrapper function
|
|
1153 |
* @since S60 5.0
|
|
1154 |
* @param aItem never used
|
|
1155 |
* @return Symbian OS error code.
|
|
1156 |
*/
|
|
1157 |
virtual TInt TestNWNWDeconstructorL( CStifItemParser& aItem );
|
|
1158 |
|
|
1159 |
/**
|
|
1160 |
* TestNWNWExecuteL test function for testing the
|
|
1161 |
* ExecuteL function
|
|
1162 |
* @since S60 5.0
|
|
1163 |
* @param aItem never used
|
|
1164 |
* @return Symbian OS error code.
|
|
1165 |
*/
|
|
1166 |
virtual TInt TestNWNWExecuteL( CStifItemParser& aItem );
|
|
1167 |
|
|
1168 |
/**
|
|
1169 |
* TestNWNWExecutePromptL test function for testing the
|
|
1170 |
* ExecuteL function with prompt
|
|
1171 |
* @since S60 5.0
|
|
1172 |
* @param aItem never used
|
|
1173 |
* @return Symbian OS error code.
|
|
1174 |
*/
|
|
1175 |
virtual TInt TestNWNWExecutePromptL( CStifItemParser& aItem );
|
|
1176 |
|
|
1177 |
/**
|
|
1178 |
* TestNWNWWaitDialogL test function for testing the
|
|
1179 |
* WaitDialog function
|
|
1180 |
* @since S60 5.0
|
|
1181 |
* @param aItem never used
|
|
1182 |
* @return Symbian OS error code.
|
|
1183 |
*/
|
|
1184 |
virtual TInt TestNWNWWaitDialogL( CStifItemParser& aItem );
|
|
1185 |
|
|
1186 |
/* class CAknNoteControl */
|
|
1187 |
/**
|
|
1188 |
* TestNNCCAknNoteControlL test function for testing the
|
|
1189 |
* CAknNoteControl function
|
|
1190 |
* @since S60 5.0
|
|
1191 |
* @param aItem never used
|
|
1192 |
* @return Symbian OS error code.
|
|
1193 |
*/
|
|
1194 |
virtual TInt TestNNCCAknNoteControlL( CStifItemParser& aItem );
|
|
1195 |
|
|
1196 |
/**
|
|
1197 |
* TestNNCDeconstructorL test function for testing the
|
|
1198 |
* ~CAknNoteControl function
|
|
1199 |
* @since S60 5.0
|
|
1200 |
* @param aItem never used
|
|
1201 |
* @return Symbian OS error code.
|
|
1202 |
*/
|
|
1203 |
virtual TInt TestNNCDeconstructorL( CStifItemParser& aItem );
|
|
1204 |
|
|
1205 |
/**
|
|
1206 |
* TestNNCSetImageL test function for testing the
|
|
1207 |
* SetImageL function
|
|
1208 |
* @since S60 5.0
|
|
1209 |
* @param aItem never used
|
|
1210 |
* @return Symbian OS error code.
|
|
1211 |
*/
|
|
1212 |
virtual TInt TestNNCSetImageL( CStifItemParser& aItem );
|
|
1213 |
|
|
1214 |
/**
|
|
1215 |
* TestNNCSetAnimationL test function for testing the
|
|
1216 |
* SetAnimationL function
|
|
1217 |
* @since S60 5.0
|
|
1218 |
* @param aItem never used
|
|
1219 |
* @return Symbian OS error code.
|
|
1220 |
*/
|
|
1221 |
virtual TInt TestNNCSetAnimationL( CStifItemParser& aItem );
|
|
1222 |
|
|
1223 |
/**
|
|
1224 |
* TestNNCSetIconL test function for testing the
|
|
1225 |
* SetIconL function
|
|
1226 |
* @since S60 5.0
|
|
1227 |
* @param aItem never used
|
|
1228 |
* @return Symbian OS error code.
|
|
1229 |
*/
|
|
1230 |
virtual TInt TestNNCSetIconL( CStifItemParser& aItem );
|
|
1231 |
|
|
1232 |
/**
|
|
1233 |
* TestNNCSetFinalProgressValueL test function for testing the
|
|
1234 |
* SetFinalProgressValue function
|
|
1235 |
* @since S60 5.0
|
|
1236 |
* @param aItem never used
|
|
1237 |
* @return Symbian OS error code.
|
|
1238 |
*/
|
|
1239 |
virtual TInt TestNNCSetFinalProgressValueL( CStifItemParser& aItem );
|
|
1240 |
|
|
1241 |
/**
|
|
1242 |
* TestNNCIncrementBarsAndDrawL test function for testing the
|
|
1243 |
* IncrementBarsAndDraw function
|
|
1244 |
* @since S60 5.0
|
|
1245 |
* @param aItem never used
|
|
1246 |
* @return Symbian OS error code.
|
|
1247 |
*/
|
|
1248 |
virtual TInt TestNNCIncrementBarsAndDrawL( CStifItemParser& aItem );
|
|
1249 |
|
|
1250 |
/**
|
|
1251 |
* TestNNCCreateProgressBarL test function for testing the
|
|
1252 |
* CreateProgressBarL function
|
|
1253 |
* @since S60 5.0
|
|
1254 |
* @param aItem never used
|
|
1255 |
* @return Symbian OS error code.
|
|
1256 |
*/
|
|
1257 |
virtual TInt TestNNCCreateProgressBarL( CStifItemParser& aItem );
|
|
1258 |
|
|
1259 |
/**
|
|
1260 |
* TestNNCGetProgressInfoL test function for testing the
|
|
1261 |
* GetProgressInfo function
|
|
1262 |
* @since S60 5.0
|
|
1263 |
* @param aItem never used
|
|
1264 |
* @return Symbian OS error code.
|
|
1265 |
*/
|
|
1266 |
virtual TInt TestNNCGetProgressInfoL( CStifItemParser& aItem );
|
|
1267 |
|
|
1268 |
/**
|
|
1269 |
* TestNNCStartAnimationL test function for testing the
|
|
1270 |
* StartAnimationL function
|
|
1271 |
* @since S60 5.0
|
|
1272 |
* @param aItem never used
|
|
1273 |
* @return Symbian OS error code.
|
|
1274 |
*/
|
|
1275 |
virtual TInt TestNNCStartAnimationL( CStifItemParser& aItem );
|
|
1276 |
|
|
1277 |
/**
|
|
1278 |
* TestNNCCancelAnimationL test function for testing the
|
|
1279 |
* CancelAnimation function
|
|
1280 |
* @since S60 5.0
|
|
1281 |
* @param aItem never used
|
|
1282 |
* @return Symbian OS error code.
|
|
1283 |
*/
|
|
1284 |
virtual TInt TestNNCCancelAnimationL( CStifItemParser& aItem );
|
|
1285 |
|
|
1286 |
/**
|
|
1287 |
* TestNNCResetTextL test function for testing the
|
|
1288 |
* ResetText function
|
|
1289 |
* @since S60 5.0
|
|
1290 |
* @param aItem never used
|
|
1291 |
* @return Symbian OS error code.
|
|
1292 |
*/
|
|
1293 |
virtual TInt TestNNCResetTextL( CStifItemParser& aItem );
|
|
1294 |
|
|
1295 |
/**
|
|
1296 |
* TestNNCSetTextL test function for testing the
|
|
1297 |
* SetTextL function
|
|
1298 |
* @since S60 5.0
|
|
1299 |
* @param aItem never used
|
|
1300 |
* @return Symbian OS error code.
|
|
1301 |
*/
|
|
1302 |
virtual TInt TestNNCSetTextL( CStifItemParser& aItem );
|
|
1303 |
|
|
1304 |
/**
|
|
1305 |
* TestNNCSetTextLineNumL test function for testing the
|
|
1306 |
* SetTextL function with linenum
|
|
1307 |
* @since S60 5.0
|
|
1308 |
* @param aItem never used
|
|
1309 |
* @return Symbian OS error code.
|
|
1310 |
*/
|
|
1311 |
virtual TInt TestNNCSetTextLineNumL( CStifItemParser& aItem );
|
|
1312 |
|
|
1313 |
/**
|
|
1314 |
* TestNNCSetTextNumberL test function for testing the
|
|
1315 |
* SetTextNumberL function
|
|
1316 |
* @since S60 5.0
|
|
1317 |
* @param aItem never used
|
|
1318 |
* @return Symbian OS error code.
|
|
1319 |
*/
|
|
1320 |
virtual TInt TestNNCSetTextNumberL( CStifItemParser& aItem );
|
|
1321 |
|
|
1322 |
/**
|
|
1323 |
* TestNNCSetTextPluralityL test function for testing the
|
|
1324 |
* SetTextPluralityL function
|
|
1325 |
* @since S60 5.0
|
|
1326 |
* @param aItem never used
|
|
1327 |
* @return Symbian OS error code.
|
|
1328 |
*/
|
|
1329 |
virtual TInt TestNNCSetTextPluralityL( CStifItemParser& aItem );
|
|
1330 |
|
|
1331 |
/**
|
|
1332 |
* TestNNCNumberOfLinesL test function for testing the
|
|
1333 |
* NumberOfLines function
|
|
1334 |
* @since S60 5.0
|
|
1335 |
* @param aItem never used
|
|
1336 |
* @return Symbian OS error code.
|
|
1337 |
*/
|
|
1338 |
virtual TInt TestNNCNumberOfLinesL( CStifItemParser& aItem );
|
|
1339 |
|
|
1340 |
/**
|
|
1341 |
* TestNNCLayoutL test function for testing the
|
|
1342 |
* Layout function
|
|
1343 |
* @since S60 5.0
|
|
1344 |
* @param aItem never used
|
|
1345 |
* @return Symbian OS error code.
|
|
1346 |
*/
|
|
1347 |
virtual TInt TestNNCLayoutL( CStifItemParser& aItem );
|
|
1348 |
|
|
1349 |
/**
|
|
1350 |
* TestNNCNoteHeightL test function for testing the
|
|
1351 |
* NoteHeight function
|
|
1352 |
* @since S60 5.0
|
|
1353 |
* @param aItem never used
|
|
1354 |
* @return Symbian OS error code.
|
|
1355 |
*/
|
|
1356 |
virtual TInt TestNNCNoteHeightL( CStifItemParser& aItem );
|
|
1357 |
|
|
1358 |
/**
|
|
1359 |
* TestNNCNoteWidthL test function for testing the
|
|
1360 |
* NoteWidth function
|
|
1361 |
* @since S60 5.0
|
|
1362 |
* @param aItem never used
|
|
1363 |
* @return Symbian OS error code.
|
|
1364 |
*/
|
|
1365 |
virtual TInt TestNNCNoteWidthL( CStifItemParser& aItem );
|
|
1366 |
|
|
1367 |
/**
|
|
1368 |
* TestNNCHandlePointerEventL test function for testing the
|
|
1369 |
* HandlePointerEventL function
|
|
1370 |
* @since S60 5.0
|
|
1371 |
* @param aItem never used
|
|
1372 |
* @return Symbian OS error code.
|
|
1373 |
*/
|
|
1374 |
virtual TInt TestNNCHandlePointerEventL( CStifItemParser& aItem );
|
|
1375 |
|
|
1376 |
/**
|
|
1377 |
* TestNNCSetDynamicTextL test function for testing the
|
|
1378 |
* SetDynamicTextL function
|
|
1379 |
* @since S60 5.0
|
|
1380 |
* @param aItem never used
|
|
1381 |
* @return Symbian OS error code.
|
|
1382 |
*/
|
|
1383 |
virtual TInt TestNNCSetDynamicTextL( CStifItemParser& aItem );
|
|
1384 |
|
|
1385 |
/**
|
|
1386 |
* TestNNCUpdateAndFormatLabelsL test function for testing the
|
|
1387 |
* UpdateAndFormatLabelsL function
|
|
1388 |
* @since S60 5.0
|
|
1389 |
* @param aItem never used
|
|
1390 |
* @return Symbian OS error code.
|
|
1391 |
*/
|
|
1392 |
virtual TInt TestNNCUpdateAndFormatLabelsL( CStifItemParser& aItem );
|
|
1393 |
|
|
1394 |
/**
|
|
1395 |
* TestNNCUpdateLabelsLeaveL test function for testing the
|
|
1396 |
* UpdateLabelsL function with Leave
|
|
1397 |
* @since S60 5.0
|
|
1398 |
* @param aItem never used
|
|
1399 |
* @return Symbian OS error code.
|
|
1400 |
*/
|
|
1401 |
virtual TInt TestNNCUpdateLabelsLeaveL( CStifItemParser& aItem );
|
|
1402 |
|
|
1403 |
/**
|
|
1404 |
* TestNNCUpdateLabelsL test function for testing the
|
|
1405 |
* UpdateLabelsL function
|
|
1406 |
* @since S60 5.0
|
|
1407 |
* @param aItem never used
|
|
1408 |
* @return Symbian OS error code.
|
|
1409 |
*/
|
|
1410 |
virtual TInt TestNNCUpdateLabelsL( CStifItemParser& aItem );
|
|
1411 |
|
|
1412 |
/**
|
|
1413 |
* TestNNCSetLabelReserveLengthL test function for testing the
|
|
1414 |
* SetLabelReserveLengthL function
|
|
1415 |
* @since S60 5.0
|
|
1416 |
* @param aItem never used
|
|
1417 |
* @return Symbian OS error code.
|
|
1418 |
*/
|
|
1419 |
virtual TInt TestNNCSetLabelReserveLengthL( CStifItemParser& aItem );
|
|
1420 |
|
|
1421 |
/**
|
|
1422 |
* TestNNCMopSupplyObjectL test function for testing the
|
|
1423 |
* MopSupplyObject function
|
|
1424 |
* @since S60 5.0
|
|
1425 |
* @param aItem never used
|
|
1426 |
* @return Symbian OS error code.
|
|
1427 |
*/
|
|
1428 |
virtual TInt TestNNCMopSupplyObjectL( CStifItemParser& aItem );
|
|
1429 |
|
|
1430 |
/**
|
|
1431 |
* TestNNCSetBgRectL test function for testing the
|
|
1432 |
* SetBgRect function
|
|
1433 |
* @since S60 5.0
|
|
1434 |
* @param aItem never used
|
|
1435 |
* @return Symbian OS error code.
|
|
1436 |
*/
|
|
1437 |
virtual TInt TestNNCSetBgRectL( CStifItemParser& aItem );
|
|
1438 |
|
|
1439 |
|
|
1440 |
private: // Data
|
|
1441 |
|
|
1442 |
/**
|
|
1443 |
* for Cancel ScreenSaver
|
|
1444 |
*/
|
|
1445 |
TInt iOldScreenSaverProperty;
|
|
1446 |
|
|
1447 |
// Resource file offset
|
|
1448 |
TInt iOffset;
|
|
1449 |
};
|
|
1450 |
|
|
1451 |
#endif // C_TESTSDKNOTES_H
|
|
1452 |
|
|
1453 |
// End of File
|