uifw/AvKon/tsrc/bc/bctestdom3.2/bctestdomaiwakn/inc/bctestdomaknanimdata.h
changeset 0 2f259fa3e83a
child 23 3d340a0166ff
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * ============================================================================
       
     3 *  Name        : bctestdomaknanimdata.h
       
     4 *  Part of     : BCTest / bctestdomaiwakn       
       
     5 *  Description : for testing APIs in aknAnimData.h
       
     6 *  Version     : %version: 1 % << Don't touch! Updated by Synergy at check-out.
       
     7 *
       
     8 *  Copyright © 2007.  All rights reserved.
       
     9 *  This material, including documentation and any related computer
       
    10 *  programs, is protected by copyright controlled by Nokia.  All
       
    11 *  rights are reserved.  Copying, including reproducing, storing,
       
    12 *  adapting or translating, any or all of this material requires the
       
    13 *  prior written consent of Nokia.  This material also contains
       
    14 *  confidential information which may not be disclosed to others
       
    15 *  without the prior written consent of Nokia.
       
    16 * ============================================================================
       
    17 * Template version: 4.2
       
    18 */
       
    19 
       
    20 #ifndef C_BCTESTDOMAKNANIMATIONDATA_H
       
    21 #define C_BCTESTDOMAKNANIMATIONDATA_H
       
    22 
       
    23 #include <aknAnimData.h>
       
    24  
       
    25 /**
       
    26  *  CBCTestDomAknAnimationData class
       
    27  *  
       
    28  *
       
    29  *  @code
       
    30  *    
       
    31  *  @endcode
       
    32  *
       
    33  *  @lib   
       
    34  *  @since S60 v5.0
       
    35  */ 
       
    36 class CBCTestDomAknAnimationData : public CAknAnimationData
       
    37     {
       
    38 public:
       
    39 
       
    40     /**
       
    41      * Symbian static 2nd constructor
       
    42      */
       
    43     static CBCTestDomAknAnimationData* NewLC();
       
    44     
       
    45     /**
       
    46      * destructor
       
    47      */
       
    48     virtual ~CBCTestDomAknAnimationData();
       
    49     
       
    50 // from base classes from CAknAnimationData.    
       
    51     /**
       
    52      * From CAknAnimationData.     
       
    53      * PreAnimateSetup
       
    54      *
       
    55      * @since S60 v5.0   
       
    56      * @param aGc   a CBitmapContext object reference
       
    57      * @param aStep a TAnimMultiStep object reference
       
    58      */	    
       
    59 	IMPORT_C virtual TBool DrawUserAnimationStep( 
       
    60 	    CBitmapContext& aGc, TAnimMultiStep& aStep );
       
    61 
       
    62     /**
       
    63      * From CAknAnimationData.     
       
    64      * PreAnimateSetup
       
    65      *
       
    66      * @since S60 v5.0  
       
    67      * @param aAnimStep  a TAnimStep object reference
       
    68      * @param aReader  a TResourceReader object reference          
       
    69      */		
       
    70 	IMPORT_C virtual void ConstructUserAnimationStepL(
       
    71 	    TAnimStep& aAnimStep, TResourceReader& aReader );
       
    72 
       
    73 // from base classes from CAknAnimationData.  
       
    74     /**
       
    75      * From CAknAnimationData.      
       
    76      * symbian 2nd constructor
       
    77      *
       
    78      * @since S60 v5.0       
       
    79      */
       
    80     void ConstructL();     
       
    81 
       
    82 private:  
       
    83 
       
    84     /**
       
    85      * C++ default constructor
       
    86      */
       
    87     CBCTestDomAknAnimationData();
       
    88 
       
    89     };
       
    90 
       
    91 #endif // C_BCTESTDOMAKNANIMATIONDATA_H
       
    92 
       
    93 // End of File