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