|
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_CSVGDOMIMPLEMENTATIONIMPL_ |
|
20 #define _INC_CSVGDOMIMPLEMENTATIONIMPL_ |
|
21 |
|
22 #if !defined(__E32BASE_H__) |
|
23 #include <e32base.h> |
|
24 #endif |
|
25 |
|
26 #include "SVGXmlDOMImplementation.h" |
|
27 #include "SvgBitmapFontProvider.h" |
|
28 |
|
29 class MXmlDocumentType; |
|
30 |
|
31 |
|
32 /** |
|
33 * Class description goes here. |
|
34 * |
|
35 * @lib SVGEngine.lib |
|
36 * @since 1.0 |
|
37 */ |
|
38 class CSvgDOMImplementationImpl : public CBase, public MXmlDOMImplementation |
|
39 { |
|
40 public: |
|
41 |
|
42 |
|
43 /** |
|
44 * Need method description |
|
45 * |
|
46 * @since 1.0 |
|
47 * @param |
|
48 * @return |
|
49 */ |
|
50 MXmlDocument* CreateDocumentL( const TDesC& aNamespaceUri, |
|
51 const TDesC& aQualifiedName/*, MXmlDocumentType* aDocType*/ ); |
|
52 |
|
53 |
|
54 /** |
|
55 * Need method description |
|
56 * |
|
57 * @since 1.0 |
|
58 * @param |
|
59 * @return |
|
60 */ |
|
61 static CSvgDOMImplementationImpl* NewL(CSvgBitmapFontProvider *aSvgBitmapFontProvider); |
|
62 |
|
63 |
|
64 /** |
|
65 * Need method description |
|
66 * |
|
67 * @since 1.0 |
|
68 * @param |
|
69 * @return |
|
70 */ |
|
71 static CSvgDOMImplementationImpl* NewLC(CSvgBitmapFontProvider *aSvgBitmapFontProvider); |
|
72 |
|
73 |
|
74 /** |
|
75 * Need method description |
|
76 * |
|
77 * @since 1.0 |
|
78 * @param |
|
79 * @return |
|
80 */ |
|
81 virtual ~CSvgDOMImplementationImpl(); |
|
82 |
|
83 private: |
|
84 |
|
85 |
|
86 /** |
|
87 * Need method description |
|
88 * |
|
89 * @since 1.0 |
|
90 * @param |
|
91 * @return |
|
92 */ |
|
93 void ConstructL(); |
|
94 |
|
95 |
|
96 /** |
|
97 * Need method description |
|
98 * |
|
99 * @since 1.0 |
|
100 * @param |
|
101 * @return |
|
102 */ |
|
103 CSvgDOMImplementationImpl(CSvgBitmapFontProvider *aSvgBitmapFontProvider); |
|
104 private: |
|
105 |
|
106 //Stores Font Type information as passed by CSvgEngineInterfaceImpl |
|
107 CSvgBitmapFontProvider *iSvgBitmapFontProvider; |
|
108 }; |
|
109 |
|
110 #endif /* _INC_CSVGDOMIMPLEMENTATIONIMPL_ */ |