diff -r 000000000000 -r 6474c204b198 layout/svg/nsSVGMarkerFrame.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/layout/svg/nsSVGMarkerFrame.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,188 @@ +/* -*- 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 __NS_SVGMARKERFRAME_H__ +#define __NS_SVGMARKERFRAME_H__ + +#include "mozilla/Attributes.h" +#include "gfxMatrix.h" +#include "gfxRect.h" +#include "nsFrame.h" +#include "nsLiteralString.h" +#include "nsQueryFrame.h" +#include "nsSVGContainerFrame.h" +#include "nsSVGUtils.h" + +class nsIAtom; +class nsIContent; +class nsIFrame; +class nsIPresShell; +class nsRenderingContext; +class nsStyleContext; +class nsSVGPathGeometryFrame; + +namespace mozilla { +namespace dom { +class SVGSVGElement; +} +} + +struct nsSVGMark; + +typedef nsSVGContainerFrame nsSVGMarkerFrameBase; + +class nsSVGMarkerFrame : public nsSVGMarkerFrameBase +{ + friend class nsSVGMarkerAnonChildFrame; + friend nsIFrame* + NS_NewSVGMarkerFrame(nsIPresShell* aPresShell, nsStyleContext* aContext); +protected: + nsSVGMarkerFrame(nsStyleContext* aContext) + : nsSVGMarkerFrameBase(aContext) + , mMarkedFrame(nullptr) + , mInUse(false) + , mInUse2(false) + { + AddStateBits(NS_FRAME_IS_NONDISPLAY); + } + +public: + NS_DECL_FRAMEARENA_HELPERS + + // nsIFrame interface: +#ifdef DEBUG + virtual void Init(nsIContent* aContent, + nsIFrame* aParent, + nsIFrame* aPrevInFlow) MOZ_OVERRIDE; +#endif + + virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder, + const nsRect& aDirtyRect, + const nsDisplayListSet& aLists) MOZ_OVERRIDE {} + + virtual nsresult AttributeChanged(int32_t aNameSpaceID, + nsIAtom* aAttribute, + int32_t aModType) MOZ_OVERRIDE; + /** + * Get the "type" of the frame + * + * @see nsGkAtoms::svgMarkerFrame + */ + virtual nsIAtom* GetType() const MOZ_OVERRIDE; + +#ifdef DEBUG_FRAME_DUMP + virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE + { + return MakeFrameName(NS_LITERAL_STRING("SVGMarker"), aResult); + } +#endif + + virtual nsIFrame* GetContentInsertionFrame() MOZ_OVERRIDE { + // Any children must be added to our single anonymous inner frame kid. + NS_ABORT_IF_FALSE(GetFirstPrincipalChild() && + GetFirstPrincipalChild()->GetType() == + nsGkAtoms::svgMarkerAnonChildFrame, + "Where is our anonymous child?"); + return GetFirstPrincipalChild()->GetContentInsertionFrame(); + } + + // nsSVGMarkerFrame methods: + nsresult PaintMark(nsRenderingContext *aContext, + nsSVGPathGeometryFrame *aMarkedFrame, + nsSVGMark *aMark, + float aStrokeWidth); + + SVGBBox GetMarkBBoxContribution(const Matrix &aToBBoxUserspace, + uint32_t aFlags, + nsSVGPathGeometryFrame *aMarkedFrame, + const nsSVGMark *aMark, + float aStrokeWidth); + +private: + // stuff needed for callback + nsSVGPathGeometryFrame *mMarkedFrame; + float mStrokeWidth, mX, mY, mAutoAngle; + bool mIsStart; // whether the callback is for a marker-start marker + + // nsSVGContainerFrame methods: + virtual gfxMatrix GetCanvasTM(uint32_t aFor, + nsIFrame* aTransformRoot = nullptr) MOZ_OVERRIDE; + + // A helper class to allow us to paint markers safely. The helper + // automatically sets and clears the mInUse flag on the marker frame (to + // prevent nasty reference loops) as well as the reference to the marked + // frame and its coordinate context. It's easy to mess this up + // and break things, so this helper makes the code far more robust. + class MOZ_STACK_CLASS AutoMarkerReferencer + { + public: + AutoMarkerReferencer(nsSVGMarkerFrame *aFrame, + nsSVGPathGeometryFrame *aMarkedFrame + MOZ_GUARD_OBJECT_NOTIFIER_PARAM); + ~AutoMarkerReferencer(); + private: + nsSVGMarkerFrame *mFrame; + MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER + }; + + // nsSVGMarkerFrame methods: + void SetParentCoordCtxProvider(mozilla::dom::SVGSVGElement *aContext); + + // recursion prevention flag + bool mInUse; + + // second recursion prevention flag, for GetCanvasTM() + bool mInUse2; +}; + +//////////////////////////////////////////////////////////////////////// +// nsMarkerAnonChildFrame class + +typedef nsSVGDisplayContainerFrame nsSVGMarkerAnonChildFrameBase; + +/** + */ +class nsSVGMarkerAnonChildFrame + : public nsSVGMarkerAnonChildFrameBase +{ + friend nsIFrame* + NS_NewSVGMarkerAnonChildFrame(nsIPresShell* aPresShell, + nsStyleContext* aContext); + + nsSVGMarkerAnonChildFrame(nsStyleContext* aContext) + : nsSVGMarkerAnonChildFrameBase(aContext) + {} + +public: + NS_DECL_FRAMEARENA_HELPERS + +#ifdef DEBUG + virtual void Init(nsIContent* aContent, + nsIFrame* aParent, + nsIFrame* aPrevInFlow) MOZ_OVERRIDE; +#endif + +#ifdef DEBUG_FRAME_DUMP + virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE { + return MakeFrameName(NS_LITERAL_STRING("SVGMarkerAnonChild"), aResult); + } +#endif + + /** + * Get the "type" of the frame + * + * @see nsGkAtoms::svgMarkerAnonChildFrame + */ + virtual nsIAtom* GetType() const MOZ_OVERRIDE; + + // nsSVGContainerFrame methods: + virtual gfxMatrix GetCanvasTM(uint32_t aFor, + nsIFrame* aTransformRoot = nullptr) MOZ_OVERRIDE + { + nsSVGMarkerFrame* marker = static_cast(mParent); + return marker->GetCanvasTM(aFor, aTransformRoot); + } +}; +#endif