2013-01-05 22:25:55 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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_SVGForeignObjectElement_h
|
|
|
|
#define mozilla_dom_SVGForeignObjectElement_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGGraphicsElement.h"
|
|
|
|
#include "nsSVGLength2.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGForeignObjectElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-05 22:25:55 -08:00
|
|
|
|
|
|
|
class nsSVGForeignObjectFrame;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-27 18:23:09 -07:00
|
|
|
class SVGForeignObjectElement MOZ_FINAL : public SVGGraphicsElement
|
2013-01-05 22:25:55 -08:00
|
|
|
{
|
|
|
|
friend class ::nsSVGForeignObjectFrame;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
friend nsresult (::NS_NewSVGForeignObjectElement(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 SVGForeignObjectElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2014-04-08 15:27:17 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx) MOZ_OVERRIDE;
|
2013-01-05 22:25:55 -08:00
|
|
|
|
|
|
|
public:
|
|
|
|
// nsSVGElement specializations:
|
2013-12-26 12:13:57 -08:00
|
|
|
virtual gfxMatrix PrependLocalTransformsTo(const gfxMatrix &aMatrix,
|
2013-05-07 22:11:24 -07:00
|
|
|
TransformTypes aWhich = eAllTransforms) const MOZ_OVERRIDE;
|
|
|
|
virtual bool HasValidDimensions() const MOZ_OVERRIDE;
|
2013-01-05 22:25:55 -08:00
|
|
|
|
|
|
|
// nsIContent interface
|
2014-05-24 12:29:11 -07:00
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
|
|
|
bool aCompileEventHandlers) MOZ_OVERRIDE;
|
2013-05-07 22:11:24 -07:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* name) const MOZ_OVERRIDE;
|
2013-01-05 22:25:55 -08:00
|
|
|
|
2014-06-19 19:01:40 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2013-01-05 22:25:55 -08:00
|
|
|
|
|
|
|
// WebIDL
|
2013-01-19 12:56:00 -08:00
|
|
|
already_AddRefed<SVGAnimatedLength> X();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Y();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Width();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Height();
|
2013-01-05 22:25:55 -08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2013-05-07 22:11:24 -07:00
|
|
|
virtual LengthAttributesInfo GetLengthInfo() MOZ_OVERRIDE;
|
2013-01-05 22:25:55 -08:00
|
|
|
|
|
|
|
enum { ATTR_X, ATTR_Y, ATTR_WIDTH, ATTR_HEIGHT };
|
|
|
|
nsSVGLength2 mLengthAttributes[4];
|
|
|
|
static LengthInfo sLengthInfo[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGForeignObjectElement_h
|
|
|
|
|