2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Vladimir Vukicevic <vladimir@pobox.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "nsIVariant.idl"
|
|
|
|
|
|
|
|
interface nsIDOMWindow;
|
2009-08-10 07:41:12 -07:00
|
|
|
interface nsIDOMElement;
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsIDOMHTMLElement;
|
|
|
|
interface nsIDOMHTMLImageElement;
|
|
|
|
interface nsIDOMHTMLCanvasElement;
|
2009-10-29 10:58:31 -07:00
|
|
|
interface nsIDOMXULElement;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
[scriptable, uuid(bbb20a59-524e-4662-981e-5e142814b20c)]
|
|
|
|
interface nsIDOMCanvasGradient : nsISupports
|
|
|
|
{
|
|
|
|
void addColorStop(in float offset, in DOMString color);
|
|
|
|
};
|
|
|
|
|
|
|
|
[scriptable, uuid(21dea65c-5c08-4eb1-ac82-81fe95be77b8)]
|
|
|
|
interface nsIDOMCanvasPattern : nsISupports
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2008-06-10 16:16:59 -07:00
|
|
|
[scriptable, uuid(2d01715c-ec7d-424a-ab85-e0fd70c8665c)]
|
|
|
|
interface nsIDOMTextMetrics : nsISupports
|
|
|
|
{
|
|
|
|
readonly attribute float width;
|
|
|
|
};
|
|
|
|
|
2009-10-29 10:58:31 -07:00
|
|
|
[scriptable, uuid(408be1b9-4d75-4873-b50b-9b651626e41d)]
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsIDOMCanvasRenderingContext2D : nsISupports
|
|
|
|
{
|
|
|
|
// back-reference to the canvas element for which
|
|
|
|
// this context was created
|
|
|
|
readonly attribute nsIDOMHTMLCanvasElement canvas;
|
|
|
|
|
|
|
|
// state
|
|
|
|
void save();
|
|
|
|
void restore();
|
|
|
|
|
|
|
|
// transformations
|
|
|
|
void scale(in float x, in float y);
|
|
|
|
void rotate(in float angle);
|
|
|
|
void translate(in float x, in float y);
|
|
|
|
void transform(in float m11, in float m12, in float m21, in float m22, in float dx, in float dy);
|
|
|
|
void setTransform(in float m11, in float m12, in float m21, in float m22, in float dx, in float dy);
|
|
|
|
|
|
|
|
// compositing
|
|
|
|
attribute float globalAlpha; /* default 1.0 -- opaque */
|
|
|
|
attribute DOMString globalCompositeOperation; /* default "over" */
|
|
|
|
|
2010-03-03 16:40:25 -08:00
|
|
|
// Colors and Styles
|
|
|
|
|
|
|
|
// These attributes work, but are quickstubbed for JS code. Native
|
|
|
|
// code should use the _multi variants below.
|
2007-03-22 10:30:00 -07:00
|
|
|
attribute nsIVariant strokeStyle;
|
|
|
|
attribute nsIVariant fillStyle;
|
|
|
|
|
2010-03-03 16:40:25 -08:00
|
|
|
// These do the actual work. Use these from c++ -- only one of str or iface
|
|
|
|
// should be specified; the one that's not null/void is used. For the getter,
|
|
|
|
// ifaceType is 0 if it's a string, 1 if it's a pattern, or 2 if it's a gradient
|
|
|
|
%{C++
|
|
|
|
enum CanvasMultiGetterType {
|
|
|
|
CMG_STYLE_STRING = 0,
|
|
|
|
CMG_STYLE_PATTERN = 1,
|
|
|
|
CMG_STYLE_GRADIENT = 2
|
|
|
|
};
|
|
|
|
%}
|
|
|
|
[noscript] void setStrokeStyle_multi(in DOMString str, in nsISupports iface);
|
|
|
|
[noscript] void getStrokeStyle_multi(out DOMString str, out nsISupports iface, out long type);
|
|
|
|
[noscript] void setFillStyle_multi(in DOMString str, in nsISupports iface);
|
|
|
|
[noscript] void getFillStyle_multi(out DOMString str, out nsISupports iface, out long type);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIDOMCanvasGradient createLinearGradient (in float x0, in float y0, in float x1, in float y1);
|
|
|
|
nsIDOMCanvasGradient createRadialGradient(in float x0, in float y0, in float r0, in float x1, in float y1, in float r1);
|
|
|
|
nsIDOMCanvasPattern createPattern(in nsIDOMHTMLElement image, in DOMString repetition);
|
|
|
|
attribute float lineWidth; /* default 1 */
|
|
|
|
attribute DOMString lineCap; /* "butt", "round", "square" (default) */
|
|
|
|
attribute DOMString lineJoin; /* "round", "bevel", "miter" (default) */
|
|
|
|
attribute float miterLimit; /* default 10 */
|
|
|
|
|
|
|
|
// shadows
|
|
|
|
attribute float shadowOffsetX;
|
|
|
|
attribute float shadowOffsetY;
|
|
|
|
attribute float shadowBlur;
|
|
|
|
attribute DOMString shadowColor;
|
|
|
|
|
|
|
|
// rects
|
|
|
|
void clearRect(in float x, in float y, in float w, in float h);
|
|
|
|
void fillRect(in float x, in float y, in float w, in float h);
|
|
|
|
void strokeRect(in float x, in float y, in float w, in float h);
|
|
|
|
|
|
|
|
// path API
|
|
|
|
void beginPath();
|
|
|
|
void closePath();
|
|
|
|
|
|
|
|
void moveTo(in float x, in float y);
|
|
|
|
void lineTo(in float x, in float y);
|
|
|
|
void quadraticCurveTo(in float cpx, in float cpy, in float x, in float y);
|
|
|
|
void bezierCurveTo(in float cp1x, in float cp1y, in float cp2x, in float cp2y, in float x, in float y);
|
|
|
|
void arcTo(in float x1, in float y1, in float x2, in float y2, in float radius);
|
2010-12-08 07:56:01 -08:00
|
|
|
void arc(in float x, in float y, in float r, in float startAngle, in float endAngle, [optional] in boolean anticlockwise);
|
2007-03-22 10:30:00 -07:00
|
|
|
void rect(in float x, in float y, in float w, in float h);
|
|
|
|
|
|
|
|
void fill();
|
|
|
|
void stroke();
|
|
|
|
void clip();
|
|
|
|
|
2007-07-25 11:21:34 -07:00
|
|
|
// text api
|
2008-06-10 16:16:59 -07:00
|
|
|
attribute DOMString font; /* default "10px sans-serif" */
|
|
|
|
attribute DOMString textAlign; /* "start" (default), "end", "left", "right",
|
|
|
|
"center" */
|
|
|
|
attribute DOMString textBaseline; /* "alphabetic" (default), "top", "hanging",
|
|
|
|
"middle", "ideographic", "bottom" */
|
|
|
|
|
|
|
|
void fillText(in DOMString text, in float x, in float y, [optional] in float maxWidth);
|
|
|
|
void strokeText(in DOMString text, in float x, in float y, [optional] in float maxWidth);
|
|
|
|
nsIDOMTextMetrics measureText(in DOMString text);
|
|
|
|
|
2007-07-25 11:21:34 -07:00
|
|
|
attribute DOMString mozTextStyle;
|
|
|
|
void mozDrawText(in DOMString textToDraw);
|
|
|
|
float mozMeasureText(in DOMString textToMeasure);
|
|
|
|
void mozPathText(in DOMString textToPath);
|
|
|
|
void mozTextAlongPath(in DOMString textToDraw, in boolean stroke);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// image api
|
2009-08-10 07:41:12 -07:00
|
|
|
|
|
|
|
[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);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/*
|
|
|
|
void drawImage(in HTMLImageElement image, in float dx, in float dy);
|
|
|
|
void drawImage(in HTMLImageElement image, in float dx, in float dy, in float sw, in float sh);
|
|
|
|
void drawImage(in HTMLImageElement image, in float sx, in float sy, in float sw, in float sh, in float dx, in float dy, in float dw, in float dh);
|
|
|
|
*/
|
|
|
|
|
|
|
|
// point-membership test
|
|
|
|
boolean isPointInPath(in float x, in float y);
|
|
|
|
|
|
|
|
// pixel manipulation
|
|
|
|
// ImageData getImageData (in float x, in float y, in float width, in float height);
|
|
|
|
// void putImageData (in ImageData d, in float x, in float y);
|
|
|
|
// ImageData = { width: #, height: #, data: [r, g, b, a, ...] }
|
|
|
|
|
2010-03-03 16:40:27 -08:00
|
|
|
// These are just dummy functions; for JS, they are implemented as quickstubs
|
|
|
|
// that call the _explicit methods below. Native callers should use the _explit
|
|
|
|
// methods directly.
|
2007-03-22 10:30:00 -07:00
|
|
|
void getImageData();
|
|
|
|
void putImageData();
|
|
|
|
|
2010-03-03 16:40:27 -08:00
|
|
|
// dataLen must be == width*height*4 in both of these calls
|
|
|
|
[noscript] void getImageData_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);
|
|
|
|
[noscript] void putImageData_explicit(in long x, in long y, in unsigned long width, in unsigned long height,
|
2010-12-04 07:44:26 -08:00
|
|
|
[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);
|
2010-03-03 16:40:27 -08:00
|
|
|
|
2008-09-02 10:52:22 -07:00
|
|
|
// ImageData createImageData(in float w, in float h);
|
2010-03-03 16:40:27 -08:00
|
|
|
// Note: this is basically script-only (and really, quickstub-only). Native callers
|
|
|
|
// should just use the noscript 'explicit' get/put methods above, instead of using
|
|
|
|
// a separate ImageData object.
|
2008-09-02 10:52:22 -07:00
|
|
|
void createImageData();
|
|
|
|
|
2009-04-07 12:05:41 -07:00
|
|
|
// image smoothing mode -- if disabled, images won't be smoothed
|
|
|
|
// if scaled.
|
|
|
|
attribute boolean mozImageSmoothingEnabled;
|
|
|
|
|
2008-10-13 23:29:30 -07:00
|
|
|
// Show the caret if appropriate when drawing
|
|
|
|
const unsigned long DRAWWINDOW_DRAW_CARET = 0x01;
|
|
|
|
// Don't flush pending layout notifications that could otherwise
|
|
|
|
// be batched up
|
|
|
|
const unsigned long DRAWWINDOW_DO_NOT_FLUSH = 0x02;
|
2009-07-21 15:45:21 -07:00
|
|
|
// Draw scrollbars and scroll the viewport if they are present
|
|
|
|
const unsigned long DRAWWINDOW_DRAW_VIEW = 0x04;
|
2010-03-01 00:03:49 -08:00
|
|
|
// Use the widget layer manager if available. This means hardware
|
|
|
|
// acceleration may be used, but it might actually be slower or
|
|
|
|
// lower quality than normal. It will however more accurately reflect
|
|
|
|
// the pixels rendered to the screen.
|
|
|
|
const unsigned long DRAWWINDOW_USE_WIDGET_LAYERS = 0x08;
|
2010-07-26 14:20:45 -07:00
|
|
|
// Don't synchronously decode images - draw what we have
|
|
|
|
const unsigned long DRAWWINDOW_ASYNC_DECODE_IMAGES = 0x10;
|
2009-07-21 15:45:21 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Renders a region of a window into the canvas. The contents of
|
|
|
|
* the window's viewport are rendered, ignoring viewport clipping
|
|
|
|
* and scrolling.
|
|
|
|
*
|
|
|
|
* @param x
|
|
|
|
* @param y
|
|
|
|
* @param w
|
|
|
|
* @param h specify the area of the window to render, in CSS
|
|
|
|
* pixels.
|
|
|
|
*
|
|
|
|
* @param backgroundColor the canvas is filled with this color
|
|
|
|
* before we render the window into it. This color may be
|
|
|
|
* transparent/translucent. It is given as a CSS color string
|
|
|
|
* (e.g., rgb() or rgba()).
|
|
|
|
*
|
2008-10-13 23:29:30 -07:00
|
|
|
* @param flags Uused to better control the drawWindow call.
|
|
|
|
* Flags can be ORed together.
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* Of course, the rendering obeys the current scale, transform and
|
|
|
|
* globalAlpha values.
|
|
|
|
*
|
|
|
|
* Hints:
|
|
|
|
* -- If 'rgba(0,0,0,0)' is used for the background color, the
|
|
|
|
* drawing will be transparent wherever the window is transparent.
|
|
|
|
* -- Top-level browsed documents are usually not transparent
|
|
|
|
* because the user's background-color preference is applied,
|
|
|
|
* but IFRAMEs are transparent if the page doesn't set a background.
|
|
|
|
* -- If an opaque color is used for the background color, rendering
|
|
|
|
* will be faster because we won't have to compute the window's
|
|
|
|
* transparency.
|
|
|
|
*
|
|
|
|
* This API cannot currently be used by Web content. It is chrome
|
|
|
|
* only.
|
|
|
|
*/
|
2009-01-07 00:31:36 -08:00
|
|
|
void drawWindow(in nsIDOMWindow window, in float x, in float y,
|
|
|
|
in float w, in float h, in DOMString bgColor,
|
2008-10-13 23:29:30 -07:00
|
|
|
[optional] in unsigned long flags);
|
2009-10-29 10:58:31 -07:00
|
|
|
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);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|