2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 40; 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 the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef nsICanvasRenderingContextInternal_h___
|
|
|
|
#define nsICanvasRenderingContextInternal_h___
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsIInputStream.h"
|
2009-08-09 13:29:56 -07:00
|
|
|
#include "nsIDocShell.h"
|
2009-06-17 13:31:18 -07:00
|
|
|
#include "gfxPattern.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-19 08:22:46 -07:00
|
|
|
// {EC90F32E-7848-4819-A1E3-02E64C682A72}
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_ICANVASRENDERINGCONTEXTINTERNAL_IID \
|
2010-08-19 08:22:46 -07:00
|
|
|
{ 0xec90f32e, 0x7848, 0x4819, { 0xa1, 0xe3, 0x2, 0xe6, 0x4c, 0x68, 0x2a, 0x72 } }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-05-17 21:04:22 -07:00
|
|
|
class nsHTMLCanvasElement;
|
2007-09-25 13:46:08 -07:00
|
|
|
class gfxContext;
|
2008-04-30 10:04:46 -07:00
|
|
|
class gfxASurface;
|
2010-11-16 20:33:03 -08:00
|
|
|
class nsIPropertyBag;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-24 03:47:18 -07:00
|
|
|
namespace mozilla {
|
2010-05-17 21:04:22 -07:00
|
|
|
namespace layers {
|
|
|
|
class CanvasLayer;
|
|
|
|
class LayerManager;
|
|
|
|
}
|
2010-03-24 03:47:18 -07:00
|
|
|
namespace ipc {
|
|
|
|
class Shmem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsICanvasRenderingContextInternal : public nsISupports {
|
|
|
|
public:
|
2010-05-17 21:04:22 -07:00
|
|
|
typedef mozilla::layers::CanvasLayer CanvasLayer;
|
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICANVASRENDERINGCONTEXTINTERNAL_IID)
|
|
|
|
|
|
|
|
// This method should NOT hold a ref to aParentCanvas; it will be called
|
|
|
|
// with nsnull when the element is going away.
|
2010-05-17 21:04:22 -07:00
|
|
|
NS_IMETHOD SetCanvasElement(nsHTMLCanvasElement* aParentCanvas) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Sets the dimensions of the canvas, in pixels. Called
|
|
|
|
// whenever the size of the element changes.
|
|
|
|
NS_IMETHOD SetDimensions(PRInt32 width, PRInt32 height) = 0;
|
|
|
|
|
2009-08-04 14:36:02 -07:00
|
|
|
NS_IMETHOD InitializeWithSurface(nsIDocShell *docShell, gfxASurface *surface, PRInt32 width, PRInt32 height) = 0;
|
|
|
|
|
2007-09-25 13:46:08 -07:00
|
|
|
// Render the canvas at the origin of the given gfxContext
|
2009-06-17 13:31:18 -07:00
|
|
|
NS_IMETHOD Render(gfxContext *ctx, gfxPattern::GraphicsFilter aFilter) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Gives you a stream containing the image represented by this context.
|
|
|
|
// The format is given in aMimeTime, for example "image/png".
|
|
|
|
//
|
|
|
|
// If the image format does not support transparency or aIncludeTransparency
|
|
|
|
// is false, alpha will be discarded and the result will be the image
|
|
|
|
// composited on black.
|
2007-09-25 13:46:08 -07:00
|
|
|
NS_IMETHOD GetInputStream(const char *aMimeType,
|
|
|
|
const PRUnichar *aEncoderOptions,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIInputStream **aStream) = 0;
|
2008-04-30 10:04:46 -07:00
|
|
|
|
|
|
|
// If this canvas context can be represented with a simple Thebes surface,
|
|
|
|
// return the surface. Otherwise returns an error.
|
|
|
|
NS_IMETHOD GetThebesSurface(gfxASurface **surface) = 0;
|
2008-06-03 17:00:32 -07:00
|
|
|
|
|
|
|
// If this context is opaque, the backing store of the canvas should
|
|
|
|
// be created as opaque; all compositing operators should assume the
|
|
|
|
// dst alpha is always 1.0. If this is never called, the context
|
|
|
|
// defaults to false (not opaque).
|
|
|
|
NS_IMETHOD SetIsOpaque(PRBool isOpaque) = 0;
|
2009-10-29 10:58:31 -07:00
|
|
|
|
2010-08-19 08:22:46 -07:00
|
|
|
// Invalidate this context and release any held resources, in preperation
|
|
|
|
// for possibly reinitializing with SetDimensions/InitializeWithSurface.
|
|
|
|
NS_IMETHOD Reset() = 0;
|
|
|
|
|
2010-05-17 21:04:22 -07:00
|
|
|
// Return the CanvasLayer for this context, creating
|
|
|
|
// one for the given layer manager if not available.
|
2010-07-15 14:07:46 -07:00
|
|
|
virtual already_AddRefed<CanvasLayer> GetCanvasLayer(CanvasLayer *aOldLayer,
|
|
|
|
LayerManager *aManager) = 0;
|
2010-05-17 21:04:22 -07:00
|
|
|
|
|
|
|
virtual void MarkContextClean() = 0;
|
2010-05-24 07:45:59 -07:00
|
|
|
|
2009-10-29 10:58:31 -07:00
|
|
|
// Redraw the dirty rectangle of this canvas.
|
|
|
|
NS_IMETHOD Redraw(const gfxRect &dirty) = 0;
|
2010-03-24 03:47:18 -07:00
|
|
|
|
2010-11-16 20:33:03 -08:00
|
|
|
// Passes a generic nsIPropertyBag options argument, along with the
|
|
|
|
// previous one, if any. Optional.
|
|
|
|
NS_IMETHOD SetContextOptions(nsIPropertyBag *aNewOptions) { return NS_OK; }
|
|
|
|
|
|
|
|
//
|
|
|
|
// shmem support
|
|
|
|
//
|
|
|
|
|
2010-03-24 03:47:18 -07:00
|
|
|
// If this context can be set to use Mozilla's Shmem segments as its backing
|
|
|
|
// store, this will set it to that state. Note that if you have drawn
|
|
|
|
// anything into this canvas before changing the shmem state, it will be
|
|
|
|
// lost.
|
2010-06-08 10:27:24 -07:00
|
|
|
NS_IMETHOD SetIsIPC(PRBool isIPC) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsICanvasRenderingContextInternal,
|
|
|
|
NS_ICANVASRENDERINGCONTEXTINTERNAL_IID)
|
|
|
|
|
|
|
|
#endif /* nsICanvasRenderingContextInternal_h___ */
|