2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla SVG project.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Crocodile Clips Ltd..
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Alex Fritze <alex.fritze@crocodile-clips.com> (original author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef __NS_SVGGLYPHFRAME_H__
|
|
|
|
#define __NS_SVGGLYPHFRAME_H__
|
|
|
|
|
|
|
|
#include "nsSVGGeometryFrame.h"
|
2011-05-07 10:08:41 -07:00
|
|
|
#include "nsISVGGlyphFragmentNode.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsISVGChildFrame.h"
|
|
|
|
#include "gfxContext.h"
|
2007-04-18 14:09:31 -07:00
|
|
|
#include "gfxFont.h"
|
2009-04-28 21:31:34 -07:00
|
|
|
#include "gfxRect.h"
|
|
|
|
#include "gfxMatrix.h"
|
2011-08-11 06:29:50 -07:00
|
|
|
#include "nsTextFragment.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsSVGTextFrame;
|
2011-05-07 10:08:41 -07:00
|
|
|
class nsSVGTextPathFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsSVGGlyphFrame;
|
2008-03-18 12:50:29 -07:00
|
|
|
class CharacterIterator;
|
|
|
|
struct CharacterPosition;
|
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
|
|
|
|
{
|
|
|
|
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),
|
|
|
|
mTextRun(nsnull),
|
2010-09-17 20:46:48 -07:00
|
|
|
mStartIndex(0),
|
2011-05-03 00:45:30 -07:00
|
|
|
mCompressWhitespace(PR_TRUE),
|
|
|
|
mTrimLeadingWhitespace(PR_FALSE),
|
|
|
|
mTrimTrailingWhitespace(PR_FALSE),
|
2011-04-20 02:16:01 -07:00
|
|
|
mPropagateTransform(PR_TRUE)
|
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) {
|
2011-05-07 10:08:41 -07:00
|
|
|
mTrimLeadingWhitespace = aTrimLeadingWhitespace;
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetTrimTrailingWhitespace(bool aTrimTrailingWhitespace) {
|
2011-05-07 10:08:41 -07:00
|
|
|
mTrimTrailingWhitespace = aTrimTrailingWhitespace;
|
|
|
|
}
|
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
|
|
|
virtual void SetSelected(bool aSelected,
|
2009-07-26 15:05:41 -07:00
|
|
|
SelectionType aType);
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD GetSelected(bool *aSelected) const;
|
|
|
|
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
|
|
|
|
|
|
|
|
// nsISVGChildFrame interface:
|
2008-03-18 12:50:29 -07:00
|
|
|
// These four always use the global transform, even if NS_STATE_NONDISPLAY_CHILD
|
2008-10-20 01:42:03 -07:00
|
|
|
NS_IMETHOD PaintSVG(nsSVGRenderState *aContext,
|
|
|
|
const nsIntRect *aDirtyRect);
|
2008-08-25 02:23:54 -07:00
|
|
|
NS_IMETHOD_(nsIFrame*) GetFrameForPoint(const nsPoint &aPoint);
|
2008-03-18 01:37:48 -07:00
|
|
|
NS_IMETHOD UpdateCoveredRegion();
|
2009-04-28 21:31:34 -07:00
|
|
|
virtual gfxRect GetBBoxContribution(const gfxMatrix &aToBBoxUserspace);
|
2008-03-18 12:50:29 -07:00
|
|
|
|
|
|
|
NS_IMETHOD_(nsRect) GetCoveredRegion();
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD InitialUpdate();
|
2008-01-25 01:27:03 -08:00
|
|
|
virtual void NotifySVGChanged(PRUint32 aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD NotifyRedrawSuspended();
|
|
|
|
NS_IMETHOD NotifyRedrawUnsuspended();
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD_(bool) IsDisplayContainer() { return false; }
|
|
|
|
NS_IMETHOD_(bool) HasValidCoveredRect() { return true; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-08 05:51:19 -07:00
|
|
|
// nsSVGGeometryFrame methods
|
2009-04-28 21:31:34 -07:00
|
|
|
gfxMatrix GetCanvasTM();
|
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) {
|
2011-05-03 00:45:30 -07:00
|
|
|
mCompressWhitespace = aCompressWhitespace;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
2008-03-18 12:50:29 -07:00
|
|
|
friend class CharacterIterator;
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
void FillCharacters(CharacterIterator *aIter,
|
|
|
|
gfxContext *aContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-08 05:51:19 -07:00
|
|
|
void NotifyGlyphMetricsChange();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool GetGlobalTransform(gfxMatrix *aMatrix);
|
2008-03-31 06:40:18 -07:00
|
|
|
void SetupGlobalTransform(gfxContext *aContext);
|
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;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mCompressWhitespace;
|
|
|
|
bool mTrimLeadingWhitespace;
|
|
|
|
bool mTrimTrailingWhitespace;
|
|
|
|
bool mPropagateTransform;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|