|
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 notifiers_api |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef C_TESTSDKNOTIFIERS_H |
|
21 #define C_TESTSDKNOTIFIERS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <stiflogger.h> |
|
25 #include <testscripterinternal.h> |
|
26 #include <stiftestmodule.h> |
|
27 #include <testclassassert.h> |
|
28 |
|
29 class CAknGlobalListMsgQuery; |
|
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( KtestsdknotifiersLogPath, "\\logs\\testframework\\testsdknotifiers\\" ); |
|
38 // Log file |
|
39 _LIT( KtestsdknotifiersLogFile, "testsdknotifiers.txt" ); |
|
40 _LIT( KtestsdknotifiersLogFileWithTitle, "testsdknotifiers_[%S].txt" ); |
|
41 |
|
42 /** |
|
43 * Ctestsdknotifiers test class for STIF Test Framework TestScripter. |
|
44 * @since S60 5.0 |
|
45 */ |
|
46 NONSHARABLE_CLASS(CTestSDKNotifiers) : public CScriptBase |
|
47 { |
|
48 public: // Constructors and destructor |
|
49 |
|
50 /** |
|
51 * Two-phased constructor. |
|
52 */ |
|
53 static CTestSDKNotifiers* NewL( CTestModuleIf& aTestModuleIf ); |
|
54 |
|
55 /** |
|
56 * Destructor. |
|
57 */ |
|
58 virtual ~CTestSDKNotifiers(); |
|
59 |
|
60 public: // Functions from base classes |
|
61 |
|
62 /** |
|
63 * From CScriptBase Runs a script line. |
|
64 * @since S60 5.0 |
|
65 * @param aItem Script line containing method name and parameters |
|
66 * @return Symbian OS error code |
|
67 */ |
|
68 virtual TInt RunMethodL( CStifItemParser& aItem ); |
|
69 |
|
70 private: |
|
71 |
|
72 /** |
|
73 * C++ default constructor. |
|
74 */ |
|
75 CTestSDKNotifiers( CTestModuleIf& aTestModuleIf ); |
|
76 |
|
77 /** |
|
78 * By default Symbian 2nd phase constructor is private. |
|
79 */ |
|
80 void ConstructL(); |
|
81 |
|
82 /** |
|
83 * Frees all resources allocated from test methods. |
|
84 * @since S60 5.0 |
|
85 */ |
|
86 void Delete(); |
|
87 |
|
88 /** |
|
89 * Method used to log version of test class |
|
90 */ |
|
91 void SendTestClassVersion(); |
|
92 |
|
93 //[TestMethods] |
|
94 |
|
95 /* |
|
96 * aknglobalconfirmationquery.h |
|
97 */ |
|
98 private: |
|
99 /** |
|
100 * TestNotifiersCFMQueryNewLL test function for testing the NewL function |
|
101 * @since S60 5.0 |
|
102 * @param aItem never used |
|
103 * @return Symbian OS error code. |
|
104 */ |
|
105 virtual TInt TestNotifiersCFMQueryNewLL( CStifItemParser& /*aItem*/ ); |
|
106 /** |
|
107 * TestNotifiersCFMQueryNewLCL test function for testing the NewLC function |
|
108 * @since S60 5.0 |
|
109 * @param aItem never used |
|
110 * @return Symbian OS error code. |
|
111 */ |
|
112 virtual TInt TestNotifiersCFMQueryNewLCL( CStifItemParser& /*aItem*/ ); |
|
113 /** |
|
114 * TestNotifiersCFMQueryDestructorL test function for testing the Destructor function |
|
115 * @since S60 5.0 |
|
116 * @param aItem never used |
|
117 * @return Symbian OS error code. |
|
118 */ |
|
119 virtual TInt TestNotifiersCFMQueryDestructorL( CStifItemParser& /*aItem*/ ); |
|
120 /** |
|
121 * TestNotifiersCFMQueryShowConfirmationQueryLL test function for testing |
|
122 * the ShowConfirmationQueryL function |
|
123 * @since S60 5.0 |
|
124 * @param aItem never used |
|
125 * @return Symbian OS error code. |
|
126 */ |
|
127 virtual TInt TestNotifiersCFMQueryShowConfirmationQueryLL( CStifItemParser& /*aItem*/ ); |
|
128 /** |
|
129 * TestNotifiersCFMQueryUpdateConfirmationQueryL test function for testing the |
|
130 * UpdateConfirmationQuery function |
|
131 * @since S60 5.0 |
|
132 * @param aItem never used |
|
133 * @return Symbian OS error code. |
|
134 */ |
|
135 virtual TInt TestNotifiersCFMQueryUpdateConfirmationQueryL( CStifItemParser& /*aItem*/ ); |
|
136 /** |
|
137 * TestNotifiersCFMQueryCancelConfirmationQueryL test function for testing the |
|
138 * CancelConfirmationQuery function |
|
139 * @since S60 5.0 |
|
140 * @param aItem never used |
|
141 * @return Symbian OS error code. |
|
142 */ |
|
143 virtual TInt TestNotifiersCFMQueryCancelConfirmationQueryL( CStifItemParser& /*aItem*/ ); |
|
144 /** |
|
145 * TestNotifiersCFMQuerySetImageSkinIdL test function for testing the SetImageSkinId function |
|
146 * @since S60 5.0 |
|
147 * @param aItem never used |
|
148 * @return Symbian OS error code. |
|
149 */ |
|
150 virtual TInt TestNotifiersCFMQuerySetImageSkinIdL( CStifItemParser& /*aItem*/ ); |
|
151 /** |
|
152 * TestNotifiersCFMQuerySetSecondaryDisplayDataL test function for testing |
|
153 * the SetSecondaryDisplayData function |
|
154 * @since S60 5.0 |
|
155 * @param aItem never used |
|
156 * @return Symbian OS error code. |
|
157 */ |
|
158 virtual TInt TestNotifiersCFMQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ ); |
|
159 /* |
|
160 * AknGlobalListQuery.h |
|
161 */ |
|
162 private: |
|
163 /** |
|
164 * TestNotifiersListQueryNewLL test function for testing the NewL function |
|
165 * @since S60 5.0 |
|
166 * @param aItem never used |
|
167 * @return Symbian OS error code. |
|
168 */ |
|
169 virtual TInt TestNotifiersListQueryNewLL( CStifItemParser& /*aItem*/ ); |
|
170 /** |
|
171 * TestNotifiersListQueryNewLCL test function for testing the NewLC function |
|
172 * @since S60 5.0 |
|
173 * @param aItem never used |
|
174 * @return Symbian OS error code. |
|
175 */ |
|
176 virtual TInt TestNotifiersListQueryNewLCL( CStifItemParser& /*aItem*/ ); |
|
177 /** |
|
178 * TestNotifiersListQueryDestructorL test function for testing the Destructor function |
|
179 * @since S60 5.0 |
|
180 * @param aItem never used |
|
181 * @return Symbian OS error code. |
|
182 */ |
|
183 virtual TInt TestNotifiersListQueryDestructorL( CStifItemParser& /*aItem*/ ); |
|
184 /** |
|
185 * TestNotifiersListQueryShowListQueryLL test function for testing the |
|
186 * ShowListQueryL function |
|
187 * @since S60 5.0 |
|
188 * @param aItem never used |
|
189 * @return Symbian OS error code. |
|
190 */ |
|
191 virtual TInt TestNotifiersListQueryShowListQueryLL( CStifItemParser& /*aItem*/ ); |
|
192 /** |
|
193 * TestNotifiersListQueryMoveSelectionUpL test function for testing the |
|
194 * MoveSelectionUp function |
|
195 * @since S60 5.0 |
|
196 * @param aItem never used |
|
197 * @return Symbian OS error code. |
|
198 */ |
|
199 virtual TInt TestNotifiersListQueryMoveSelectionUpL( CStifItemParser& /*aItem*/ ); |
|
200 /** |
|
201 * TestNotifiersListQueryMoveSelectionDownL test function for testing the |
|
202 * MoveSelectionDown function |
|
203 * @since S60 5.0 |
|
204 * @param aItem never used |
|
205 * @return Symbian OS error code. |
|
206 */ |
|
207 virtual TInt TestNotifiersListQueryMoveSelectionDownL( CStifItemParser& /*aItem*/ ); |
|
208 /** |
|
209 * TestNotifiersListQuerySelectItemL test function for testing the SelectItem function |
|
210 * @since S60 5.0 |
|
211 * @param aItem never used |
|
212 * @return Symbian OS error code. |
|
213 */ |
|
214 virtual TInt TestNotifiersListQuerySelectItemL( CStifItemParser& /*aItem*/ ); |
|
215 /** |
|
216 * TestNotifiersListQueryCancelListQueryL test function for testing the |
|
217 * CancelListQuery function |
|
218 * @since S60 5.0 |
|
219 * @param aItem never used |
|
220 * @return Symbian OS error code. |
|
221 */ |
|
222 virtual TInt TestNotifiersListQueryCancelListQueryL( CStifItemParser& /*aItem*/ ); |
|
223 /** |
|
224 * TestNotifiersListQuerySetHeadingLL test function for testing the SetHeadingL |
|
225 * function |
|
226 * @since S60 5.0 |
|
227 * @param aItem never used |
|
228 * @return Symbian OS error code. |
|
229 */ |
|
230 virtual TInt TestNotifiersListQuerySetHeadingLL( CStifItemParser& /*aItem*/ ); |
|
231 /** |
|
232 * TestNotifiersListQuerySetSecondaryDisplayDataL test function for testing the |
|
233 * SetSecondaryDisplayData function |
|
234 * @since S60 5.0 |
|
235 * @param aItem never used |
|
236 * @return Symbian OS error code. |
|
237 */ |
|
238 virtual TInt TestNotifiersListQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ ); |
|
239 /* |
|
240 * aknglobalmsgquery.h |
|
241 */ |
|
242 private: |
|
243 /** |
|
244 * TestNotifiersMsgQueryNewLL test function for testing the NewL function |
|
245 * @since S60 5.0 |
|
246 * @param aItem never used |
|
247 * @return Symbian OS error code. |
|
248 */ |
|
249 virtual TInt TestNotifiersMsgQueryNewLL( CStifItemParser& /*aItem*/ ); |
|
250 /** |
|
251 * TestNotifiersMsgQueryNewLCL test function for testing the NewLC function |
|
252 * @since S60 5.0 |
|
253 * @param aItem never used |
|
254 * @return Symbian OS error code. |
|
255 */ |
|
256 virtual TInt TestNotifiersMsgQueryNewLCL( CStifItemParser& /*aItem*/ ); |
|
257 /** |
|
258 * TestNotifiersMsgQueryDestructorL test function for testing the Destructor |
|
259 * function |
|
260 * @since S60 5.0 |
|
261 * @param aItem never used |
|
262 * @return Symbian OS error code. |
|
263 */ |
|
264 virtual TInt TestNotifiersMsgQueryDestructorL( CStifItemParser& /*aItem*/ ); |
|
265 /** |
|
266 * TestNotifiersMsgQueryShowMsgQueryLL test function for testing the ShowMsgQueryL |
|
267 * function |
|
268 * @since S60 5.0 |
|
269 * @param aItem never used |
|
270 * @return Symbian OS error code. |
|
271 */ |
|
272 virtual TInt TestNotifiersMsgQueryShowMsgQueryLL( CStifItemParser& /*aItem*/ ); |
|
273 /** |
|
274 * TestNotifiersMsgQueryUpdateMsgQueryL test function for testing the UpdateMsgQuery |
|
275 * function |
|
276 * @since S60 5.0 |
|
277 * @param aItem never used |
|
278 * @return Symbian OS error code. |
|
279 */ |
|
280 virtual TInt TestNotifiersMsgQueryUpdateMsgQueryL( CStifItemParser& /*aItem*/ ); |
|
281 /** |
|
282 * TestNotifiersMsgQueryCancelMsgQueryL test function for testing the CancelMsgQuery |
|
283 * function |
|
284 * @since S60 5.0 |
|
285 * @param aItem never used |
|
286 * @return Symbian OS error code. |
|
287 */ |
|
288 virtual TInt TestNotifiersMsgQueryCancelMsgQueryL( CStifItemParser& aItem ); |
|
289 /** |
|
290 * TestNotifiersMsgQuerySetExitDelayL test function for testing the SetExitDelay function |
|
291 * @since S60 5.0 |
|
292 * @param aItem never used |
|
293 * @return Symbian OS error code. |
|
294 */ |
|
295 virtual TInt TestNotifiersMsgQuerySetExitDelayL( CStifItemParser& /*aItem*/ ); |
|
296 /** |
|
297 * TestNotifiersMsgQuerySetImageSkinIdL test function for testing the SetImageSkinId function |
|
298 * @since S60 5.0 |
|
299 * @param aItem never used |
|
300 * @return Symbian OS error code. |
|
301 */ |
|
302 virtual TInt TestNotifiersMsgQuerySetImageSkinIdL( CStifItemParser& /*aItem*/ ); |
|
303 /** |
|
304 * TestNotifiersMsgQuerySetSecondaryDisplayDataL test function for testing the |
|
305 * SetSecondaryDisplayData function |
|
306 * @since S60 5.0 |
|
307 * @param aItem never used |
|
308 * @return Symbian OS error code. |
|
309 */ |
|
310 virtual TInt TestNotifiersMsgQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ ); |
|
311 /** |
|
312 * TestGridsGMSSGVConstuctionL test function for testing the construction function |
|
313 * @since S60 5.0 |
|
314 * @param aItem never used |
|
315 * @return Symbian OS error code. |
|
316 */ |
|
317 /* |
|
318 * AknGlobalNote.h |
|
319 */ |
|
320 private: |
|
321 /** |
|
322 * TestNotifiersNoteNewLL test function for testing the NewL function |
|
323 * @since S60 5.0 |
|
324 * @param aItem never used |
|
325 * @return Symbian OS error code. |
|
326 */ |
|
327 virtual TInt TestNotifiersNoteNewLL( CStifItemParser& /*aItem*/ ); |
|
328 /** |
|
329 * TestNotifiersNoteNewLCL test function for testing the NewLC function |
|
330 * @since S60 5.0 |
|
331 * @param aItem never used |
|
332 * @return Symbian OS error code. |
|
333 */ |
|
334 virtual TInt TestNotifiersNoteNewLCL( CStifItemParser& /*aItem*/ ); |
|
335 /** |
|
336 * TestNotifiersNoteDestructorL test function for testing the Destructor function |
|
337 * @since S60 5.0 |
|
338 * @param aItem never used |
|
339 * @return Symbian OS error code. |
|
340 */ |
|
341 virtual TInt TestNotifiersNoteDestructorL( CStifItemParser& /*aItem*/ ); |
|
342 /** |
|
343 * TestNotifiersNoteSetTextProcessingL test function for testing the |
|
344 * SetTextProcessing function |
|
345 * @since S60 5.0 |
|
346 * @param aItem never used |
|
347 * @return Symbian OS error code. |
|
348 */ |
|
349 virtual TInt TestNotifiersNoteSetTextProcessingL( CStifItemParser& /*aItem*/ ); |
|
350 /** |
|
351 * TestNotifiersNoteShowNoteLL test function for testing the ShowNoteL function |
|
352 * @since S60 5.0 |
|
353 * @param aItem never used |
|
354 * @return Symbian OS error code. |
|
355 */ |
|
356 virtual TInt TestNotifiersNoteShowNoteLL( CStifItemParser& /*aItem*/ ); |
|
357 /** |
|
358 * TestNotifiersNoteShowNoteLStatusL test function for testing the ShowNoteL |
|
359 * function |
|
360 * @since S60 5.0 |
|
361 * @param aItem never used |
|
362 * @return Symbian OS error code. |
|
363 */ |
|
364 virtual TInt TestNotifiersNoteShowNoteLStatusL( CStifItemParser& /*aItem*/ ); |
|
365 /** |
|
366 * TestNotifiersNoteCancelNoteLL test function for testing the CancelNoteL function |
|
367 * @since S60 5.0 |
|
368 * @param aItem never used |
|
369 * @return Symbian OS error code. |
|
370 */ |
|
371 virtual TInt TestNotifiersNoteCancelNoteLL( CStifItemParser& /*aItem*/ ); |
|
372 /** |
|
373 * TestNotifiersNoteSetPriorityL test function for testing the SetPriority function |
|
374 * @since S60 5.0 |
|
375 * @param aItem never used |
|
376 * @return Symbian OS error code. |
|
377 */ |
|
378 virtual TInt TestNotifiersNoteSetPriorityL( CStifItemParser& /*aItem*/ ); |
|
379 /** |
|
380 * TestNotifiersNoteSetSoftkeysL test function for testing the NoteSetSoftkeys function |
|
381 * @since S60 5.0 |
|
382 * @param aItem never used |
|
383 * @return Symbian OS error code. |
|
384 */ |
|
385 virtual TInt TestNotifiersNoteSetSoftkeysL( CStifItemParser& /*aItem*/ ); |
|
386 /** |
|
387 * TestNotifiersNoteSetGraphicL test function for testing the SetGraphic function |
|
388 * @since S60 5.0 |
|
389 * @param aItem never used |
|
390 * @return Symbian OS error code. |
|
391 */ |
|
392 virtual TInt TestNotifiersNoteSetGraphicL( CStifItemParser& /*aItem*/ ); |
|
393 /** |
|
394 * TestNotifiersNoteSetAnimationL test function for testing the SetAnimation function |
|
395 * @since S60 5.0 |
|
396 * @param aItem never used |
|
397 * @return Symbian OS error code. |
|
398 */ |
|
399 virtual TInt TestNotifiersNoteSetAnimationL( CStifItemParser& /*aItem*/ ); |
|
400 /** |
|
401 * TestNotifiersNoteSetToneL test function for testing the SetTone function |
|
402 * @since S60 5.0 |
|
403 * @param aItem never used |
|
404 * @return Symbian OS error code. |
|
405 */ |
|
406 virtual TInt TestNotifiersNoteSetToneL( CStifItemParser& /*aItem*/ ); |
|
407 /** |
|
408 * TestNotifiersNoteDoGlobaNoteBufferLL test function for testing the |
|
409 * DoGlobaNoteBufferL function |
|
410 * @since S60 5.0 |
|
411 * @param aItem never used |
|
412 * @return Symbian OS error code. |
|
413 */ |
|
414 virtual TInt TestNotifiersNoteDoGlobaNoteBufferLL( CStifItemParser& /*aItem*/ ); |
|
415 /* |
|
416 * aknglobalprogressdialog.h |
|
417 */ |
|
418 private: |
|
419 /** |
|
420 * TestNotifiersPGDialogNewLL test function for testing the NewL function |
|
421 * @since S60 5.0 |
|
422 * @param aItem never used |
|
423 * @return Symbian OS error code. |
|
424 */ |
|
425 virtual TInt TestNotifiersPGDialogNewLL( CStifItemParser& /*aItem*/ ); |
|
426 /** |
|
427 * TestNotifiersPGDialogNewLCL test function for testing the NewLC function |
|
428 * @since S60 5.0 |
|
429 * @param aItem never used |
|
430 * @return Symbian OS error code. |
|
431 */ |
|
432 virtual TInt TestNotifiersPGDialogNewLCL( CStifItemParser& /*aItem*/ ); |
|
433 /** |
|
434 * TestNotifiersPGDialogDestructorL test function for testing the Destructor function |
|
435 * @since S60 5.0 |
|
436 * @param aItem never used |
|
437 * @return Symbian OS error code. |
|
438 */ |
|
439 virtual TInt TestNotifiersPGDialogDestructorL( CStifItemParser& /*aItem*/ ); |
|
440 /** |
|
441 * TestNotifiersPGDialogSetIconLL test function for testing the SetIconL function |
|
442 * @since S60 5.0 |
|
443 * @param aItem never used |
|
444 * @return Symbian OS error code. |
|
445 */ |
|
446 virtual TInt TestNotifiersPGDialogSetIconLL( CStifItemParser& /*aItem*/ ); |
|
447 /** |
|
448 * TestNotifiersPGDialogSetImageLL test function for testing the SetImageL function |
|
449 * @since S60 5.0 |
|
450 * @param aItem never used |
|
451 * @return Symbian OS error code. |
|
452 */ |
|
453 virtual TInt TestNotifiersPGDialogSetImageLL( CStifItemParser& /*aItem*/ ); |
|
454 /** |
|
455 * TestNotifiersPGDialogShowProgressDialogLL test function for testing the |
|
456 * ShowProgressDialogL function |
|
457 * @since S60 5.0 |
|
458 * @param aItem never used |
|
459 * @return Symbian OS error code. |
|
460 */ |
|
461 virtual TInt TestNotifiersPGDialogShowProgressDialogLL( CStifItemParser& /*aItem*/ ); |
|
462 /** |
|
463 * TestNotifiersPGDialogUpdateProgressDialogL test function for testing the |
|
464 * UpdateProgressDialog function |
|
465 * @since S60 5.0 |
|
466 * @param aItem never used |
|
467 * @return Symbian OS error code. |
|
468 */ |
|
469 virtual TInt TestNotifiersPGDialogUpdateProgressDialogL( CStifItemParser& /*aItem*/ ); |
|
470 /** |
|
471 * TestNotifiersPGDialogProcessFinishedL test function for testing the ProcessFinished function |
|
472 * @since S60 5.0 |
|
473 * @param aItem never used |
|
474 * @return Symbian OS error code. |
|
475 */ |
|
476 virtual TInt TestNotifiersPGDialogProcessFinishedL( CStifItemParser& /*aItem*/ ); |
|
477 /** |
|
478 * TestNotifiersPGDialogCancelProgressDialogL test function for testing the |
|
479 * CancelProgressDialog function |
|
480 * @since S60 5.0 |
|
481 * @param aItem never used |
|
482 * @return Symbian OS error code. |
|
483 */ |
|
484 virtual TInt TestNotifiersPGDialogCancelProgressDialogL( CStifItemParser& aItem ); |
|
485 /** |
|
486 * TestNotifiersPGDialogSetImageSkinIdsL test function for testing the SetImageSkinIds function |
|
487 * @since S60 5.0 |
|
488 * @param aItem never used |
|
489 * @return Symbian OS error code. |
|
490 */ |
|
491 virtual TInt TestNotifiersPGDialogSetImageSkinIdsL( CStifItemParser& /*aItem*/ ); |
|
492 /** |
|
493 * TestNotifiersPGDialogSetSecondaryDisplayDataL test function for testing the |
|
494 * SetSecondaryDisplayData function |
|
495 * @since S60 5.0 |
|
496 * @param aItem never used |
|
497 * @return Symbian OS error code. |
|
498 */ |
|
499 virtual TInt TestNotifiersPGDialogSetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ ); |
|
500 /* |
|
501 * AknNotify.h |
|
502 */ |
|
503 private: |
|
504 /** |
|
505 * TestNotifiersNotifyDestructorL test function for testing the Destructor function |
|
506 * @since S60 5.0 |
|
507 * @param aItem never used |
|
508 * @return Symbian OS error code. |
|
509 */ |
|
510 virtual TInt TestNotifiersNotifyDestructorL( CStifItemParser& /*aItem*/ ); |
|
511 /** |
|
512 * TestNotifiersNotifySetSecondaryDisplayDataL test function for testing the |
|
513 * SetSecondaryDisplayData function |
|
514 * @since S60 5.0 |
|
515 * @param aItem never used |
|
516 * @return Symbian OS error code. |
|
517 */ |
|
518 virtual TInt TestNotifiersNotifySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ ); |
|
519 |
|
520 /* |
|
521 * AknPopupNotify.h |
|
522 */ |
|
523 private: |
|
524 /** |
|
525 * TestNotifiersPopNotifyNewLL test function for testing the NewL function |
|
526 * @since S60 5.0 |
|
527 * @param aItem never used |
|
528 * @return Symbian OS error code. |
|
529 */ |
|
530 virtual TInt TestNotifiersPopNotifyNewLL( CStifItemParser& /*aItem*/ ); |
|
531 /** |
|
532 * TestNotifiersPopNotifyNewLCL test function for testing the NewLC function |
|
533 * @since S60 5.0 |
|
534 * @param aItem never used |
|
535 * @return Symbian OS error code. |
|
536 */ |
|
537 virtual TInt TestNotifiersPopNotifyNewLCL( CStifItemParser& /*aItem*/ ); |
|
538 /** |
|
539 * TestNotifiersPopNotifyDestructorL test function for testing the Destructor function |
|
540 * @since S60 5.0 |
|
541 * @param aItem never used |
|
542 * @return Symbian OS error code. |
|
543 */ |
|
544 virtual TInt TestNotifiersPopNotifyDestructorL( CStifItemParser& /*aItem*/ ); |
|
545 /** |
|
546 * TestNotifiersPopNotifyPopupMessageLL test function for testing the |
|
547 * PopupMessageL function |
|
548 * @since S60 5.0 |
|
549 * @param aItem never used |
|
550 * @return Symbian OS error code. |
|
551 */ |
|
552 virtual TInt TestNotifiersPopNotifyPopupMessageLL( CStifItemParser& /*aItem*/ ); |
|
553 |
|
554 /* |
|
555 * AknGlobalListMsgQuery.h |
|
556 */ |
|
557 private: |
|
558 |
|
559 /** |
|
560 * TestCAknGMsgQueryL test method of CAknGlobalListMsgQuery. |
|
561 * @since S60 5.0 |
|
562 * @param is never used. |
|
563 * @return Symbian OS error code. |
|
564 */ |
|
565 virtual TInt TestCAknGMsgQueryNewL( CStifItemParser& /*aItem*/ ); |
|
566 |
|
567 /** |
|
568 * TestCAknGMsgQueryLC test method of CAknGlobalListMsgQuery. |
|
569 * @since S60 5.0 |
|
570 * @param is never used. |
|
571 * @return Symbian OS error code. |
|
572 */ |
|
573 virtual TInt TestCAknGMsgQueryNewLC( CStifItemParser& /*aItem*/ ); |
|
574 |
|
575 /** |
|
576 * TestCAknGMsgQueryShowListMsgQueryL test method of CAknGlobalListMsgQuery. |
|
577 * @since S60 5.0 |
|
578 * @param is never used. |
|
579 * @return Symbian OS error code. |
|
580 */ |
|
581 virtual TInt TestCAknGMsgQueryShowListMsgQueryL( CStifItemParser& /*aItem*/); |
|
582 |
|
583 /** |
|
584 * TestCAknGMsgQueryMoveSelectionUpL test method of CAknGlobalListMsgQuery. |
|
585 * @since S60 5.0 |
|
586 * @param is never used. |
|
587 * @return Symbian OS error code. |
|
588 */ |
|
589 virtual TInt TestCAknGMsgQueryMoveSelectionUpL( CStifItemParser& /*aItem*/); |
|
590 |
|
591 /** |
|
592 * TestCAknGMsgQueryMoveSelectionDownL test method of CAknGlobalListMsgQuery. |
|
593 * @since S60 5.0 |
|
594 * @param is never used. |
|
595 * @return Symbian OS error code. |
|
596 */ |
|
597 virtual TInt TestCAknGMsgQueryMoveSelectionDownL( CStifItemParser& /*aItem*/); |
|
598 |
|
599 /** |
|
600 * TestCAknGMsgQuerySelectItemL test method of CAknGlobalListMsgQuery. |
|
601 * @since S60 5.0 |
|
602 * @param is never used. |
|
603 * @return Symbian OS error code. |
|
604 */ |
|
605 virtual TInt TestCAknGMsgQuerySelectItemL( CStifItemParser& /*aItem*/); |
|
606 |
|
607 /** |
|
608 * TestCAknGMsgQueryCancelListMsgQueryL test method of CAknGlobalListMsgQuery. |
|
609 * @since S60 5.0 |
|
610 * @param is never used. |
|
611 * @return Symbian OS error code. |
|
612 */ |
|
613 virtual TInt TestCAknGMsgQueryCancelListMsgQueryL( CStifItemParser& /*aItem*/); |
|
614 |
|
615 /** |
|
616 * TestCAknGMsgQuerySetSecondaryDisplayDataL test method of CAknGlobalListMsgQuery. |
|
617 * @since S60 5.0 |
|
618 * @param is never used. |
|
619 * @return Symbian OS error code. |
|
620 */ |
|
621 virtual TInt TestCAknGMsgQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/); |
|
622 |
|
623 /** |
|
624 * TestCAknGMsgQuerySetImageSkinIdL test method of CAknGlobalListMsgQuery. |
|
625 * @since S60 5.0 |
|
626 * @param is never used. |
|
627 * @return Symbian OS error code. |
|
628 */ |
|
629 virtual TInt TestCAknGMsgQuerySetImageSkinIdL( CStifItemParser& /*aItem*/); |
|
630 |
|
631 private: // Data |
|
632 |
|
633 /** |
|
634 * ScreenSaver Property |
|
635 */ |
|
636 TInt iOldScreenSaverProperty; |
|
637 |
|
638 |
|
639 }; |
|
640 |
|
641 #endif // C_TESTSDKNOTIFIERS_H |
|
642 |
|
643 // End of File |