|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/22697/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/canvas/nsIDOMCanvasRenderingContext2D.idl
*/
#ifndef __gen_nsIDOMCanvasRenderingContext2D_h__
#define __gen_nsIDOMCanvasRenderingContext2D_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIVariant_h__
#include "nsIVariant.h"
#endif
#include "jspubtd.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMWindow; /* forward declaration */
class nsIDOMElement; /* forward declaration */
class nsIDOMHTMLElement; /* forward declaration */
class nsIDOMHTMLImageElement; /* forward declaration */
class nsIDOMHTMLCanvasElement; /* forward declaration */
class nsIDOMXULElement; /* forward declaration */
/* starting interface: nsIDOMCanvasGradient */
#define NS_IDOMCANVASGRADIENT_IID_STR "bbb20a59-524e-4662-981e-5e142814b20c"
#define NS_IDOMCANVASGRADIENT_IID \
{0xbbb20a59, 0x524e, 0x4662, \
{ 0x98, 0x1e, 0x5e, 0x14, 0x28, 0x14, 0xb2, 0x0c }}
class NS_NO_VTABLE nsIDOMCanvasGradient : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCANVASGRADIENT_IID)
/* void addColorStop (in float offset, in DOMString color); */
NS_IMETHOD AddColorStop(float offset, const nsAString & color) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCanvasGradient, NS_IDOMCANVASGRADIENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCANVASGRADIENT \
NS_IMETHOD AddColorStop(float offset, const nsAString & color);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCANVASGRADIENT(_to) \
NS_IMETHOD AddColorStop(float offset, const nsAString & color) { return _to AddColorStop(offset, color); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCANVASGRADIENT(_to) \
NS_IMETHOD AddColorStop(float offset, const nsAString & color) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddColorStop(offset, color); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCanvasGradient : public nsIDOMCanvasGradient
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCANVASGRADIENT
nsDOMCanvasGradient();
private:
~nsDOMCanvasGradient();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMCanvasGradient, nsIDOMCanvasGradient)
nsDOMCanvasGradient::nsDOMCanvasGradient()
{
/* member initializers and constructor code */
}
nsDOMCanvasGradient::~nsDOMCanvasGradient()
{
/* destructor code */
}
/* void addColorStop (in float offset, in DOMString color); */
NS_IMETHODIMP nsDOMCanvasGradient::AddColorStop(float offset, const nsAString & color)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDOMCanvasPattern */
#define NS_IDOMCANVASPATTERN_IID_STR "21dea65c-5c08-4eb1-ac82-81fe95be77b8"
#define NS_IDOMCANVASPATTERN_IID \
{0x21dea65c, 0x5c08, 0x4eb1, \
{ 0xac, 0x82, 0x81, 0xfe, 0x95, 0xbe, 0x77, 0xb8 }}
class NS_NO_VTABLE nsIDOMCanvasPattern : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCANVASPATTERN_IID)
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCanvasPattern, NS_IDOMCANVASPATTERN_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCANVASPATTERN \
/* no methods! */
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCANVASPATTERN(_to) \
/* no methods! */
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCANVASPATTERN(_to) \
/* no methods! */
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCanvasPattern : public nsIDOMCanvasPattern
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCANVASPATTERN
nsDOMCanvasPattern();
private:
~nsDOMCanvasPattern();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMCanvasPattern, nsIDOMCanvasPattern)
nsDOMCanvasPattern::nsDOMCanvasPattern()
{
/* member initializers and constructor code */
}
nsDOMCanvasPattern::~nsDOMCanvasPattern()
{
/* destructor code */
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDOMTextMetrics */
#define NS_IDOMTEXTMETRICS_IID_STR "2d01715c-ec7d-424a-ab85-e0fd70c8665c"
#define NS_IDOMTEXTMETRICS_IID \
{0x2d01715c, 0xec7d, 0x424a, \
{ 0xab, 0x85, 0xe0, 0xfd, 0x70, 0xc8, 0x66, 0x5c }}
class NS_NO_VTABLE nsIDOMTextMetrics : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMTEXTMETRICS_IID)
/* readonly attribute float width; */
NS_IMETHOD GetWidth(float *aWidth) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMTextMetrics, NS_IDOMTEXTMETRICS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMTEXTMETRICS \
NS_IMETHOD GetWidth(float *aWidth);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMTEXTMETRICS(_to) \
NS_IMETHOD GetWidth(float *aWidth) { return _to GetWidth(aWidth); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMTEXTMETRICS(_to) \
NS_IMETHOD GetWidth(float *aWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWidth(aWidth); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMTextMetrics : public nsIDOMTextMetrics
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMTEXTMETRICS
nsDOMTextMetrics();
private:
~nsDOMTextMetrics();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMTextMetrics, nsIDOMTextMetrics)
nsDOMTextMetrics::nsDOMTextMetrics()
{
/* member initializers and constructor code */
}
nsDOMTextMetrics::~nsDOMTextMetrics()
{
/* destructor code */
}
/* readonly attribute float width; */
NS_IMETHODIMP nsDOMTextMetrics::GetWidth(float *aWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDOMImageData */
#define NS_IDOMIMAGEDATA_IID_STR "1ea11207-b3e3-4ffc-a256-bf5c7011e806"
#define NS_IDOMIMAGEDATA_IID \
{0x1ea11207, 0xb3e3, 0x4ffc, \
{ 0xa2, 0x56, 0xbf, 0x5c, 0x70, 0x11, 0xe8, 0x06 }}
class NS_NO_VTABLE nsIDOMImageData : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMIMAGEDATA_IID)
/* readonly attribute unsigned long width; */
NS_IMETHOD GetWidth(uint32_t *aWidth) = 0;
/* readonly attribute unsigned long height; */
NS_IMETHOD GetHeight(uint32_t *aHeight) = 0;
/* [implicit_jscontext] readonly attribute jsval data; */
NS_IMETHOD GetData(JSContext* cx, JS::Value *aData) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMImageData, NS_IDOMIMAGEDATA_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMIMAGEDATA \
NS_IMETHOD GetWidth(uint32_t *aWidth); \
NS_IMETHOD GetHeight(uint32_t *aHeight); \
NS_IMETHOD GetData(JSContext* cx, JS::Value *aData);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMIMAGEDATA(_to) \
NS_IMETHOD GetWidth(uint32_t *aWidth) { return _to GetWidth(aWidth); } \
NS_IMETHOD GetHeight(uint32_t *aHeight) { return _to GetHeight(aHeight); } \
NS_IMETHOD GetData(JSContext* cx, JS::Value *aData) { return _to GetData(cx, aData); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMIMAGEDATA(_to) \
NS_IMETHOD GetWidth(uint32_t *aWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWidth(aWidth); } \
NS_IMETHOD GetHeight(uint32_t *aHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHeight(aHeight); } \
NS_IMETHOD GetData(JSContext* cx, JS::Value *aData) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetData(cx, aData); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMImageData : public nsIDOMImageData
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMIMAGEDATA
nsDOMImageData();
private:
~nsDOMImageData();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMImageData, nsIDOMImageData)
nsDOMImageData::nsDOMImageData()
{
/* member initializers and constructor code */
}
nsDOMImageData::~nsDOMImageData()
{
/* destructor code */
}
/* readonly attribute unsigned long width; */
NS_IMETHODIMP nsDOMImageData::GetWidth(uint32_t *aWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long height; */
NS_IMETHODIMP nsDOMImageData::GetHeight(uint32_t *aHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] readonly attribute jsval data; */
NS_IMETHODIMP nsDOMImageData::GetData(JSContext* cx, JS::Value *aData)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDOMCanvasRenderingContext2D */
#define NS_IDOMCANVASRENDERINGCONTEXT2D_IID_STR "c835c768-2dcc-461c-82f5-3653710d2942"
#define NS_IDOMCANVASRENDERINGCONTEXT2D_IID \
{0xc835c768, 0x2dcc, 0x461c, \
{ 0x82, 0xf5, 0x36, 0x53, 0x71, 0x0d, 0x29, 0x42 }}
class nsIDOMCanvasRenderingContext2D : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCANVASRENDERINGCONTEXT2D_IID)
/* readonly attribute nsIDOMHTMLCanvasElement canvas; */
NS_IMETHOD GetCanvas(nsIDOMHTMLCanvasElement * *aCanvas) = 0;
/* [binaryname(MozSave)] void save (); */
NS_IMETHOD MozSave(void) = 0;
/* [binaryname(MozRestore)] void restore (); */
NS_IMETHOD MozRestore(void) = 0;
/* void scale (in float x, in float y); */
NS_IMETHOD Scale(float x, float y) = 0;
/* void rotate (in float angle); */
NS_IMETHOD Rotate(float angle) = 0;
/* void translate (in float x, in float y); */
NS_IMETHOD Translate(float x, float y) = 0;
/* void transform (in float m11, in float m12, in float m21, in float m22, in float dx, in float dy); */
NS_IMETHOD Transform(float m11, float m12, float m21, float m22, float dx, float dy) = 0;
/* void setTransform (in float m11, in float m12, in float m21, in float m22, in float dx, in float dy); */
NS_IMETHOD SetTransform(float m11, float m12, float m21, float m22, float dx, float dy) = 0;
/* [implicit_jscontext] attribute jsval mozCurrentTransform; */
NS_IMETHOD GetMozCurrentTransform(JSContext* cx, JS::Value *aMozCurrentTransform) = 0;
NS_IMETHOD SetMozCurrentTransform(JSContext* cx, const JS::Value & aMozCurrentTransform) = 0;
/* [implicit_jscontext] attribute jsval mozCurrentTransformInverse; */
NS_IMETHOD GetMozCurrentTransformInverse(JSContext* cx, JS::Value *aMozCurrentTransformInverse) = 0;
NS_IMETHOD SetMozCurrentTransformInverse(JSContext* cx, const JS::Value & aMozCurrentTransformInverse) = 0;
/* attribute float globalAlpha; */
NS_IMETHOD GetGlobalAlpha(float *aGlobalAlpha) = 0;
NS_IMETHOD SetGlobalAlpha(float aGlobalAlpha) = 0;
/* attribute DOMString globalCompositeOperation; */
NS_IMETHOD GetGlobalCompositeOperation(nsAString & aGlobalCompositeOperation) = 0;
NS_IMETHOD SetGlobalCompositeOperation(const nsAString & aGlobalCompositeOperation) = 0;
/* attribute nsIVariant strokeStyle; */
NS_IMETHOD GetStrokeStyle(nsIVariant * *aStrokeStyle) = 0;
NS_IMETHOD SetStrokeStyle(nsIVariant *aStrokeStyle) = 0;
/* attribute nsIVariant fillStyle; */
NS_IMETHOD GetFillStyle(nsIVariant * *aFillStyle) = 0;
NS_IMETHOD SetFillStyle(nsIVariant *aFillStyle) = 0;
enum CanvasMultiGetterType {
CMG_STYLE_STRING = 0,
CMG_STYLE_PATTERN = 1,
CMG_STYLE_GRADIENT = 2
};
/* [noscript] void setStrokeStyle_multi (in DOMString str, in nsISupports iface); */
NS_IMETHOD SetStrokeStyle_multi(const nsAString & str, nsISupports *iface) = 0;
/* [noscript] void getStrokeStyle_multi (out DOMString str, out nsISupports iface, out long type); */
NS_IMETHOD GetStrokeStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type) = 0;
/* [noscript] void setFillStyle_multi (in DOMString str, in nsISupports iface); */
NS_IMETHOD SetFillStyle_multi(const nsAString & str, nsISupports *iface) = 0;
/* [noscript] void getFillStyle_multi (out DOMString str, out nsISupports iface, out long type); */
NS_IMETHOD GetFillStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type) = 0;
/* attribute DOMString mozFillRule; */
NS_IMETHOD GetMozFillRule(nsAString & aMozFillRule) = 0;
NS_IMETHOD SetMozFillRule(const nsAString & aMozFillRule) = 0;
/* nsIDOMCanvasGradient createLinearGradient (in float x0, in float y0, in float x1, in float y1); */
NS_IMETHOD CreateLinearGradient(float x0, float y0, float x1, float y1, nsIDOMCanvasGradient * *_retval) = 0;
/* nsIDOMCanvasGradient createRadialGradient (in float x0, in float y0, in float r0, in float x1, in float y1, in float r1); */
NS_IMETHOD CreateRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1, nsIDOMCanvasGradient * *_retval) = 0;
/* nsIDOMCanvasPattern createPattern (in nsIDOMHTMLElement image, in DOMString repetition); */
NS_IMETHOD CreatePattern(nsIDOMHTMLElement *image, const nsAString & repetition, nsIDOMCanvasPattern * *_retval) = 0;
/* attribute float lineWidth; */
NS_IMETHOD GetLineWidth(float *aLineWidth) = 0;
NS_IMETHOD SetLineWidth(float aLineWidth) = 0;
/* [binaryname(MozLineCap)] attribute DOMString lineCap; */
NS_IMETHOD GetMozLineCap(nsAString & aLineCap) = 0;
NS_IMETHOD SetMozLineCap(const nsAString & aLineCap) = 0;
/* [binaryname(MozLineJoin)] attribute DOMString lineJoin; */
NS_IMETHOD GetMozLineJoin(nsAString & aLineJoin) = 0;
NS_IMETHOD SetMozLineJoin(const nsAString & aLineJoin) = 0;
/* attribute float miterLimit; */
NS_IMETHOD GetMiterLimit(float *aMiterLimit) = 0;
NS_IMETHOD SetMiterLimit(float aMiterLimit) = 0;
/* [implicit_jscontext] attribute jsval mozDash; */
NS_IMETHOD GetMozDash(JSContext* cx, JS::Value *aMozDash) = 0;
NS_IMETHOD SetMozDash(JSContext* cx, const JS::Value & aMozDash) = 0;
/* attribute float mozDashOffset; */
NS_IMETHOD GetMozDashOffset(float *aMozDashOffset) = 0;
NS_IMETHOD SetMozDashOffset(float aMozDashOffset) = 0;
/* attribute float shadowOffsetX; */
NS_IMETHOD GetShadowOffsetX(float *aShadowOffsetX) = 0;
NS_IMETHOD SetShadowOffsetX(float aShadowOffsetX) = 0;
/* attribute float shadowOffsetY; */
NS_IMETHOD GetShadowOffsetY(float *aShadowOffsetY) = 0;
NS_IMETHOD SetShadowOffsetY(float aShadowOffsetY) = 0;
/* attribute float shadowBlur; */
NS_IMETHOD GetShadowBlur(float *aShadowBlur) = 0;
NS_IMETHOD SetShadowBlur(float aShadowBlur) = 0;
/* [binaryname(MozShadowColor)] attribute DOMString shadowColor; */
NS_IMETHOD GetMozShadowColor(nsAString & aShadowColor) = 0;
NS_IMETHOD SetMozShadowColor(const nsAString & aShadowColor) = 0;
/* void clearRect (in float x, in float y, in float w, in float h); */
NS_IMETHOD ClearRect(float x, float y, float w, float h) = 0;
/* void fillRect (in float x, in float y, in float w, in float h); */
NS_IMETHOD FillRect(float x, float y, float w, float h) = 0;
/* void strokeRect (in float x, in float y, in float w, in float h); */
NS_IMETHOD StrokeRect(float x, float y, float w, float h) = 0;
/* [binaryname(MozBeginPath)] void beginPath (); */
NS_IMETHOD MozBeginPath(void) = 0;
/* [binaryname(MozClosePath)] void closePath (); */
NS_IMETHOD MozClosePath(void) = 0;
/* void moveTo (in float x, in float y); */
NS_IMETHOD MoveTo(float x, float y) = 0;
/* void lineTo (in float x, in float y); */
NS_IMETHOD LineTo(float x, float y) = 0;
/* void quadraticCurveTo (in float cpx, in float cpy, in float x, in float y); */
NS_IMETHOD QuadraticCurveTo(float cpx, float cpy, float x, float y) = 0;
/* void bezierCurveTo (in float cp1x, in float cp1y, in float cp2x, in float cp2y, in float x, in float y); */
NS_IMETHOD BezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) = 0;
/* void arcTo (in float x1, in float y1, in float x2, in float y2, in float radius); */
NS_IMETHOD ArcTo(float x1, float y1, float x2, float y2, float radius) = 0;
/* void arc (in float x, in float y, in float r, in float startAngle, in float endAngle, [optional] in boolean anticlockwise); */
NS_IMETHOD Arc(float x, float y, float r, float startAngle, float endAngle, bool anticlockwise) = 0;
/* void rect (in float x, in float y, in float w, in float h); */
NS_IMETHOD Rect(float x, float y, float w, float h) = 0;
/* [binaryname(MozFill)] void fill (); */
NS_IMETHOD MozFill(void) = 0;
/* [binaryname(MozStroke)] void stroke (); */
NS_IMETHOD MozStroke(void) = 0;
/* [binaryname(MozClip)] void clip (); */
NS_IMETHOD MozClip(void) = 0;
/* [binaryname(MozFont)] attribute DOMString font; */
NS_IMETHOD GetMozFont(nsAString & aFont) = 0;
NS_IMETHOD SetMozFont(const nsAString & aFont) = 0;
/* [binaryname(MozTextAlign)] attribute DOMString textAlign; */
NS_IMETHOD GetMozTextAlign(nsAString & aTextAlign) = 0;
NS_IMETHOD SetMozTextAlign(const nsAString & aTextAlign) = 0;
/* [binaryname(MozTextBaseline)] attribute DOMString textBaseline; */
NS_IMETHOD GetMozTextBaseline(nsAString & aTextBaseline) = 0;
NS_IMETHOD SetMozTextBaseline(const nsAString & aTextBaseline) = 0;
/* void fillText (in DOMString text, in float x, in float y, [optional] in float maxWidth); */
NS_IMETHOD FillText(const nsAString & text, float x, float y, float maxWidth) = 0;
/* void strokeText (in DOMString text, in float x, in float y, [optional] in float maxWidth); */
NS_IMETHOD StrokeText(const nsAString & text, float x, float y, float maxWidth) = 0;
/* nsIDOMTextMetrics measureText (in DOMString text); */
NS_IMETHOD MeasureText(const nsAString & text, nsIDOMTextMetrics * *_retval) = 0;
/* [binaryname(TextStyle)] attribute DOMString mozTextStyle; */
NS_IMETHOD GetTextStyle(nsAString & aMozTextStyle) = 0;
NS_IMETHOD SetTextStyle(const nsAString & aMozTextStyle) = 0;
/* [optional_argc] void drawImage (in nsIDOMElement image, in float a1, in float a2, [optional] in float a3, [optional] in float a4, [optional] in float a5, [optional] in float a6, [optional] in float a7, [optional] in float a8); */
NS_IMETHOD DrawImage(nsIDOMElement *image, float a1, float a2, float a3, float a4, float a5, float a6, float a7, float a8, uint8_t _argc) = 0;
/* boolean isPointInPath (in float x, in float y); */
NS_IMETHOD IsPointInPath(float x, float y, bool *_retval) = 0;
/* [implicit_jscontext] nsIDOMImageData getImageData (in double sx, in double sy, in double sw, in double sh); */
NS_IMETHOD GetImageData(double sx, double sy, double sw, double sh, JSContext* cx, nsIDOMImageData * *_retval) = 0;
/* [implicit_jscontext,optional_argc] void putImageData (in jsval imageData, in double dx, in double dy, [optional] in double dirtyX, [optional] in double dirtyY, [optional] in double dirtyWidth, [optional] in double dirtyHeight); */
NS_IMETHOD PutImageData(const JS::Value & imageData, double dx, double dy, double dirtyX, double dirtyY, double dirtyWidth, double dirtyHeight, JSContext* cx, uint8_t _argc) = 0;
/* [noscript] void putImageData_explicit (in long x, in long y, in unsigned long width, in unsigned long height, [array, size_is (dataLen)] in octet dataPtr, in unsigned long dataLen, in boolean hasDirtyRect, in long dirtyX, in long dirtyY, in long dirtyWidth, in long dirtyHeight); */
NS_IMETHOD PutImageData_explicit(int32_t x, int32_t y, uint32_t width, uint32_t height, uint8_t *dataPtr, uint32_t dataLen, bool hasDirtyRect, int32_t dirtyX, int32_t dirtyY, int32_t dirtyWidth, int32_t dirtyHeight) = 0;
/* [implicit_jscontext,optional_argc] nsIDOMImageData createImageData (in jsval arg1, [optional] in jsval arg2); */
NS_IMETHOD CreateImageData(const JS::Value & arg1, const JS::Value & arg2, JSContext* cx, uint8_t _argc, nsIDOMImageData * *_retval) = 0;
/* attribute boolean mozImageSmoothingEnabled; */
NS_IMETHOD GetMozImageSmoothingEnabled(bool *aMozImageSmoothingEnabled) = 0;
NS_IMETHOD SetMozImageSmoothingEnabled(bool aMozImageSmoothingEnabled) = 0;
enum {
DRAWWINDOW_DRAW_CARET = 1U,
DRAWWINDOW_DO_NOT_FLUSH = 2U,
DRAWWINDOW_DRAW_VIEW = 4U,
DRAWWINDOW_USE_WIDGET_LAYERS = 8U,
DRAWWINDOW_ASYNC_DECODE_IMAGES = 16U
};
/* void drawWindow (in nsIDOMWindow window, in float x, in float y, in float w, in float h, in DOMString bgColor, [optional] in unsigned long flags); */
NS_IMETHOD DrawWindow(nsIDOMWindow *window, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags) = 0;
/* void asyncDrawXULElement (in nsIDOMXULElement elem, in float x, in float y, in float w, in float h, in DOMString bgColor, [optional] in unsigned long flags); */
NS_IMETHOD AsyncDrawXULElement(nsIDOMXULElement *elem, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCanvasRenderingContext2D, NS_IDOMCANVASRENDERINGCONTEXT2D_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCANVASRENDERINGCONTEXT2D \
NS_IMETHOD GetCanvas(nsIDOMHTMLCanvasElement * *aCanvas); \
NS_IMETHOD MozSave(void); \
NS_IMETHOD MozRestore(void); \
NS_IMETHOD Scale(float x, float y); \
NS_IMETHOD Rotate(float angle); \
NS_IMETHOD Translate(float x, float y); \
NS_IMETHOD Transform(float m11, float m12, float m21, float m22, float dx, float dy); \
NS_IMETHOD SetTransform(float m11, float m12, float m21, float m22, float dx, float dy); \
NS_IMETHOD GetMozCurrentTransform(JSContext* cx, JS::Value *aMozCurrentTransform); \
NS_IMETHOD SetMozCurrentTransform(JSContext* cx, const JS::Value & aMozCurrentTransform); \
NS_IMETHOD GetMozCurrentTransformInverse(JSContext* cx, JS::Value *aMozCurrentTransformInverse); \
NS_IMETHOD SetMozCurrentTransformInverse(JSContext* cx, const JS::Value & aMozCurrentTransformInverse); \
NS_IMETHOD GetGlobalAlpha(float *aGlobalAlpha); \
NS_IMETHOD SetGlobalAlpha(float aGlobalAlpha); \
NS_IMETHOD GetGlobalCompositeOperation(nsAString & aGlobalCompositeOperation); \
NS_IMETHOD SetGlobalCompositeOperation(const nsAString & aGlobalCompositeOperation); \
NS_IMETHOD GetStrokeStyle(nsIVariant * *aStrokeStyle); \
NS_IMETHOD SetStrokeStyle(nsIVariant *aStrokeStyle); \
NS_IMETHOD GetFillStyle(nsIVariant * *aFillStyle); \
NS_IMETHOD SetFillStyle(nsIVariant *aFillStyle); \
NS_IMETHOD SetStrokeStyle_multi(const nsAString & str, nsISupports *iface); \
NS_IMETHOD GetStrokeStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type); \
NS_IMETHOD SetFillStyle_multi(const nsAString & str, nsISupports *iface); \
NS_IMETHOD GetFillStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type); \
NS_IMETHOD GetMozFillRule(nsAString & aMozFillRule); \
NS_IMETHOD SetMozFillRule(const nsAString & aMozFillRule); \
NS_IMETHOD CreateLinearGradient(float x0, float y0, float x1, float y1, nsIDOMCanvasGradient * *_retval); \
NS_IMETHOD CreateRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1, nsIDOMCanvasGradient * *_retval); \
NS_IMETHOD CreatePattern(nsIDOMHTMLElement *image, const nsAString & repetition, nsIDOMCanvasPattern * *_retval); \
NS_IMETHOD GetLineWidth(float *aLineWidth); \
NS_IMETHOD SetLineWidth(float aLineWidth); \
NS_IMETHOD GetMozLineCap(nsAString & aLineCap); \
NS_IMETHOD SetMozLineCap(const nsAString & aLineCap); \
NS_IMETHOD GetMozLineJoin(nsAString & aLineJoin); \
NS_IMETHOD SetMozLineJoin(const nsAString & aLineJoin); \
NS_IMETHOD GetMiterLimit(float *aMiterLimit); \
NS_IMETHOD SetMiterLimit(float aMiterLimit); \
NS_IMETHOD GetMozDash(JSContext* cx, JS::Value *aMozDash); \
NS_IMETHOD SetMozDash(JSContext* cx, const JS::Value & aMozDash); \
NS_IMETHOD GetMozDashOffset(float *aMozDashOffset); \
NS_IMETHOD SetMozDashOffset(float aMozDashOffset); \
NS_IMETHOD GetShadowOffsetX(float *aShadowOffsetX); \
NS_IMETHOD SetShadowOffsetX(float aShadowOffsetX); \
NS_IMETHOD GetShadowOffsetY(float *aShadowOffsetY); \
NS_IMETHOD SetShadowOffsetY(float aShadowOffsetY); \
NS_IMETHOD GetShadowBlur(float *aShadowBlur); \
NS_IMETHOD SetShadowBlur(float aShadowBlur); \
NS_IMETHOD GetMozShadowColor(nsAString & aShadowColor); \
NS_IMETHOD SetMozShadowColor(const nsAString & aShadowColor); \
NS_IMETHOD ClearRect(float x, float y, float w, float h); \
NS_IMETHOD FillRect(float x, float y, float w, float h); \
NS_IMETHOD StrokeRect(float x, float y, float w, float h); \
NS_IMETHOD MozBeginPath(void); \
NS_IMETHOD MozClosePath(void); \
NS_IMETHOD MoveTo(float x, float y); \
NS_IMETHOD LineTo(float x, float y); \
NS_IMETHOD QuadraticCurveTo(float cpx, float cpy, float x, float y); \
NS_IMETHOD BezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y); \
NS_IMETHOD ArcTo(float x1, float y1, float x2, float y2, float radius); \
NS_IMETHOD Arc(float x, float y, float r, float startAngle, float endAngle, bool anticlockwise); \
NS_IMETHOD Rect(float x, float y, float w, float h); \
NS_IMETHOD MozFill(void); \
NS_IMETHOD MozStroke(void); \
NS_IMETHOD MozClip(void); \
NS_IMETHOD GetMozFont(nsAString & aFont); \
NS_IMETHOD SetMozFont(const nsAString & aFont); \
NS_IMETHOD GetMozTextAlign(nsAString & aTextAlign); \
NS_IMETHOD SetMozTextAlign(const nsAString & aTextAlign); \
NS_IMETHOD GetMozTextBaseline(nsAString & aTextBaseline); \
NS_IMETHOD SetMozTextBaseline(const nsAString & aTextBaseline); \
NS_IMETHOD FillText(const nsAString & text, float x, float y, float maxWidth); \
NS_IMETHOD StrokeText(const nsAString & text, float x, float y, float maxWidth); \
NS_IMETHOD MeasureText(const nsAString & text, nsIDOMTextMetrics * *_retval); \
NS_IMETHOD GetTextStyle(nsAString & aMozTextStyle); \
NS_IMETHOD SetTextStyle(const nsAString & aMozTextStyle); \
NS_IMETHOD DrawImage(nsIDOMElement *image, float a1, float a2, float a3, float a4, float a5, float a6, float a7, float a8, uint8_t _argc); \
NS_IMETHOD IsPointInPath(float x, float y, bool *_retval); \
NS_IMETHOD GetImageData(double sx, double sy, double sw, double sh, JSContext* cx, nsIDOMImageData * *_retval); \
NS_IMETHOD PutImageData(const JS::Value & imageData, double dx, double dy, double dirtyX, double dirtyY, double dirtyWidth, double dirtyHeight, JSContext* cx, uint8_t _argc); \
NS_IMETHOD PutImageData_explicit(int32_t x, int32_t y, uint32_t width, uint32_t height, uint8_t *dataPtr, uint32_t dataLen, bool hasDirtyRect, int32_t dirtyX, int32_t dirtyY, int32_t dirtyWidth, int32_t dirtyHeight); \
NS_IMETHOD CreateImageData(const JS::Value & arg1, const JS::Value & arg2, JSContext* cx, uint8_t _argc, nsIDOMImageData * *_retval); \
NS_IMETHOD GetMozImageSmoothingEnabled(bool *aMozImageSmoothingEnabled); \
NS_IMETHOD SetMozImageSmoothingEnabled(bool aMozImageSmoothingEnabled); \
NS_IMETHOD DrawWindow(nsIDOMWindow *window, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags); \
NS_IMETHOD AsyncDrawXULElement(nsIDOMXULElement *elem, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCANVASRENDERINGCONTEXT2D(_to) \
NS_IMETHOD GetCanvas(nsIDOMHTMLCanvasElement * *aCanvas) { return _to GetCanvas(aCanvas); } \
NS_IMETHOD MozSave(void) { return _to MozSave(); } \
NS_IMETHOD MozRestore(void) { return _to MozRestore(); } \
NS_IMETHOD Scale(float x, float y) { return _to Scale(x, y); } \
NS_IMETHOD Rotate(float angle) { return _to Rotate(angle); } \
NS_IMETHOD Translate(float x, float y) { return _to Translate(x, y); } \
NS_IMETHOD Transform(float m11, float m12, float m21, float m22, float dx, float dy) { return _to Transform(m11, m12, m21, m22, dx, dy); } \
NS_IMETHOD SetTransform(float m11, float m12, float m21, float m22, float dx, float dy) { return _to SetTransform(m11, m12, m21, m22, dx, dy); } \
NS_IMETHOD GetMozCurrentTransform(JSContext* cx, JS::Value *aMozCurrentTransform) { return _to GetMozCurrentTransform(cx, aMozCurrentTransform); } \
NS_IMETHOD SetMozCurrentTransform(JSContext* cx, const JS::Value & aMozCurrentTransform) { return _to SetMozCurrentTransform(cx, aMozCurrentTransform); } \
NS_IMETHOD GetMozCurrentTransformInverse(JSContext* cx, JS::Value *aMozCurrentTransformInverse) { return _to GetMozCurrentTransformInverse(cx, aMozCurrentTransformInverse); } \
NS_IMETHOD SetMozCurrentTransformInverse(JSContext* cx, const JS::Value & aMozCurrentTransformInverse) { return _to SetMozCurrentTransformInverse(cx, aMozCurrentTransformInverse); } \
NS_IMETHOD GetGlobalAlpha(float *aGlobalAlpha) { return _to GetGlobalAlpha(aGlobalAlpha); } \
NS_IMETHOD SetGlobalAlpha(float aGlobalAlpha) { return _to SetGlobalAlpha(aGlobalAlpha); } \
NS_IMETHOD GetGlobalCompositeOperation(nsAString & aGlobalCompositeOperation) { return _to GetGlobalCompositeOperation(aGlobalCompositeOperation); } \
NS_IMETHOD SetGlobalCompositeOperation(const nsAString & aGlobalCompositeOperation) { return _to SetGlobalCompositeOperation(aGlobalCompositeOperation); } \
NS_IMETHOD GetStrokeStyle(nsIVariant * *aStrokeStyle) { return _to GetStrokeStyle(aStrokeStyle); } \
NS_IMETHOD SetStrokeStyle(nsIVariant *aStrokeStyle) { return _to SetStrokeStyle(aStrokeStyle); } \
NS_IMETHOD GetFillStyle(nsIVariant * *aFillStyle) { return _to GetFillStyle(aFillStyle); } \
NS_IMETHOD SetFillStyle(nsIVariant *aFillStyle) { return _to SetFillStyle(aFillStyle); } \
NS_IMETHOD SetStrokeStyle_multi(const nsAString & str, nsISupports *iface) { return _to SetStrokeStyle_multi(str, iface); } \
NS_IMETHOD GetStrokeStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type) { return _to GetStrokeStyle_multi(str, iface, type); } \
NS_IMETHOD SetFillStyle_multi(const nsAString & str, nsISupports *iface) { return _to SetFillStyle_multi(str, iface); } \
NS_IMETHOD GetFillStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type) { return _to GetFillStyle_multi(str, iface, type); } \
NS_IMETHOD GetMozFillRule(nsAString & aMozFillRule) { return _to GetMozFillRule(aMozFillRule); } \
NS_IMETHOD SetMozFillRule(const nsAString & aMozFillRule) { return _to SetMozFillRule(aMozFillRule); } \
NS_IMETHOD CreateLinearGradient(float x0, float y0, float x1, float y1, nsIDOMCanvasGradient * *_retval) { return _to CreateLinearGradient(x0, y0, x1, y1, _retval); } \
NS_IMETHOD CreateRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1, nsIDOMCanvasGradient * *_retval) { return _to CreateRadialGradient(x0, y0, r0, x1, y1, r1, _retval); } \
NS_IMETHOD CreatePattern(nsIDOMHTMLElement *image, const nsAString & repetition, nsIDOMCanvasPattern * *_retval) { return _to CreatePattern(image, repetition, _retval); } \
NS_IMETHOD GetLineWidth(float *aLineWidth) { return _to GetLineWidth(aLineWidth); } \
NS_IMETHOD SetLineWidth(float aLineWidth) { return _to SetLineWidth(aLineWidth); } \
NS_IMETHOD GetMozLineCap(nsAString & aLineCap) { return _to GetMozLineCap(aLineCap); } \
NS_IMETHOD SetMozLineCap(const nsAString & aLineCap) { return _to SetMozLineCap(aLineCap); } \
NS_IMETHOD GetMozLineJoin(nsAString & aLineJoin) { return _to GetMozLineJoin(aLineJoin); } \
NS_IMETHOD SetMozLineJoin(const nsAString & aLineJoin) { return _to SetMozLineJoin(aLineJoin); } \
NS_IMETHOD GetMiterLimit(float *aMiterLimit) { return _to GetMiterLimit(aMiterLimit); } \
NS_IMETHOD SetMiterLimit(float aMiterLimit) { return _to SetMiterLimit(aMiterLimit); } \
NS_IMETHOD GetMozDash(JSContext* cx, JS::Value *aMozDash) { return _to GetMozDash(cx, aMozDash); } \
NS_IMETHOD SetMozDash(JSContext* cx, const JS::Value & aMozDash) { return _to SetMozDash(cx, aMozDash); } \
NS_IMETHOD GetMozDashOffset(float *aMozDashOffset) { return _to GetMozDashOffset(aMozDashOffset); } \
NS_IMETHOD SetMozDashOffset(float aMozDashOffset) { return _to SetMozDashOffset(aMozDashOffset); } \
NS_IMETHOD GetShadowOffsetX(float *aShadowOffsetX) { return _to GetShadowOffsetX(aShadowOffsetX); } \
NS_IMETHOD SetShadowOffsetX(float aShadowOffsetX) { return _to SetShadowOffsetX(aShadowOffsetX); } \
NS_IMETHOD GetShadowOffsetY(float *aShadowOffsetY) { return _to GetShadowOffsetY(aShadowOffsetY); } \
NS_IMETHOD SetShadowOffsetY(float aShadowOffsetY) { return _to SetShadowOffsetY(aShadowOffsetY); } \
NS_IMETHOD GetShadowBlur(float *aShadowBlur) { return _to GetShadowBlur(aShadowBlur); } \
NS_IMETHOD SetShadowBlur(float aShadowBlur) { return _to SetShadowBlur(aShadowBlur); } \
NS_IMETHOD GetMozShadowColor(nsAString & aShadowColor) { return _to GetMozShadowColor(aShadowColor); } \
NS_IMETHOD SetMozShadowColor(const nsAString & aShadowColor) { return _to SetMozShadowColor(aShadowColor); } \
NS_IMETHOD ClearRect(float x, float y, float w, float h) { return _to ClearRect(x, y, w, h); } \
NS_IMETHOD FillRect(float x, float y, float w, float h) { return _to FillRect(x, y, w, h); } \
NS_IMETHOD StrokeRect(float x, float y, float w, float h) { return _to StrokeRect(x, y, w, h); } \
NS_IMETHOD MozBeginPath(void) { return _to MozBeginPath(); } \
NS_IMETHOD MozClosePath(void) { return _to MozClosePath(); } \
NS_IMETHOD MoveTo(float x, float y) { return _to MoveTo(x, y); } \
NS_IMETHOD LineTo(float x, float y) { return _to LineTo(x, y); } \
NS_IMETHOD QuadraticCurveTo(float cpx, float cpy, float x, float y) { return _to QuadraticCurveTo(cpx, cpy, x, y); } \
NS_IMETHOD BezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) { return _to BezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); } \
NS_IMETHOD ArcTo(float x1, float y1, float x2, float y2, float radius) { return _to ArcTo(x1, y1, x2, y2, radius); } \
NS_IMETHOD Arc(float x, float y, float r, float startAngle, float endAngle, bool anticlockwise) { return _to Arc(x, y, r, startAngle, endAngle, anticlockwise); } \
NS_IMETHOD Rect(float x, float y, float w, float h) { return _to Rect(x, y, w, h); } \
NS_IMETHOD MozFill(void) { return _to MozFill(); } \
NS_IMETHOD MozStroke(void) { return _to MozStroke(); } \
NS_IMETHOD MozClip(void) { return _to MozClip(); } \
NS_IMETHOD GetMozFont(nsAString & aFont) { return _to GetMozFont(aFont); } \
NS_IMETHOD SetMozFont(const nsAString & aFont) { return _to SetMozFont(aFont); } \
NS_IMETHOD GetMozTextAlign(nsAString & aTextAlign) { return _to GetMozTextAlign(aTextAlign); } \
NS_IMETHOD SetMozTextAlign(const nsAString & aTextAlign) { return _to SetMozTextAlign(aTextAlign); } \
NS_IMETHOD GetMozTextBaseline(nsAString & aTextBaseline) { return _to GetMozTextBaseline(aTextBaseline); } \
NS_IMETHOD SetMozTextBaseline(const nsAString & aTextBaseline) { return _to SetMozTextBaseline(aTextBaseline); } \
NS_IMETHOD FillText(const nsAString & text, float x, float y, float maxWidth) { return _to FillText(text, x, y, maxWidth); } \
NS_IMETHOD StrokeText(const nsAString & text, float x, float y, float maxWidth) { return _to StrokeText(text, x, y, maxWidth); } \
NS_IMETHOD MeasureText(const nsAString & text, nsIDOMTextMetrics * *_retval) { return _to MeasureText(text, _retval); } \
NS_IMETHOD GetTextStyle(nsAString & aMozTextStyle) { return _to GetTextStyle(aMozTextStyle); } \
NS_IMETHOD SetTextStyle(const nsAString & aMozTextStyle) { return _to SetTextStyle(aMozTextStyle); } \
NS_IMETHOD DrawImage(nsIDOMElement *image, float a1, float a2, float a3, float a4, float a5, float a6, float a7, float a8, uint8_t _argc) { return _to DrawImage(image, a1, a2, a3, a4, a5, a6, a7, a8, _argc); } \
NS_IMETHOD IsPointInPath(float x, float y, bool *_retval) { return _to IsPointInPath(x, y, _retval); } \
NS_IMETHOD GetImageData(double sx, double sy, double sw, double sh, JSContext* cx, nsIDOMImageData * *_retval) { return _to GetImageData(sx, sy, sw, sh, cx, _retval); } \
NS_IMETHOD PutImageData(const JS::Value & imageData, double dx, double dy, double dirtyX, double dirtyY, double dirtyWidth, double dirtyHeight, JSContext* cx, uint8_t _argc) { return _to PutImageData(imageData, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight, cx, _argc); } \
NS_IMETHOD PutImageData_explicit(int32_t x, int32_t y, uint32_t width, uint32_t height, uint8_t *dataPtr, uint32_t dataLen, bool hasDirtyRect, int32_t dirtyX, int32_t dirtyY, int32_t dirtyWidth, int32_t dirtyHeight) { return _to PutImageData_explicit(x, y, width, height, dataPtr, dataLen, hasDirtyRect, dirtyX, dirtyY, dirtyWidth, dirtyHeight); } \
NS_IMETHOD CreateImageData(const JS::Value & arg1, const JS::Value & arg2, JSContext* cx, uint8_t _argc, nsIDOMImageData * *_retval) { return _to CreateImageData(arg1, arg2, cx, _argc, _retval); } \
NS_IMETHOD GetMozImageSmoothingEnabled(bool *aMozImageSmoothingEnabled) { return _to GetMozImageSmoothingEnabled(aMozImageSmoothingEnabled); } \
NS_IMETHOD SetMozImageSmoothingEnabled(bool aMozImageSmoothingEnabled) { return _to SetMozImageSmoothingEnabled(aMozImageSmoothingEnabled); } \
NS_IMETHOD DrawWindow(nsIDOMWindow *window, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags) { return _to DrawWindow(window, x, y, w, h, bgColor, flags); } \
NS_IMETHOD AsyncDrawXULElement(nsIDOMXULElement *elem, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags) { return _to AsyncDrawXULElement(elem, x, y, w, h, bgColor, flags); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCANVASRENDERINGCONTEXT2D(_to) \
NS_IMETHOD GetCanvas(nsIDOMHTMLCanvasElement * *aCanvas) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCanvas(aCanvas); } \
NS_IMETHOD MozSave(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->MozSave(); } \
NS_IMETHOD MozRestore(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->MozRestore(); } \
NS_IMETHOD Scale(float x, float y) { return !_to ? NS_ERROR_NULL_POINTER : _to->Scale(x, y); } \
NS_IMETHOD Rotate(float angle) { return !_to ? NS_ERROR_NULL_POINTER : _to->Rotate(angle); } \
NS_IMETHOD Translate(float x, float y) { return !_to ? NS_ERROR_NULL_POINTER : _to->Translate(x, y); } \
NS_IMETHOD Transform(float m11, float m12, float m21, float m22, float dx, float dy) { return !_to ? NS_ERROR_NULL_POINTER : _to->Transform(m11, m12, m21, m22, dx, dy); } \
NS_IMETHOD SetTransform(float m11, float m12, float m21, float m22, float dx, float dy) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTransform(m11, m12, m21, m22, dx, dy); } \
NS_IMETHOD GetMozCurrentTransform(JSContext* cx, JS::Value *aMozCurrentTransform) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozCurrentTransform(cx, aMozCurrentTransform); } \
NS_IMETHOD SetMozCurrentTransform(JSContext* cx, const JS::Value & aMozCurrentTransform) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozCurrentTransform(cx, aMozCurrentTransform); } \
NS_IMETHOD GetMozCurrentTransformInverse(JSContext* cx, JS::Value *aMozCurrentTransformInverse) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozCurrentTransformInverse(cx, aMozCurrentTransformInverse); } \
NS_IMETHOD SetMozCurrentTransformInverse(JSContext* cx, const JS::Value & aMozCurrentTransformInverse) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozCurrentTransformInverse(cx, aMozCurrentTransformInverse); } \
NS_IMETHOD GetGlobalAlpha(float *aGlobalAlpha) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGlobalAlpha(aGlobalAlpha); } \
NS_IMETHOD SetGlobalAlpha(float aGlobalAlpha) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGlobalAlpha(aGlobalAlpha); } \
NS_IMETHOD GetGlobalCompositeOperation(nsAString & aGlobalCompositeOperation) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGlobalCompositeOperation(aGlobalCompositeOperation); } \
NS_IMETHOD SetGlobalCompositeOperation(const nsAString & aGlobalCompositeOperation) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGlobalCompositeOperation(aGlobalCompositeOperation); } \
NS_IMETHOD GetStrokeStyle(nsIVariant * *aStrokeStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeStyle(aStrokeStyle); } \
NS_IMETHOD SetStrokeStyle(nsIVariant *aStrokeStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeStyle(aStrokeStyle); } \
NS_IMETHOD GetFillStyle(nsIVariant * *aFillStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFillStyle(aFillStyle); } \
NS_IMETHOD SetFillStyle(nsIVariant *aFillStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFillStyle(aFillStyle); } \
NS_IMETHOD SetStrokeStyle_multi(const nsAString & str, nsISupports *iface) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStrokeStyle_multi(str, iface); } \
NS_IMETHOD GetStrokeStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStrokeStyle_multi(str, iface, type); } \
NS_IMETHOD SetFillStyle_multi(const nsAString & str, nsISupports *iface) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFillStyle_multi(str, iface); } \
NS_IMETHOD GetFillStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFillStyle_multi(str, iface, type); } \
NS_IMETHOD GetMozFillRule(nsAString & aMozFillRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozFillRule(aMozFillRule); } \
NS_IMETHOD SetMozFillRule(const nsAString & aMozFillRule) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozFillRule(aMozFillRule); } \
NS_IMETHOD CreateLinearGradient(float x0, float y0, float x1, float y1, nsIDOMCanvasGradient * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateLinearGradient(x0, y0, x1, y1, _retval); } \
NS_IMETHOD CreateRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1, nsIDOMCanvasGradient * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateRadialGradient(x0, y0, r0, x1, y1, r1, _retval); } \
NS_IMETHOD CreatePattern(nsIDOMHTMLElement *image, const nsAString & repetition, nsIDOMCanvasPattern * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreatePattern(image, repetition, _retval); } \
NS_IMETHOD GetLineWidth(float *aLineWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLineWidth(aLineWidth); } \
NS_IMETHOD SetLineWidth(float aLineWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLineWidth(aLineWidth); } \
NS_IMETHOD GetMozLineCap(nsAString & aLineCap) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozLineCap(aLineCap); } \
NS_IMETHOD SetMozLineCap(const nsAString & aLineCap) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozLineCap(aLineCap); } \
NS_IMETHOD GetMozLineJoin(nsAString & aLineJoin) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozLineJoin(aLineJoin); } \
NS_IMETHOD SetMozLineJoin(const nsAString & aLineJoin) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozLineJoin(aLineJoin); } \
NS_IMETHOD GetMiterLimit(float *aMiterLimit) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMiterLimit(aMiterLimit); } \
NS_IMETHOD SetMiterLimit(float aMiterLimit) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMiterLimit(aMiterLimit); } \
NS_IMETHOD GetMozDash(JSContext* cx, JS::Value *aMozDash) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozDash(cx, aMozDash); } \
NS_IMETHOD SetMozDash(JSContext* cx, const JS::Value & aMozDash) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozDash(cx, aMozDash); } \
NS_IMETHOD GetMozDashOffset(float *aMozDashOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozDashOffset(aMozDashOffset); } \
NS_IMETHOD SetMozDashOffset(float aMozDashOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozDashOffset(aMozDashOffset); } \
NS_IMETHOD GetShadowOffsetX(float *aShadowOffsetX) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetShadowOffsetX(aShadowOffsetX); } \
NS_IMETHOD SetShadowOffsetX(float aShadowOffsetX) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetShadowOffsetX(aShadowOffsetX); } \
NS_IMETHOD GetShadowOffsetY(float *aShadowOffsetY) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetShadowOffsetY(aShadowOffsetY); } \
NS_IMETHOD SetShadowOffsetY(float aShadowOffsetY) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetShadowOffsetY(aShadowOffsetY); } \
NS_IMETHOD GetShadowBlur(float *aShadowBlur) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetShadowBlur(aShadowBlur); } \
NS_IMETHOD SetShadowBlur(float aShadowBlur) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetShadowBlur(aShadowBlur); } \
NS_IMETHOD GetMozShadowColor(nsAString & aShadowColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozShadowColor(aShadowColor); } \
NS_IMETHOD SetMozShadowColor(const nsAString & aShadowColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozShadowColor(aShadowColor); } \
NS_IMETHOD ClearRect(float x, float y, float w, float h) { return !_to ? NS_ERROR_NULL_POINTER : _to->ClearRect(x, y, w, h); } \
NS_IMETHOD FillRect(float x, float y, float w, float h) { return !_to ? NS_ERROR_NULL_POINTER : _to->FillRect(x, y, w, h); } \
NS_IMETHOD StrokeRect(float x, float y, float w, float h) { return !_to ? NS_ERROR_NULL_POINTER : _to->StrokeRect(x, y, w, h); } \
NS_IMETHOD MozBeginPath(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->MozBeginPath(); } \
NS_IMETHOD MozClosePath(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->MozClosePath(); } \
NS_IMETHOD MoveTo(float x, float y) { return !_to ? NS_ERROR_NULL_POINTER : _to->MoveTo(x, y); } \
NS_IMETHOD LineTo(float x, float y) { return !_to ? NS_ERROR_NULL_POINTER : _to->LineTo(x, y); } \
NS_IMETHOD QuadraticCurveTo(float cpx, float cpy, float x, float y) { return !_to ? NS_ERROR_NULL_POINTER : _to->QuadraticCurveTo(cpx, cpy, x, y); } \
NS_IMETHOD BezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) { return !_to ? NS_ERROR_NULL_POINTER : _to->BezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); } \
NS_IMETHOD ArcTo(float x1, float y1, float x2, float y2, float radius) { return !_to ? NS_ERROR_NULL_POINTER : _to->ArcTo(x1, y1, x2, y2, radius); } \
NS_IMETHOD Arc(float x, float y, float r, float startAngle, float endAngle, bool anticlockwise) { return !_to ? NS_ERROR_NULL_POINTER : _to->Arc(x, y, r, startAngle, endAngle, anticlockwise); } \
NS_IMETHOD Rect(float x, float y, float w, float h) { return !_to ? NS_ERROR_NULL_POINTER : _to->Rect(x, y, w, h); } \
NS_IMETHOD MozFill(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->MozFill(); } \
NS_IMETHOD MozStroke(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->MozStroke(); } \
NS_IMETHOD MozClip(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->MozClip(); } \
NS_IMETHOD GetMozFont(nsAString & aFont) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozFont(aFont); } \
NS_IMETHOD SetMozFont(const nsAString & aFont) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozFont(aFont); } \
NS_IMETHOD GetMozTextAlign(nsAString & aTextAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextAlign(aTextAlign); } \
NS_IMETHOD SetMozTextAlign(const nsAString & aTextAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextAlign(aTextAlign); } \
NS_IMETHOD GetMozTextBaseline(nsAString & aTextBaseline) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozTextBaseline(aTextBaseline); } \
NS_IMETHOD SetMozTextBaseline(const nsAString & aTextBaseline) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozTextBaseline(aTextBaseline); } \
NS_IMETHOD FillText(const nsAString & text, float x, float y, float maxWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->FillText(text, x, y, maxWidth); } \
NS_IMETHOD StrokeText(const nsAString & text, float x, float y, float maxWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->StrokeText(text, x, y, maxWidth); } \
NS_IMETHOD MeasureText(const nsAString & text, nsIDOMTextMetrics * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->MeasureText(text, _retval); } \
NS_IMETHOD GetTextStyle(nsAString & aMozTextStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextStyle(aMozTextStyle); } \
NS_IMETHOD SetTextStyle(const nsAString & aMozTextStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTextStyle(aMozTextStyle); } \
NS_IMETHOD DrawImage(nsIDOMElement *image, float a1, float a2, float a3, float a4, float a5, float a6, float a7, float a8, uint8_t _argc) { return !_to ? NS_ERROR_NULL_POINTER : _to->DrawImage(image, a1, a2, a3, a4, a5, a6, a7, a8, _argc); } \
NS_IMETHOD IsPointInPath(float x, float y, bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsPointInPath(x, y, _retval); } \
NS_IMETHOD GetImageData(double sx, double sy, double sw, double sh, JSContext* cx, nsIDOMImageData * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageData(sx, sy, sw, sh, cx, _retval); } \
NS_IMETHOD PutImageData(const JS::Value & imageData, double dx, double dy, double dirtyX, double dirtyY, double dirtyWidth, double dirtyHeight, JSContext* cx, uint8_t _argc) { return !_to ? NS_ERROR_NULL_POINTER : _to->PutImageData(imageData, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight, cx, _argc); } \
NS_IMETHOD PutImageData_explicit(int32_t x, int32_t y, uint32_t width, uint32_t height, uint8_t *dataPtr, uint32_t dataLen, bool hasDirtyRect, int32_t dirtyX, int32_t dirtyY, int32_t dirtyWidth, int32_t dirtyHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->PutImageData_explicit(x, y, width, height, dataPtr, dataLen, hasDirtyRect, dirtyX, dirtyY, dirtyWidth, dirtyHeight); } \
NS_IMETHOD CreateImageData(const JS::Value & arg1, const JS::Value & arg2, JSContext* cx, uint8_t _argc, nsIDOMImageData * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateImageData(arg1, arg2, cx, _argc, _retval); } \
NS_IMETHOD GetMozImageSmoothingEnabled(bool *aMozImageSmoothingEnabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozImageSmoothingEnabled(aMozImageSmoothingEnabled); } \
NS_IMETHOD SetMozImageSmoothingEnabled(bool aMozImageSmoothingEnabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMozImageSmoothingEnabled(aMozImageSmoothingEnabled); } \
NS_IMETHOD DrawWindow(nsIDOMWindow *window, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags) { return !_to ? NS_ERROR_NULL_POINTER : _to->DrawWindow(window, x, y, w, h, bgColor, flags); } \
NS_IMETHOD AsyncDrawXULElement(nsIDOMXULElement *elem, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags) { return !_to ? NS_ERROR_NULL_POINTER : _to->AsyncDrawXULElement(elem, x, y, w, h, bgColor, flags); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCanvasRenderingContext2D : public nsIDOMCanvasRenderingContext2D
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCANVASRENDERINGCONTEXT2D
nsDOMCanvasRenderingContext2D();
private:
~nsDOMCanvasRenderingContext2D();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMCanvasRenderingContext2D, nsIDOMCanvasRenderingContext2D)
nsDOMCanvasRenderingContext2D::nsDOMCanvasRenderingContext2D()
{
/* member initializers and constructor code */
}
nsDOMCanvasRenderingContext2D::~nsDOMCanvasRenderingContext2D()
{
/* destructor code */
}
/* readonly attribute nsIDOMHTMLCanvasElement canvas; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetCanvas(nsIDOMHTMLCanvasElement * *aCanvas)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozSave)] void save (); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MozSave()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozRestore)] void restore (); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MozRestore()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void scale (in float x, in float y); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::Scale(float x, float y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void rotate (in float angle); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::Rotate(float angle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void translate (in float x, in float y); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::Translate(float x, float y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void transform (in float m11, in float m12, in float m21, in float m22, in float dx, in float dy); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::Transform(float m11, float m12, float m21, float m22, float dx, float dy)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setTransform (in float m11, in float m12, in float m21, in float m22, in float dx, in float dy); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetTransform(float m11, float m12, float m21, float m22, float dx, float dy)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] attribute jsval mozCurrentTransform; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozCurrentTransform(JSContext* cx, JS::Value *aMozCurrentTransform)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozCurrentTransform(JSContext* cx, const JS::Value & aMozCurrentTransform)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] attribute jsval mozCurrentTransformInverse; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozCurrentTransformInverse(JSContext* cx, JS::Value *aMozCurrentTransformInverse)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozCurrentTransformInverse(JSContext* cx, const JS::Value & aMozCurrentTransformInverse)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute float globalAlpha; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetGlobalAlpha(float *aGlobalAlpha)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetGlobalAlpha(float aGlobalAlpha)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString globalCompositeOperation; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetGlobalCompositeOperation(nsAString & aGlobalCompositeOperation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetGlobalCompositeOperation(const nsAString & aGlobalCompositeOperation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsIVariant strokeStyle; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetStrokeStyle(nsIVariant * *aStrokeStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetStrokeStyle(nsIVariant *aStrokeStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsIVariant fillStyle; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetFillStyle(nsIVariant * *aFillStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetFillStyle(nsIVariant *aFillStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void setStrokeStyle_multi (in DOMString str, in nsISupports iface); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetStrokeStyle_multi(const nsAString & str, nsISupports *iface)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void getStrokeStyle_multi (out DOMString str, out nsISupports iface, out long type); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetStrokeStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void setFillStyle_multi (in DOMString str, in nsISupports iface); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetFillStyle_multi(const nsAString & str, nsISupports *iface)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void getFillStyle_multi (out DOMString str, out nsISupports iface, out long type); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetFillStyle_multi(nsAString & str, nsISupports * *iface, int32_t *type)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString mozFillRule; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozFillRule(nsAString & aMozFillRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozFillRule(const nsAString & aMozFillRule)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMCanvasGradient createLinearGradient (in float x0, in float y0, in float x1, in float y1); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::CreateLinearGradient(float x0, float y0, float x1, float y1, nsIDOMCanvasGradient * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMCanvasGradient createRadialGradient (in float x0, in float y0, in float r0, in float x1, in float y1, in float r1); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::CreateRadialGradient(float x0, float y0, float r0, float x1, float y1, float r1, nsIDOMCanvasGradient * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMCanvasPattern createPattern (in nsIDOMHTMLElement image, in DOMString repetition); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::CreatePattern(nsIDOMHTMLElement *image, const nsAString & repetition, nsIDOMCanvasPattern * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute float lineWidth; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetLineWidth(float *aLineWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetLineWidth(float aLineWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozLineCap)] attribute DOMString lineCap; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozLineCap(nsAString & aLineCap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozLineCap(const nsAString & aLineCap)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozLineJoin)] attribute DOMString lineJoin; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozLineJoin(nsAString & aLineJoin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozLineJoin(const nsAString & aLineJoin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute float miterLimit; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMiterLimit(float *aMiterLimit)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMiterLimit(float aMiterLimit)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] attribute jsval mozDash; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozDash(JSContext* cx, JS::Value *aMozDash)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozDash(JSContext* cx, const JS::Value & aMozDash)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute float mozDashOffset; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozDashOffset(float *aMozDashOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozDashOffset(float aMozDashOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute float shadowOffsetX; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetShadowOffsetX(float *aShadowOffsetX)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetShadowOffsetX(float aShadowOffsetX)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute float shadowOffsetY; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetShadowOffsetY(float *aShadowOffsetY)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetShadowOffsetY(float aShadowOffsetY)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute float shadowBlur; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetShadowBlur(float *aShadowBlur)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetShadowBlur(float aShadowBlur)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozShadowColor)] attribute DOMString shadowColor; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozShadowColor(nsAString & aShadowColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozShadowColor(const nsAString & aShadowColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void clearRect (in float x, in float y, in float w, in float h); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::ClearRect(float x, float y, float w, float h)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void fillRect (in float x, in float y, in float w, in float h); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::FillRect(float x, float y, float w, float h)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void strokeRect (in float x, in float y, in float w, in float h); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::StrokeRect(float x, float y, float w, float h)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozBeginPath)] void beginPath (); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MozBeginPath()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozClosePath)] void closePath (); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MozClosePath()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void moveTo (in float x, in float y); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MoveTo(float x, float y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void lineTo (in float x, in float y); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::LineTo(float x, float y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void quadraticCurveTo (in float cpx, in float cpy, in float x, in float y); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::QuadraticCurveTo(float cpx, float cpy, float x, float y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void bezierCurveTo (in float cp1x, in float cp1y, in float cp2x, in float cp2y, in float x, in float y); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::BezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void arcTo (in float x1, in float y1, in float x2, in float y2, in float radius); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::ArcTo(float x1, float y1, float x2, float y2, float radius)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void arc (in float x, in float y, in float r, in float startAngle, in float endAngle, [optional] in boolean anticlockwise); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::Arc(float x, float y, float r, float startAngle, float endAngle, bool anticlockwise)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void rect (in float x, in float y, in float w, in float h); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::Rect(float x, float y, float w, float h)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozFill)] void fill (); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MozFill()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozStroke)] void stroke (); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MozStroke()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozClip)] void clip (); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MozClip()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozFont)] attribute DOMString font; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozFont(nsAString & aFont)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozFont(const nsAString & aFont)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozTextAlign)] attribute DOMString textAlign; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozTextAlign(nsAString & aTextAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozTextAlign(const nsAString & aTextAlign)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(MozTextBaseline)] attribute DOMString textBaseline; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozTextBaseline(nsAString & aTextBaseline)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozTextBaseline(const nsAString & aTextBaseline)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void fillText (in DOMString text, in float x, in float y, [optional] in float maxWidth); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::FillText(const nsAString & text, float x, float y, float maxWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void strokeText (in DOMString text, in float x, in float y, [optional] in float maxWidth); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::StrokeText(const nsAString & text, float x, float y, float maxWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMTextMetrics measureText (in DOMString text); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::MeasureText(const nsAString & text, nsIDOMTextMetrics * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(TextStyle)] attribute DOMString mozTextStyle; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetTextStyle(nsAString & aMozTextStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetTextStyle(const nsAString & aMozTextStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [optional_argc] void drawImage (in nsIDOMElement image, in float a1, in float a2, [optional] in float a3, [optional] in float a4, [optional] in float a5, [optional] in float a6, [optional] in float a7, [optional] in float a8); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::DrawImage(nsIDOMElement *image, float a1, float a2, float a3, float a4, float a5, float a6, float a7, float a8, uint8_t _argc)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isPointInPath (in float x, in float y); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::IsPointInPath(float x, float y, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] nsIDOMImageData getImageData (in double sx, in double sy, in double sw, in double sh); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetImageData(double sx, double sy, double sw, double sh, JSContext* cx, nsIDOMImageData * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] void putImageData (in jsval imageData, in double dx, in double dy, [optional] in double dirtyX, [optional] in double dirtyY, [optional] in double dirtyWidth, [optional] in double dirtyHeight); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::PutImageData(const JS::Value & imageData, double dx, double dy, double dirtyX, double dirtyY, double dirtyWidth, double dirtyHeight, JSContext* cx, uint8_t _argc)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void putImageData_explicit (in long x, in long y, in unsigned long width, in unsigned long height, [array, size_is (dataLen)] in octet dataPtr, in unsigned long dataLen, in boolean hasDirtyRect, in long dirtyX, in long dirtyY, in long dirtyWidth, in long dirtyHeight); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::PutImageData_explicit(int32_t x, int32_t y, uint32_t width, uint32_t height, uint8_t *dataPtr, uint32_t dataLen, bool hasDirtyRect, int32_t dirtyX, int32_t dirtyY, int32_t dirtyWidth, int32_t dirtyHeight)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] nsIDOMImageData createImageData (in jsval arg1, [optional] in jsval arg2); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::CreateImageData(const JS::Value & arg1, const JS::Value & arg2, JSContext* cx, uint8_t _argc, nsIDOMImageData * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean mozImageSmoothingEnabled; */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::GetMozImageSmoothingEnabled(bool *aMozImageSmoothingEnabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::SetMozImageSmoothingEnabled(bool aMozImageSmoothingEnabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void drawWindow (in nsIDOMWindow window, in float x, in float y, in float w, in float h, in DOMString bgColor, [optional] in unsigned long flags); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::DrawWindow(nsIDOMWindow *window, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void asyncDrawXULElement (in nsIDOMXULElement elem, in float x, in float y, in float w, in float h, in DOMString bgColor, [optional] in unsigned long flags); */
NS_IMETHODIMP nsDOMCanvasRenderingContext2D::AsyncDrawXULElement(nsIDOMXULElement *elem, float x, float y, float w, float h, const nsAString & bgColor, uint32_t flags)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMCanvasRenderingContext2D_h__ */