2015-05-03 12:32:37 -07: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 04:12:37 -07: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-03-22 10:30:00 -07:00
|
|
|
|
2013-01-23 12:59:06 -08:00
|
|
|
#ifndef mozilla_dom_SVGMaskElement_h
|
|
|
|
#define mozilla_dom_SVGMaskElement_h
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-27 16:11:14 -07:00
|
|
|
#include "nsSVGEnum.h"
|
2012-01-26 01:57:21 -08:00
|
|
|
#include "nsSVGLength2.h"
|
2012-12-23 00:22:22 -08:00
|
|
|
#include "nsSVGElement.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-01-23 12:59:06 -08:00
|
|
|
class nsSVGMaskFrame;
|
|
|
|
|
|
|
|
nsresult NS_NewSVGMaskElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-23 12:59:06 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//--------------------- Masks ------------------------
|
|
|
|
|
2013-01-23 12:59:06 -08:00
|
|
|
typedef nsSVGElement SVGMaskElementBase;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class SVGMaskElement final : public SVGMaskElementBase
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-01-23 12:59:06 -08:00
|
|
|
friend class ::nsSVGMaskFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
2013-01-23 12:59:06 -08:00
|
|
|
friend nsresult (::NS_NewSVGMaskElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGMaskElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
public:
|
|
|
|
// nsIContent interface
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-03 01:21:09 -08:00
|
|
|
// nsSVGSVGElement methods:
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool HasValidDimensions() const override;
|
2013-01-23 12:59:46 -08:00
|
|
|
|
|
|
|
// WebIDL
|
2013-07-01 00:02:46 -07:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration> MaskUnits();
|
|
|
|
already_AddRefed<SVGAnimatedEnumeration> MaskContentUnits();
|
2013-01-23 12:59:46 -08:00
|
|
|
already_AddRefed<SVGAnimatedLength> X();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Y();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Width();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Height();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual LengthAttributesInfo GetLengthInfo() override;
|
|
|
|
virtual EnumAttributesInfo GetEnumInfo() override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-01-23 12:59:46 -08:00
|
|
|
enum { ATTR_X, ATTR_Y, ATTR_WIDTH, ATTR_HEIGHT };
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSVGLength2 mLengthAttributes[4];
|
|
|
|
static LengthInfo sLengthInfo[4];
|
|
|
|
|
2007-08-27 16:11:14 -07:00
|
|
|
enum { MASKUNITS, MASKCONTENTUNITS };
|
|
|
|
nsSVGEnum mEnumAttributes[2];
|
|
|
|
static EnumInfo sEnumInfo[2];
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2013-01-23 12:59:06 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGMaskElement_h
|