svgtopt/SVG/SVGImpl/inc/SVGFloatCssValueImpl.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 
       
    20 #ifndef __INC_CFLOATCSSVALUEIMPL__
       
    21 #define __INC_CFLOATCSSVALUEIMPL__
       
    22 
       
    23 
       
    24 #include "SVGCssValue.h"
       
    25 
       
    26 #include "GfxFloatFixPt.h"
       
    27 
       
    28 
       
    29 
       
    30 /**
       
    31  * Class description goes here.
       
    32  *
       
    33  *  @lib SVGEngine.lib
       
    34  *  @since 1.0
       
    35  */
       
    36 
       
    37 
       
    38 
       
    39 class CFloatCssValueImpl : public CCssValue
       
    40 
       
    41     {
       
    42     public:
       
    43 
       
    44         /**
       
    45          * Need method description
       
    46          *
       
    47          * @since 1.0
       
    48          * @param
       
    49          * @return
       
    50          */
       
    51                                     ~CFloatCssValueImpl();
       
    52 
       
    53         /**
       
    54          * Need method description
       
    55          *
       
    56          * @since 1.0
       
    57          * @param
       
    58          * @return
       
    59          */
       
    60         TInt                        SetValueL( const TDesC& aValue );
       
    61 
       
    62         /**
       
    63          * Need method description
       
    64          *
       
    65          * @since 1.0
       
    66          * @param
       
    67          * @return
       
    68          */
       
    69         TInt                        SetValueL( const TFloatFixPt& aValue );
       
    70 
       
    71         /**
       
    72          * Need method description
       
    73          *
       
    74          * @since 1.0
       
    75          * @param
       
    76          * @return
       
    77          */
       
    78         TFloatFixPt                       Value();
       
    79 
       
    80        /**
       
    81          * Need method description
       
    82          *
       
    83          * @since 1.0
       
    84          * @param
       
    85          * @return
       
    86          */
       
    87                                     CFloatCssValueImpl();
       
    88 
       
    89        /**
       
    90          * Need method description
       
    91          *
       
    92          * @since 1.0
       
    93          * @param
       
    94          * @return
       
    95          */
       
    96                                     CFloatCssValueImpl( float aValue );
       
    97 		
       
    98 		
       
    99 		TBool						IsEqual(CCssValue* aValue);
       
   100 		void						Print();
       
   101 		
       
   102     private:
       
   103 
       
   104 
       
   105 
       
   106 
       
   107         TFloatFixPt                      iValue;
       
   108     };
       
   109 
       
   110 #endif /* __INC_CFLOATCSSVALUEIMPL__ */