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-03-20 05:15:55 -07:00
|
|
|
#include "gfxFont.h"
|
2011-05-07 10:08:41 -07:00
|
|
|
#include "nsISVGGlyphFragmentNode.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsISVGChildFrame.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-20 05:15:55 -07:00
|
|
|
class nsIDOMSVGRect;
|
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;
|
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
|
|
|
|
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
|
|
|
|
nsresult GetStartPositionOfChar(PRUint32 charnum, nsIDOMSVGPoint **_retval);
|
|
|
|
nsresult GetEndPositionOfChar(PRUint32 charnum, nsIDOMSVGPoint **_retval);
|
|
|
|
nsresult GetExtentOfChar(PRUint32 charnum, nsIDOMSVGRect **_retval);
|
|
|
|
nsresult GetRotationOfChar(PRUint32 charnum, float *_retval);
|
|
|
|
/**
|
|
|
|
* @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);
|
|
|
|
void SetStartIndex(PRUint32 aStartIndex);
|
|
|
|
/*
|
|
|
|
* Returns inherited x and y values instead of parent element's attribute
|
|
|
|
* values.
|
|
|
|
*/
|
|
|
|
void GetEffectiveXY(PRInt32 strLength,
|
|
|
|
nsTArray<float> &aX, nsTArray<float> &aY);
|
|
|
|
/*
|
|
|
|
* Returns inherited dx and dy values instead of parent element's attribute
|
|
|
|
* values.
|
|
|
|
*/
|
|
|
|
void GetEffectiveDxDy(PRInt32 strLength,
|
|
|
|
nsTArray<float> &aDx,
|
|
|
|
nsTArray<float> &aDy);
|
|
|
|
/*
|
|
|
|
* Returns inherited rotate values instead of parent element's attribute
|
|
|
|
* values.
|
|
|
|
*/
|
|
|
|
void GetEffectiveRotate(PRInt32 strLength,
|
|
|
|
nsTArray<float> &aRotate);
|
|
|
|
PRUint16 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:
|
2009-08-04 18:38:10 -07:00
|
|
|
NS_IMETHOD CharacterDataChanged(CharacterDataChangeInfo* aInfo);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-26 03:11:34 -07:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD IsSelectable(bool* aIsSelectable, PRUint8* aSelectStyle) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-19 10:31:34 -08:00
|
|
|
NS_IMETHOD Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::svgGlyphFrame
|
|
|
|
*/
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool IsFrameOfType(PRUint32 aFlags) const
|
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
|
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGGlyph"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-07-20 11:12:29 -07:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
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,
|
2008-10-20 01:42:03 -07:00
|
|
|
const nsIntRect *aDirtyRect);
|
2008-08-25 02:23:54 -07:00
|
|
|
NS_IMETHOD_(nsIFrame*) GetFrameForPoint(const nsPoint &aPoint);
|
2012-04-16 01:23:48 -07:00
|
|
|
virtual SVGBBox GetBBoxContribution(const gfxMatrix &aToBBoxUserspace,
|
2011-09-30 02:25:37 -07:00
|
|
|
PRUint32 aFlags);
|
2008-03-18 12:50:29 -07:00
|
|
|
|
|
|
|
NS_IMETHOD_(nsRect) GetCoveredRegion();
|
2012-07-21 17:01:44 -07:00
|
|
|
virtual void ReflowSVG();
|
2008-01-25 01:27:03 -08:00
|
|
|
virtual void NotifySVGChanged(PRUint32 aFlags);
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD_(bool) IsDisplayContainer() { return false; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-08 05:51:19 -07:00
|
|
|
// nsSVGGeometryFrame methods
|
2012-06-30 04:20:46 -07:00
|
|
|
gfxMatrix GetCanvasTM(PRUint32 aFor);
|
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
|
2009-05-29 03:15:40 -07:00
|
|
|
virtual PRUint32 GetNumberOfChars();
|
|
|
|
virtual float GetComputedTextLength();
|
|
|
|
virtual float GetSubStringLength(PRUint32 charnum, PRUint32 fragmentChars);
|
|
|
|
virtual PRInt32 GetCharNumAtPosition(nsIDOMSVGPoint *point);
|
2011-05-07 10:08:41 -07:00
|
|
|
NS_IMETHOD_(nsSVGGlyphFrame *) GetFirstGlyphFrame();
|
|
|
|
NS_IMETHOD_(nsSVGGlyphFrame *) GetNextGlyphFrame();
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD_(void) SetWhitespaceCompression(bool aCompressWhitespace) {
|
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:
|
|
|
|
AutoCanvasTMForMarker(nsSVGGlyphFrame *aFrame, PRUint32 aFor)
|
|
|
|
: mFrame(aFrame)
|
|
|
|
{
|
|
|
|
mOldFor = mFrame->mGetCanvasTMForFlag;
|
|
|
|
mFrame->mGetCanvasTMForFlag = aFor;
|
|
|
|
}
|
|
|
|
~AutoCanvasTMForMarker()
|
|
|
|
{
|
|
|
|
// Default
|
|
|
|
mFrame->mGetCanvasTMForFlag = mOldFor;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
nsSVGGlyphFrame *mFrame;
|
|
|
|
PRUint32 mOldFor;
|
|
|
|
};
|
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.
|
|
|
|
static PRUint32 GetTextRunUnitsFactor() { return 64; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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);
|
2010-10-17 09:27:48 -07:00
|
|
|
PRUint32 GetTextRunFlags(PRUint32 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,
|
2012-07-30 07:20:58 -07:00
|
|
|
gfxPattern *aStrokePattern = nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-08 05:51:19 -07:00
|
|
|
void NotifyGlyphMetricsChange();
|
2012-06-30 04:20:46 -07:00
|
|
|
void SetupGlobalTransform(gfxContext *aContext, PRUint32 aFor);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult GetHighlight(PRUint32 *charnum, PRUint32 *nchars,
|
|
|
|
nscolor *foreground, nscolor *background);
|
2010-03-30 03:21:19 -07:00
|
|
|
float GetSubStringAdvance(PRUint32 charnum, PRUint32 fragmentChars,
|
|
|
|
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
|
|
|
|
PRUint32 mStartIndex;
|
2012-06-30 04:20:46 -07:00
|
|
|
PRUint32 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,
|
2012-02-17 16:33:24 -08:00
|
|
|
gfxPattern **aStrokePattern);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|