2004-12-09 06:16:15 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2004-12-09 06:16:15 +03:00
|
|
|
|
|
|
|
#ifndef __NS_SVGMARKERFRAME_H__
|
|
|
|
#define __NS_SVGMARKERFRAME_H__
|
|
|
|
|
2013-05-29 23:37:49 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-03-20 16:15:55 +04:00
|
|
|
#include "gfxMatrix.h"
|
|
|
|
#include "gfxRect.h"
|
|
|
|
#include "nsFrame.h"
|
|
|
|
#include "nsLiteralString.h"
|
|
|
|
#include "nsQueryFrame.h"
|
2006-06-10 00:40:06 +04:00
|
|
|
#include "nsSVGContainerFrame.h"
|
2012-03-18 14:32:02 +04:00
|
|
|
#include "nsSVGUtils.h"
|
2004-12-09 06:16:15 +03:00
|
|
|
|
2012-03-02 12:28:59 +04:00
|
|
|
class nsRenderingContext;
|
2004-12-09 06:16:15 +03:00
|
|
|
class nsSVGPathGeometryFrame;
|
2013-01-10 03:02:45 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class SVGSVGElement;
|
|
|
|
}
|
|
|
|
}
|
2012-03-20 16:15:55 +04:00
|
|
|
|
2006-06-21 19:42:28 +04:00
|
|
|
struct nsSVGMark;
|
2006-06-02 18:26:28 +04:00
|
|
|
|
2006-06-10 00:40:06 +04:00
|
|
|
typedef nsSVGContainerFrame nsSVGMarkerFrameBase;
|
|
|
|
|
2007-03-21 13:59:01 +03:00
|
|
|
class nsSVGMarkerFrame : public nsSVGMarkerFrameBase
|
2006-06-10 00:40:06 +04:00
|
|
|
{
|
2013-09-16 09:06:29 +04:00
|
|
|
friend class nsSVGMarkerAnonChildFrame;
|
2014-05-25 02:20:40 +04:00
|
|
|
friend nsContainerFrame*
|
2009-01-19 21:31:34 +03:00
|
|
|
NS_NewSVGMarkerFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2007-09-07 13:30:51 +04:00
|
|
|
protected:
|
2012-03-10 23:28:06 +04:00
|
|
|
nsSVGMarkerFrame(nsStyleContext* aContext)
|
|
|
|
: nsSVGMarkerFrameBase(aContext)
|
2012-07-30 18:20:58 +04:00
|
|
|
, mMarkedFrame(nullptr)
|
2012-03-10 23:28:06 +04:00
|
|
|
, mInUse(false)
|
|
|
|
, mInUse2(false)
|
|
|
|
{
|
2013-07-12 11:13:07 +04:00
|
|
|
AddStateBits(NS_FRAME_IS_NONDISPLAY);
|
2012-03-10 23:28:06 +04:00
|
|
|
}
|
2004-12-09 06:16:15 +03:00
|
|
|
|
2007-09-07 13:30:51 +04:00
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2008-10-10 17:14:05 +04:00
|
|
|
// nsIFrame interface:
|
2009-01-19 21:31:34 +03:00
|
|
|
#ifdef DEBUG
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2009-01-19 21:31:34 +03:00
|
|
|
#endif
|
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE {}
|
2012-07-20 20:41:29 +04:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 12:36:33 +04:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
2006-06-10 00:40:06 +04:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 03:06:41 +03:00
|
|
|
* @see nsGkAtoms::svgMarkerFrame
|
2006-06-10 00:40:06 +04:00
|
|
|
*/
|
2013-05-29 23:37:49 +04:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2006-06-10 00:40:06 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE
|
2006-06-10 00:40:06 +04:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGMarker"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-05-25 02:20:39 +04:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() MOZ_OVERRIDE {
|
2013-09-16 09:06:29 +04:00
|
|
|
// 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();
|
|
|
|
}
|
|
|
|
|
2006-06-10 00:40:06 +04:00
|
|
|
// nsSVGMarkerFrame methods:
|
2012-03-02 12:28:59 +04:00
|
|
|
nsresult PaintMark(nsRenderingContext *aContext,
|
2006-12-07 12:32:13 +03:00
|
|
|
nsSVGPathGeometryFrame *aMarkedFrame,
|
2006-06-10 00:40:06 +04:00
|
|
|
nsSVGMark *aMark,
|
|
|
|
float aStrokeWidth);
|
|
|
|
|
2013-12-30 10:50:17 +04:00
|
|
|
SVGBBox GetMarkBBoxContribution(const Matrix &aToBBoxUserspace,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFlags,
|
2011-09-30 13:25:37 +04:00
|
|
|
nsSVGPathGeometryFrame *aMarkedFrame,
|
|
|
|
const nsSVGMark *aMark,
|
|
|
|
float aStrokeWidth);
|
2006-06-10 00:40:06 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
// stuff needed for callback
|
2006-12-07 12:32:13 +03:00
|
|
|
nsSVGPathGeometryFrame *mMarkedFrame;
|
2010-02-19 00:50:59 +03:00
|
|
|
float mStrokeWidth, mX, mY, mAutoAngle;
|
2013-07-12 10:39:38 +04:00
|
|
|
bool mIsStart; // whether the callback is for a marker-start marker
|
2006-06-10 00:40:06 +04:00
|
|
|
|
|
|
|
// nsSVGContainerFrame methods:
|
2013-09-11 11:27:45 +04:00
|
|
|
virtual gfxMatrix GetCanvasTM(uint32_t aFor,
|
|
|
|
nsIFrame* aTransformRoot = nullptr) MOZ_OVERRIDE;
|
2006-06-10 00:40:06 +04:00
|
|
|
|
2006-12-07 12:32:13 +03:00
|
|
|
// 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.
|
2013-12-26 22:49:49 +04:00
|
|
|
class MOZ_STACK_CLASS AutoMarkerReferencer
|
2006-12-07 12:32:13 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AutoMarkerReferencer(nsSVGMarkerFrame *aFrame,
|
2013-12-26 22:49:49 +04:00
|
|
|
nsSVGPathGeometryFrame *aMarkedFrame
|
|
|
|
MOZ_GUARD_OBJECT_NOTIFIER_PARAM);
|
2006-12-07 12:32:13 +03:00
|
|
|
~AutoMarkerReferencer();
|
|
|
|
private:
|
|
|
|
nsSVGMarkerFrame *mFrame;
|
2013-12-26 22:49:49 +04:00
|
|
|
MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER
|
2006-12-07 12:32:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// nsSVGMarkerFrame methods:
|
2013-01-10 03:02:45 +04:00
|
|
|
void SetParentCoordCtxProvider(mozilla::dom::SVGSVGElement *aContext);
|
2006-12-07 12:32:13 +03:00
|
|
|
|
2006-06-10 00:40:06 +04:00
|
|
|
// recursion prevention flag
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mInUse;
|
2006-06-10 00:40:06 +04:00
|
|
|
|
|
|
|
// second recursion prevention flag, for GetCanvasTM()
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mInUse2;
|
2006-06-10 00:40:06 +04:00
|
|
|
};
|
2005-11-11 17:36:26 +03:00
|
|
|
|
2013-09-16 09:06:29 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsMarkerAnonChildFrame class
|
|
|
|
|
|
|
|
typedef nsSVGDisplayContainerFrame nsSVGMarkerAnonChildFrameBase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*/
|
|
|
|
class nsSVGMarkerAnonChildFrame
|
|
|
|
: public nsSVGMarkerAnonChildFrameBase
|
|
|
|
{
|
2014-05-25 02:20:40 +04:00
|
|
|
friend nsContainerFrame*
|
2013-09-16 09:06:29 +04:00
|
|
|
NS_NewSVGMarkerAnonChildFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
|
|
|
|
|
|
|
nsSVGMarkerAnonChildFrame(nsStyleContext* aContext)
|
|
|
|
: nsSVGMarkerAnonChildFrameBase(aContext)
|
|
|
|
{}
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2014-01-06 03:31:14 +04:00
|
|
|
#endif
|
2013-09-16 09:06:29 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE {
|
2013-09-16 09:06:29 +04:00
|
|
|
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
|
|
|
|
{
|
2014-05-25 02:20:41 +04:00
|
|
|
nsSVGMarkerFrame* marker = static_cast<nsSVGMarkerFrame*>(GetParent());
|
2013-09-16 09:06:29 +04:00
|
|
|
return marker->GetCanvasTM(aFor, aTransformRoot);
|
|
|
|
}
|
|
|
|
};
|
2004-12-09 06:16:15 +03:00
|
|
|
#endif
|