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: */
|
2012-05-21 15:12:37 +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/. */
|
2007-04-27 12:42:51 +04:00
|
|
|
|
2013-01-18 23:52:40 +04:00
|
|
|
#ifndef mozilla_dom_SVGClipPathElement_h
|
|
|
|
#define mozilla_dom_SVGClipPathElement_h
|
2007-04-27 12:42:51 +04:00
|
|
|
|
2007-08-28 03:11:14 +04:00
|
|
|
#include "nsSVGEnum.h"
|
2013-01-06 10:25:54 +04:00
|
|
|
#include "mozilla/dom/SVGTransformableElement.h"
|
2007-04-27 12:42:51 +04:00
|
|
|
|
2013-01-18 23:52:40 +04:00
|
|
|
class nsSVGClipPathFrame;
|
2007-04-27 12:42:51 +04:00
|
|
|
|
2013-01-18 23:52:40 +04:00
|
|
|
nsresult NS_NewSVGClipPathElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-18 23:52:40 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef SVGTransformableElement SVGClipPathElementBase;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class SVGClipPathElement final : public SVGClipPathElementBase
|
2007-04-27 12:42:51 +04:00
|
|
|
{
|
2013-01-18 23:52:40 +04:00
|
|
|
friend class ::nsSVGClipPathFrame;
|
2007-04-27 12:42:51 +04:00
|
|
|
|
|
|
|
protected:
|
2013-01-18 23:52:40 +04:00
|
|
|
friend nsresult (::NS_NewSVGClipPathElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-09-01 05:08:04 +04:00
|
|
|
explicit SVGClipPathElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
|
2007-04-27 12:42:51 +04:00
|
|
|
|
|
|
|
public:
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2007-04-27 12:42:51 +04:00
|
|
|
|
2013-01-18 23:53:08 +04:00
|
|
|
// WebIDL
|
2013-07-01 11:02:46 +04:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration> ClipPathUnits();
|
2013-01-18 23:53:08 +04:00
|
|
|
|
2007-04-27 12:42:51 +04:00
|
|
|
protected:
|
|
|
|
|
2007-08-28 03:11:14 +04:00
|
|
|
enum { CLIPPATHUNITS };
|
|
|
|
nsSVGEnum mEnumAttributes[1];
|
|
|
|
static EnumInfo sEnumInfo[1];
|
2007-04-27 12:42:51 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual EnumAttributesInfo GetEnumInfo() override;
|
2007-04-27 12:42:51 +04:00
|
|
|
};
|
|
|
|
|
2013-01-18 23:52:40 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGClipPathElement_h
|