mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
1051 lines
38 KiB
C++
1051 lines
38 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
|
*
|
|
* 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 mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Roland Mainz <roland.mainz@informatik.med.uni-giessen.de>
|
|
* Leon Sha <leon.sha@sun.com>
|
|
* Boris Zbarsky <bzbarsky@mit.edu>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either 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 NPL, 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 NPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef nsIRenderingContext_h___
|
|
#define nsIRenderingContext_h___
|
|
|
|
#include "nscore.h"
|
|
#include "nsISupports.h"
|
|
#include "nsColor.h"
|
|
#include "nsCoord.h"
|
|
#include "nsIDrawingSurface.h"
|
|
|
|
class nsIWidget;
|
|
class nsIFontMetrics;
|
|
class nsTransform2D;
|
|
class nsString;
|
|
class nsIDeviceContext;
|
|
class nsIRegion;
|
|
class nsIAtom;
|
|
|
|
struct nsFont;
|
|
struct nsPoint;
|
|
struct nsPathPoint;
|
|
struct nsRect;
|
|
struct nsTextDimensions;
|
|
#ifdef MOZ_MATHML
|
|
struct nsBoundingMetrics;
|
|
#endif
|
|
|
|
|
|
/* gfx2 */
|
|
class imgIContainer;
|
|
|
|
//cliprect/region combination methods
|
|
|
|
typedef enum
|
|
{
|
|
nsClipCombine_kIntersect = 0,
|
|
nsClipCombine_kUnion = 1,
|
|
nsClipCombine_kSubtract = 2,
|
|
nsClipCombine_kReplace = 3
|
|
} nsClipCombine;
|
|
|
|
//linestyles
|
|
typedef enum
|
|
{
|
|
nsLineStyle_kNone = 0,
|
|
nsLineStyle_kSolid = 1,
|
|
nsLineStyle_kDashed = 2,
|
|
nsLineStyle_kDotted = 3
|
|
} nsLineStyle;
|
|
|
|
typedef enum
|
|
{
|
|
nsPenMode_kNone = 0,
|
|
nsPenMode_kInvert = 1
|
|
} nsPenMode;
|
|
|
|
|
|
// IID for the nsIRenderingContext interface
|
|
#define NS_IRENDERING_CONTEXT_IID \
|
|
{ 0xa6cf9068, 0x15b3, 0x11d2,{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//a cross platform way of specifying a native rendering context
|
|
typedef void * nsDrawingSurface;
|
|
|
|
// RenderingContext interface
|
|
class nsIRenderingContext : public nsISupports
|
|
{
|
|
public:
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IRENDERING_CONTEXT_IID)
|
|
|
|
//TBD: bind/unbind, transformation of scalars (hacky),
|
|
//potential drawmode for selection, polygons. MMP
|
|
|
|
/**
|
|
* Initialize the RenderingContext
|
|
* @param aContext the device context to use.
|
|
* @param aWidget the widget to hook up to
|
|
* @result The result of the initialization, NS_Ok if no errors
|
|
*/
|
|
NS_IMETHOD Init(nsIDeviceContext* aContext, nsIWidget *aWidget) = 0;
|
|
|
|
/**
|
|
* Initialize the RenderingContext
|
|
* @param aContext the device context to use for the drawing.
|
|
* @param aSurface the surface to draw into
|
|
* @result The result of the initialization, NS_Ok if no errors
|
|
*/
|
|
NS_IMETHOD Init(nsIDeviceContext* aContext, nsDrawingSurface aSurface) = 0;
|
|
|
|
/**
|
|
* Reset the rendering context
|
|
*/
|
|
NS_IMETHOD Reset(void) = 0;
|
|
|
|
/**
|
|
* Get the DeviceContext that this RenderingContext was initialized with
|
|
* @result the device context
|
|
*/
|
|
NS_IMETHOD GetDeviceContext(nsIDeviceContext *& aDeviceContext) = 0;
|
|
|
|
/**
|
|
* Lock a rect of the drawing surface associated with the
|
|
* rendering context. do not attempt to use any of the Rendering Context
|
|
* rendering or state management methods until the drawing surface has
|
|
* been Unlock()ed. if a drawing surface is Lock()ed with this method,
|
|
* it must be Unlock()ed by calling UnlockDrawingSurface() rather than
|
|
* just calling the Unlock() method on the drawing surface directly.
|
|
* see nsIDrawingSurface.h for more information
|
|
* @return error status
|
|
**/
|
|
NS_IMETHOD LockDrawingSurface(PRInt32 aX, PRInt32 aY, PRUint32 aWidth, PRUint32 aHeight,
|
|
void **aBits, PRInt32 *aStride, PRInt32 *aWidthBytes,
|
|
PRUint32 aFlags) = 0;
|
|
|
|
/**
|
|
* Unlock a rect of the drawing surface associated with the rendering
|
|
* context. see nsIDrawingSurface.h for more information.
|
|
* @return error status
|
|
**/
|
|
NS_IMETHOD UnlockDrawingSurface(void) = 0;
|
|
|
|
/**
|
|
* Selects an offscreen drawing surface into the RenderingContext to draw to.
|
|
* @param aSurface is the offscreen surface we are going to draw to.
|
|
* if nsnull, the original drawing surface obtained at initialization
|
|
* should be selected.
|
|
*/
|
|
NS_IMETHOD SelectOffScreenDrawingSurface(nsDrawingSurface aSurface) = 0;
|
|
|
|
/**
|
|
* Get the currently selected drawing surface
|
|
* @param aSurface out parameter for the current drawing surface
|
|
*/
|
|
NS_IMETHOD GetDrawingSurface(nsDrawingSurface *aSurface) = 0;
|
|
|
|
/**
|
|
* Returns in aResult any rendering hints that the context has.
|
|
* See below for the hints bits. Always returns NS_OK.
|
|
*/
|
|
NS_IMETHOD GetHints(PRUint32& aResult) = 0;
|
|
|
|
/**
|
|
* Save a graphical state onto a stack.
|
|
*/
|
|
NS_IMETHOD PushState(void) = 0;
|
|
|
|
/**
|
|
* Get and and set RenderingContext to this graphical state
|
|
* @return if PR_TRUE, indicates that the clipping region after
|
|
* popping state is empty, else PR_FALSE
|
|
*/
|
|
NS_IMETHOD PopState(PRBool &aClipEmpty) = 0;
|
|
|
|
/**
|
|
* Tells if a given rectangle is visible within the rendering context
|
|
* @param aRect is the rectangle that will be checked for visiblity
|
|
* @result If true, that rectanglular area is visable.
|
|
*/
|
|
NS_IMETHOD IsVisibleRect(const nsRect& aRect, PRBool &aIsVisible) = 0;
|
|
|
|
/**
|
|
* Sets the clipping for the RenderingContext to the passed in rectangle.
|
|
* The rectangle is in app units!
|
|
* @param aRect The rectangle to set the clipping rectangle to
|
|
* @param aCombine how to combine this rect with the current clip region.
|
|
* see the bottom of nsIRenderingContext.h
|
|
* @return PR_TRUE if the clip region is now empty, else PR_FALSE
|
|
*/
|
|
NS_IMETHOD SetClipRect(const nsRect& aRect, nsClipCombine aCombine, PRBool &aClipEmpty) = 0;
|
|
|
|
/**
|
|
* Gets the bounds of the clip region of the RenderingContext. The bounds are returned
|
|
* in device units!
|
|
* @param aRect out parameter to contain the clip region bounds
|
|
* for the RenderingContext
|
|
* @return PR_TRUE if the rendering context has a local cliprect set
|
|
* else aRect is undefined
|
|
*/
|
|
NS_IMETHOD GetClipRect(nsRect &aRect, PRBool &aHasLocalClip) = 0;
|
|
|
|
/**
|
|
* Sets the line style for the RenderingContext
|
|
* @param aLineStyle The line style
|
|
* @return NS_OK if the line style is correctly set
|
|
*/
|
|
NS_IMETHOD SetLineStyle(nsLineStyle aLineStyle) = 0;
|
|
|
|
/**
|
|
* Gets the line style for the RenderingContext
|
|
* @param aLineStyle The line style to be retrieved
|
|
* @return NS_OK if the line style is correctly retrieved
|
|
*/
|
|
NS_IMETHOD GetLineStyle(nsLineStyle &aLineStyle) = 0;
|
|
|
|
/**
|
|
* Gets the Pen Mode for the RenderingContext
|
|
* @param aPenMode The Pen Mode to be retrieved
|
|
* @return NS_OK if the Pen Mode is correctly retrieved
|
|
*/
|
|
NS_IMETHOD GetPenMode(nsPenMode &aPenMode) =0;
|
|
|
|
/**
|
|
* Sets the Pen Mode for the RenderingContext
|
|
* @param aPenMode The Pen Mode
|
|
* @return NS_OK if the Pen Mode is correctly set
|
|
*/
|
|
NS_IMETHOD SetPenMode(nsPenMode aPenMode) =0;
|
|
|
|
|
|
/**
|
|
* Sets the clipping for the RenderingContext to the passed in region.
|
|
* The region is in device coordinates!
|
|
* @param aRegion The region to set the clipping area to, IN DEVICE COORDINATES
|
|
* @param aCombine how to combine this region with the current clip region.
|
|
* see the bottom of nsIRenderingContext.h
|
|
* @return PR_TRUE if the clip region is now empty, else PR_FALSE
|
|
*/
|
|
NS_IMETHOD SetClipRegion(const nsIRegion& aRegion, nsClipCombine aCombine, PRBool &aClipEmpty) = 0;
|
|
|
|
/**
|
|
* Gets a copy of the current clipping region for the RenderingContext
|
|
* The region is in device coordinates!
|
|
* @param aRegion inout parameter representing the clip region.
|
|
* if SetClipRegion() is called, do not assume that GetClipRegion()
|
|
* will return the same object.
|
|
*/
|
|
NS_IMETHOD CopyClipRegion(nsIRegion &aRegion) = 0;
|
|
|
|
/**
|
|
* Gets the current clipping region for the RenderingContext
|
|
* The region is in device coordinates!
|
|
* @param aRegion out parameter representing the clip region.
|
|
* if SetClipRegion() is called, do not assume that GetClipRegion()
|
|
* will return the same object.
|
|
*/
|
|
NS_IMETHOD GetClipRegion(nsIRegion **aRegion) = 0;
|
|
|
|
/**
|
|
* Sets the forground color for the RenderingContext
|
|
* @param aColor The color to set the RenderingContext to
|
|
*/
|
|
NS_IMETHOD SetColor(nscolor aColor) = 0;
|
|
|
|
/**
|
|
* Get the forground color for the RenderingContext
|
|
* @return The current forground color of the RenderingContext
|
|
*/
|
|
NS_IMETHOD GetColor(nscolor &aColor) const = 0;
|
|
|
|
/**
|
|
* Sets the font for the RenderingContext
|
|
* @param aFont The font to use in the RenderingContext
|
|
*/
|
|
NS_IMETHOD SetFont(const nsFont& aFont, nsIAtom* aLangGroup) = 0;
|
|
|
|
/**
|
|
* Sets the font for the RenderingContext
|
|
* @param aFontMetric The font metrics representing the
|
|
* font to use in the RenderingContext
|
|
*/
|
|
NS_IMETHOD SetFont(nsIFontMetrics *aFontMetrics) = 0;
|
|
|
|
/**
|
|
* Get the current fontmetrics for the RenderingContext
|
|
* @return The current font of the RenderingContext
|
|
*/
|
|
NS_IMETHOD GetFontMetrics(nsIFontMetrics *&aFontMetrics) = 0;
|
|
|
|
/**
|
|
* Add in a translate to the RenderingContext's transformation matrix
|
|
* @param aX The horizontal translation
|
|
* @param aY The vertical translation
|
|
*/
|
|
NS_IMETHOD Translate(nscoord aX, nscoord aY) = 0;
|
|
|
|
/**
|
|
* Add in a scale to the RenderingContext's transformation matrix
|
|
* @param aX The horizontal scale
|
|
* @param aY The vertical scale
|
|
*/
|
|
NS_IMETHOD Scale(float aSx, float aSy) = 0;
|
|
|
|
/**
|
|
* Get the current transformation matrix for the RenderingContext
|
|
* @return The transformation matrix for the RenderingContext
|
|
*/
|
|
NS_IMETHOD GetCurrentTransform(nsTransform2D *&aTransform) = 0;
|
|
|
|
/**
|
|
* Create an offscreen drawing surface compatible with this RenderingContext.
|
|
* The rect passed in is not affected by any transforms in the rendering
|
|
* context and the values are in device units.
|
|
* @param aBounds A rectangle representing the size for the drawing surface.
|
|
* if nsnull then a bitmap will not be created and associated
|
|
* with the new drawing surface
|
|
* @param aSurfFlags see bottom of nsIRenderingContext.h
|
|
* @return A nsDrawingSurface
|
|
*/
|
|
NS_IMETHOD CreateDrawingSurface(const nsRect& aBounds, PRUint32 aSurfFlags, nsDrawingSurface &aSurface) = 0;
|
|
|
|
/**
|
|
* Destroy a drawing surface created by CreateDrawingSurface()
|
|
* @param aDS A drawing surface to destroy
|
|
*/
|
|
NS_IMETHOD DestroyDrawingSurface(nsDrawingSurface aDS) = 0;
|
|
|
|
/**
|
|
* Draw a line
|
|
* @param aXO starting horiztonal coord in twips
|
|
* @param aY0 starting vertical coord in twips
|
|
* @param aX1 end horiztonal coord in twips
|
|
* @param aY1 end vertical coord in twips
|
|
*/
|
|
NS_IMETHOD DrawLine(nscoord aX0, nscoord aY0, nscoord aX1, nscoord aY1) = 0;
|
|
|
|
|
|
/**
|
|
* Draw a line without being transformed
|
|
* @param aXO starting horiztonal coord in twips
|
|
* @param aY0 starting vertical coord in twips
|
|
* @param aX1 end horiztonal coord in twips
|
|
* @param aY1 end vertical coord in twips
|
|
*/
|
|
NS_IMETHOD DrawStdLine(nscoord aX0, nscoord aY0, nscoord aX1, nscoord aY1) = 0;
|
|
|
|
/**
|
|
* Draw a polyline
|
|
* @param aPoints array of endpoints
|
|
* @param aNumPonts number of points
|
|
*/
|
|
NS_IMETHOD DrawPolyline(const nsPoint aPoints[], PRInt32 aNumPoints) = 0;
|
|
|
|
/**
|
|
* Draw a rectangle
|
|
* @param aRect The rectangle to draw
|
|
*/
|
|
NS_IMETHOD DrawRect(const nsRect& aRect) = 0;
|
|
|
|
/**
|
|
* Draw a rectangle
|
|
* @param aX Horizontal left Coordinate in twips
|
|
* @param aY Vertical top Coordinate in twips
|
|
* @param aWidth Width of rectangle in twips
|
|
* @param aHeight Height of rectangle in twips
|
|
*/
|
|
NS_IMETHOD DrawRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
|
|
|
|
/**
|
|
* Fill a rectangle in the current foreground color
|
|
* @param aRect The rectangle to draw
|
|
*/
|
|
NS_IMETHOD FillRect(const nsRect& aRect) = 0;
|
|
|
|
/**
|
|
* Fill a rectangle in the current foreground color
|
|
* @param aX Horizontal left Coordinate in twips
|
|
* @param aY Vertical top Coordinate in twips
|
|
* @param aWidth Width of rectangle in twips
|
|
* @param aHeight Height of rectangle in twips
|
|
*/
|
|
NS_IMETHOD FillRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
|
|
|
|
/**
|
|
* XOR Invert a rectangle in the current foreground color
|
|
* @param aRect The rectangle to draw
|
|
*/
|
|
NS_IMETHOD InvertRect(const nsRect& aRect) = 0;
|
|
|
|
/**
|
|
* XOR Invert a rectangle in the current foreground color
|
|
* @param aX Horizontal left Coordinate in twips
|
|
* @param aY Vertical top Coordinate in twips
|
|
* @param aWidth Width of rectangle in twips
|
|
* @param aHeight Height of rectangle in twips
|
|
*/
|
|
NS_IMETHOD InvertRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
|
|
|
|
/**
|
|
* For platforms (e.g., Cocoa) that implicitly double buffer, this call can be used
|
|
* to force a buffer flush following the painting of a rectangle. This
|
|
* call needs to be used any time drawing of rects is being done "on the fly",
|
|
* outside of the normal painting process.
|
|
* Examples include the blinking caret and tabbing through subimages in an
|
|
* image map.
|
|
*/
|
|
NS_IMETHOD FlushRect(const nsRect& aRect) = 0;
|
|
NS_IMETHOD FlushRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
|
|
|
|
/**
|
|
* Draw a poly in the current foreground color
|
|
* @param aPoints points to use for the drawing, last must equal first
|
|
* @param aNumPonts number of points in the polygon
|
|
*/
|
|
NS_IMETHOD DrawPolygon(const nsPoint aPoints[], PRInt32 aNumPoints) = 0;
|
|
|
|
/**
|
|
* Fill a poly in the current foreground color
|
|
* @param aPoints points to use for the drawing, last must equal first
|
|
* @param aNumPonts number of points in the polygon
|
|
*/
|
|
NS_IMETHOD FillPolygon(const nsPoint aPoints[], PRInt32 aNumPoints) = 0;
|
|
|
|
/**
|
|
* Rasterize a polygon with the current fill color.
|
|
* @param aPoints points to use for the drawing, last must equal first
|
|
* @param aNumPonts number of points in the polygon
|
|
*/
|
|
NS_IMETHOD RasterPolygon(const nsPoint aPoints[], PRInt32 aNumPoints)=0;
|
|
|
|
/**
|
|
* Fill a poly in the current foreground color, without transformation taking place
|
|
* @param aPoints points to use for the drawing, last must equal first
|
|
* @param aNumPonts number of points in the polygon
|
|
*/
|
|
NS_IMETHOD FillStdPolygon(const nsPoint aPoints[], PRInt32 aNumPoints) = 0;
|
|
|
|
/**
|
|
* Draw an ellipse in the current foreground color
|
|
* @param aRect The rectangle define bounds of ellipse to draw
|
|
*/
|
|
NS_IMETHOD DrawEllipse(const nsRect& aRect) = 0;
|
|
|
|
/**
|
|
* Draw an ellipse in the current foreground color
|
|
* @param aX Horizontal left Coordinate in twips
|
|
* @param aY Vertical top Coordinate in twips
|
|
* @param aWidth Width of horizontal axis in twips
|
|
* @param aHeight Height of vertical axis in twips
|
|
*/
|
|
NS_IMETHOD DrawEllipse(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
|
|
|
|
/**
|
|
* Fill an ellipse in the current foreground color
|
|
* @param aRect The rectangle define bounds of ellipse to draw
|
|
*/
|
|
NS_IMETHOD FillEllipse(const nsRect& aRect) = 0;
|
|
|
|
/**
|
|
* Fill an ellipse in the current foreground color
|
|
* @param aX Horizontal left Coordinate in twips
|
|
* @param aY Vertical top Coordinate in twips
|
|
* @param aWidth Width of horizontal axis in twips
|
|
* @param aHeight Height of vertical axis in twips
|
|
*/
|
|
NS_IMETHOD FillEllipse(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
|
|
|
|
/**
|
|
* Draw an arc in the current forground color
|
|
* @param aRect The rectangle define bounds of ellipse to use
|
|
* @param aStartAngle the starting angle of the arc, in the ellipse
|
|
* @param aEndAngle The ending angle of the arc, in the ellipse
|
|
*/
|
|
NS_IMETHOD DrawArc(const nsRect& aRect,
|
|
float aStartAngle, float aEndAngle) = 0;
|
|
|
|
/**
|
|
* Draw an arc in the current forground color
|
|
* @param aX Horizontal left Coordinate in twips
|
|
* @param aY Vertical top Coordinate in twips
|
|
* @param aWidth Width of horizontal axis in twips
|
|
* @param aHeight Height of vertical axis in twips
|
|
* @param aStartAngle the starting angle of the arc, in the ellipse
|
|
* @param aEndAngle The ending angle of the arc, in the ellipse
|
|
*/
|
|
NS_IMETHOD DrawArc(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight,
|
|
float aStartAngle, float aEndAngle) = 0;
|
|
|
|
/**
|
|
* Fill an arc in the current forground color
|
|
* @param aRect The rectangle define bounds of ellipse to use
|
|
* @param aStartAngle the starting angle of the arc, in the ellipse
|
|
* @param aEndAngle The ending angle of the arc, in the ellipse
|
|
*/
|
|
NS_IMETHOD FillArc(const nsRect& aRect,
|
|
float aStartAngle, float aEndAngle) = 0;
|
|
|
|
/**
|
|
* Fill an arc in the current forground color
|
|
* @param aX Horizontal left Coordinate in twips
|
|
* @param aY Vertical top Coordinate in twips
|
|
* @param aWidth Width of horizontal axis in twips
|
|
* @param aHeight Height of vertical axis in twips
|
|
* @param aStartAngle the starting angle of the arc, in the ellipse
|
|
* @param aEndAngle The ending angle of the arc, in the ellipse
|
|
*/
|
|
NS_IMETHOD FillArc(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight,
|
|
float aStartAngle, float aEndAngle) = 0;
|
|
|
|
/**
|
|
* Returns the width (in app units) of an 8-bit character
|
|
* If no font has been Set, the results are undefined.
|
|
* @param aC character to measure
|
|
* @param aWidth out parameter for width
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD GetWidth(char aC, nscoord &aWidth) = 0;
|
|
|
|
/**
|
|
* Returns the width (in app units) of a unicode character
|
|
* If no font has been Set, the results are undefined.
|
|
* @param aC character to measure
|
|
* @param aWidth out parameter for width
|
|
* @param aFontID an optional out parameter used to store a
|
|
* font identifier that can be passed into the DrawString()
|
|
* methods to speed rendering
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD GetWidth(PRUnichar aC, nscoord &aWidth,
|
|
PRInt32 *aFontID = nsnull) = 0;
|
|
|
|
/**
|
|
* Returns the width (in app units) of an nsString
|
|
* If no font has been Set, the results are undefined.
|
|
* @param aString string to measure
|
|
* @param aWidth out parameter for width
|
|
* @param aFontID an optional out parameter used to store a
|
|
* font identifier that can be passed into the DrawString()
|
|
* methods to speed rendering
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD GetWidth(const nsString& aString, nscoord &aWidth,
|
|
PRInt32 *aFontID = nsnull) = 0;
|
|
|
|
/**
|
|
* Returns the width (in app units) of an 8-bit character string
|
|
* If no font has been Set, the results are undefined.
|
|
* @param aString string to measure
|
|
* @param aWidth out parameter for width
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD GetWidth(const char* aString, nscoord& aWidth) = 0;
|
|
|
|
/**
|
|
* Returns the width (in app units) of an 8-bit character string
|
|
* If no font has been Set, the results are undefined.
|
|
* @param aString string to measure
|
|
* @param aLength number of characters in string
|
|
* @param aWidth out parameter for width
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD GetWidth(const char* aString, PRUint32 aLength,
|
|
nscoord& aWidth) = 0;
|
|
|
|
/**
|
|
* Returns the width (in app units) of a Unicode character string
|
|
* If no font has been Set, the results are undefined.
|
|
* @param aString string to measure
|
|
* @param aLength number of characters in string
|
|
* @param aWidth out parameter for width
|
|
* @param aFontID an optional out parameter used to store a
|
|
* font identifier that can be passed into the DrawString()
|
|
* methods to speed rendering
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD GetWidth(const PRUnichar *aString, PRUint32 aLength,
|
|
nscoord &aWidth, PRInt32 *aFontID = nsnull) = 0;
|
|
|
|
/**
|
|
* Returns the dimensions of a string, i.e., the overall extent of a string
|
|
* whose rendering may involve switching between different fonts that have
|
|
* different metrics.
|
|
* @param aString string to measure
|
|
* @param aLength number of characters in string
|
|
* @param aFontID an optional out parameter used to store a
|
|
* font identifier that can be passed into the DrawString()
|
|
* methods to speed measurements
|
|
* @return aDimensions struct that contains the extent of the string (see below)
|
|
*/
|
|
NS_IMETHOD GetTextDimensions(const char* aString, PRUint32 aLength,
|
|
nsTextDimensions& aDimensions) = 0;
|
|
NS_IMETHOD GetTextDimensions(const PRUnichar* aString, PRUint32 aLength,
|
|
nsTextDimensions& aDimensions, PRInt32* aFontID = nsnull) = 0;
|
|
|
|
#if defined(_WIN32) || defined(XP_OS2) || defined(MOZ_X11) || defined(XP_BEOS)
|
|
/**
|
|
* Given an available width and an array of break points,
|
|
* returns the dimensions (in app units) of the text that fit and
|
|
* the number of characters that fit. The number of characters
|
|
* corresponds to an entry in the break array.
|
|
* If no font has been set, the results are undefined.
|
|
* @param aString, string to measure
|
|
* @param aLength, number of characters in string
|
|
* @param aAvailWidth, the available space in which the text must fit
|
|
* @param aBreaks, array of places to break. Specified as offsets from the
|
|
* start of the string
|
|
* @param aNumBreaks, the number of entries in the break array. The last
|
|
* entry in the break array must equal the length of the string
|
|
* @param aDimensions, out parameter for the dimensions, the ascent and descent
|
|
* of the last word are left out to allow possible line-breaking before
|
|
* the last word. However, the width of the last word is included.
|
|
* @param aNumCharsFit, the number of characters that fit in the available space
|
|
* @param aLastWordDimensions, dimensions of the last word, the width field,
|
|
* dimensions.width, should be -1 for an unknown width. But the
|
|
* ascent and descent are expected to be known.
|
|
* @param aFontID, an optional out parameter used to store a
|
|
* font identifier that can be passed into the DrawString()
|
|
* methods to speed rendering
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD GetTextDimensions(const char* aString,
|
|
PRInt32 aLength,
|
|
PRInt32 aAvailWidth,
|
|
PRInt32* aBreaks,
|
|
PRInt32 aNumBreaks,
|
|
nsTextDimensions& aDimensions,
|
|
PRInt32& aNumCharsFit,
|
|
nsTextDimensions& aLastWordDimensions,
|
|
PRInt32* aFontID = nsnull) = 0;
|
|
|
|
NS_IMETHOD GetTextDimensions(const PRUnichar* aString,
|
|
PRInt32 aLength,
|
|
PRInt32 aAvailWidth,
|
|
PRInt32* aBreaks,
|
|
PRInt32 aNumBreaks,
|
|
nsTextDimensions& aDimensions,
|
|
PRInt32& aNumCharsFit,
|
|
nsTextDimensions& aLastWordDimensions,
|
|
PRInt32* aFontID = nsnull) = 0;
|
|
#endif
|
|
|
|
/**
|
|
* Draw a string in the RenderingContext
|
|
* @param aString The string to draw
|
|
* @param aLength The length of the aString
|
|
* @param aX Horizontal starting point of baseline
|
|
* @param aY Vertical starting point of baseline.
|
|
* @param aSpacing inter-character spacing to apply
|
|
*/
|
|
NS_IMETHOD DrawString(const char *aString, PRUint32 aLength,
|
|
nscoord aX, nscoord aY,
|
|
const nscoord* aSpacing = nsnull) = 0;
|
|
|
|
/**
|
|
* Draw a string in the RenderingContext
|
|
* @param aString A PRUnichar of the string
|
|
* @param aLength The length of the aString
|
|
* @param aX Horizontal starting point of baseline
|
|
* @param aY Vertical starting point of baseline.
|
|
* @param aFontID an optional parameter used to speed font
|
|
* selection for complex unicode strings. the value
|
|
* passed is returned by the DrawString() methods.
|
|
* @param aSpacing inter-character spacing to apply
|
|
*/
|
|
NS_IMETHOD DrawString(const PRUnichar *aString, PRUint32 aLength,
|
|
nscoord aX, nscoord aY,
|
|
PRInt32 aFontID = -1,
|
|
const nscoord* aSpacing = nsnull) = 0;
|
|
|
|
/**
|
|
* Draw a string in the RenderingContext
|
|
* @param aString A nsString of the string
|
|
* @param aX Horizontal starting point of baseline
|
|
* @param aY Vertical starting point of baseline.
|
|
* @param aFontID an optional parameter used to speed font
|
|
* selection for complex unicode strings. the value
|
|
* passed is returned by the DrawString() methods.
|
|
* @param aSpacing inter-character spacing to apply
|
|
*/
|
|
NS_IMETHOD DrawString(const nsString& aString, nscoord aX, nscoord aY,
|
|
PRInt32 aFontID = -1,
|
|
const nscoord* aSpacing = nsnull) = 0;
|
|
/**
|
|
* Draw a path.. given a point array. The Path currently supported is a Quadratic
|
|
* Bezier curve
|
|
* @param aPointArray an array of points on the path
|
|
* @param aNumPoints number of points in the array
|
|
* @param aY0 starting y
|
|
* @param aX1 ending x
|
|
* @param aY1 ending y
|
|
* @param aWidth tile width
|
|
* @param aHeight tile height
|
|
*/
|
|
NS_IMETHOD DrawPath(nsPathPoint aPointArray[],PRInt32 aNumPts) = 0;
|
|
|
|
|
|
/**
|
|
* fill a path.. given a point array. The Path currently supported is a Quadratic
|
|
* Bezier curve
|
|
* @param aPointArray an array of points on the path
|
|
* @param aNumPts number of points in the array
|
|
*/
|
|
NS_IMETHOD FillPath(nsPathPoint aPointArray[],PRInt32 aNumPts) = 0;
|
|
|
|
|
|
/**
|
|
* Copy offscreen pixelmap to this RenderingContext.
|
|
* @param aSrcSurf drawing surface to copy bits from
|
|
* @param aSrcX x offset into source pixelmap to copy from
|
|
* @param aSrcY y offset into source pixelmap to copy from
|
|
* @param aDestBounds Destination rectangle to copy to
|
|
* @param aCopyFlags see below
|
|
*/
|
|
NS_IMETHOD CopyOffScreenBits(nsDrawingSurface aSrcSurf, PRInt32 aSrcX, PRInt32 aSrcY,
|
|
const nsRect &aDestBounds, PRUint32 aCopyFlags) = 0;
|
|
//~~~
|
|
NS_IMETHOD RetrieveCurrentNativeGraphicData(PRUint32 * ngd) = 0;
|
|
|
|
|
|
/**
|
|
* Get a drawing surface used as a backbuffer.
|
|
* Depending on the platform this will either cause a backbuffer surface to be allocated
|
|
* or an existing cached backbuffer will be returned. If the backbuffer is being cached
|
|
* asking for aMaxSize which is different from a previous request may cause the platform
|
|
* to dump it's cached backbuffer and reallocate a backbuffer of a size which will allow aMaxSize
|
|
* buffer to be allocated.
|
|
*
|
|
* @param aRequestedSize size of the backbuffer area requested
|
|
* @param aMaxSize maximum size that may be requested for the backbuffer
|
|
* @param aBackbuffer drawing surface used as the backbuffer
|
|
*/
|
|
NS_IMETHOD GetBackbuffer(const nsRect &aRequestedSize, const nsRect &aMaxSize, nsDrawingSurface &aBackbuffer) = 0;
|
|
|
|
/**
|
|
* Release a drawing surface used as the backbuffer
|
|
* If the platform caches the backbuffer this call will destroy it.
|
|
*/
|
|
NS_IMETHOD ReleaseBackbuffer(void) = 0;
|
|
|
|
/**
|
|
* Destroy the drawing surface used as the backbuffer. If the platform
|
|
* does not maintain a cached backbuffer this call will do nothing.
|
|
*/
|
|
NS_IMETHOD DestroyCachedBackbuffer(void) = 0;
|
|
|
|
/**
|
|
* Some platforms may not want a backbuffer at all. Returning false
|
|
* here allows them to achieve that
|
|
*
|
|
* @param aUseBackbuffer PR_TRUE if we should use a backbuffer, PR_FALSE if not
|
|
*/
|
|
NS_IMETHOD UseBackbuffer(PRBool* aUseBackbuffer) = 0;
|
|
|
|
|
|
#ifdef MOZ_MATHML
|
|
/**
|
|
* Returns bounding metrics (in app units) of an 8-bit character string
|
|
* @param aString string to measure
|
|
* @param aLength number of characters in string
|
|
* @return aBoundingMetrics struct that contains various metrics (see below)
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD
|
|
GetBoundingMetrics(const char* aString,
|
|
PRUint32 aLength,
|
|
nsBoundingMetrics& aBoundingMetrics) = 0;
|
|
/**
|
|
* Returns bounding metrics (in app units) of an Unicode character string
|
|
* @param aString string to measure
|
|
* @param aLength number of characters in string
|
|
* @param aFontID an optional out parameter used to store a
|
|
* font identifier that can be passed into the GetBoundingMetrics()
|
|
* methods to speed measurements
|
|
* @return aBoundingMetrics struct that contains various metrics (see below)
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD
|
|
GetBoundingMetrics(const PRUnichar* aString,
|
|
PRUint32 aLength,
|
|
nsBoundingMetrics& aBoundingMetrics,
|
|
PRInt32* aFontID = nsnull) = 0;
|
|
#endif
|
|
|
|
|
|
/**
|
|
* Let the device context know whether we want text reordered with
|
|
* right-to-left base direction
|
|
*/
|
|
NS_IMETHOD SetRightToLeftText(PRBool aIsRTL) = 0;
|
|
|
|
/* [noscript] void drawImage (in imgIContainer aImage, [const] in nsRect aSrcRect, [const] in nsPoint aDestPoint); */
|
|
NS_IMETHOD DrawImage(imgIContainer *aImage, const nsRect * aSrcRect, const nsPoint * aDestPoint) = 0;
|
|
|
|
/* [noscript] void drawScaledImage (in imgIContainer aImage, [const] in nsRect aSrcRect, [const] in nsRect aDestRect); */
|
|
NS_IMETHOD DrawScaledImage(imgIContainer *aImage, const nsRect * aSrcRect, const nsRect * aDestRect) = 0;
|
|
|
|
/*
|
|
* Tiles an image over an area
|
|
* @param aImage Image to tile
|
|
* @param aXImageStart x location where the origin (0,0) of the image starts
|
|
* @param aYImageStart y location where the origin (0,0) of the image starts
|
|
* @param aTargetRect area to draw to
|
|
*/
|
|
NS_IMETHOD DrawTile(imgIContainer *aImage,
|
|
nscoord aXImageStart, nscoord aYImageStart,
|
|
const nsRect * aTargetRect) = 0;
|
|
|
|
/**
|
|
* Render the provided postscript fragment to the current rendering
|
|
* surface.
|
|
*
|
|
* If the device does not support rendering postscript fragments, then
|
|
* NS_ERROR_NOT_IMPLEMENTED is returned. Otherwise, the device will
|
|
* attempt to incorporate the provided PostScript into the document.
|
|
*
|
|
* The provided postscript runs within the following environment:
|
|
*
|
|
* 1) The coordinate system is scaled to points (1/72th of an inch).
|
|
* 2) The origin (coordinate [0,0]) is at the top left corner of the
|
|
* page's printable region.
|
|
* 3) The Y axis increases downward.
|
|
*
|
|
* This must be called after nsIDeviceContext::BeginPage() and
|
|
* before nsIDeviceContext::EndPage(). Before calling this function, the
|
|
* caller must call PushState(), which effectively performs a "gsave".
|
|
* After calling this function, the caller must call PopState(), which
|
|
* effectively performs a "grestore". There may be at most one call to
|
|
* RenderPostScriptDataFragment() between any PushState()/PopState() pair.
|
|
*
|
|
* The caller may draw to any part of the page, though well-behaved
|
|
* callers will limit themselves to a region designated to them in
|
|
* cooperation with the layout module. The PostScript code fragment
|
|
* MUST NOT contain any code which begins a new page.
|
|
*
|
|
* Mozilla currently targets level 2 PostScript. The PostScript code
|
|
* fragment should not make use of any level 3 (or later) PostScript
|
|
* features.
|
|
*
|
|
* The PostScript fragment may be included more than once in the output,
|
|
* e.g. if the region it's expected to render is split over two pages.
|
|
*
|
|
* @param aData - PostScript fragment data
|
|
* @param aLength - Length of PostScript fragment data
|
|
* @return error status
|
|
*/
|
|
NS_IMETHOD RenderPostScriptDataFragment(const unsigned char *aData, unsigned long aDatalen) = 0;
|
|
};
|
|
|
|
//modifiers for text rendering
|
|
|
|
#define NS_DRAWSTRING_NORMAL 0x0
|
|
#define NS_DRAWSTRING_UNDERLINE 0x1
|
|
#define NS_DRAWSTRING_OVERLINE 0x2
|
|
#define NS_DRAWSTRING_LINE_THROUGH 0x4
|
|
|
|
// Bit values for GetHints
|
|
|
|
/**
|
|
* This bit, when set, indicates that the underlying rendering system
|
|
* prefers 8 bit text rendering over PRUnichar text rendering. When this
|
|
* bit is <b>not</b> set the opposite is true: the system prefers PRUnichar
|
|
* rendering, not 8 bit rendering.
|
|
*/
|
|
#define NS_RENDERING_HINT_FAST_8BIT_TEXT 0x1
|
|
|
|
/**
|
|
* This bit, when set, indicates that the rendering is being done
|
|
* remotely.
|
|
*/
|
|
#define NS_RENDERING_HINT_REMOTE_RENDERING 0x2
|
|
|
|
/**
|
|
* This bit, when set, indicates that the system provides support for
|
|
* the reordering of bidirectional text
|
|
*/
|
|
#define NS_RENDERING_HINT_BIDI_REORDERING 0x4
|
|
|
|
/**
|
|
* This bit, when set, indicates that the system provides support for
|
|
* Arabic shaping
|
|
*/
|
|
#define NS_RENDERING_HINT_ARABIC_SHAPING 0x8
|
|
|
|
/**
|
|
* This bit, when set, indicates that gfx supports GetTextDimensions()
|
|
*/
|
|
#define NS_RENDERING_HINT_FAST_MEASURE 0x10
|
|
|
|
//flags for copy CopyOffScreenBits
|
|
|
|
//when performing the blit, use the region, if any,
|
|
//that exists in the source drawingsurface as a
|
|
//blit mask.
|
|
#define NS_COPYBITS_USE_SOURCE_CLIP_REGION 0x0001
|
|
|
|
//transform the source offsets by the xform in the
|
|
//rendering context
|
|
#define NS_COPYBITS_XFORM_SOURCE_VALUES 0x0002
|
|
|
|
//transform the destination rect by the xform in the
|
|
//rendering context
|
|
#define NS_COPYBITS_XFORM_DEST_VALUES 0x0004
|
|
|
|
//this is basically a hack and is used by callers
|
|
//who have selected an alternate drawing surface and
|
|
//wish the copy to happen to that buffer rather than
|
|
//the "front" buffer. i'm not proud of this. MMP
|
|
//XXX: This is no longer needed by the XPCODE. It will
|
|
//be removed once all of the platform specific nsRenderingContext's
|
|
//stop using it.
|
|
#define NS_COPYBITS_TO_BACK_BUFFER 0x0008
|
|
|
|
/* Struct used to represent the overall extent of a string
|
|
whose rendering may involve switching between different
|
|
fonts that have different metrics.
|
|
*/
|
|
struct nsTextDimensions {
|
|
// max ascent amongst all the fonts needed to represent the string
|
|
nscoord ascent;
|
|
|
|
// max descent amongst all the fonts needed to represent the string
|
|
nscoord descent;
|
|
|
|
// width of the string
|
|
nscoord width;
|
|
|
|
|
|
nsTextDimensions()
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
/* Set all member data to zero */
|
|
void
|
|
Clear() {
|
|
ascent = descent = width = 0;
|
|
}
|
|
|
|
/* Sum with another dimension */
|
|
void
|
|
Combine(const nsTextDimensions& aOther) {
|
|
if (ascent < aOther.ascent) ascent = aOther.ascent;
|
|
if (descent < aOther.descent) descent = aOther.descent;
|
|
width += aOther.width;
|
|
}
|
|
};
|
|
|
|
#ifdef MOZ_MATHML
|
|
/* Struct used for accurate measurements of a string in order
|
|
to allow precise positioning when processing MathML.
|
|
*/
|
|
struct nsBoundingMetrics {
|
|
|
|
///////////
|
|
// Metrics that _exactly_ enclose the text:
|
|
|
|
// The character coordinate system is the one used on X Windows:
|
|
// 1. The origin is located at the intersection of the baseline
|
|
// with the left of the character's cell.
|
|
// 2. All horizontal bearings are oriented from left to right.
|
|
// 3. The ascent is oriented from bottom to top (being 0 at the orgin).
|
|
// 4. The descent is oriented from top to bottom (being 0 at the origin).
|
|
|
|
// Note that Win32/Mac/PostScript use a different convention for
|
|
// the descent (all vertical measurements are oriented from bottom
|
|
// to top on these palatforms). Make sure to flip the sign of the
|
|
// descent on these platforms for cross-platform compatibility.
|
|
|
|
// Any of the following member variables listed here can have
|
|
// positive or negative value.
|
|
|
|
nscoord leftBearing;
|
|
/* The horizontal distance from the origin of the drawing
|
|
operation to the left-most part of the drawn string. */
|
|
|
|
nscoord rightBearing;
|
|
/* The horizontal distance from the origin of the drawing
|
|
operation to the right-most part of the drawn string.
|
|
The _exact_ width of the string is therefore:
|
|
rightBearing - leftBearing */
|
|
|
|
nscoord ascent;
|
|
/* The vertical distance from the origin of the drawing
|
|
operation to the top-most part of the drawn string. */
|
|
|
|
nscoord descent;
|
|
/* The vertical distance from the origin of the drawing
|
|
operation to the bottom-most part of the drawn string.
|
|
The _exact_ height of the string is therefore:
|
|
ascent + descent */
|
|
|
|
//////////
|
|
// Metrics for placing other surrounding text:
|
|
|
|
nscoord width;
|
|
/* The horizontal distance from the origin of the drawing
|
|
operation to the correct origin for drawing another string
|
|
to follow the current one. Depending on the font, this
|
|
could be greater than or less than the right bearing. */
|
|
|
|
nsBoundingMetrics() {
|
|
Clear();
|
|
}
|
|
|
|
//////////
|
|
// Utility methods and operators:
|
|
|
|
/* Set all member data to zero */
|
|
void
|
|
Clear() {
|
|
leftBearing = rightBearing = 0;
|
|
ascent = descent = width = 0;
|
|
}
|
|
|
|
/* Append another bounding metrics */
|
|
/* Notice that leftBearing is not set. The user must set leftBearing on
|
|
initialization and (repeatedly) use this operator to append
|
|
other bounding metrics on the right.
|
|
*/
|
|
void
|
|
operator += (const nsBoundingMetrics& bm) {
|
|
if (ascent < bm.ascent) ascent = bm.ascent;
|
|
if (descent < bm.descent) descent = bm.descent;
|
|
rightBearing = width + bm.rightBearing;
|
|
width += bm.width;
|
|
}
|
|
};
|
|
#endif // MOZ_MATHML
|
|
|
|
#endif /* nsIRenderingContext_h___ */
|