uiaccelerator_plat/alf_extension_api/tsrc/inc/testalfvisualhandlers.h
branchRCL_3
changeset 20 31fccae4f8a7
parent 10 7c5dd702d6d3
equal deleted inserted replaced
19:e5af45d51884 20:31fccae4f8a7
       
     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:  this project test api in alf_extension_api
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_TESTALFVISUALHANDLERS_H
       
    20 #define C_TESTALFVISUALHANDLERS_H
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <alf/alfvisualhandlers.h>
       
    24 
       
    25 /*This class test protected functions of CAlfVisualHandler*/
       
    26 class CTestCAlfVisualHandler: public CAlfVisualHandler
       
    27     {
       
    28 public:
       
    29     /*
       
    30      * Constructor
       
    31      * */
       
    32     CTestCAlfVisualHandler( MAlfInterfaceProvider& aResolver );
       
    33     
       
    34     /*
       
    35      * DeConstructor
       
    36      * */
       
    37     ~CTestCAlfVisualHandler();
       
    38     /**
       
    39      * TestProtected test protected functions of CAlfVisualHandler
       
    40      * @since S60 5.0
       
    41      * @param aItem never used
       
    42      * @return Symbian OS error code.
       
    43      */
       
    44     virtual TInt TestProtected( CStifItemParser& aItem );
       
    45     };
       
    46 
       
    47 /*This class test protected functions of CAlfTextVisualHandler*/
       
    48 class CTestCAlfTextVisualHandler: public CAlfTextVisualHandler
       
    49     {
       
    50 public:
       
    51     /*
       
    52      * Constructor
       
    53      * */
       
    54     CTestCAlfTextVisualHandler( MAlfInterfaceProvider& aResolver );
       
    55     
       
    56     /*
       
    57      * DeConstructor
       
    58      * */
       
    59     ~CTestCAlfTextVisualHandler();
       
    60     /**
       
    61      * TestProtected test protected functions of CAlfTextVisualHandler
       
    62      * @since S60 5.0
       
    63      * @param aItem never used
       
    64      * @return Symbian OS error code.
       
    65      */
       
    66     virtual TInt TestProtected( CStifItemParser& aItem );
       
    67     };
       
    68 
       
    69 /*This class test protected functions of CAlfLCTTextVisualHandler*/
       
    70 class CTestCAlfLCTTextVisualHandler: public CAlfLCTTextVisualHandler
       
    71     {
       
    72 public:
       
    73     /*
       
    74      * Constructor
       
    75      * */
       
    76     CTestCAlfLCTTextVisualHandler( MAlfInterfaceProvider& aResolver );
       
    77     
       
    78     /*
       
    79      * DeConstructor
       
    80      * */
       
    81     ~CTestCAlfLCTTextVisualHandler();
       
    82     /**
       
    83      * TestProtected test protected functions of CAlfLCTTextVisualHandler
       
    84      * @since S60 5.0
       
    85      * @param aItem never used
       
    86      * @return Symbian OS error code.
       
    87      */
       
    88     virtual TInt TestProtected( CStifItemParser& aItem );
       
    89     };
       
    90 
       
    91 /*This class test protected functions of CAlfImageVisualHandler*/
       
    92 class CTestCAlfImageVisualHandler: public CAlfImageVisualHandler
       
    93     {
       
    94 public:
       
    95     /*
       
    96      * Constructor
       
    97      * */
       
    98     CTestCAlfImageVisualHandler( MAlfInterfaceProvider& aResolver );
       
    99     
       
   100     /*
       
   101      * DeConstructor
       
   102      * */
       
   103     ~CTestCAlfImageVisualHandler();
       
   104     /**
       
   105      * TestProtected test protected functions of CAlfImageVisualHandler
       
   106      * @since S60 5.0
       
   107      * @param aItem never used
       
   108      * @return Symbian OS error code.
       
   109      */
       
   110     virtual TInt TestProtected( CStifItemParser& aItem );
       
   111     };
       
   112 
       
   113 /*This class test protected functions of CAlfLineVisualHandler*/
       
   114 class CTestCAlfLineVisualHandler: public CAlfLineVisualHandler
       
   115     {
       
   116 public:
       
   117     /*
       
   118      * Constructor
       
   119      * */
       
   120     CTestCAlfLineVisualHandler( MAlfInterfaceProvider& aResolver );
       
   121     
       
   122     /*
       
   123      * DeConstructor
       
   124      * */
       
   125     ~CTestCAlfLineVisualHandler();
       
   126     /**
       
   127      * TestProtected test protected functions of CAlfLineVisualHandler
       
   128      * @since S60 5.0
       
   129      * @param aItem never used
       
   130      * @return Symbian OS error code.
       
   131      */
       
   132     virtual TInt TestProtected( CStifItemParser& aItem );
       
   133     };
       
   134 
       
   135 /*This class test protected functions of CAlfMeshVisualHandler*/
       
   136 class CTestCAlfMeshVisualHandler: public CAlfMeshVisualHandler
       
   137     {
       
   138 public:
       
   139     /*
       
   140      * Constructor
       
   141      * */
       
   142     CTestCAlfMeshVisualHandler( MAlfInterfaceProvider& aResolver );
       
   143     
       
   144     /*
       
   145      * DeConstructor
       
   146      * */
       
   147     ~CTestCAlfMeshVisualHandler();
       
   148     /**
       
   149      * TestProtected test protected functions of CAlfMeshVisualHandler
       
   150      * @since S60 5.0
       
   151      * @param aItem never used
       
   152      * @return Symbian OS error code.
       
   153      */
       
   154     virtual TInt TestProtected( CStifItemParser& aItem );
       
   155     };
       
   156 
       
   157 #endif  // C_TESTALFVISUALHANDLERS_H
       
   158