svgtopt/SVG/SVGImpl/inc/SVGDOM/SVGZoomAndPan.h
changeset 0 d46562c3d99d
equal deleted inserted replaced
-1:000000000000 0:d46562c3d99d
       
     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_MSVGZOOMANDPAN__
       
    20 #define __INC_MSVGZOOMANDPAN__
       
    21 
       
    22 
       
    23 enum TSvgZoomAndPanType
       
    24     {
       
    25     ESvgZoomAndPanDisable,
       
    26     ESvgZoomAndPanMagnify,
       
    27     ESvgZoomAndPanUnknown
       
    28     };
       
    29 
       
    30 
       
    31 /**
       
    32  * Class description goes here.
       
    33  *
       
    34  *  @lib SVGEngine.lib
       
    35  *  @since 1.0
       
    36  */
       
    37 class MSvgZoomAndPan
       
    38     {
       
    39     public:
       
    40 
       
    41 
       
    42         /**
       
    43          * Need method description
       
    44          *
       
    45          * @since 1.0
       
    46          * @param 
       
    47          * @return
       
    48          */
       
    49         virtual TSvgZoomAndPanType  GetZoomAndPan() = 0;
       
    50 
       
    51 
       
    52         /**
       
    53          * Need method description
       
    54          *
       
    55          * @since 1.0
       
    56          * @param 
       
    57          * @return
       
    58          */
       
    59         virtual void                SetZoomAndPan( TSvgZoomAndPanType aZoomAndPan ) = 0;
       
    60     };
       
    61 
       
    62 #endif /* __INC_MSVGZOOMANDPAN__ */