2017-10-27 20:33:53 +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/. */
|
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
|
|
|
|
2014-10-31 23:08:54 +03:00
|
|
|
class gfxContext;
|
2013-01-10 03:02:45 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2016-12-18 14:11:47 +03:00
|
|
|
class SVGGeometryFrame;
|
2013-01-10 03:02:45 +04:00
|
|
|
namespace dom {
|
2017-10-10 09:58:34 +03:00
|
|
|
class SVGViewportElement;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
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
|
|
|
|
2017-04-30 18:30:08 +03:00
|
|
|
class nsSVGMarkerFrame final : public nsSVGContainerFrame
|
2006-06-10 00:40:06 +04:00
|
|
|
{
|
2017-05-18 23:03:41 +03:00
|
|
|
typedef mozilla::image::imgDrawingParams imgDrawingParams;
|
|
|
|
|
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:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsSVGMarkerFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsSVGContainerFrame(aContext, kClassID)
|
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:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsSVGMarkerFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
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,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2009-01-19 21:31:34 +03:00
|
|
|
#endif
|
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override {}
|
2012-07-20 20:41:29 +04:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2006-06-10 00:40:06 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override
|
2006-06-10 00:40:06 +04:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGMarker"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() override {
|
2013-09-16 09:06:29 +04:00
|
|
|
// Any children must be added to our single anonymous inner frame kid.
|
2016-01-29 17:42:14 +03:00
|
|
|
MOZ_ASSERT(PrincipalChildList().FirstChild() &&
|
2017-04-30 18:30:08 +03:00
|
|
|
PrincipalChildList().FirstChild()->IsSVGMarkerAnonChildFrame(),
|
2015-02-10 01:34:50 +03:00
|
|
|
"Where is our anonymous child?");
|
2016-01-29 17:42:14 +03:00
|
|
|
return PrincipalChildList().FirstChild()->GetContentInsertionFrame();
|
2013-09-16 09:06:29 +04:00
|
|
|
}
|
|
|
|
|
2006-06-10 00:40:06 +04:00
|
|
|
// nsSVGMarkerFrame methods:
|
2017-05-18 23:03:41 +03:00
|
|
|
void PaintMark(gfxContext& aContext,
|
|
|
|
const gfxMatrix& aToMarkedFrameUserSpace,
|
2017-06-08 08:17:07 +03:00
|
|
|
mozilla::SVGGeometryFrame* aMarkedFrame,
|
|
|
|
const nsSVGMark& aMark,
|
2017-05-18 23:03:41 +03:00
|
|
|
float aStrokeWidth,
|
|
|
|
imgDrawingParams& aImgParams);
|
2006-06-10 00:40:06 +04:00
|
|
|
|
2017-06-08 08:17:07 +03:00
|
|
|
SVGBBox GetMarkBBoxContribution(const Matrix& aToBBoxUserspace,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFlags,
|
2017-06-08 08:17:07 +03:00
|
|
|
mozilla::SVGGeometryFrame* aMarkedFrame,
|
|
|
|
const nsSVGMark& aMark,
|
2011-09-30 13:25:37 +04:00
|
|
|
float aStrokeWidth);
|
2006-06-10 00:40:06 +04:00
|
|
|
|
2017-06-16 12:22:33 +03:00
|
|
|
// Return our anonymous box child.
|
|
|
|
void AppendDirectlyOwnedAnonBoxes(nsTArray<OwnedAnonBox>& aResult) override;
|
2017-03-15 21:00:44 +03:00
|
|
|
|
2006-06-10 00:40:06 +04:00
|
|
|
private:
|
|
|
|
// stuff needed for callback
|
2017-03-08 07:06:25 +03:00
|
|
|
mozilla::SVGGeometryFrame *mMarkedFrame;
|
2017-06-08 08:17:07 +03:00
|
|
|
Matrix mMarkerTM;
|
2006-06-10 00:40:06 +04:00
|
|
|
|
|
|
|
// nsSVGContainerFrame methods:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual gfxMatrix GetCanvasTM() 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.
|
2015-09-03 19:15:23 +03:00
|
|
|
class MOZ_RAII AutoMarkerReferencer
|
2006-12-07 12:32:13 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AutoMarkerReferencer(nsSVGMarkerFrame *aFrame,
|
2017-03-08 07:06:25 +03:00
|
|
|
mozilla::SVGGeometryFrame *aMarkedFrame
|
2013-12-26 22:49:49 +04:00
|
|
|
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:
|
2017-10-10 09:58:34 +03:00
|
|
|
void SetParentCoordCtxProvider(mozilla::dom::SVGViewportElement *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
|
|
|
|
|
2017-04-30 18:30:08 +03:00
|
|
|
class nsSVGMarkerAnonChildFrame final : public nsSVGDisplayContainerFrame
|
2013-09-16 09:06:29 +04:00
|
|
|
{
|
2014-05-25 02:20:40 +04:00
|
|
|
friend nsContainerFrame*
|
2013-09-16 09:06:29 +04:00
|
|
|
NS_NewSVGMarkerAnonChildFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
|
|
|
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsSVGMarkerAnonChildFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsSVGDisplayContainerFrame(aContext, kClassID)
|
2013-09-16 09:06:29 +04:00
|
|
|
{}
|
|
|
|
|
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsSVGMarkerAnonChildFrame)
|
2013-09-16 09:06:29 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) 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
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override {
|
2013-09-16 09:06:29 +04:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGMarkerAnonChild"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// nsSVGContainerFrame methods:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual gfxMatrix GetCanvasTM() override
|
2013-09-16 09:06:29 +04:00
|
|
|
{
|
2014-09-08 15:28:50 +04:00
|
|
|
return static_cast<nsSVGMarkerFrame*>(GetParent())->GetCanvasTM();
|
2013-09-16 09:06:29 +04:00
|
|
|
}
|
|
|
|
};
|
2004-12-09 06:16:15 +03:00
|
|
|
#endif
|