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