gecko-dev/gfx/src/nsIRenderingContext.h

383 строки
13 KiB
C
Исходник Обычный вид История

1998-04-14 00:24:54 +04:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#ifndef nsIRenderingContext_h___
#define nsIRenderingContext_h___
#include "nscore.h"
#include "nsISupports.h"
#include "nsColor.h"
#include "nsCoord.h"
class nsIWidget;
class nsIFontMetrics;
class nsIImage;
class nsTransform2D;
class nsString;
class nsIFontCache;
class nsIDeviceContext;
struct nsFont;
struct nsPoint;
struct nsRect;
// IID for the nsIRenderingContext interface
#define NS_IRENDERING_CONTEXT_IID \
{ 0x7fd8c0f0, 0xa265, 0x11d1, \
{ 0xa8, 0x24, 0x00, 0x40, 0x95, 0x9a, 0x28, 0xc9 } }
//----------------------------------------------------------------------
//a cross platform way of specifying a navite rendering context
typedef void * nsDrawingSurface;
// RenderingContext interface
class nsIRenderingContext : public nsISupports
{
public:
//TBD: bind/unbind, transformation of scalars (hacky),
//potential drawmode for selection, polygons. MMP
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual nsresult Init(nsIDeviceContext* aContext,nsIWidget *aWidget) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual nsresult Init(nsIDeviceContext* aContext,nsDrawingSurface aSurface) = 0;
1998-04-15 02:20:32 +04:00
/**
* Reset the rendering context
*/
1998-04-14 00:24:54 +04:00
virtual void Reset() = 0;
1998-04-15 02:20:32 +04:00
/**
* Selects an offscreen drawing surface into the RenderingContext to draw to.
* @param aSurface is the offscreen surface we are going to draw to.
*/
1998-04-14 00:24:54 +04:00
virtual nsresult SelectOffScreenDrawingSurface(nsDrawingSurface aSurface) = 0;
1998-04-15 02:20:32 +04:00
/**
* Save a graphical state onto a stack.
*/
1998-04-14 00:24:54 +04:00
virtual void PushState() = 0;
1998-04-15 02:20:32 +04:00
/**
* Get and and set RenderingContext to this graphical state
*/
1998-04-14 00:24:54 +04:00
virtual void PopState() = 0;
1998-04-15 02:20:32 +04:00
/**
* 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.
*/
1998-04-14 00:24:54 +04:00
virtual PRBool IsVisibleRect(const nsRect& aRect) = 0;
1998-04-15 02:20:32 +04:00
/**
* Sets the clipping for the RenderingContext to the passed in rectangle
* @param aRect The rectangle to set the clipping rectangle to
* @param aIntersect A boolean, if true will cause aRect to be intersected with exsiting clip rects
*/
1998-04-14 00:24:54 +04:00
virtual void SetClipRect(const nsRect& aRect, PRBool aIntersect) = 0;
1998-04-15 02:20:32 +04:00
/**
* Gets the clipping rectangle of the RenderingContext
* @return The clipping rectangle for the RenderingContext
*/
1998-04-14 00:24:54 +04:00
virtual const nsRect& GetClipRect() = 0;
1998-04-15 02:20:32 +04:00
/**
* Sets the forground color for the RenderingContext
* @param aColor The color to set the RenderingContext to
*/
1998-04-14 00:24:54 +04:00
virtual void SetColor(nscolor aColor) = 0;
1998-04-15 02:20:32 +04:00
/**
* Get the forground color for the RenderingContext
* @return The current forground color of the RenderingContext
*/
1998-04-14 00:24:54 +04:00
virtual nscolor GetColor() const = 0;
1998-04-15 02:20:32 +04:00
/**
* Sets the font for the RenderingContext
* @param aFont The font to use in the RenderingContext
*/
1998-04-14 00:24:54 +04:00
virtual void SetFont(const nsFont& aFont) = 0;
1998-04-15 02:20:32 +04:00
/**
* Get the current font for the RenderingContext
* @return The current font of the RenderingContext
*/
1998-04-14 00:24:54 +04:00
virtual const nsFont& GetFont() = 0;
1998-04-15 02:20:32 +04:00
/**
* Get the current fontmetrics for the RenderingContext
* @return The current font of the RenderingContext
*/
1998-04-14 00:24:54 +04:00
virtual nsIFontMetrics* GetFontMetrics() = 0;
1998-04-15 02:20:32 +04:00
/**
* Add in a translate to the RenderingContext's transformation matrix
* @param aX The horizontal translation
* @param aY The vertical translation
*/
1998-04-14 00:24:54 +04:00
virtual void Translate(nscoord aX, nscoord aY) = 0;
1998-04-15 02:20:32 +04:00
/**
* Add in a scale to the RenderingContext's transformation matrix
* @param aX The horizontal scale
* @param aY The vertical scale
*/
1998-04-14 00:24:54 +04:00
virtual void Scale(float aSx, float aSy) = 0;
1998-04-15 02:20:32 +04:00
/**
* Get the current transformation matrix for the RenderingContext
* @return The transformation matrix for the RenderingContext
*/
1998-04-14 00:24:54 +04:00
virtual nsTransform2D * GetCurrentTransform() = 0;
1998-04-15 02:20:32 +04:00
/**
* Create an offscreen drawingsurface compatible with this RenderingContext
* @param aBounds A rectangle representing the size for the renderingsurface
* @return A nsDrawingSurface
*/
1998-04-14 00:24:54 +04:00
virtual nsDrawingSurface CreateDrawingSurface(nsRect &aBounds) = 0;
1998-04-15 02:20:32 +04:00
/**
* Destroy the drawingsurface
* @param aDS A drawingsurface to destroy
*/
1998-04-14 00:24:54 +04:00
virtual void DestroyDrawingSurface(nsDrawingSurface aDS) = 0;
1998-04-15 02:20:32 +04:00
/**
* Create a drawingsurface for use with an optimized bitmap
* @return The new nsDrawingSurface
*/
1998-04-14 00:24:54 +04:00
virtual nsDrawingSurface CreateOptimizeSurface() = 0;
1998-04-15 02:20:32 +04:00
/**
* Return the drawingsurface for this RenderingContext
* @return A drawingsurface
*/
1998-04-14 00:24:54 +04:00
virtual nsDrawingSurface getDrawingSurface() = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void DrawLine(nscoord aX0, nscoord aY0, nscoord aX1, nscoord aY1) = 0;
1998-04-15 02:20:32 +04:00
/**
* Draw a rectangle
* @param aRect The rectangle to draw
*/
1998-04-14 00:24:54 +04:00
virtual void DrawRect(const nsRect& aRect) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void DrawRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
1998-04-15 02:20:32 +04:00
/**
* Fill a rectangle in the current foreground color
* @param aRect The rectangle to draw
*/
1998-04-14 00:24:54 +04:00
virtual void FillRect(const nsRect& aRect) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void FillRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void DrawPolygon(nsPoint aPoints[], PRInt32 aNumPoints) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void FillPolygon(nsPoint aPoints[], PRInt32 aNumPoints) = 0;
1998-04-15 02:20:32 +04:00
/**
* Draw an ellipse in the current foreground color
* @param aRect The rectangle define bounds of ellipse to draw
*/
1998-04-14 00:24:54 +04:00
virtual void DrawEllipse(const nsRect& aRect) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void DrawEllipse(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
1998-04-15 02:20:32 +04:00
/**
* Fill an ellipse in the current foreground color
* @param aRect The rectangle define bounds of ellipse to draw
*/
1998-04-14 00:24:54 +04:00
virtual void FillEllipse(const nsRect& aRect) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void FillEllipse(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void DrawArc(const nsRect& aRect,
float aStartAngle, float aEndAngle) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void DrawArc(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight,
float aStartAngle, float aEndAngle) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void FillArc(const nsRect& aRect,
float aStartAngle, float aEndAngle) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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
*/
1998-04-14 00:24:54 +04:00
virtual void FillArc(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight,
float aStartAngle, float aEndAngle) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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 aWidth Width of the underline
*/
1998-04-14 00:24:54 +04:00
virtual void DrawString(const char *aString, PRUint32 aLength,
nscoord aX, nscoord aY,
nscoord aWidth) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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 aWidth length in twips of the underline
*/
1998-04-14 00:24:54 +04:00
virtual void DrawString(const PRUnichar *aString, PRUint32 aLength,
nscoord aX, nscoord aY,
nscoord aWidth) = 0;
1998-04-15 02:20:32 +04:00
/**
* 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 aWidth Width of the underline
*/
1998-04-14 00:24:54 +04:00
virtual void DrawString(const nsString& aString, nscoord aX, nscoord aY,
nscoord aWidth) = 0;
1998-04-15 02:20:32 +04:00
/**
* Copy an image to the RenderingContext
* @param aX Horzontal left destination coordinate
* @param aY Vertical top of destinatio coordinate
*/
1998-04-14 00:24:54 +04:00
virtual void DrawImage(nsIImage *aImage, nscoord aX, nscoord aY) = 0;
1998-04-15 02:20:32 +04:00
/**
* Copy an image to the RenderingContext, scaling can occur if width/hieght does not match source
* @param aX Horzontal left destination coordinate
* @param aY Vertical top of destinatio coordinate
* @param aWidth Width of destination,
* @param aHeight Height of destination
*/
1998-04-14 00:24:54 +04:00
virtual void DrawImage(nsIImage *aImage, nscoord aX, nscoord aY,
nscoord aWidth, nscoord aHeight) = 0;
1998-04-15 02:20:32 +04:00
/**
* Copy an image to the RenderingContext, scaling can occur if source/dest rects differ
* @param aRect Destination rectangle to copy the image to
*/
1998-04-14 00:24:54 +04:00
virtual void DrawImage(nsIImage *aImage, const nsRect& aRect) = 0;
1998-04-15 02:20:32 +04:00
/**
* Copy an image to the RenderingContext, scaling/clipping can occur if source/dest rects differ
* @param aSRect Source rectangle to copy from
* @param aDRect Destination rectangle to copy the image to
*/
1998-04-14 00:24:54 +04:00
virtual void DrawImage(nsIImage *aImage, const nsRect& aSRect, const nsRect& aDRect)=0;
1998-04-15 02:20:32 +04:00
/**
* Copy offscreen pixelmap to this RenderingContext
* @param aBounds Destination rectangle to copy to
*/
1998-04-14 00:24:54 +04:00
virtual nsresult CopyOffScreenBits(nsRect &aBounds) = 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
#endif /* nsIRenderingContext_h___ */