classicui_pub/notifiers_api/tsrc/inc/testsdknotifiers.h
changeset 0 2f259fa3e83a
child 14 3320e4e6e8bb
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     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         /**
       
    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     //[TestMethods]
       
   108     
       
   109 /*
       
   110  * aknglobalconfirmationquery.h
       
   111  */
       
   112 private:
       
   113     /**
       
   114      * TestNotifiersCFMQueryNewLL test function for testing the NewL function
       
   115      * @since S60 5.0
       
   116      * @param aItem never used
       
   117      * @return Symbian OS error code.
       
   118      */
       
   119     virtual TInt TestNotifiersCFMQueryNewLL( CStifItemParser& /*aItem*/ );
       
   120     /**
       
   121      * TestNotifiersCFMQueryNewLCL test function for testing the NewLC function
       
   122      * @since S60 5.0
       
   123      * @param aItem never used
       
   124      * @return Symbian OS error code.
       
   125      */
       
   126     virtual TInt TestNotifiersCFMQueryNewLCL( CStifItemParser& /*aItem*/ );
       
   127     /**
       
   128      * TestNotifiersCFMQueryDestructorL test function for testing the Destructor function
       
   129      * @since S60 5.0
       
   130      * @param aItem never used
       
   131      * @return Symbian OS error code.
       
   132      */
       
   133     virtual TInt TestNotifiersCFMQueryDestructorL( CStifItemParser& /*aItem*/ );
       
   134     /**
       
   135      * TestNotifiersCFMQueryShowConfirmationQueryLL test function for testing 
       
   136      * the ShowConfirmationQueryL function
       
   137      * @since S60 5.0
       
   138      * @param aItem never used
       
   139      * @return Symbian OS error code.
       
   140      */
       
   141     virtual TInt TestNotifiersCFMQueryShowConfirmationQueryLL( CStifItemParser& /*aItem*/ );
       
   142     /**
       
   143      * TestNotifiersCFMQueryUpdateConfirmationQueryL test function for testing the 
       
   144      * UpdateConfirmationQuery function
       
   145      * @since S60 5.0
       
   146      * @param aItem never used
       
   147      * @return Symbian OS error code.
       
   148      */
       
   149     virtual TInt TestNotifiersCFMQueryUpdateConfirmationQueryL( CStifItemParser& /*aItem*/ );
       
   150     /**
       
   151      * TestNotifiersCFMQueryCancelConfirmationQueryL test function for testing the 
       
   152      * CancelConfirmationQuery function
       
   153      * @since S60 5.0
       
   154      * @param aItem never used
       
   155      * @return Symbian OS error code.
       
   156      */
       
   157     virtual TInt TestNotifiersCFMQueryCancelConfirmationQueryL( CStifItemParser& /*aItem*/ );
       
   158     /**
       
   159      * TestNotifiersCFMQuerySetImageSkinIdL test function for testing the SetImageSkinId function
       
   160      * @since S60 5.0
       
   161      * @param aItem never used
       
   162      * @return Symbian OS error code.
       
   163      */
       
   164     virtual TInt TestNotifiersCFMQuerySetImageSkinIdL( CStifItemParser& /*aItem*/ );
       
   165     /**
       
   166      * TestNotifiersCFMQuerySetSecondaryDisplayDataL test function for testing 
       
   167      * the SetSecondaryDisplayData function
       
   168      * @since S60 5.0
       
   169      * @param aItem never used
       
   170      * @return Symbian OS error code.
       
   171      */
       
   172     virtual TInt TestNotifiersCFMQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ );
       
   173 /*
       
   174  * AknGlobalListQuery.h
       
   175  */
       
   176 private:
       
   177     /**
       
   178      * TestNotifiersListQueryNewLL test function for testing the NewL function
       
   179      * @since S60 5.0
       
   180      * @param aItem never used
       
   181      * @return Symbian OS error code.
       
   182      */
       
   183     virtual TInt TestNotifiersListQueryNewLL( CStifItemParser& /*aItem*/ );
       
   184     /**
       
   185      * TestNotifiersListQueryNewLCL test function for testing the NewLC function
       
   186      * @since S60 5.0
       
   187      * @param aItem never used
       
   188      * @return Symbian OS error code.
       
   189      */
       
   190     virtual TInt TestNotifiersListQueryNewLCL( CStifItemParser& /*aItem*/ );
       
   191     /**
       
   192      * TestNotifiersListQueryDestructorL test function for testing the Destructor function
       
   193      * @since S60 5.0
       
   194      * @param aItem never used
       
   195      * @return Symbian OS error code.
       
   196      */
       
   197     virtual TInt TestNotifiersListQueryDestructorL( CStifItemParser& /*aItem*/ );
       
   198     /**
       
   199      * TestNotifiersListQueryShowListQueryLL test function for testing the 
       
   200      * ShowListQueryL function
       
   201      * @since S60 5.0
       
   202      * @param aItem never used
       
   203      * @return Symbian OS error code.
       
   204      */
       
   205     virtual TInt TestNotifiersListQueryShowListQueryLL( CStifItemParser& /*aItem*/ );
       
   206     /**
       
   207      * TestNotifiersListQueryMoveSelectionUpL test function for testing the 
       
   208      * MoveSelectionUp function
       
   209      * @since S60 5.0
       
   210      * @param aItem never used
       
   211      * @return Symbian OS error code.
       
   212      */
       
   213     virtual TInt TestNotifiersListQueryMoveSelectionUpL( CStifItemParser& /*aItem*/ );
       
   214     /**
       
   215      * TestNotifiersListQueryMoveSelectionDownL test function for testing the 
       
   216      * MoveSelectionDown function
       
   217      * @since S60 5.0
       
   218      * @param aItem never used
       
   219      * @return Symbian OS error code.
       
   220      */
       
   221     virtual TInt TestNotifiersListQueryMoveSelectionDownL( CStifItemParser& /*aItem*/ );
       
   222     /**
       
   223      * TestNotifiersListQuerySelectItemL test function for testing the SelectItem function
       
   224      * @since S60 5.0
       
   225      * @param aItem never used
       
   226      * @return Symbian OS error code.
       
   227      */
       
   228     virtual TInt TestNotifiersListQuerySelectItemL( CStifItemParser& /*aItem*/ );
       
   229     /**
       
   230      * TestNotifiersListQueryCancelListQueryL test function for testing the 
       
   231      * CancelListQuery function
       
   232      * @since S60 5.0
       
   233      * @param aItem never used
       
   234      * @return Symbian OS error code.
       
   235      */
       
   236     virtual TInt TestNotifiersListQueryCancelListQueryL( CStifItemParser& /*aItem*/ );
       
   237     /**
       
   238      * TestNotifiersListQuerySetHeadingLL test function for testing the SetHeadingL 
       
   239      * function
       
   240      * @since S60 5.0
       
   241      * @param aItem never used
       
   242      * @return Symbian OS error code.
       
   243      */
       
   244     virtual TInt TestNotifiersListQuerySetHeadingLL( CStifItemParser& /*aItem*/ );
       
   245     /**
       
   246      * TestNotifiersListQuerySetSecondaryDisplayDataL test function for testing the 
       
   247      * SetSecondaryDisplayData function
       
   248      * @since S60 5.0
       
   249      * @param aItem never used
       
   250      * @return Symbian OS error code.
       
   251      */
       
   252     virtual TInt TestNotifiersListQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ );
       
   253 /*
       
   254  * aknglobalmsgquery.h
       
   255  */
       
   256 private:
       
   257     /**
       
   258      * TestNotifiersMsgQueryNewLL test function for testing the NewL function
       
   259      * @since S60 5.0
       
   260      * @param aItem never used
       
   261      * @return Symbian OS error code.
       
   262      */
       
   263     virtual TInt TestNotifiersMsgQueryNewLL( CStifItemParser& /*aItem*/ );
       
   264     /**
       
   265      * TestNotifiersMsgQueryNewLCL test function for testing the NewLC function
       
   266      * @since S60 5.0
       
   267      * @param aItem never used
       
   268      * @return Symbian OS error code.
       
   269      */
       
   270     virtual TInt TestNotifiersMsgQueryNewLCL( CStifItemParser& /*aItem*/ );
       
   271     /**
       
   272      * TestNotifiersMsgQueryDestructorL test function for testing the Destructor 
       
   273      * function
       
   274      * @since S60 5.0
       
   275      * @param aItem never used
       
   276      * @return Symbian OS error code.
       
   277      */
       
   278     virtual TInt TestNotifiersMsgQueryDestructorL( CStifItemParser& /*aItem*/ );
       
   279     /**
       
   280      * TestNotifiersMsgQueryShowMsgQueryLL test function for testing the ShowMsgQueryL 
       
   281      * function
       
   282      * @since S60 5.0
       
   283      * @param aItem never used
       
   284      * @return Symbian OS error code.
       
   285      */
       
   286     virtual TInt TestNotifiersMsgQueryShowMsgQueryLL( CStifItemParser& /*aItem*/ );
       
   287     /**
       
   288      * TestNotifiersMsgQueryUpdateMsgQueryL test function for testing the UpdateMsgQuery 
       
   289      * function
       
   290      * @since S60 5.0
       
   291      * @param aItem never used
       
   292      * @return Symbian OS error code.
       
   293      */
       
   294     virtual TInt TestNotifiersMsgQueryUpdateMsgQueryL( CStifItemParser& /*aItem*/ );
       
   295     /**
       
   296      * TestNotifiersMsgQueryCancelMsgQueryL test function for testing the CancelMsgQuery 
       
   297      * function
       
   298      * @since S60 5.0
       
   299      * @param aItem never used
       
   300      * @return Symbian OS error code.
       
   301      */
       
   302     virtual TInt TestNotifiersMsgQueryCancelMsgQueryL( CStifItemParser& aItem );
       
   303     /**
       
   304      * TestNotifiersMsgQuerySetExitDelayL test function for testing the SetExitDelay function
       
   305      * @since S60 5.0
       
   306      * @param aItem never used
       
   307      * @return Symbian OS error code.
       
   308      */
       
   309     virtual TInt TestNotifiersMsgQuerySetExitDelayL( CStifItemParser& /*aItem*/ );
       
   310     /**
       
   311      * TestNotifiersMsgQuerySetImageSkinIdL test function for testing the SetImageSkinId function
       
   312      * @since S60 5.0
       
   313      * @param aItem never used
       
   314      * @return Symbian OS error code.
       
   315      */
       
   316     virtual TInt TestNotifiersMsgQuerySetImageSkinIdL( CStifItemParser& /*aItem*/ );
       
   317     /**
       
   318      * TestNotifiersMsgQuerySetSecondaryDisplayDataL test function for testing the 
       
   319      * SetSecondaryDisplayData function
       
   320      * @since S60 5.0
       
   321      * @param aItem never used
       
   322      * @return Symbian OS error code.
       
   323      */
       
   324     virtual TInt TestNotifiersMsgQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ );
       
   325     /**
       
   326      * TestGridsGMSSGVConstuctionL test function for testing the construction function
       
   327      * @since S60 5.0
       
   328      * @param aItem never used
       
   329      * @return Symbian OS error code.
       
   330      */
       
   331 /*
       
   332  * AknGlobalNote.h
       
   333  */
       
   334 private:
       
   335     /**
       
   336      * TestNotifiersNoteNewLL test function for testing the NewL function
       
   337      * @since S60 5.0
       
   338      * @param aItem never used
       
   339      * @return Symbian OS error code.
       
   340      */
       
   341     virtual TInt TestNotifiersNoteNewLL( CStifItemParser& /*aItem*/ );
       
   342     /**
       
   343      * TestNotifiersNoteNewLCL test function for testing the NewLC function
       
   344      * @since S60 5.0
       
   345      * @param aItem never used
       
   346      * @return Symbian OS error code.
       
   347      */
       
   348     virtual TInt TestNotifiersNoteNewLCL( CStifItemParser& /*aItem*/ );
       
   349     /**
       
   350      * TestNotifiersNoteDestructorL test function for testing the Destructor function
       
   351      * @since S60 5.0
       
   352      * @param aItem never used
       
   353      * @return Symbian OS error code.
       
   354      */
       
   355     virtual TInt TestNotifiersNoteDestructorL( CStifItemParser& /*aItem*/ );
       
   356     /**
       
   357      * TestNotifiersNoteSetTextProcessingL test function for testing the 
       
   358      * SetTextProcessing function
       
   359      * @since S60 5.0
       
   360      * @param aItem never used
       
   361      * @return Symbian OS error code.
       
   362      */
       
   363     virtual TInt TestNotifiersNoteSetTextProcessingL( CStifItemParser& /*aItem*/ );
       
   364     /**
       
   365      * TestNotifiersNoteShowNoteLL test function for testing the ShowNoteL function
       
   366      * @since S60 5.0
       
   367      * @param aItem never used
       
   368      * @return Symbian OS error code.
       
   369      */
       
   370     virtual TInt TestNotifiersNoteShowNoteLL( CStifItemParser& /*aItem*/ );
       
   371     /**
       
   372      * TestNotifiersNoteShowNoteLStatusL test function for testing the ShowNoteL 
       
   373      * function
       
   374      * @since S60 5.0
       
   375      * @param aItem never used
       
   376      * @return Symbian OS error code.
       
   377      */
       
   378     virtual TInt TestNotifiersNoteShowNoteLStatusL( CStifItemParser& /*aItem*/ );
       
   379     /**
       
   380      * TestNotifiersNoteCancelNoteLL test function for testing the CancelNoteL function
       
   381      * @since S60 5.0
       
   382      * @param aItem never used
       
   383      * @return Symbian OS error code.
       
   384      */
       
   385     virtual TInt TestNotifiersNoteCancelNoteLL( CStifItemParser& /*aItem*/ );
       
   386     /**
       
   387      * TestNotifiersNoteSetPriorityL test function for testing the SetPriority function
       
   388      * @since S60 5.0
       
   389      * @param aItem never used
       
   390      * @return Symbian OS error code.
       
   391      */
       
   392     virtual TInt TestNotifiersNoteSetPriorityL( CStifItemParser& /*aItem*/ );
       
   393     /**
       
   394      * TestNotifiersNoteSetSoftkeysL test function for testing the NoteSetSoftkeys function
       
   395      * @since S60 5.0
       
   396      * @param aItem never used
       
   397      * @return Symbian OS error code.
       
   398      */
       
   399     virtual TInt TestNotifiersNoteSetSoftkeysL( CStifItemParser& /*aItem*/ );
       
   400     /**
       
   401      * TestNotifiersNoteSetGraphicL test function for testing the SetGraphic function
       
   402      * @since S60 5.0
       
   403      * @param aItem never used
       
   404      * @return Symbian OS error code.
       
   405      */
       
   406     virtual TInt TestNotifiersNoteSetGraphicL( CStifItemParser& /*aItem*/ );
       
   407     /**
       
   408      * TestNotifiersNoteSetAnimationL test function for testing the SetAnimation function
       
   409      * @since S60 5.0
       
   410      * @param aItem never used
       
   411      * @return Symbian OS error code.
       
   412      */
       
   413     virtual TInt TestNotifiersNoteSetAnimationL( CStifItemParser& /*aItem*/ );
       
   414     /**
       
   415      * TestNotifiersNoteSetToneL test function for testing the SetTone function
       
   416      * @since S60 5.0
       
   417      * @param aItem never used
       
   418      * @return Symbian OS error code.
       
   419      */
       
   420     virtual TInt TestNotifiersNoteSetToneL( CStifItemParser& /*aItem*/ );
       
   421     /**
       
   422      * TestNotifiersNoteDoGlobaNoteBufferLL test function for testing the 
       
   423      * DoGlobaNoteBufferL function
       
   424      * @since S60 5.0
       
   425      * @param aItem never used
       
   426      * @return Symbian OS error code.
       
   427      */
       
   428     virtual TInt TestNotifiersNoteDoGlobaNoteBufferLL( CStifItemParser& /*aItem*/ );
       
   429 /*
       
   430  * aknglobalprogressdialog.h
       
   431  */
       
   432 private:
       
   433     /**
       
   434      * TestNotifiersPGDialogNewLL test function for testing the NewL function
       
   435      * @since S60 5.0
       
   436      * @param aItem never used
       
   437      * @return Symbian OS error code.
       
   438      */
       
   439     virtual TInt TestNotifiersPGDialogNewLL( CStifItemParser& /*aItem*/ );
       
   440     /**
       
   441      * TestNotifiersPGDialogNewLCL test function for testing the NewLC function
       
   442      * @since S60 5.0
       
   443      * @param aItem never used
       
   444      * @return Symbian OS error code.
       
   445      */
       
   446     virtual TInt TestNotifiersPGDialogNewLCL( CStifItemParser& /*aItem*/ );
       
   447     /**
       
   448      * TestNotifiersPGDialogDestructorL test function for testing the Destructor function
       
   449      * @since S60 5.0
       
   450      * @param aItem never used
       
   451      * @return Symbian OS error code.
       
   452      */
       
   453     virtual TInt TestNotifiersPGDialogDestructorL( CStifItemParser& /*aItem*/ );
       
   454     /**
       
   455      * TestNotifiersPGDialogSetIconLL test function for testing the SetIconL function
       
   456      * @since S60 5.0
       
   457      * @param aItem never used
       
   458      * @return Symbian OS error code.
       
   459      */
       
   460     virtual TInt TestNotifiersPGDialogSetIconLL( CStifItemParser& /*aItem*/ );
       
   461     /**
       
   462      * TestNotifiersPGDialogSetImageLL test function for testing the SetImageL function
       
   463      * @since S60 5.0
       
   464      * @param aItem never used
       
   465      * @return Symbian OS error code.
       
   466      */
       
   467     virtual TInt TestNotifiersPGDialogSetImageLL( CStifItemParser& /*aItem*/ );
       
   468     /**
       
   469      * TestNotifiersPGDialogShowProgressDialogLL test function for testing the 
       
   470      * ShowProgressDialogL function
       
   471      * @since S60 5.0
       
   472      * @param aItem never used
       
   473      * @return Symbian OS error code.
       
   474      */
       
   475     virtual TInt TestNotifiersPGDialogShowProgressDialogLL( CStifItemParser& /*aItem*/ );
       
   476     /**
       
   477      * TestNotifiersPGDialogUpdateProgressDialogL test function for testing the 
       
   478      * UpdateProgressDialog function
       
   479      * @since S60 5.0
       
   480      * @param aItem never used
       
   481      * @return Symbian OS error code.
       
   482      */
       
   483     virtual TInt TestNotifiersPGDialogUpdateProgressDialogL( CStifItemParser& /*aItem*/ );
       
   484     /**
       
   485      * TestNotifiersPGDialogProcessFinishedL test function for testing the ProcessFinished function
       
   486      * @since S60 5.0
       
   487      * @param aItem never used
       
   488      * @return Symbian OS error code.
       
   489      */
       
   490     virtual TInt TestNotifiersPGDialogProcessFinishedL( CStifItemParser& /*aItem*/ );
       
   491     /**
       
   492      * TestNotifiersPGDialogCancelProgressDialogL test function for testing the 
       
   493      * CancelProgressDialog function
       
   494      * @since S60 5.0
       
   495      * @param aItem never used
       
   496      * @return Symbian OS error code.
       
   497      */
       
   498     virtual TInt TestNotifiersPGDialogCancelProgressDialogL( CStifItemParser& aItem );
       
   499     /**
       
   500      * TestNotifiersPGDialogSetImageSkinIdsL test function for testing the SetImageSkinIds function
       
   501      * @since S60 5.0
       
   502      * @param aItem never used
       
   503      * @return Symbian OS error code.
       
   504      */
       
   505     virtual TInt TestNotifiersPGDialogSetImageSkinIdsL( CStifItemParser& /*aItem*/ );
       
   506     /**
       
   507      * TestNotifiersPGDialogSetSecondaryDisplayDataL test function for testing the 
       
   508      * SetSecondaryDisplayData function
       
   509      * @since S60 5.0
       
   510      * @param aItem never used
       
   511      * @return Symbian OS error code.
       
   512      */
       
   513     virtual TInt TestNotifiersPGDialogSetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ );
       
   514 /*
       
   515  * AknNotify.h
       
   516  */
       
   517 private:
       
   518     /**
       
   519      * TestNotifiersNotifyDestructorL test function for testing the Destructor function
       
   520      * @since S60 5.0
       
   521      * @param aItem never used
       
   522      * @return Symbian OS error code.
       
   523      */
       
   524     virtual TInt TestNotifiersNotifyDestructorL( CStifItemParser& /*aItem*/ );
       
   525     /**
       
   526      * TestNotifiersNotifySetSecondaryDisplayDataL test function for testing the 
       
   527      * SetSecondaryDisplayData function
       
   528      * @since S60 5.0
       
   529      * @param aItem never used
       
   530      * @return Symbian OS error code.
       
   531      */
       
   532     virtual TInt TestNotifiersNotifySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/ );
       
   533 
       
   534 /*
       
   535  * AknPopupNotify.h
       
   536  */
       
   537 private:
       
   538     /**
       
   539      * TestNotifiersPopNotifyNewLL test function for testing the NewL function
       
   540      * @since S60 5.0
       
   541      * @param aItem never used
       
   542      * @return Symbian OS error code.
       
   543      */
       
   544     virtual TInt TestNotifiersPopNotifyNewLL( CStifItemParser& /*aItem*/ );
       
   545     /**
       
   546      * TestNotifiersPopNotifyNewLCL test function for testing the NewLC function
       
   547      * @since S60 5.0
       
   548      * @param aItem never used
       
   549      * @return Symbian OS error code.
       
   550      */
       
   551     virtual TInt TestNotifiersPopNotifyNewLCL( CStifItemParser& /*aItem*/ );
       
   552     /**
       
   553      * TestNotifiersPopNotifyDestructorL test function for testing the Destructor function
       
   554      * @since S60 5.0
       
   555      * @param aItem never used
       
   556      * @return Symbian OS error code.
       
   557      */
       
   558     virtual TInt TestNotifiersPopNotifyDestructorL( CStifItemParser& /*aItem*/ );
       
   559     /**
       
   560      * TestNotifiersPopNotifyPopupMessageLL test function for testing the 
       
   561      * PopupMessageL function
       
   562      * @since S60 5.0
       
   563      * @param aItem never used
       
   564      * @return Symbian OS error code.
       
   565      */
       
   566     virtual TInt TestNotifiersPopNotifyPopupMessageLL( CStifItemParser& /*aItem*/ );
       
   567 
       
   568 /*
       
   569  * AknGlobalListMsgQuery.h
       
   570  */
       
   571 private:
       
   572     
       
   573     /**
       
   574     * TestCAknGMsgQueryL test method of CAknGlobalListMsgQuery.
       
   575     * @since S60 5.0
       
   576     * @param is never used.
       
   577     * @return Symbian OS error code.
       
   578     */
       
   579     virtual TInt TestCAknGMsgQueryNewL( CStifItemParser& /*aItem*/ );
       
   580     
       
   581     /**
       
   582     * TestCAknGMsgQueryLC test method of CAknGlobalListMsgQuery.
       
   583     * @since S60 5.0
       
   584     * @param is never used.
       
   585     * @return Symbian OS error code.
       
   586     */
       
   587     virtual TInt TestCAknGMsgQueryNewLC( CStifItemParser& /*aItem*/ );
       
   588     
       
   589     /**
       
   590     * TestCAknGMsgQueryShowListMsgQueryL test method of CAknGlobalListMsgQuery.
       
   591     * @since S60 5.0
       
   592     * @param is never used.
       
   593     * @return Symbian OS error code.
       
   594     */
       
   595     virtual TInt TestCAknGMsgQueryShowListMsgQueryL( CStifItemParser& /*aItem*/);
       
   596     
       
   597     /**
       
   598     * TestCAknGMsgQueryMoveSelectionUpL test method of CAknGlobalListMsgQuery.
       
   599     * @since S60 5.0
       
   600     * @param is never used.
       
   601     * @return Symbian OS error code.
       
   602     */
       
   603     virtual TInt TestCAknGMsgQueryMoveSelectionUpL( CStifItemParser& /*aItem*/);
       
   604     
       
   605     /**
       
   606     * TestCAknGMsgQueryMoveSelectionDownL test method of CAknGlobalListMsgQuery.
       
   607     * @since S60 5.0
       
   608     * @param is never used.
       
   609     * @return Symbian OS error code.
       
   610     */
       
   611     virtual TInt TestCAknGMsgQueryMoveSelectionDownL( CStifItemParser& /*aItem*/);
       
   612     
       
   613     /**
       
   614     * TestCAknGMsgQuerySelectItemL test method of CAknGlobalListMsgQuery.
       
   615     * @since S60 5.0
       
   616     * @param is never used.
       
   617     * @return Symbian OS error code.
       
   618     */
       
   619     virtual TInt TestCAknGMsgQuerySelectItemL( CStifItemParser& /*aItem*/);
       
   620     
       
   621     /**
       
   622     * TestCAknGMsgQueryCancelListMsgQueryL test method of CAknGlobalListMsgQuery.
       
   623     * @since S60 5.0
       
   624     * @param is never used.
       
   625     * @return Symbian OS error code.
       
   626     */
       
   627     virtual TInt TestCAknGMsgQueryCancelListMsgQueryL( CStifItemParser& /*aItem*/);
       
   628     
       
   629     /**
       
   630     * TestCAknGMsgQuerySetSecondaryDisplayDataL test method of CAknGlobalListMsgQuery.
       
   631     * @since S60 5.0
       
   632     * @param is never used.
       
   633     * @return Symbian OS error code.
       
   634     */
       
   635     virtual TInt TestCAknGMsgQuerySetSecondaryDisplayDataL( CStifItemParser& /*aItem*/);
       
   636     
       
   637     /**
       
   638     * TestCAknGMsgQuerySetImageSkinIdL test method of CAknGlobalListMsgQuery.
       
   639     * @since S60 5.0
       
   640     * @param is never used.
       
   641     * @return Symbian OS error code.
       
   642     */
       
   643     virtual TInt TestCAknGMsgQuerySetImageSkinIdL( CStifItemParser& /*aItem*/);
       
   644     
       
   645 private:    // Data
       
   646 
       
   647     /**
       
   648      * ScreenSaver Property
       
   649      */
       
   650     TInt iOldScreenSaverProperty;
       
   651     
       
   652 
       
   653     };
       
   654 
       
   655 #endif      // C_TESTSDKNOTIFIERS_H
       
   656 
       
   657 // End of File