|
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 EIKDIALG.H |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef C_TESTSDKDIALOGS_H |
|
21 #define C_TESTSDKDIALOGS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <stiflogger.h> |
|
25 #include <testscripterinternal.h> |
|
26 #include <stiftestmodule.h> |
|
27 #include <testclassassert.h> |
|
28 |
|
29 // MACROS |
|
30 #define TEST_CLASS_VERSION_MAJOR 0 |
|
31 #define TEST_CLASS_VERSION_MINOR 0 |
|
32 #define TEST_CLASS_VERSION_BUILD 0 |
|
33 |
|
34 // Logging path |
|
35 _LIT( KtestsdkdialogsLogPath, "\\logs\\testframework\\testsdkdialogs\\" ); |
|
36 // Log file |
|
37 _LIT( KtestsdkdialogsLogFile, "testsdkdialogs.txt" ); |
|
38 _LIT( KtestsdkdialogsLogFileWithTitle, "testsdkdialogs_[%S].txt" ); |
|
39 |
|
40 // FORWARD DECLARATIONS |
|
41 class CTestSDKDialogs; |
|
42 |
|
43 /** |
|
44 * Ctestsdkdialogs test class for STIF Test Framework TestScripter. |
|
45 * @since S60 5.0 |
|
46 */ |
|
47 NONSHARABLE_CLASS(CTestSDKDialogs) : public CScriptBase |
|
48 { |
|
49 public: // Constructors and destructor |
|
50 |
|
51 /** |
|
52 * Two-phased constructor. |
|
53 */ |
|
54 static CTestSDKDialogs* NewL( CTestModuleIf& aTestModuleIf ); |
|
55 |
|
56 /** |
|
57 * Destructor. |
|
58 */ |
|
59 virtual ~CTestSDKDialogs(); |
|
60 |
|
61 public: // Functions from base classes |
|
62 |
|
63 /** |
|
64 * From CScriptBase Runs a script line. |
|
65 * @since S60 5.0 |
|
66 * @param aItem Script line containing method name and parameters |
|
67 * @return Symbian OS error code |
|
68 */ |
|
69 virtual TInt RunMethodL( CStifItemParser& aItem ); |
|
70 |
|
71 private: |
|
72 |
|
73 /** |
|
74 * C++ default constructor. |
|
75 */ |
|
76 CTestSDKDialogs( CTestModuleIf& aTestModuleIf ); |
|
77 |
|
78 /** |
|
79 * By default Symbian 2nd phase constructor is private. |
|
80 */ |
|
81 void ConstructL(); |
|
82 |
|
83 /** |
|
84 * Frees all resources allocated from test methods. |
|
85 * @since S60 5.0 |
|
86 */ |
|
87 void Delete(); |
|
88 /** |
|
89 * Method used to log version of test class |
|
90 */ |
|
91 void SendTestClassVersion(); |
|
92 |
|
93 /** |
|
94 * Turn off ScreenSaver |
|
95 * @since S60 5.0 |
|
96 * @return Symbian OS error code. |
|
97 */ |
|
98 void TurnOffScreenSaver(); |
|
99 |
|
100 /** |
|
101 * Restore ScreenSaver |
|
102 * @since S60 5.0 |
|
103 * @return Symbian OS error code. |
|
104 */ |
|
105 void RestoreScreenSaver(); |
|
106 |
|
107 private: // Test EIKDIALG.h |
|
108 /* class CEikDialog */ |
|
109 /** |
|
110 * TestDCEikDialogL test function for testing the |
|
111 * CEikDialog function |
|
112 * @since S60 5.0 |
|
113 * @param aItem never used |
|
114 * @return Symbian OS error code. |
|
115 */ |
|
116 virtual TInt TestDCEikDialogL( CStifItemParser& aItem ); |
|
117 |
|
118 /** |
|
119 * TestDDeconstructorL test function for testing the |
|
120 * ~CEikDialog function |
|
121 * @since S60 5.0 |
|
122 * @param aItem never used |
|
123 * @return Symbian OS error code. |
|
124 */ |
|
125 virtual TInt TestDDeconstructorL( CStifItemParser& aItem ); |
|
126 |
|
127 /** |
|
128 * TestDExecuteLD test function for testing the |
|
129 * ExecuteLD function |
|
130 * @since S60 5.0 |
|
131 * @param aItem never used |
|
132 * @return Symbian OS error code. |
|
133 */ |
|
134 virtual TInt TestDExecuteLD( CStifItemParser& aItem ); |
|
135 |
|
136 /** |
|
137 * TestDPrepareLC test function for testing the |
|
138 * PrepareLC function |
|
139 * @since S60 5.0 |
|
140 * @param aItem never used |
|
141 * @return Symbian OS error code. |
|
142 */ |
|
143 virtual TInt TestDPrepareLC( CStifItemParser& aItem ); |
|
144 |
|
145 /** |
|
146 * TestDReadResourceLC test function for testing the |
|
147 * ReadResourceLC function |
|
148 * @since S60 5.0 |
|
149 * @param aItem never used |
|
150 * @return Symbian OS error code. |
|
151 */ |
|
152 virtual TInt TestDReadResourceLC( CStifItemParser& aItem ); |
|
153 |
|
154 /** |
|
155 * TestDRunLD test function for testing the |
|
156 * RunLD function |
|
157 * @since S60 5.0 |
|
158 * @param aItem never used |
|
159 * @return Symbian OS error code. |
|
160 */ |
|
161 virtual TInt TestDRunLD( CStifItemParser& aItem ); |
|
162 |
|
163 /** |
|
164 * TestDSetTitleTDesCL test function for testing the |
|
165 * SetTitleL function with a Title |
|
166 * @since S60 5.0 |
|
167 * @param aItem never used |
|
168 * @return Symbian OS error code. |
|
169 */ |
|
170 virtual TInt TestDSetTitleTDesCL( CStifItemParser& aItem ); |
|
171 |
|
172 /** |
|
173 * TestDSetTitleResourceL test function for testing the |
|
174 * SetTitleL function with a Id |
|
175 * @since S60 5.0 |
|
176 * @param aItem never used |
|
177 * @return Symbian OS error code. |
|
178 */ |
|
179 virtual TInt TestDSetTitleResourceL( CStifItemParser& aItem ); |
|
180 |
|
181 /** |
|
182 * TestDSetPageDimmedNowL test function for testing the |
|
183 * SetPageDimmedNow function |
|
184 * @since S60 5.0 |
|
185 * @param aItem never used |
|
186 * @return Symbian OS error code. |
|
187 */ |
|
188 virtual TInt TestDSetPageDimmedNowL( CStifItemParser& aItem ); |
|
189 |
|
190 /** |
|
191 * TestDSetLineNonFocusingL test function for testing the |
|
192 * SetLineNonFocusing function |
|
193 * @since S60 5.0 |
|
194 * @param aItem never used |
|
195 * @return Symbian OS error code. |
|
196 */ |
|
197 virtual TInt TestDSetLineNonFocusingL( CStifItemParser& aItem ); |
|
198 |
|
199 /** |
|
200 * TestDSetLineDimmedNowL test function for testing the |
|
201 * SetLineDimmedNow function |
|
202 * @since S60 5.0 |
|
203 * @param aItem never used |
|
204 * @return Symbian OS error code. |
|
205 */ |
|
206 virtual TInt TestDSetLineDimmedNowL( CStifItemParser& aItem ); |
|
207 |
|
208 /** |
|
209 * TestDMakeLineVisibleL test function for testing the |
|
210 * MakeLineVisible function |
|
211 * @since S60 5.0 |
|
212 * @param aItem never used |
|
213 * @return Symbian OS error code. |
|
214 */ |
|
215 virtual TInt TestDMakeLineVisibleL( CStifItemParser& aItem ); |
|
216 |
|
217 /** |
|
218 * TestDMakeWholeLineVisibleL test function for testing the |
|
219 * MakeWholeLineVisible function |
|
220 * @since S60 5.0 |
|
221 * @param aItem never used |
|
222 * @return Symbian OS error code. |
|
223 */ |
|
224 virtual TInt TestDMakeWholeLineVisibleL( CStifItemParser& aItem ); |
|
225 |
|
226 /** |
|
227 * TestDDeleteLineL test function for testing the |
|
228 * DeleteLine function |
|
229 * @since S60 5.0 |
|
230 * @param aItem never used |
|
231 * @return Symbian OS error code. |
|
232 */ |
|
233 virtual TInt TestDDeleteLineL( CStifItemParser& aItem ); |
|
234 |
|
235 /** |
|
236 * TestDInsertLineL test function for testing the |
|
237 * InsertLineL function |
|
238 * @since S60 5.0 |
|
239 * @param aItem never used |
|
240 * @return Symbian OS error code. |
|
241 */ |
|
242 virtual TInt TestDInsertLineL( CStifItemParser& aItem ); |
|
243 |
|
244 /** |
|
245 * TestDMakePanelButtonVisibleL test function for testing the |
|
246 * MakePanelButtonVisible function |
|
247 * @since S60 5.0 |
|
248 * @param aItem never used |
|
249 * @return Symbian OS error code. |
|
250 */ |
|
251 virtual TInt TestDMakePanelButtonVisibleL( CStifItemParser& aItem ); |
|
252 |
|
253 /** |
|
254 * TestDTryChangeFocusToL test function for testing the |
|
255 * TryChangeFocusToL function |
|
256 * @since S60 5.0 |
|
257 * @param aItem never used |
|
258 * @return Symbian OS error code. |
|
259 */ |
|
260 virtual TInt TestDTryChangeFocusToL( CStifItemParser& aItem ); |
|
261 |
|
262 /** |
|
263 * TestDSwitchLineLatencyL test function for testing the |
|
264 * SwitchLineLatency function |
|
265 * @since S60 5.0 |
|
266 * @param aItem never used |
|
267 * @return Symbian OS error code. |
|
268 */ |
|
269 virtual TInt TestDSwitchLineLatencyL( CStifItemParser& aItem ); |
|
270 |
|
271 /** |
|
272 * TestDSetPageDensePackingL test function for testing the |
|
273 * SetPageDensePacking function |
|
274 * @since S60 5.0 |
|
275 * @param aItem never used |
|
276 * @return Symbian OS error code. |
|
277 */ |
|
278 virtual TInt TestDSetPageDensePackingL( CStifItemParser& aItem ); |
|
279 |
|
280 /** |
|
281 * TestDConstructAutoDialogLC test function for testing the |
|
282 * ConstructAutoDialogLC function |
|
283 * @since S60 5.0 |
|
284 * @param aItem never used |
|
285 * @return Symbian OS error code. |
|
286 */ |
|
287 virtual TInt TestDConstructAutoDialogLC( CStifItemParser& aItem ); |
|
288 |
|
289 /** |
|
290 * TestDDeclareItemAutoL test function for testing the |
|
291 * DeclareItemAuto function |
|
292 * @since S60 5.0 |
|
293 * @param aItem never used |
|
294 * @return Symbian OS error code. |
|
295 */ |
|
296 virtual TInt TestDDeclareItemAutoL( CStifItemParser& aItem ); |
|
297 |
|
298 /** |
|
299 * TestDLayoutL test function for testing the |
|
300 * Layout function |
|
301 * @since S60 5.0 |
|
302 * @param aItem never used |
|
303 * @return Symbian OS error code. |
|
304 */ |
|
305 virtual TInt TestDLayoutL( CStifItemParser& aItem ); |
|
306 |
|
307 /** |
|
308 * TestDPreferredSizeL test function for testing the |
|
309 * PreferredSize function |
|
310 * @since S60 5.0 |
|
311 * @param aItem never used |
|
312 * @return Symbian OS error code. |
|
313 */ |
|
314 virtual TInt TestDPreferredSizeL( CStifItemParser& aItem ); |
|
315 |
|
316 /** |
|
317 * TestDCreateLineByTypeL test function for testing the |
|
318 * CreateLineByTypeL function |
|
319 * @since S60 5.0 |
|
320 * @param aItem never used |
|
321 * @return Symbian OS error code. |
|
322 */ |
|
323 virtual TInt TestDCreateLineByTypeL( CStifItemParser& aItem ); |
|
324 |
|
325 /** |
|
326 * TestDCreateLineByTypeL test function for testing the |
|
327 * CreateLineByTypeL function |
|
328 * @since S60 5.0 |
|
329 * @param aItem never used |
|
330 * @return Symbian OS error code. |
|
331 */ |
|
332 virtual TInt TestDCreateLineByTypePageIdL( CStifItemParser& aItem ); |
|
333 |
|
334 /** |
|
335 * TestDSetControlCaptionTextL test function for testing the |
|
336 * SetControlCaptionL function with PageId |
|
337 * @since S60 5.0 |
|
338 * @param aItem never used |
|
339 * @return Symbian OS error code. |
|
340 */ |
|
341 virtual TInt TestDSetControlCaptionTextL( CStifItemParser& aItem ); |
|
342 |
|
343 /** |
|
344 * TestDSetControlCaptionResourceIdL test function for testing the |
|
345 * SetControlCaptionL function with aText |
|
346 * @since S60 5.0 |
|
347 * @param aItem never used |
|
348 * @return Symbian OS error code. |
|
349 */ |
|
350 virtual TInt TestDSetControlCaptionResourceIdL( CStifItemParser& aItem ); |
|
351 |
|
352 /** |
|
353 * TestDControlCaptionL test function for testing the |
|
354 * ControlCaption function with aResourceId |
|
355 * @since S60 5.0 |
|
356 * @param aItem never used |
|
357 * @return Symbian OS error code. |
|
358 */ |
|
359 virtual TInt TestDControlCaptionL( CStifItemParser& aItem ); |
|
360 |
|
361 /** |
|
362 * TestDControlL test function for testing the |
|
363 * Control function |
|
364 * @since S60 5.0 |
|
365 * @param aItem never used |
|
366 * @return Symbian OS error code. |
|
367 */ |
|
368 virtual TInt TestDControlL( CStifItemParser& aItem ); |
|
369 |
|
370 /** |
|
371 * TestDControlOrNullL test function for testing the |
|
372 * ControlOrNull function |
|
373 * @since S60 5.0 |
|
374 * @param aItem never used |
|
375 * @return Symbian OS error code. |
|
376 */ |
|
377 virtual TInt TestDControlOrNullL( CStifItemParser& aItem ); |
|
378 |
|
379 /** |
|
380 * TestDButtonGroupContainerL test function for testing the |
|
381 * ButtonGroupContainer function |
|
382 * @since S60 5.0 |
|
383 * @param aItem never used |
|
384 * @return Symbian OS error code. |
|
385 */ |
|
386 virtual TInt TestDButtonGroupContainerL( CStifItemParser& aItem ); |
|
387 |
|
388 /** |
|
389 * TestDTitleL test function for testing the |
|
390 * Title function |
|
391 * @since S60 5.0 |
|
392 * @param aItem never used |
|
393 * @return Symbian OS error code. |
|
394 */ |
|
395 virtual TInt TestDTitleL( CStifItemParser& aItem ); |
|
396 |
|
397 /** |
|
398 * TestDActivePageIdL test function for testing the |
|
399 * ActivePageId function |
|
400 * @since S60 5.0 |
|
401 * @param aItem never used |
|
402 * @return Symbian OS error code. |
|
403 */ |
|
404 virtual TInt TestDActivePageIdL( CStifItemParser& aItem ); |
|
405 |
|
406 /** |
|
407 * TestDActivateFirstPageL test function for testing the |
|
408 * ActivateFirstPageL function |
|
409 * @since S60 5.0 |
|
410 * @param aItem never used |
|
411 * @return Symbian OS error code. |
|
412 */ |
|
413 virtual TInt TestDActivateFirstPageL( CStifItemParser& aItem ); |
|
414 |
|
415 /** |
|
416 * TestDSetEditableL test function for testing the |
|
417 * SetEditableL function |
|
418 * @since S60 5.0 |
|
419 * @param aItem never used |
|
420 * @return Symbian OS error code. |
|
421 */ |
|
422 virtual TInt TestDSetEditableL( CStifItemParser& aItem ); |
|
423 |
|
424 /** |
|
425 * TestDIsEditableL test function for testing the |
|
426 * IsEditable function |
|
427 * @since S60 5.0 |
|
428 * @param aItem never used |
|
429 * @return Symbian OS error code. |
|
430 */ |
|
431 virtual TInt TestDIsEditableL( CStifItemParser& aItem ); |
|
432 |
|
433 /** |
|
434 * TestDOfferKeyEventL test function for testing the |
|
435 * OfferKeyEventL function |
|
436 * @since S60 5.0 |
|
437 * @param aItem never used |
|
438 * @return Symbian OS error code. |
|
439 */ |
|
440 virtual TInt TestDOfferKeyEventL( CStifItemParser& aItem ); |
|
441 |
|
442 /** |
|
443 * TestDFocusChangedL test function for testing the |
|
444 * FocusChanged function |
|
445 * @since S60 5.0 |
|
446 * @param aItem never used |
|
447 * @return Symbian OS error code. |
|
448 */ |
|
449 virtual TInt TestDFocusChangedL( CStifItemParser& aItem ); |
|
450 |
|
451 /** |
|
452 * TestDGetColorUseListL test function for testing the |
|
453 * GetColorUseListL function |
|
454 * @since S60 5.0 |
|
455 * @param aItem never used |
|
456 * @return Symbian OS error code. |
|
457 */ |
|
458 virtual TInt TestDGetColorUseListL( CStifItemParser& aItem ); |
|
459 |
|
460 /** |
|
461 * TestDHandleResourceChangeL test function for testing the |
|
462 * HandleResourceChange function |
|
463 * @since S60 5.0 |
|
464 * @param aItem never used |
|
465 * @return Symbian OS error code. |
|
466 */ |
|
467 virtual TInt TestDHandleResourceChangeL( CStifItemParser& aItem ); |
|
468 |
|
469 /** |
|
470 * TestDInputCapabilitiesL test function for testing the |
|
471 * InputCapabilities function |
|
472 * @since S60 5.0 |
|
473 * @param aItem never used |
|
474 * @return Symbian OS error code. |
|
475 */ |
|
476 virtual TInt TestDInputCapabilitiesL( CStifItemParser& aItem ); |
|
477 |
|
478 /** |
|
479 * TestDMakeVisibleL test function for testing the |
|
480 * MakeVisible function |
|
481 * @since S60 5.0 |
|
482 * @param aItem never used |
|
483 * @return Symbian OS error code. |
|
484 */ |
|
485 virtual TInt TestDMakeVisibleL( CStifItemParser& aItem ); |
|
486 |
|
487 /** |
|
488 * TestDHandlePointerEventL test function for testing the |
|
489 * HandlePointerEventL function |
|
490 * @since S60 5.0 |
|
491 * @param aItem never used |
|
492 * @return Symbian OS error code. |
|
493 */ |
|
494 virtual TInt TestDHandlePointerEventL( CStifItemParser& aItem ); |
|
495 |
|
496 /** |
|
497 * TestDPrepareForFocusTransitionL test function for testing the |
|
498 * PrepareForFocusTransitionL function |
|
499 * @since S60 5.0 |
|
500 * @param aItem never used |
|
501 * @return Symbian OS error code. |
|
502 */ |
|
503 virtual TInt TestDPrepareForFocusTransitionL( CStifItemParser& aItem ); |
|
504 |
|
505 /** |
|
506 * TestDPageChangedL test function for testing the |
|
507 * PageChangedL function |
|
508 * @since S60 5.0 |
|
509 * @param aItem never used |
|
510 * @return Symbian OS error code. |
|
511 */ |
|
512 virtual TInt TestDPageChangedL( CStifItemParser& aItem ); |
|
513 |
|
514 /** |
|
515 * TestDLineChangedL test function for testing the |
|
516 * LineChangedL function |
|
517 * @since S60 5.0 |
|
518 * @param aItem never used |
|
519 * @return Symbian OS error code. |
|
520 */ |
|
521 virtual TInt TestDLineChangedL( CStifItemParser& aItem ); |
|
522 |
|
523 /** |
|
524 * TestDCreateCustomControlL test function for testing the |
|
525 * CreateCustomControlL function |
|
526 * @since S60 5.0 |
|
527 * @param aItem never used |
|
528 * @return Symbian OS error code. |
|
529 */ |
|
530 virtual TInt TestDCreateCustomControlL( CStifItemParser& aItem ); |
|
531 |
|
532 /** |
|
533 * TestDConvertCustomControlTypeToBaseControlTypeL test function for testing the |
|
534 * ConvertCustomControlTypeToBaseControlType function |
|
535 * @since S60 5.0 |
|
536 * @param aItem never used |
|
537 * @return Symbian OS error code. |
|
538 */ |
|
539 virtual TInt TestDConvertCustomControlTypeToBaseControlTypeL( CStifItemParser& aItem ); |
|
540 |
|
541 /** |
|
542 * TestDGetCustomAutoValueL test function for testing the |
|
543 * GetCustomAutoValue function |
|
544 * @since S60 5.0 |
|
545 * @param aItem never used |
|
546 * @return Symbian OS error code. |
|
547 */ |
|
548 virtual TInt TestDGetCustomAutoValueL( CStifItemParser& aItem ); |
|
549 |
|
550 /** |
|
551 * TestDPrepareContextL test function for testing the |
|
552 * PrepareContext function |
|
553 * @since S60 5.0 |
|
554 * @param aItem never used |
|
555 * @return Symbian OS error code. |
|
556 */ |
|
557 virtual TInt TestDPrepareContextL( CStifItemParser& aItem ); |
|
558 |
|
559 /** |
|
560 * TestDWriteInternalStateL test function for testing the |
|
561 * WriteInternalStateL function |
|
562 * @since S60 5.0 |
|
563 * @param aItem never used |
|
564 * @return Symbian OS error code. |
|
565 */ |
|
566 virtual TInt TestDWriteInternalStateL( CStifItemParser& aItem ); |
|
567 |
|
568 /** |
|
569 * TestDCountComponentControlsL test function for testing the |
|
570 * CountComponentControls function |
|
571 * @since S60 5.0 |
|
572 * @param aItem never used |
|
573 * @return Symbian OS error code. |
|
574 */ |
|
575 virtual TInt TestDCountComponentControlsL( CStifItemParser& aItem ); |
|
576 |
|
577 /** |
|
578 * TestDComponentControlL test function for testing the |
|
579 * ComponentControl function |
|
580 * @since S60 5.0 |
|
581 * @param aItem never used |
|
582 * @return Symbian OS error code. |
|
583 */ |
|
584 virtual TInt TestDComponentControlL( CStifItemParser& aItem ); |
|
585 |
|
586 /** |
|
587 * TestDGetNumberOfLinesOnPageL test function for testing the |
|
588 * GetNumberOfLinesOnPage function |
|
589 * @since S60 5.0 |
|
590 * @param aItem never used |
|
591 * @return Symbian OS error code. |
|
592 */ |
|
593 virtual TInt TestDGetNumberOfLinesOnPageL( CStifItemParser& aItem ); |
|
594 |
|
595 /** |
|
596 * TestDGetNumberOfPagesL test function for testing the |
|
597 * GetNumberOfPages function |
|
598 * @since S60 5.0 |
|
599 * @param aItem never used |
|
600 * @return Symbian OS error code. |
|
601 */ |
|
602 virtual TInt TestDGetNumberOfPagesL( CStifItemParser& aItem ); |
|
603 |
|
604 /** |
|
605 * TestDGetLineByLineAndPageIndexL test function for testing the |
|
606 * GetLineByLineAndPageIndex function |
|
607 * @since S60 5.0 |
|
608 * @param aItem never used |
|
609 * @return Symbian OS error code. |
|
610 */ |
|
611 virtual TInt TestDGetLineByLineAndPageIndexL( CStifItemParser& aItem ); |
|
612 |
|
613 /** |
|
614 * TestDHandleControlEventL test function for testing the |
|
615 * HandleControlEventL function |
|
616 * @since S60 5.0 |
|
617 * @param aItem never used |
|
618 * @return Symbian OS error code. |
|
619 */ |
|
620 virtual TInt TestDHandleControlEventL( CStifItemParser& aItem ); |
|
621 |
|
622 /** |
|
623 * TestDTryExitL test function for testing the |
|
624 * TryExitL function |
|
625 * @since S60 5.0 |
|
626 * @param aItem never used |
|
627 * @return Symbian OS error code. |
|
628 */ |
|
629 virtual TInt TestDTryExitL( CStifItemParser& aItem ); |
|
630 |
|
631 /** |
|
632 * TestDAdjustAllIdsOnPageL test function for testing the |
|
633 * AdjustAllIdsOnPage function |
|
634 * @since S60 5.0 |
|
635 * @param aItem never used |
|
636 * @return Symbian OS error code. |
|
637 */ |
|
638 virtual TInt TestDAdjustAllIdsOnPageL( CStifItemParser& aItem ); |
|
639 |
|
640 /** |
|
641 * TestDConstructSleepingDialogL test function for testing the |
|
642 * ConstructSleepingDialogL function |
|
643 * @since S60 5.0 |
|
644 * @param aItem never used |
|
645 * @return Symbian OS error code. |
|
646 */ |
|
647 virtual TInt TestDConstructSleepingDialogL( CStifItemParser& aItem ); |
|
648 |
|
649 /** |
|
650 * TestDConstructSleepingAlertDialogL test function for testing the |
|
651 * ConstructSleepingAlertDialogL function |
|
652 * @since S60 5.0 |
|
653 * @param aItem never used |
|
654 * @return Symbian OS error code. |
|
655 */ |
|
656 virtual TInt TestDConstructSleepingAlertDialogL( CStifItemParser& aItem ); |
|
657 |
|
658 /** |
|
659 * TestDRouseSleepingDialogL test function for testing the |
|
660 * RouseSleepingDialog function |
|
661 * @since S60 5.0 |
|
662 * @param aItem never used |
|
663 * @return Symbian OS error code. |
|
664 */ |
|
665 virtual TInt TestDRouseSleepingDialogL( CStifItemParser& aItem ); |
|
666 |
|
667 /** |
|
668 * TestDExitSleepingDialogL test function for testing the |
|
669 * ExitSleepingDialog function |
|
670 * @since S60 5.0 |
|
671 * @param aItem never used |
|
672 * @return Symbian OS error code. |
|
673 */ |
|
674 virtual TInt TestDExitSleepingDialogL( CStifItemParser& aItem ); |
|
675 |
|
676 /** |
|
677 * TestDIdOfFocusControlL test function for testing the |
|
678 * IdOfFocusControl function |
|
679 * @since S60 5.0 |
|
680 * @param aItem never used |
|
681 * @return Symbian OS error code. |
|
682 */ |
|
683 virtual TInt TestDIdOfFocusControlL( CStifItemParser& aItem ); |
|
684 |
|
685 /** |
|
686 * TestDFindLineIndexL test function for testing the |
|
687 * FindLineIndex function |
|
688 * @since S60 5.0 |
|
689 * @param aItem never used |
|
690 * @return Symbian OS error code. |
|
691 */ |
|
692 virtual TInt TestDFindLineIndexL( CStifItemParser& aItem ); |
|
693 |
|
694 /** |
|
695 * TestDLineL test function for testing the |
|
696 * Line function |
|
697 * @since S60 5.0 |
|
698 * @param aItem never used |
|
699 * @return Symbian OS error code. |
|
700 */ |
|
701 virtual TInt TestDLineL( CStifItemParser& aItem ); |
|
702 |
|
703 /** |
|
704 * TestDCurrentLineL test function for testing the |
|
705 * CurrentLine function |
|
706 * @since S60 5.0 |
|
707 * @param aItem never used |
|
708 * @return Symbian OS error code. |
|
709 */ |
|
710 virtual TInt TestDCurrentLineL( CStifItemParser& aItem ); |
|
711 |
|
712 /** |
|
713 * TestDRotateFocusByL test function for testing the |
|
714 * RotateFocusByL function |
|
715 * @since S60 5.0 |
|
716 * @param aItem never used |
|
717 * @return Symbian OS error code. |
|
718 */ |
|
719 virtual TInt TestDRotateFocusByL( CStifItemParser& aItem ); |
|
720 |
|
721 /** |
|
722 * TestDActivePageIndexL test function for testing the |
|
723 * ActivePageIndex function |
|
724 * @since S60 5.0 |
|
725 * @param aItem never used |
|
726 * @return Symbian OS error code. |
|
727 */ |
|
728 virtual TInt TestDActivePageIndexL( CStifItemParser& aItem ); |
|
729 |
|
730 /** |
|
731 * TestDResetLineMinimumSizesL test function for testing the |
|
732 * ResetLineMinimumSizes function |
|
733 * @since S60 5.0 |
|
734 * @param aItem never used |
|
735 * @return Symbian OS error code. |
|
736 */ |
|
737 virtual TInt TestDResetLineMinimumSizesL( CStifItemParser& aItem ); |
|
738 |
|
739 /** |
|
740 * TestDSwapButtonGroupContainerL test function for testing the |
|
741 * SwapButtonGroupContainer function |
|
742 * @since S60 5.0 |
|
743 * @param aItem never used |
|
744 * @return Symbian OS error code. |
|
745 */ |
|
746 virtual TInt TestDSwapButtonGroupContainerL( CStifItemParser& aItem ); |
|
747 |
|
748 /** |
|
749 * TestDButtonCommandObserverL test function for testing the |
|
750 * ButtonCommandObserver function |
|
751 * @since S60 5.0 |
|
752 * @param aItem never used |
|
753 * @return Symbian OS error code. |
|
754 */ |
|
755 virtual TInt TestDButtonCommandObserverL( CStifItemParser& aItem ); |
|
756 |
|
757 /** |
|
758 * TestDOkToExitL test function for testing the |
|
759 * OkToExitL function |
|
760 * @since S60 5.0 |
|
761 * @param aItem never used |
|
762 * @return Symbian OS error code. |
|
763 */ |
|
764 virtual TInt TestDOkToExitL( CStifItemParser& aItem ); |
|
765 |
|
766 /** |
|
767 * TestDPreLayoutDynInitL test function for testing the |
|
768 * PreLayoutDynInitL function |
|
769 * @since S60 5.0 |
|
770 * @param aItem never used |
|
771 * @return Symbian OS error code. |
|
772 */ |
|
773 virtual TInt TestDPreLayoutDynInitL( CStifItemParser& aItem ); |
|
774 |
|
775 /** |
|
776 * TestDPostLayoutDynInitL test function for testing the |
|
777 * PostLayoutDynInitL function |
|
778 * @since S60 5.0 |
|
779 * @param aItem never used |
|
780 * @return Symbian OS error code. |
|
781 */ |
|
782 virtual TInt TestDPostLayoutDynInitL( CStifItemParser& aItem ); |
|
783 |
|
784 /** |
|
785 * TestDSetInitialCurrentLineL test function for testing the |
|
786 * SetInitialCurrentLine function |
|
787 * @since S60 5.0 |
|
788 * @param aItem never used |
|
789 * @return Symbian OS error code. |
|
790 */ |
|
791 virtual TInt TestDSetInitialCurrentLineL( CStifItemParser& aItem ); |
|
792 |
|
793 /** |
|
794 * TestDHandleControlStateChangeL test function for testing the |
|
795 * HandleControlStateChangeL function |
|
796 * @since S60 5.0 |
|
797 * @param aItem never used |
|
798 * @return Symbian OS error code. |
|
799 */ |
|
800 virtual TInt TestDHandleControlStateChangeL( CStifItemParser& aItem ); |
|
801 |
|
802 /** |
|
803 * TestDHandleInteractionRefusedL test function for testing the |
|
804 * HandleInteractionRefused function |
|
805 * @since S60 5.0 |
|
806 * @param aItem never used |
|
807 * @return Symbian OS error code. |
|
808 */ |
|
809 virtual TInt TestDHandleInteractionRefusedL( CStifItemParser& aItem ); |
|
810 |
|
811 /** |
|
812 * TestDSetSizeAndPositionL test function for testing the |
|
813 * SetSizeAndPosition function |
|
814 * @since S60 5.0 |
|
815 * @param aItem never used |
|
816 * @return Symbian OS error code. |
|
817 */ |
|
818 virtual TInt TestDSetSizeAndPositionL( CStifItemParser& aItem ); |
|
819 |
|
820 /** |
|
821 * TestDBorderStyleL test function for testing the |
|
822 * BorderStyle function |
|
823 * @since S60 5.0 |
|
824 * @param aItem never used |
|
825 * @return Symbian OS error code. |
|
826 */ |
|
827 virtual TInt TestDBorderStyleL( CStifItemParser& aItem ); |
|
828 |
|
829 /** |
|
830 * TestDMappedCommandIdL test function for testing the |
|
831 * MappedCommandId function |
|
832 * @since S60 5.0 |
|
833 * @param aItem never used |
|
834 * @return Symbian OS error code. |
|
835 */ |
|
836 virtual TInt TestDMappedCommandIdL( CStifItemParser& aItem ); |
|
837 |
|
838 /** |
|
839 * TestDFormFlagsFromActivePageL test function for testing the |
|
840 * FormFlagsFromActivePage function |
|
841 * @since S60 5.0 |
|
842 * @param aItem never used |
|
843 * @return Symbian OS error code. |
|
844 */ |
|
845 virtual TInt TestDFormFlagsFromActivePageL( CStifItemParser& aItem ); |
|
846 |
|
847 /** |
|
848 * TestDGetFirstLineOnFirstPageOrNullL test function for testing the |
|
849 * GetFirstLineOnFirstPageOrNull function |
|
850 * @since S60 5.0 |
|
851 * @param aItem never used |
|
852 * @return Symbian OS error code. |
|
853 */ |
|
854 virtual TInt TestDGetFirstLineOnFirstPageOrNullL( CStifItemParser& aItem ); |
|
855 |
|
856 /** |
|
857 * TestDControlsOnPageL test function for testing the |
|
858 * ControlsOnPage function |
|
859 * @since S60 5.0 |
|
860 * @param aItem never used |
|
861 * @return Symbian OS error code. |
|
862 */ |
|
863 virtual TInt TestDControlsOnPageL( CStifItemParser& aItem ); |
|
864 |
|
865 /** |
|
866 * TestDMopSupplyObjectL test function for testing the |
|
867 * MopSupplyObject function |
|
868 * @since S60 5.0 |
|
869 * @param aItem never used |
|
870 * @return Symbian OS error code. |
|
871 */ |
|
872 virtual TInt TestDMopSupplyObjectL( CStifItemParser& aItem ); |
|
873 |
|
874 /** |
|
875 * TestDExtensionL test function for testing the |
|
876 * Extension function |
|
877 * @since S60 5.0 |
|
878 * @param aItem never used |
|
879 * @return Symbian OS error code. |
|
880 */ |
|
881 virtual TInt TestDExtensionL( CStifItemParser& aItem ); |
|
882 |
|
883 /** |
|
884 * TestDDialogFlagsL test function for testing the |
|
885 * DialogFlags function |
|
886 * @since S60 5.0 |
|
887 * @param aItem never used |
|
888 * @return Symbian OS error code. |
|
889 */ |
|
890 virtual TInt TestDDialogFlagsL( CStifItemParser& aItem ); |
|
891 |
|
892 /** |
|
893 * TestDDeclareAutoTextEditorL test function for testing the |
|
894 * DeclareAutoTextEditorL function |
|
895 * @since S60 5.0 |
|
896 * @param aItem never used |
|
897 * @return Symbian OS error code. |
|
898 */ |
|
899 virtual TInt TestDDeclareAutoTextEditorL( CStifItemParser& aItem ); |
|
900 |
|
901 /** |
|
902 * TestDDeclareAutoNumberEditorL test function for testing the |
|
903 * DeclareAutoNumberEditor function |
|
904 * @since S60 5.0 |
|
905 * @param aItem never used |
|
906 * @return Symbian OS error code. |
|
907 */ |
|
908 virtual TInt TestDDeclareAutoNumberEditorL( CStifItemParser& aItem ); |
|
909 |
|
910 /** |
|
911 * TestDDeclareAutoRangeEditorL test function for testing the |
|
912 * DeclareAutoRangeEditor function |
|
913 * @since S60 5.0 |
|
914 * @param aItem never used |
|
915 * @return Symbian OS error code. |
|
916 */ |
|
917 virtual TInt TestDDeclareAutoRangeEditorL( CStifItemParser& aItem ); |
|
918 |
|
919 /** |
|
920 * TestDDeclareAutoTimeEditorL test function for testing the |
|
921 * DeclareAutoTimeEditor function |
|
922 * @since S60 5.0 |
|
923 * @param aItem never used |
|
924 * @return Symbian OS error code. |
|
925 */ |
|
926 virtual TInt TestDDeclareAutoTimeEditorL( CStifItemParser& aItem ); |
|
927 |
|
928 /** |
|
929 * TestDDeclareAutoDateEditorL test function for testing the |
|
930 * DeclareAutoDateEditor function |
|
931 * @since S60 5.0 |
|
932 * @param aItem never used |
|
933 * @return Symbian OS error code. |
|
934 */ |
|
935 virtual TInt TestDDeclareAutoDateEditorL( CStifItemParser& aItem ); |
|
936 |
|
937 /** |
|
938 * TestDDeclareAutoTimeAndDateEditorL test function for testing the |
|
939 * DeclareAutoTimeAndDateEditor function |
|
940 * @since S60 5.0 |
|
941 * @param aItem never used |
|
942 * @return Symbian OS error code. |
|
943 */ |
|
944 virtual TInt TestDDeclareAutoTimeAndDateEditorL( CStifItemParser& aItem ); |
|
945 |
|
946 /** |
|
947 * TestDDeclareAutoDurationEditorL test function for testing the |
|
948 * DeclareAutoDurationEditor function |
|
949 * @since S60 5.0 |
|
950 * @param aItem never used |
|
951 * @return Symbian OS error code. |
|
952 */ |
|
953 virtual TInt TestDDeclareAutoDurationEditorL( CStifItemParser& aItem ); |
|
954 |
|
955 /** |
|
956 * TestDDeclareAutoTimeOffsetEditorL test function for testing the |
|
957 * DeclareAutoTimeOffsetEditor function |
|
958 * @since S60 5.0 |
|
959 * @param aItem never used |
|
960 * @return Symbian OS error code. |
|
961 */ |
|
962 virtual TInt TestDDeclareAutoTimeOffsetEditorL( CStifItemParser& aItem ); |
|
963 |
|
964 /** |
|
965 * TestDDeclareAutoFixedPointEditorL test function for testing the |
|
966 * DeclareAutoFixedPointEditor function |
|
967 * @since S60 5.0 |
|
968 * @param aItem never used |
|
969 * @return Symbian OS error code. |
|
970 */ |
|
971 virtual TInt TestDDeclareAutoFixedPointEditorL( CStifItemParser& aItem ); |
|
972 |
|
973 /** |
|
974 * TestDDeclareAutoSecretEditorL test function for testing the |
|
975 * DeclareAutoSecretEditor function |
|
976 * @since S60 5.0 |
|
977 * @param aItem never used |
|
978 * @return Symbian OS error code. |
|
979 */ |
|
980 virtual TInt TestDDeclareAutoSecretEditorL( CStifItemParser& aItem ); |
|
981 |
|
982 /** |
|
983 * TestDAddAutoTextEditorL test function for testing the |
|
984 * AddAutoTextEditorL function |
|
985 * @since S60 5.0 |
|
986 * @param aItem never used |
|
987 * @return Symbian OS error code. |
|
988 */ |
|
989 virtual TInt TestDAddAutoTextEditorL( CStifItemParser& aItem ); |
|
990 |
|
991 /** |
|
992 * TestDAddAutoGlobalTextEditorL test function for testing the |
|
993 * AddAutoGlobalTextEditorL function |
|
994 * @since S60 5.0 |
|
995 * @param aItem never used |
|
996 * @return Symbian OS error code. |
|
997 */ |
|
998 virtual TInt TestDAddAutoGlobalTextEditorL( CStifItemParser& aItem ); |
|
999 |
|
1000 /** |
|
1001 * TestDAddAutoRichTextEditorL test function for testing the |
|
1002 * AddAutoRichTextEditorL function |
|
1003 * @since S60 5.0 |
|
1004 * @param aItem never used |
|
1005 * @return Symbian OS error code. |
|
1006 */ |
|
1007 virtual TInt TestDAddAutoRichTextEditorL( CStifItemParser& aItem ); |
|
1008 |
|
1009 /** |
|
1010 * TestDAddAutoNumberEditorL test function for testing the |
|
1011 * AddAutoNumberEditorL function |
|
1012 * @since S60 5.0 |
|
1013 * @param aItem never used |
|
1014 * @return Symbian OS error code. |
|
1015 */ |
|
1016 virtual TInt TestDAddAutoNumberEditorL( CStifItemParser& aItem ); |
|
1017 |
|
1018 /** |
|
1019 * TestDAddAutoRangeEditorL test function for testing the |
|
1020 * AddAutoRangeEditorL function |
|
1021 * @since S60 5.0 |
|
1022 * @param aItem never used |
|
1023 * @return Symbian OS error code. |
|
1024 */ |
|
1025 virtual TInt TestDAddAutoRangeEditorL( CStifItemParser& aItem ); |
|
1026 |
|
1027 /** |
|
1028 * TestDAddAutoTimeEditorL test function for testing the |
|
1029 * AddAutoTimeEditorL function |
|
1030 * @since S60 5.0 |
|
1031 * @param aItem never used |
|
1032 * @return Symbian OS error code. |
|
1033 */ |
|
1034 virtual TInt TestDAddAutoTimeEditorL( CStifItemParser& aItem ); |
|
1035 |
|
1036 /** |
|
1037 * TestDAddAutoDateEditorL test function for testing the |
|
1038 * AddAutoDateEditorL function |
|
1039 * @since S60 5.0 |
|
1040 * @param aItem never used |
|
1041 * @return Symbian OS error code. |
|
1042 */ |
|
1043 virtual TInt TestDAddAutoDateEditorL( CStifItemParser& aItem ); |
|
1044 |
|
1045 /** |
|
1046 * TestDAddAutoTimeAndDateEditorL test function for testing the |
|
1047 * AddAutoTimeAndDateEditorL function |
|
1048 * @since S60 5.0 |
|
1049 * @param aItem never used |
|
1050 * @return Symbian OS error code. |
|
1051 */ |
|
1052 virtual TInt TestDAddAutoTimeAndDateEditorL( CStifItemParser& aItem ); |
|
1053 |
|
1054 /** |
|
1055 * TestDAddAutoDurationEditorL test function for testing the |
|
1056 * AddAutoDurationEditorL function |
|
1057 * @since S60 5.0 |
|
1058 * @param aItem never used |
|
1059 * @return Symbian OS error code. |
|
1060 */ |
|
1061 virtual TInt TestDAddAutoDurationEditorL( CStifItemParser& aItem ); |
|
1062 |
|
1063 /** |
|
1064 * TestDAddAutoTimeOffsetEditorL test function for testing the |
|
1065 * AddAutoTimeOffsetEditorL function |
|
1066 * @since S60 5.0 |
|
1067 * @param aItem never used |
|
1068 * @return Symbian OS error code. |
|
1069 */ |
|
1070 virtual TInt TestDAddAutoTimeOffsetEditorL( CStifItemParser& aItem ); |
|
1071 |
|
1072 /** |
|
1073 * TestDAddAutoFloatEditorL test function for testing the |
|
1074 * AddAutoFloatEditorL function |
|
1075 * @since S60 5.0 |
|
1076 * @param aItem never used |
|
1077 * @return Symbian OS error code. |
|
1078 */ |
|
1079 virtual TInt TestDAddAutoFloatEditorL( CStifItemParser& aItem ); |
|
1080 |
|
1081 /** |
|
1082 * TestDAddAutoFixedPointEditorL test function for testing the |
|
1083 * AddAutoFixedPointEditorL function |
|
1084 * @since S60 5.0 |
|
1085 * @param aItem never used |
|
1086 * @return Symbian OS error code. |
|
1087 */ |
|
1088 virtual TInt TestDAddAutoFixedPointEditorL( CStifItemParser& aItem ); |
|
1089 |
|
1090 /** |
|
1091 * TestDAddAutoSecretEditorL test function for testing the |
|
1092 * AddAutoSecretEditorL function |
|
1093 * @since S60 5.0 |
|
1094 * @param aItem never used |
|
1095 * @return Symbian OS error code. |
|
1096 */ |
|
1097 virtual TInt TestDAddAutoSecretEditorL( CStifItemParser& aItem ); |
|
1098 |
|
1099 /** |
|
1100 * TestDSetLabelByDesL test function for testing the |
|
1101 * SetLabelL function by Des |
|
1102 * @since S60 5.0 |
|
1103 * @param aItem never used |
|
1104 * @return Symbian OS error code. |
|
1105 */ |
|
1106 virtual TInt TestDSetLabelByDesL( CStifItemParser& aItem ); |
|
1107 |
|
1108 /** |
|
1109 * TestDSetLabelByResourceIdL test function for testing the |
|
1110 * SetLabelL function by ResourceId |
|
1111 * @since S60 5.0 |
|
1112 * @param aItem never used |
|
1113 * @return Symbian OS error code. |
|
1114 */ |
|
1115 virtual TInt TestDSetLabelByResourceIdL( CStifItemParser& aItem ); |
|
1116 |
|
1117 /** |
|
1118 * TestDSetLabelReserveLengthL test function for testing the |
|
1119 * SetLabelReserveLengthL function |
|
1120 * @since S60 5.0 |
|
1121 * @param aItem never used |
|
1122 * @return Symbian OS error code. |
|
1123 */ |
|
1124 virtual TInt TestDSetLabelReserveLengthL( CStifItemParser& aItem ); |
|
1125 |
|
1126 /** |
|
1127 * TestDSetEdwinTextL test function for testing the |
|
1128 * SetEdwinTextL function |
|
1129 * @since S60 5.0 |
|
1130 * @param aItem never used |
|
1131 * @return Symbian OS error code. |
|
1132 */ |
|
1133 virtual TInt TestDSetEdwinTextL( CStifItemParser& aItem ); |
|
1134 |
|
1135 /** |
|
1136 * TestDSetTextEditorTextL test function for testing the |
|
1137 * SetTextEditorTextL function |
|
1138 * @since S60 5.0 |
|
1139 * @param aItem never used |
|
1140 * @return Symbian OS error code. |
|
1141 */ |
|
1142 virtual TInt TestDSetTextEditorTextL( CStifItemParser& aItem ); |
|
1143 |
|
1144 /** |
|
1145 * TestDResetSecretEditorL test function for testing the |
|
1146 * ResetSecretEditor function |
|
1147 * @since S60 5.0 |
|
1148 * @param aItem never used |
|
1149 * @return Symbian OS error code. |
|
1150 */ |
|
1151 virtual TInt TestDResetSecretEditorL( CStifItemParser& aItem ); |
|
1152 |
|
1153 /** |
|
1154 * TestDSetFloatingPointEditorValueL test function for testing the |
|
1155 * SetFloatingPointEditorValueL function |
|
1156 * @since S60 5.0 |
|
1157 * @param aItem never used |
|
1158 * @return Symbian OS error code. |
|
1159 */ |
|
1160 virtual TInt TestDSetFloatingPointEditorValueL( CStifItemParser& aItem ); |
|
1161 |
|
1162 /** |
|
1163 * TestDSetFixedPointEditorValueL test function for testing the |
|
1164 * SetFixedPointEditorValueL function |
|
1165 * @since S60 5.0 |
|
1166 * @param aItem never used |
|
1167 * @return Symbian OS error code. |
|
1168 */ |
|
1169 virtual TInt TestDSetFixedPointEditorValueL( CStifItemParser& aItem ); |
|
1170 |
|
1171 /** |
|
1172 * TestDSetFixedPointEditorDecimalL test function for testing the |
|
1173 * SetFixedPointEditorDecimal function |
|
1174 * @since S60 5.0 |
|
1175 * @param aItem never used |
|
1176 * @return Symbian OS error code. |
|
1177 */ |
|
1178 virtual TInt TestDSetFixedPointEditorDecimalL( CStifItemParser& aItem ); |
|
1179 |
|
1180 /** |
|
1181 * TestDSetNumberEditorMinAndMaxL test function for testing the |
|
1182 * SetNumberEditorMinAndMax function |
|
1183 * @since S60 5.0 |
|
1184 * @param aItem never used |
|
1185 * @return Symbian OS error code. |
|
1186 */ |
|
1187 virtual TInt TestDSetNumberEditorMinAndMaxL( CStifItemParser& aItem ); |
|
1188 |
|
1189 /** |
|
1190 * TestDSetNumberEditorValueL test function for testing the |
|
1191 * SetNumberEditorValue function |
|
1192 * @since S60 5.0 |
|
1193 * @param aItem never used |
|
1194 * @return Symbian OS error code. |
|
1195 */ |
|
1196 virtual TInt TestDSetNumberEditorValueL( CStifItemParser& aItem ); |
|
1197 |
|
1198 /** |
|
1199 * TestDSetFloatEditorMinAndMaxL test function for testing the |
|
1200 * SetFloatEditorMinAndMax function |
|
1201 * @since S60 5.0 |
|
1202 * @param aItem never used |
|
1203 * @return Symbian OS error code. |
|
1204 */ |
|
1205 virtual TInt TestDSetFloatEditorMinAndMaxL( CStifItemParser& aItem ); |
|
1206 |
|
1207 /** |
|
1208 * TestDSetFloatEditorValueL test function for testing the |
|
1209 * SetFloatEditorValueL function |
|
1210 * @since S60 5.0 |
|
1211 * @param aItem never used |
|
1212 * @return Symbian OS error code. |
|
1213 */ |
|
1214 virtual TInt TestDSetFloatEditorValueL( CStifItemParser& aItem ); |
|
1215 |
|
1216 /** |
|
1217 * TestDSetRangeEditorMinAndMaxL test function for testing the |
|
1218 * SetRangeEditorMinAndMax function |
|
1219 * @since S60 5.0 |
|
1220 * @param aItem never used |
|
1221 * @return Symbian OS error code. |
|
1222 */ |
|
1223 virtual TInt TestDSetRangeEditorMinAndMaxL( CStifItemParser& aItem ); |
|
1224 |
|
1225 /** |
|
1226 * TestDSetRangeEditorValueL test function for testing the |
|
1227 * SetRangeEditorValue function |
|
1228 * @since S60 5.0 |
|
1229 * @param aItem never used |
|
1230 * @return Symbian OS error code. |
|
1231 */ |
|
1232 virtual TInt TestDSetRangeEditorValueL( CStifItemParser& aItem ); |
|
1233 |
|
1234 /** |
|
1235 * TestDSetTTimeEditorMinAndMaxL test function for testing the |
|
1236 * SetTTimeEditorMinAndMax function |
|
1237 * @since S60 5.0 |
|
1238 * @param aItem never used |
|
1239 * @return Symbian OS error code. |
|
1240 */ |
|
1241 virtual TInt TestDSetTTimeEditorMinAndMaxL( CStifItemParser& aItem ); |
|
1242 |
|
1243 /** |
|
1244 * TestDSetTTimeEditorValueL test function for testing the |
|
1245 * SetTTimeEditorValue function |
|
1246 * @since S60 5.0 |
|
1247 * @param aItem never used |
|
1248 * @return Symbian OS error code. |
|
1249 */ |
|
1250 virtual TInt TestDSetTTimeEditorValueL( CStifItemParser& aItem ); |
|
1251 |
|
1252 /** |
|
1253 * TestDSetDurationEditorMinAndMaxL test function for testing the |
|
1254 * SetDurationEditorMinAndMax function |
|
1255 * @since S60 5.0 |
|
1256 * @param aItem never used |
|
1257 * @return Symbian OS error code. |
|
1258 */ |
|
1259 virtual TInt TestDSetDurationEditorMinAndMaxL( CStifItemParser& aItem ); |
|
1260 |
|
1261 /** |
|
1262 * TestDSetDurationEditorValueL test function for testing the |
|
1263 * SetDurationEditorValue function |
|
1264 * @since S60 5.0 |
|
1265 * @param aItem never used |
|
1266 * @return Symbian OS error code. |
|
1267 */ |
|
1268 virtual TInt TestDSetDurationEditorValueL( CStifItemParser& aItem ); |
|
1269 |
|
1270 /** |
|
1271 * TestDSetTimeOffsetEditorMinAndMaxL test function for testing the |
|
1272 * SetTimeOffsetEditorMinAndMax function |
|
1273 * @since S60 5.0 |
|
1274 * @param aItem never used |
|
1275 * @return Symbian OS error code. |
|
1276 */ |
|
1277 virtual TInt TestDSetTimeOffsetEditorMinAndMaxL( CStifItemParser& aItem ); |
|
1278 |
|
1279 /** |
|
1280 * TestDSetTimeOffsetEditorValueL test function for testing the |
|
1281 * SetTimeOffsetEditorValue function |
|
1282 * @since S60 5.0 |
|
1283 * @param aItem never used |
|
1284 * @return Symbian OS error code. |
|
1285 */ |
|
1286 virtual TInt TestDSetTimeOffsetEditorValueL( CStifItemParser& aItem ); |
|
1287 |
|
1288 /** |
|
1289 * TestDSetListBoxCurrentItemL test function for testing the |
|
1290 * SetListBoxCurrentItem function |
|
1291 * @since S60 5.0 |
|
1292 * @param aItem never used |
|
1293 * @return Symbian OS error code. |
|
1294 */ |
|
1295 virtual TInt TestDSetListBoxCurrentItemL( CStifItemParser& aItem ); |
|
1296 |
|
1297 /** |
|
1298 * TestDSetFileNameL test function for testing the |
|
1299 * SetFileNameL function |
|
1300 * @since S60 5.0 |
|
1301 * @param aItem never used |
|
1302 * @return Symbian OS error code. |
|
1303 */ |
|
1304 virtual TInt TestDSetFileNameL( CStifItemParser& aItem ); |
|
1305 |
|
1306 /** |
|
1307 * TestDGetLabelTextL test function for testing the |
|
1308 * GetLabelText function |
|
1309 * @since S60 5.0 |
|
1310 * @param aItem never used |
|
1311 * @return Symbian OS error code. |
|
1312 */ |
|
1313 virtual TInt TestDGetLabelTextL( CStifItemParser& aItem ); |
|
1314 |
|
1315 /** |
|
1316 * TestDGetEdwinTextL test function for testing the |
|
1317 * GetEdwinText function |
|
1318 * @since S60 5.0 |
|
1319 * @param aItem never used |
|
1320 * @return Symbian OS error code. |
|
1321 */ |
|
1322 virtual TInt TestDGetEdwinTextL( CStifItemParser& aItem ); |
|
1323 |
|
1324 /** |
|
1325 * TestDGetTextEditorTextL test function for testing the |
|
1326 * GetTextEditorText function |
|
1327 * @since S60 5.0 |
|
1328 * @param aItem never used |
|
1329 * @return Symbian OS error code. |
|
1330 */ |
|
1331 virtual TInt TestDGetTextEditorTextL( CStifItemParser& aItem ); |
|
1332 |
|
1333 /** |
|
1334 * TestDGetSecretEditorTextL test function for testing the |
|
1335 * GetSecretEditorText function |
|
1336 * @since S60 5.0 |
|
1337 * @param aItem never used |
|
1338 * @return Symbian OS error code. |
|
1339 */ |
|
1340 virtual TInt TestDGetSecretEditorTextL( CStifItemParser& aItem ); |
|
1341 |
|
1342 /** |
|
1343 * TestDFloatingPointEditorValueL test function for testing the |
|
1344 * FloatingPointEditorValue function |
|
1345 * @since S60 5.0 |
|
1346 * @param aItem never used |
|
1347 * @return Symbian OS error code. |
|
1348 */ |
|
1349 virtual TInt TestDFloatingPointEditorValueL( CStifItemParser& aItem ); |
|
1350 |
|
1351 /** |
|
1352 * TestDFixedPointEditorValueL test function for testing the |
|
1353 * FixedPointEditorValue function |
|
1354 * @since S60 5.0 |
|
1355 * @param aItem never used |
|
1356 * @return Symbian OS error code. |
|
1357 */ |
|
1358 virtual TInt TestDFixedPointEditorValueL( CStifItemParser& aItem ); |
|
1359 |
|
1360 /** |
|
1361 * TestDFixedPointEditorDecimalL test function for testing the |
|
1362 * FixedPointEditorDecimal function |
|
1363 * @since S60 5.0 |
|
1364 * @param aItem never used |
|
1365 * @return Symbian OS error code. |
|
1366 */ |
|
1367 virtual TInt TestDFixedPointEditorDecimalL( CStifItemParser& aItem ); |
|
1368 |
|
1369 /** |
|
1370 * TestDFloatEditorValueL test function for testing the |
|
1371 * FloatEditorValue function |
|
1372 * @since S60 5.0 |
|
1373 * @param aItem never used |
|
1374 * @return Symbian OS error code. |
|
1375 */ |
|
1376 virtual TInt TestDFloatEditorValueL( CStifItemParser& aItem ); |
|
1377 |
|
1378 /** |
|
1379 * TestDNumberEditorValueL test function for testing the |
|
1380 * NumberEditorValue function |
|
1381 * @since S60 5.0 |
|
1382 * @param aItem never used |
|
1383 * @return Symbian OS error code. |
|
1384 */ |
|
1385 virtual TInt TestDNumberEditorValueL( CStifItemParser& aItem ); |
|
1386 |
|
1387 /** |
|
1388 * TestDRangeEditorValueL test function for testing the |
|
1389 * RangeEditorValue function |
|
1390 * @since S60 5.0 |
|
1391 * @param aItem never used |
|
1392 * @return Symbian OS error code. |
|
1393 */ |
|
1394 virtual TInt TestDRangeEditorValueL( CStifItemParser& aItem ); |
|
1395 |
|
1396 /** |
|
1397 * TestDTTimeEditorValueL test function for testing the |
|
1398 * TTimeEditorValue function |
|
1399 * @since S60 5.0 |
|
1400 * @param aItem never used |
|
1401 * @return Symbian OS error code. |
|
1402 */ |
|
1403 virtual TInt TestDTTimeEditorValueL( CStifItemParser& aItem ); |
|
1404 |
|
1405 /** |
|
1406 * TestDDurationEditorValueL test function for testing the |
|
1407 * DurationEditorValue function |
|
1408 * @since S60 5.0 |
|
1409 * @param aItem never used |
|
1410 * @return Symbian OS error code. |
|
1411 */ |
|
1412 virtual TInt TestDDurationEditorValueL( CStifItemParser& aItem ); |
|
1413 |
|
1414 /** |
|
1415 * TestDTimeOffsetEditorValueL test function for testing the |
|
1416 * TimeOffsetEditorValue function |
|
1417 * @since S60 5.0 |
|
1418 * @param aItem never used |
|
1419 * @return Symbian OS error code. |
|
1420 */ |
|
1421 virtual TInt TestDTimeOffsetEditorValueL( CStifItemParser& aItem ); |
|
1422 |
|
1423 /** |
|
1424 * TestDGetAutoValuesFromPageL test function for testing the |
|
1425 * GetAutoValuesFromPage function |
|
1426 * @since S60 5.0 |
|
1427 * @param aItem never used |
|
1428 * @return Symbian OS error code. |
|
1429 */ |
|
1430 virtual TInt TestDGetAutoValuesFromPageL( CStifItemParser& aItem ); |
|
1431 |
|
1432 /** |
|
1433 * TestDListBoxCurrentItemL test function for testing the |
|
1434 * ListBoxCurrentItem function |
|
1435 * @since S60 5.0 |
|
1436 * @param aItem never used |
|
1437 * @return Symbian OS error code. |
|
1438 */ |
|
1439 virtual TInt TestDListBoxCurrentItemL( CStifItemParser& aItem ); |
|
1440 |
|
1441 /** |
|
1442 * TestDGetFileNameL test function for testing the |
|
1443 * GetFileName function |
|
1444 * @since S60 5.0 |
|
1445 * @param aItem never used |
|
1446 * @return Symbian OS error code. |
|
1447 */ |
|
1448 virtual TInt TestDGetFileNameL( CStifItemParser& aItem ); |
|
1449 |
|
1450 /** |
|
1451 * TestDUpdatePageL test function for testing the |
|
1452 * UpdatePageL function |
|
1453 * @since S60 5.0 |
|
1454 * @param aItem never used |
|
1455 * @return Symbian OS error code. |
|
1456 */ |
|
1457 virtual TInt TestDUpdatePageL( CStifItemParser& aItem ); |
|
1458 |
|
1459 /** |
|
1460 * TestDHandleDialogPageEventL test function for testing the |
|
1461 * HandleDialogPageEventL function |
|
1462 * @since S60 5.0 |
|
1463 * @param aItem never used |
|
1464 * @return Symbian OS error code. |
|
1465 */ |
|
1466 virtual TInt TestDHandleDialogPageEventL( CStifItemParser& aItem ); |
|
1467 |
|
1468 /** |
|
1469 * TestDPublishDialogL test function for testing the |
|
1470 * PublishDialogL function |
|
1471 * @since S60 5.0 |
|
1472 * @param aItem never used |
|
1473 * @return Symbian OS error code. |
|
1474 */ |
|
1475 virtual TInt TestDPublishDialogL( CStifItemParser& aItem ); |
|
1476 |
|
1477 /** |
|
1478 * TestDSetMediatorObserverL test function for testing the |
|
1479 * SetMediatorObserver function |
|
1480 * @since S60 5.0 |
|
1481 * @param aItem never used |
|
1482 * @return Symbian OS error code. |
|
1483 */ |
|
1484 virtual TInt TestDSetMediatorObserverL( CStifItemParser& aItem ); |
|
1485 |
|
1486 /** |
|
1487 * TestDSlideDialogL test function for testing the |
|
1488 * SlideDialog function |
|
1489 * @since S60 5.0 |
|
1490 * @param aItem never used |
|
1491 * @return Symbian OS error code. |
|
1492 */ |
|
1493 virtual TInt TestDSlideDialogL( CStifItemParser& aItem ); |
|
1494 |
|
1495 /** |
|
1496 * TestDSetMultilineQueryL test function for testing the |
|
1497 * SetMultilineQuery function |
|
1498 * @since S60 5.0 |
|
1499 * @param aItem never used |
|
1500 * @return Symbian OS error code. |
|
1501 */ |
|
1502 virtual TInt TestDSetMultilineQueryL( CStifItemParser& aItem ); |
|
1503 |
|
1504 private: // Data |
|
1505 |
|
1506 TInt iOldScreenSaverProperty; |
|
1507 |
|
1508 // Resource file offset |
|
1509 TInt iOffset; |
|
1510 }; |
|
1511 |
|
1512 #endif // C_TESTSDKDIALOGS_H |
|
1513 |
|
1514 // End of File |