svgtopt/SVG/SVGImpl/inc/SVGDOM/SVGTransformable.h
changeset 46 88edb906c587
equal deleted inserted replaced
-1:000000000000 46:88edb906c587
       
     1 /*
       
     2 * Copyright (c) 2003 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:  SVG Implementation header file
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __INC_MSVGTRANSFORMABLE__
       
    20 #define __INC_MSVGTRANSFORMABLE__
       
    21 
       
    22 #include "SVGLocatable.h"
       
    23 #include "SVGTransformList.h"
       
    24 
       
    25 class TGfxAffineTransform;
       
    26 
       
    27 
       
    28 /**
       
    29  * Class description goes here.
       
    30  *
       
    31  *  @lib SVGEngine.lib
       
    32  *  @since 1.0
       
    33  */
       
    34 class MSvgTransformable : public MSvgLocatable
       
    35     {
       
    36     public:
       
    37 
       
    38         /**
       
    39          * Gets transformation list. The first entry should be the original
       
    40          * transformation, and the other entries should be the matrices
       
    41          *  appended for animations on the element (if any).
       
    42          *
       
    43          * @since 1.0
       
    44          * @param
       
    45          * @return
       
    46          */
       
    47 
       
    48         /**
       
    49          * Need method description
       
    50          *
       
    51          * @since 1.0
       
    52          * @param
       
    53          * @return
       
    54          */
       
    55         virtual void    GetTransform( MSvgTransformList*& aTransformList ) = 0;
       
    56 
       
    57         // Temporarily, non-DOM method. This could go to the implementation.
       
    58 
       
    59         /**
       
    60          * Need method description
       
    61          *
       
    62          * @since 1.0
       
    63          * @param
       
    64          * @return
       
    65          */
       
    66         virtual void    SetTransform( MSvgTransformList*& aTransformList ) = 0;
       
    67     };
       
    68 
       
    69 #endif /* __INC_MSVGTRANSFORMABLE__ */