svgtopt/SVG/SVGImpl/inc/SVGLangSpaceImpl.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_CSVGLANGSPACEIMPL_
       
    20 #define _INC_CSVGLANGSPACEIMPL_
       
    21 
       
    22 #include "SVGLangSpace.h"
       
    23 
       
    24 
       
    25 
       
    26 /**
       
    27  * Class description
       
    28  *
       
    29  *  SVG elements' superclass.
       
    30  *
       
    31  */
       
    32 class CSvgLangSpaceImpl : public CBase
       
    33     {
       
    34     public:
       
    35 
       
    36 
       
    37         /**
       
    38          * Need method description
       
    39          *
       
    40          * @since 1.0
       
    41          * @param
       
    42          * @return
       
    43          */
       
    44         const TDesC&                XMLLang();
       
    45 
       
    46 
       
    47         /**
       
    48          * Need method description
       
    49          *
       
    50          * @since 1.0
       
    51          * @param
       
    52          * @return
       
    53          */
       
    54         TInt                        SetXMLLangL( const TDesC& aXMLLang );
       
    55 
       
    56 
       
    57         /**
       
    58          * Need method description
       
    59          *
       
    60          * @since 1.0
       
    61          * @param
       
    62          * @return
       
    63          */
       
    64         const TDesC&                XMLSpace();
       
    65 
       
    66 
       
    67         /**
       
    68          * Need method description
       
    69          *
       
    70          * @since 1.0
       
    71          * @param
       
    72          * @return
       
    73          */
       
    74         TInt                        SetXMLSpaceL( const TDesC& aXMLSpace );
       
    75 
       
    76 
       
    77         /**
       
    78          * Need method description
       
    79          *
       
    80          * @since 1.0
       
    81          * @param
       
    82          * @return
       
    83          */
       
    84         TBool                       SetLangSpaceAttributeL( const TDesC& aPropertyName,
       
    85                                                             const TDesC& aValue );
       
    86 
       
    87 
       
    88         /**
       
    89          * Need method description
       
    90          *
       
    91          * @since 1.0
       
    92          * @param
       
    93          * @return
       
    94          */
       
    95         virtual                     ~CSvgLangSpaceImpl();
       
    96 
       
    97 
       
    98         /**
       
    99          * Need method description
       
   100          *
       
   101          * @since 1.0
       
   102          * @param
       
   103          * @return
       
   104          */
       
   105         static CSvgLangSpaceImpl*   NewL();
       
   106 
       
   107 
       
   108         /**
       
   109          * Need method description
       
   110          *
       
   111          * @since 1.0
       
   112          * @param
       
   113          * @return
       
   114          */
       
   115         static CSvgLangSpaceImpl*   NewLC();
       
   116 
       
   117         /**
       
   118          * Need method description
       
   119          *
       
   120          * @since 1.0
       
   121          * @param
       
   122          * @return
       
   123          */
       
   124         CSvgLangSpaceImpl* CloneL();
       
   125 
       
   126     protected:
       
   127 
       
   128 
       
   129         /**
       
   130          * Need method description
       
   131          *
       
   132          * @since 1.0
       
   133          * @param
       
   134          * @return
       
   135          */
       
   136         void                        ConstructL();
       
   137 
       
   138         HBufC*                      iXMLLang;
       
   139 
       
   140         HBufC*                      iXMLSpace;
       
   141     };
       
   142 
       
   143 #endif /* _INC_CSVGELEMENTIMPL_ */