KHTML
SVGTitleElement.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef SVGTitleElement_h
00024 #define SVGTitleElement_h
00025 #if ENABLE(SVG)
00026
00027 #include "SVGLangSpace.h"
00028 #include "SVGStyledElement.h"
00029
00030 namespace WebCore
00031 {
00032 class SVGTitleElement : public SVGStyledElement,
00033 public SVGLangSpace
00034 {
00035 public:
00036 SVGTitleElement(const QualifiedName&, Document*);
00037
00038 virtual void insertedIntoDocument();
00039 virtual void removedFromDocument();
00040 virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
00041
00042 virtual bool rendererIsNeeded(RenderStyle*) { return false; }
00043
00044
00045 virtual quint32 id() const { return SVGNames::titleTag.id(); }
00046 };
00047
00048 }
00049
00050 #endif // ENABLE(SVG)
00051 #endif
00052
00053