Line data Source code
1 : /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 : /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 : /* This Source Code Form is subject to the terms of the Mozilla Public
4 : * License, v. 2.0. If a copy of the MPL was not distributed with this
5 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 :
7 : #ifndef mozilla_dom_SVGDocument_h
8 : #define mozilla_dom_SVGDocument_h
9 :
10 : #include "mozilla/Attributes.h"
11 : #include "mozilla/dom/XMLDocument.h"
12 :
13 : class nsSVGElement;
14 :
15 : namespace mozilla {
16 : namespace dom {
17 :
18 : class SVGForeignObjectElement;
19 :
20 0 : class SVGDocument final : public XMLDocument
21 : {
22 : friend class SVGForeignObjectElement; // To call EnsureNonSVGUserAgentStyleSheetsLoaded
23 :
24 : public:
25 21 : SVGDocument()
26 21 : : XMLDocument("image/svg+xml")
27 21 : , mHasLoadedNonSVGUserAgentStyleSheets(false)
28 : {
29 21 : mType = eSVG;
30 21 : }
31 :
32 : virtual nsresult InsertChildAt(nsIContent* aKid, uint32_t aIndex,
33 : bool aNotify) override;
34 : virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
35 : bool aPreallocateChildren) const override;
36 :
37 2 : virtual SVGDocument* AsSVGDocument() override {
38 2 : return this;
39 : }
40 :
41 : private:
42 : void EnsureNonSVGUserAgentStyleSheetsLoaded();
43 :
44 : bool mHasLoadedNonSVGUserAgentStyleSheets;
45 : };
46 :
47 : } // namespace dom
48 : } // namespace mozilla
49 :
50 : #endif // mozilla_dom_SVGDocument_h
|