2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-01-05 05:50:21 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGTitleElement_h
|
|
|
|
#define mozilla_dom_SVGTitleElement_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2018-12-21 11:58:14 +03:00
|
|
|
#include "SVGElement.h"
|
2013-01-05 05:50:21 +04:00
|
|
|
#include "nsStubMutationObserver.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGTitleElement(
|
2014-06-20 06:01:40 +04:00
|
|
|
nsIContent **aResult, already_AddRefed<mozilla::dom::NodeInfo> &&aNodeInfo);
|
2013-01-05 05:50:21 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
typedef SVGElement SVGTitleElementBase;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class SVGTitleElement final : public SVGTitleElementBase,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsStubMutationObserver {
|
2013-01-05 05:50:21 +04:00
|
|
|
protected:
|
|
|
|
friend nsresult(::NS_NewSVGTitleElement(
|
|
|
|
nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> &&aNodeInfo));
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit SVGTitleElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> &&aNodeInfo);
|
2014-07-09 01:23:16 +04:00
|
|
|
~SVGTitleElement();
|
2013-01-05 05:50:21 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject *WrapNode(JSContext *aCx,
|
|
|
|
JS::Handle<JSObject *> aGivenProto) override;
|
2013-01-05 05:50:21 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
// interfaces:
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIMutationObserver
|
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_CHARACTERDATACHANGED
|
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_CONTENTAPPENDED
|
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_CONTENTINSERTED
|
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_CONTENTREMOVED
|
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo *, nsINode **aResult) const override;
|
2013-01-05 05:50:21 +04:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
virtual nsresult BindToTree(Document *aDocument, nsIContent *aParent,
|
2018-07-31 21:18:38 +03:00
|
|
|
nsIContent *aBindingParent) override;
|
2013-01-05 05:50:21 +04:00
|
|
|
|
|
|
|
virtual void UnbindFromTree(bool aDeep = true,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aNullParent = true) override;
|
2013-01-05 05:50:21 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DoneAddingChildren(bool aHaveNotified) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-01-05 05:50:21 +04:00
|
|
|
private:
|
|
|
|
void SendTitleChangeEvent(bool aBound);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGTitleElement_h
|