2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef __NS_SVGGLYPHFRAME_H__
|
|
|
|
#define __NS_SVGGLYPHFRAME_H__
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-03-20 05:15:55 -07:00
|
|
|
#include "gfxFont.h"
|
2013-02-10 22:22:20 -08:00
|
|
|
#include "gfxSVGGlyphs.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsISVGChildFrame.h"
|
2013-02-10 22:22:20 -08:00
|
|
|
#include "nsISVGGlyphFragmentNode.h"
|
2012-03-20 05:15:55 -07:00
|
|
|
#include "nsSVGGeometryFrame.h"
|
2011-12-19 02:06:45 -08:00
|
|
|
#include "nsSVGUtils.h"
|
2011-08-11 06:29:50 -07:00
|
|
|
#include "nsTextFragment.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-20 05:15:55 -07:00
|
|
|
class CharacterIterator;
|
|
|
|
class gfxContext;
|
2012-07-20 11:12:29 -07:00
|
|
|
class nsDisplaySVGGlyphs;
|
2012-03-02 00:28:59 -08:00
|
|
|
class nsRenderingContext;
|
2012-03-20 05:15:55 -07:00
|
|
|
class nsSVGGlyphFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsSVGTextFrame;
|
2011-05-07 10:08:41 -07:00
|
|
|
class nsSVGTextPathFrame;
|
2013-05-15 19:35:12 -07:00
|
|
|
class gfxTextContextPaint;
|
2012-03-20 05:15:55 -07:00
|
|
|
|
2008-03-18 12:50:29 -07:00
|
|
|
struct CharacterPosition;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-10 22:22:20 -08:00
|
|
|
namespace mozilla {
|
|
|
|
|
2013-03-26 08:53:13 -07:00
|
|
|
namespace dom {
|
|
|
|
class SVGIRect;
|
|
|
|
}
|
|
|
|
|
2013-02-10 22:22:20 -08:00
|
|
|
// Slightly horrible callback for deferring application of opacity
|
2013-05-15 19:35:12 -07:00
|
|
|
struct SVGTextContextPaint : public gfxTextContextPaint {
|
2013-02-10 22:22:20 -08:00
|
|
|
already_AddRefed<gfxPattern> GetFillPattern(float aOpacity,
|
2013-05-29 12:37:49 -07:00
|
|
|
const gfxMatrix& aCTM) MOZ_OVERRIDE;
|
2013-02-10 22:22:20 -08:00
|
|
|
already_AddRefed<gfxPattern> GetStrokePattern(float aOpacity,
|
2013-05-29 12:37:49 -07:00
|
|
|
const gfxMatrix& aCTM) MOZ_OVERRIDE;
|
2013-02-10 22:22:20 -08:00
|
|
|
|
|
|
|
void SetFillOpacity(float aOpacity) { mFillOpacity = aOpacity; }
|
2013-05-29 12:37:49 -07:00
|
|
|
float GetFillOpacity() MOZ_OVERRIDE { return mFillOpacity; }
|
2013-02-10 22:22:20 -08:00
|
|
|
|
|
|
|
void SetStrokeOpacity(float aOpacity) { mStrokeOpacity = aOpacity; }
|
2013-05-29 12:37:49 -07:00
|
|
|
float GetStrokeOpacity() MOZ_OVERRIDE { return mStrokeOpacity; }
|
2013-02-10 22:22:20 -08:00
|
|
|
|
|
|
|
struct Paint {
|
2013-09-25 00:18:41 -07:00
|
|
|
Paint() : mPaintType(eStyleSVGPaintType_None) {}
|
2013-02-10 22:22:20 -08:00
|
|
|
|
|
|
|
void SetPaintServer(nsIFrame *aFrame, const gfxMatrix& aContextMatrix,
|
|
|
|
nsSVGPaintServerFrame *aPaintServerFrame) {
|
|
|
|
mPaintType = eStyleSVGPaintType_Server;
|
|
|
|
mPaintDefinition.mPaintServerFrame = aPaintServerFrame;
|
|
|
|
mFrame = aFrame;
|
|
|
|
mContextMatrix = aContextMatrix;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetColor(const nscolor &aColor) {
|
|
|
|
mPaintType = eStyleSVGPaintType_Color;
|
|
|
|
mPaintDefinition.mColor = aColor;
|
|
|
|
}
|
|
|
|
|
2013-05-15 19:35:12 -07:00
|
|
|
void SetContextPaint(gfxTextContextPaint *aContextPaint,
|
|
|
|
nsStyleSVGPaintType aPaintType) {
|
2013-05-15 19:35:15 -07:00
|
|
|
NS_ASSERTION(aPaintType == eStyleSVGPaintType_ContextFill ||
|
|
|
|
aPaintType == eStyleSVGPaintType_ContextStroke,
|
2013-05-15 19:35:12 -07:00
|
|
|
"Invalid context paint type");
|
2013-02-10 22:22:20 -08:00
|
|
|
mPaintType = aPaintType;
|
2013-05-15 19:35:12 -07:00
|
|
|
mPaintDefinition.mContextPaint = aContextPaint;
|
2013-02-10 22:22:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
union {
|
|
|
|
nsSVGPaintServerFrame *mPaintServerFrame;
|
2013-05-15 19:35:12 -07:00
|
|
|
gfxTextContextPaint *mContextPaint;
|
2013-02-10 22:22:20 -08:00
|
|
|
nscolor mColor;
|
|
|
|
} mPaintDefinition;
|
|
|
|
|
|
|
|
nsIFrame *mFrame;
|
|
|
|
// CTM defining the user space for the pattern we will use.
|
|
|
|
gfxMatrix mContextMatrix;
|
|
|
|
nsStyleSVGPaintType mPaintType;
|
|
|
|
|
|
|
|
// Device-space-to-pattern-space
|
|
|
|
gfxMatrix mPatternMatrix;
|
|
|
|
nsRefPtrHashtable<nsFloatHashKey, gfxPattern> mPatternCache;
|
|
|
|
|
|
|
|
already_AddRefed<gfxPattern> GetPattern(float aOpacity,
|
|
|
|
nsStyleSVGPaint nsStyleSVG::*aFillOrStroke,
|
|
|
|
const gfxMatrix& aCTM);
|
|
|
|
};
|
|
|
|
|
|
|
|
Paint mFillPaint;
|
|
|
|
Paint mStrokePaint;
|
|
|
|
|
|
|
|
float mFillOpacity;
|
|
|
|
float mStrokeOpacity;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
2012-02-04 05:11:09 -08:00
|
|
|
typedef gfxFont::DrawMode DrawMode;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
typedef nsSVGGeometryFrame nsSVGGlyphFrameBase;
|
|
|
|
|
|
|
|
class nsSVGGlyphFrame : public nsSVGGlyphFrameBase,
|
2011-05-07 10:08:41 -07:00
|
|
|
public nsISVGGlyphFragmentNode,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsISVGChildFrame
|
|
|
|
{
|
2012-06-30 04:20:46 -07:00
|
|
|
class AutoCanvasTMForMarker;
|
|
|
|
friend class AutoCanvasTMForMarker;
|
|
|
|
friend class CharacterIterator;
|
2007-03-22 10:30:00 -07:00
|
|
|
friend nsIFrame*
|
2009-01-19 10:31:34 -08:00
|
|
|
NS_NewSVGGlyphFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2007-08-03 01:39:12 -07:00
|
|
|
protected:
|
|
|
|
nsSVGGlyphFrame(nsStyleContext* aContext)
|
2008-03-18 12:50:29 -07:00
|
|
|
: nsSVGGlyphFrameBase(aContext),
|
2012-07-30 07:20:58 -07:00
|
|
|
mTextRun(nullptr),
|
2010-09-17 20:46:48 -07:00
|
|
|
mStartIndex(0),
|
2012-06-30 04:20:46 -07:00
|
|
|
mGetCanvasTMForFlag(nsISVGChildFrame::FOR_OUTERSVG_TM),
|
2011-10-17 07:59:28 -07:00
|
|
|
mCompressWhitespace(true),
|
|
|
|
mTrimLeadingWhitespace(false),
|
2012-01-12 01:59:39 -08:00
|
|
|
mTrimTrailingWhitespace(false)
|
2008-03-18 12:50:29 -07:00
|
|
|
{}
|
|
|
|
~nsSVGGlyphFrame()
|
|
|
|
{
|
|
|
|
ClearTextRun();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
public:
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-07 10:08:41 -07:00
|
|
|
// These do not use the global transform if NS_STATE_NONDISPLAY_CHILD
|
2012-12-22 20:54:25 -08:00
|
|
|
nsresult GetStartPositionOfChar(uint32_t charnum, nsISupports **_retval);
|
|
|
|
nsresult GetEndPositionOfChar(uint32_t charnum, nsISupports **_retval);
|
2013-03-26 08:53:13 -07:00
|
|
|
nsresult GetExtentOfChar(uint32_t charnum, dom::SVGIRect **_retval);
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult GetRotationOfChar(uint32_t charnum, float *_retval);
|
2011-05-07 10:08:41 -07:00
|
|
|
/**
|
|
|
|
* @param aForceGlobalTransform controls whether to use the
|
|
|
|
* global transform even when NS_STATE_NONDISPLAY_CHILD
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
float GetAdvance(bool aForceGlobalTransform);
|
2011-05-07 10:08:41 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetGlyphPosition(gfxPoint *aPosition, bool aForceGlobalTransform);
|
2011-05-07 10:08:41 -07:00
|
|
|
nsSVGTextPathFrame* FindTextPathParent();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsStartOfChunk(); // == is new absolutely positioned chunk.
|
2011-05-07 10:08:41 -07:00
|
|
|
|
|
|
|
void GetXY(mozilla::SVGUserUnitList *aX, mozilla::SVGUserUnitList *aY);
|
2012-08-22 08:56:38 -07:00
|
|
|
void SetStartIndex(uint32_t aStartIndex);
|
2011-05-07 10:08:41 -07:00
|
|
|
/*
|
|
|
|
* Returns inherited x and y values instead of parent element's attribute
|
|
|
|
* values.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void GetEffectiveXY(int32_t strLength,
|
2011-05-07 10:08:41 -07:00
|
|
|
nsTArray<float> &aX, nsTArray<float> &aY);
|
|
|
|
/*
|
|
|
|
* Returns inherited dx and dy values instead of parent element's attribute
|
|
|
|
* values.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void GetEffectiveDxDy(int32_t strLength,
|
2011-05-07 10:08:41 -07:00
|
|
|
nsTArray<float> &aDx,
|
|
|
|
nsTArray<float> &aDy);
|
|
|
|
/*
|
|
|
|
* Returns inherited rotate values instead of parent element's attribute
|
|
|
|
* values.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void GetEffectiveRotate(int32_t strLength,
|
2011-05-07 10:08:41 -07:00
|
|
|
nsTArray<float> &aRotate);
|
2012-08-22 08:56:38 -07:00
|
|
|
uint16_t GetTextAnchor();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsAbsolutelyPositioned();
|
|
|
|
bool IsTextEmpty() const {
|
2011-05-07 10:08:41 -07:00
|
|
|
return mContent->GetText()->GetLength() == 0;
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetTrimLeadingWhitespace(bool aTrimLeadingWhitespace) {
|
2012-01-14 02:07:26 -08:00
|
|
|
if (mTrimLeadingWhitespace != aTrimLeadingWhitespace) {
|
|
|
|
mTrimLeadingWhitespace = aTrimLeadingWhitespace;
|
|
|
|
ClearTextRun();
|
|
|
|
}
|
2011-05-07 10:08:41 -07:00
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetTrimTrailingWhitespace(bool aTrimTrailingWhitespace) {
|
2012-01-14 02:07:26 -08:00
|
|
|
if (mTrimTrailingWhitespace != aTrimTrailingWhitespace) {
|
|
|
|
mTrimTrailingWhitespace = aTrimTrailingWhitespace;
|
|
|
|
ClearTextRun();
|
|
|
|
}
|
2011-05-07 10:08:41 -07:00
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool EndsWithWhitespace() const;
|
|
|
|
bool IsAllWhitespace() const;
|
2011-05-07 10:08:41 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIFrame interface:
|
2013-05-29 12:37:49 -07:00
|
|
|
NS_IMETHOD CharacterDataChanged(CharacterDataChangeInfo* aInfo) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-03-19 18:47:48 -07:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2009-01-19 10:31:34 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::svgGlyphFrame
|
|
|
|
*/
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Set the frame state bit for text frames to mark them as replaced.
|
|
|
|
// XXX kipp: temporary
|
|
|
|
|
|
|
|
return nsSVGGlyphFrameBase::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced));
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2013-05-29 12:37:49 -07:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGGlyph"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-02-14 03:12:27 -08:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2012-07-20 11:12:29 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsISVGChildFrame interface:
|
2008-03-18 12:50:29 -07:00
|
|
|
// These four always use the global transform, even if NS_STATE_NONDISPLAY_CHILD
|
2012-03-02 00:28:59 -08:00
|
|
|
NS_IMETHOD PaintSVG(nsRenderingContext *aContext,
|
2013-09-11 00:27:45 -07:00
|
|
|
const nsIntRect *aDirtyRect,
|
|
|
|
nsIFrame* aTransformRoot = nullptr) MOZ_OVERRIDE;
|
2012-09-14 09:10:08 -07:00
|
|
|
NS_IMETHOD_(nsIFrame*) GetFrameForPoint(const nsPoint &aPoint) MOZ_OVERRIDE;
|
2012-04-16 01:23:48 -07:00
|
|
|
virtual SVGBBox GetBBoxContribution(const gfxMatrix &aToBBoxUserspace,
|
2012-09-14 09:10:08 -07:00
|
|
|
uint32_t aFlags) MOZ_OVERRIDE;
|
2008-03-18 12:50:29 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
NS_IMETHOD_(nsRect) GetCoveredRegion() MOZ_OVERRIDE;
|
|
|
|
virtual void ReflowSVG() MOZ_OVERRIDE;
|
|
|
|
virtual void NotifySVGChanged(uint32_t aFlags) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(bool) IsDisplayContainer() MOZ_OVERRIDE { return false; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-08 05:51:19 -07:00
|
|
|
// nsSVGGeometryFrame methods
|
2013-09-11 00:27:45 -07:00
|
|
|
gfxMatrix GetCanvasTM(uint32_t aFor,
|
|
|
|
nsIFrame* aTransformRoot = nullptr) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsISVGGlyphFragmentNode interface:
|
2008-03-18 12:50:29 -07:00
|
|
|
// These do not use the global transform if NS_STATE_NONDISPLAY_CHILD
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual uint32_t GetNumberOfChars() MOZ_OVERRIDE;
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual float GetComputedTextLength() MOZ_OVERRIDE;
|
|
|
|
virtual float GetSubStringLength(uint32_t charnum, uint32_t fragmentChars) MOZ_OVERRIDE;
|
2013-01-06 06:14:43 -08:00
|
|
|
virtual int32_t GetCharNumAtPosition(mozilla::nsISVGPoint *point) MOZ_OVERRIDE;
|
2012-09-14 09:10:08 -07:00
|
|
|
NS_IMETHOD_(nsSVGGlyphFrame *) GetFirstGlyphFrame() MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(nsSVGGlyphFrame *) GetNextGlyphFrame() MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(void) SetWhitespaceCompression(bool aCompressWhitespace) MOZ_OVERRIDE {
|
2012-01-14 02:07:26 -08:00
|
|
|
if (mCompressWhitespace != aCompressWhitespace) {
|
|
|
|
mCompressWhitespace = aCompressWhitespace;
|
|
|
|
ClearTextRun();
|
|
|
|
}
|
2011-05-03 00:45:30 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-30 04:20:46 -07:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* This class exists purely because it would be too messy to pass the "for"
|
|
|
|
* flag for GetCanvasTM through the call chains to the GetCanvasTM() call in
|
|
|
|
* EnsureTextRun.
|
|
|
|
*/
|
|
|
|
class AutoCanvasTMForMarker {
|
|
|
|
public:
|
2012-08-22 08:56:38 -07:00
|
|
|
AutoCanvasTMForMarker(nsSVGGlyphFrame *aFrame, uint32_t aFor)
|
2012-06-30 04:20:46 -07:00
|
|
|
: mFrame(aFrame)
|
|
|
|
{
|
|
|
|
mOldFor = mFrame->mGetCanvasTMForFlag;
|
|
|
|
mFrame->mGetCanvasTMForFlag = aFor;
|
|
|
|
}
|
|
|
|
~AutoCanvasTMForMarker()
|
|
|
|
{
|
|
|
|
// Default
|
|
|
|
mFrame->mGetCanvasTMForFlag = mOldFor;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
nsSVGGlyphFrame *mFrame;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mOldFor;
|
2012-06-30 04:20:46 -07:00
|
|
|
};
|
2008-03-18 12:50:29 -07:00
|
|
|
|
|
|
|
// Use a power of 2 here. It's not so important to match
|
2011-04-16 18:22:44 -07:00
|
|
|
// nsDeviceContext::AppUnitsPerDevPixel, but since we do a lot of
|
2008-03-18 12:50:29 -07:00
|
|
|
// multiplying by 1/GetTextRunUnitsFactor, it's good for it to be a
|
|
|
|
// power of 2 to avoid accuracy loss.
|
2013-01-28 11:01:59 -08:00
|
|
|
static int32_t GetTextRunUnitsFactor() { return 64; }
|
|
|
|
|
2008-03-18 12:50:29 -07:00
|
|
|
/**
|
|
|
|
* @aParam aDrawScale font drawing must be scaled into user units
|
|
|
|
* by this factor
|
|
|
|
* @param aMetricsScale font metrics must be scaled into user units
|
|
|
|
* by this factor
|
|
|
|
* @param aForceGlobalTransform set to true if we should force use of
|
|
|
|
* the global transform; otherwise we won't use the global transform
|
|
|
|
* if we're a NONDISPLAY_CHILD
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
bool EnsureTextRun(float *aDrawScale, float *aMetricsScale,
|
|
|
|
bool aForceGlobalTransform);
|
2008-03-18 12:50:29 -07:00
|
|
|
void ClearTextRun();
|
2007-04-18 14:09:31 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool GetCharacterData(nsAString & aCharacterData);
|
|
|
|
bool GetCharacterPositions(nsTArray<CharacterPosition>* aCharacterPositions,
|
2008-03-18 12:50:29 -07:00
|
|
|
float aMetricsScale);
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetTextRunFlags(uint32_t strLength);
|
2007-04-18 14:09:31 -07:00
|
|
|
|
2008-03-18 12:50:29 -07:00
|
|
|
void AddCharactersToPath(CharacterIterator *aIter,
|
|
|
|
gfxContext *aContext);
|
|
|
|
void AddBoundingBoxesToPath(CharacterIterator *aIter,
|
|
|
|
gfxContext *aContext);
|
2012-02-04 05:11:09 -08:00
|
|
|
void DrawCharacters(CharacterIterator *aIter,
|
|
|
|
gfxContext *aContext,
|
|
|
|
DrawMode aDrawMode,
|
2013-05-15 19:35:12 -07:00
|
|
|
gfxTextContextPaint *aContextPaint = nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-08 05:51:19 -07:00
|
|
|
void NotifyGlyphMetricsChange();
|
2013-09-11 00:27:45 -07:00
|
|
|
void SetupGlobalTransform(gfxContext *aContext, uint32_t aFor,
|
|
|
|
nsIFrame* aTransformRoot = nullptr);
|
2012-08-22 08:56:38 -07:00
|
|
|
float GetSubStringAdvance(uint32_t charnum, uint32_t fragmentChars,
|
2010-03-30 03:21:19 -07:00
|
|
|
float aMetricsScale);
|
|
|
|
gfxFloat GetBaselineOffset(float aMetricsScale);
|
|
|
|
|
2010-12-03 08:40:23 -08:00
|
|
|
virtual void GetDxDy(SVGUserUnitList *aDx, SVGUserUnitList *aDy);
|
|
|
|
virtual const SVGNumberList *GetRotate();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-04-28 21:31:34 -07:00
|
|
|
// Used to support GetBBoxContribution by making GetConvasTM use this as the
|
|
|
|
// parent transform instead of the real CanvasTM.
|
2011-09-25 14:04:32 -07:00
|
|
|
nsAutoPtr<gfxMatrix> mOverrideCanvasTM;
|
2009-04-28 21:31:34 -07:00
|
|
|
|
2008-03-18 12:50:29 -07:00
|
|
|
// Owning pointer, must call gfxTextRunWordCache::RemoveTextRun before deleting
|
|
|
|
gfxTextRun *mTextRun;
|
2007-04-18 14:09:31 -07:00
|
|
|
gfxPoint mPosition;
|
2010-09-17 20:46:48 -07:00
|
|
|
// The start index into the position and rotation data
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mStartIndex;
|
|
|
|
uint32_t mGetCanvasTMForFlag;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mCompressWhitespace;
|
|
|
|
bool mTrimLeadingWhitespace;
|
|
|
|
bool mTrimTrailingWhitespace;
|
2012-02-04 05:11:09 -08:00
|
|
|
|
|
|
|
private:
|
2012-02-17 16:33:00 -08:00
|
|
|
DrawMode SetupCairoState(gfxContext *aContext,
|
2013-05-15 19:35:12 -07:00
|
|
|
gfxTextContextPaint *aOuterContextPaint,
|
|
|
|
gfxTextContextPaint **aThisContextPaint);
|
2012-09-05 21:58:46 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up the stroke style in |aContext| and stores stroke pattern
|
2013-05-15 19:35:12 -07:00
|
|
|
* information in |aThisContextPaint|.
|
2012-09-05 21:58:46 -07:00
|
|
|
*/
|
2012-09-05 21:58:47 -07:00
|
|
|
bool SetupCairoStroke(gfxContext *aContext,
|
2013-05-15 19:35:12 -07:00
|
|
|
gfxTextContextPaint *aOuterContextPaint,
|
|
|
|
SVGTextContextPaint *aThisContextPaint);
|
2012-09-05 21:58:46 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up the fill style in |aContext| and stores fill pattern information
|
2013-05-15 19:35:12 -07:00
|
|
|
* in |aThisContextPaint|.
|
2012-09-05 21:58:46 -07:00
|
|
|
*/
|
|
|
|
bool SetupCairoFill(gfxContext *aContext,
|
2013-05-15 19:35:12 -07:00
|
|
|
gfxTextContextPaint *aOuterContextPaint,
|
|
|
|
SVGTextContextPaint *aThisContextPaint);
|
2012-09-05 21:58:46 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the current pattern to the fill or stroke style of the outer text
|
2013-05-15 19:35:12 -07:00
|
|
|
* context. Will also set the paint opacity to transparent if the paint is set
|
2012-09-05 21:58:47 -07:00
|
|
|
* to "none".
|
2012-09-05 21:58:46 -07:00
|
|
|
*/
|
2013-05-15 19:35:12 -07:00
|
|
|
bool SetupContextPaint(gfxContext *aContext,
|
2012-09-05 21:58:46 -07:00
|
|
|
nsStyleSVGPaint nsStyleSVG::*aFillOrStroke,
|
|
|
|
float& aOpacity,
|
2013-05-15 19:35:12 -07:00
|
|
|
gfxTextContextPaint *aContextPaint);
|
2012-09-05 21:58:46 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores in |aTargetPaint| information on how to reconstruct the current
|
2012-09-05 21:58:47 -07:00
|
|
|
* fill or stroke pattern. Will also set the paint opacity to transparent if
|
|
|
|
* the paint is set to "none".
|
2013-05-15 19:35:12 -07:00
|
|
|
* @param aOuterContextPaint pattern information from the outer text context
|
2012-09-05 21:58:46 -07:00
|
|
|
* @param aTargetPaint where to store the current pattern information
|
|
|
|
* @param aFillOrStroke member pointer to the paint we are setting up
|
|
|
|
* @param aProperty the frame property descriptor of the fill or stroke paint
|
|
|
|
* server frame
|
|
|
|
*/
|
|
|
|
void SetupInheritablePaint(gfxContext *aContext,
|
2012-09-05 21:58:47 -07:00
|
|
|
float& aOpacity,
|
2013-05-15 19:35:12 -07:00
|
|
|
gfxTextContextPaint *aOuterContextPaint,
|
|
|
|
SVGTextContextPaint::Paint& aTargetPaint,
|
2012-09-05 21:58:46 -07:00
|
|
|
nsStyleSVGPaint nsStyleSVG::*aFillOrStroke,
|
|
|
|
const FramePropertyDescriptor *aProperty);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|