2006-02-23 01:01:29 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-02-23 01:01:29 +00:00
|
|
|
|
|
|
|
#ifndef GFXXLIBNATIVERENDER_H_
|
|
|
|
#define GFXXLIBNATIVERENDER_H_
|
|
|
|
|
2013-10-25 21:25:40 +00:00
|
|
|
#include "nsPoint.h"
|
|
|
|
#include "nsRect.h"
|
2015-04-21 15:04:57 +00:00
|
|
|
#include "mozilla/gfx/Rect.h"
|
|
|
|
#include "mozilla/gfx/Point.h"
|
2006-02-23 01:01:29 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2013-09-20 02:00:35 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
class DrawTarget;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-23 01:01:29 +00:00
|
|
|
class gfxASurface;
|
|
|
|
class gfxContext;
|
2013-09-20 02:00:35 +00:00
|
|
|
typedef struct _cairo cairo_t;
|
2013-10-25 21:25:40 +00:00
|
|
|
typedef struct _cairo_surface cairo_surface_t;
|
2006-02-23 01:01:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class lets us take code that draws into an X drawable and lets us
|
|
|
|
* use it to draw into any Thebes context. The user should subclass this class,
|
2010-07-02 04:04:09 +00:00
|
|
|
* override DrawWithXib, and then call Draw(). The drawing will be subjected
|
2006-02-23 01:01:29 +00:00
|
|
|
* to all Thebes transformations, clipping etc.
|
|
|
|
*/
|
2013-05-29 21:59:24 +00:00
|
|
|
class gfxXlibNativeRenderer {
|
2006-02-23 01:01:29 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Perform the native drawing.
|
2013-10-25 21:25:40 +00:00
|
|
|
* @param surface the cairo_surface_t for drawing. Must be a cairo_xlib_surface_t.
|
2010-07-22 22:25:19 +00:00
|
|
|
* The extents of this surface do not necessarily cover the
|
|
|
|
* entire rectangle with size provided to Draw().
|
2013-10-25 21:25:40 +00:00
|
|
|
* @param offset draw at this offset into the given drawable
|
2010-07-22 22:25:19 +00:00
|
|
|
* @param clipRects an array of rectangles; clip to the union.
|
|
|
|
* Any rectangles provided will be contained by the
|
|
|
|
* rectangle with size provided to Draw and by the
|
|
|
|
* surface extents.
|
2006-02-23 01:01:29 +00:00
|
|
|
* @param numClipRects the number of rects in the array, or zero if
|
2010-07-22 22:25:19 +00:00
|
|
|
* no clipping is required.
|
2006-02-23 01:01:29 +00:00
|
|
|
*/
|
2013-10-25 21:25:40 +00:00
|
|
|
virtual nsresult DrawWithXlib(cairo_surface_t* surface,
|
2015-04-21 15:04:57 +00:00
|
|
|
mozilla::gfx::IntPoint offset,
|
|
|
|
mozilla::gfx::IntRect* clipRects,
|
|
|
|
uint32_t numClipRects) = 0;
|
2006-02-23 01:01:29 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
// If set, then Draw() is opaque, i.e., every pixel in the intersection
|
|
|
|
// of the clipRect and (offset.x,offset.y,bounds.width,bounds.height)
|
|
|
|
// will be set and there is no dependence on what the existing pixels
|
|
|
|
// in the drawable are set to.
|
|
|
|
DRAW_IS_OPAQUE = 0x01,
|
|
|
|
// If set, then numClipRects can be zero or one
|
|
|
|
DRAW_SUPPORTS_CLIP_RECT = 0x04,
|
|
|
|
// If set, then numClipRects can be any value. If neither this
|
|
|
|
// nor CLIP_RECT are set, then numClipRects will be zero
|
|
|
|
DRAW_SUPPORTS_CLIP_LIST = 0x08,
|
2010-07-02 04:04:09 +00:00
|
|
|
// If set, then the surface in the callback may have any visual;
|
|
|
|
// otherwise the pixels will have the same format as the visual
|
|
|
|
// passed to 'Draw'.
|
|
|
|
DRAW_SUPPORTS_ALTERNATE_VISUAL = 0x10,
|
2008-07-08 02:15:40 +00:00
|
|
|
// If set, then the Screen 'screen' in the callback can be different
|
|
|
|
// from the default Screen of the display passed to 'Draw' and can be
|
|
|
|
// on a different display.
|
2008-07-08 02:37:41 +00:00
|
|
|
DRAW_SUPPORTS_ALTERNATE_SCREEN = 0x20
|
2006-02-23 01:01:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param flags see above
|
2010-07-02 04:04:09 +00:00
|
|
|
* @param size the size of the rectangle being drawn;
|
|
|
|
* the caller guarantees that drawing will not extend beyond the rectangle
|
|
|
|
* (0,0,size.width,size.height).
|
|
|
|
* @param screen a Screen to use for the drawing if ctx doesn't have one.
|
|
|
|
* @param visual a Visual to use for the drawing if ctx doesn't have one.
|
|
|
|
* @param result if non-null, we will try to capture a copy of the
|
2006-02-23 01:01:29 +00:00
|
|
|
* rendered image into a surface similar to the surface of ctx; if
|
|
|
|
* successful, a pointer to the new gfxASurface is stored in *resultSurface,
|
2012-07-30 14:20:58 +00:00
|
|
|
* otherwise *resultSurface is set to nullptr.
|
2006-02-23 01:01:29 +00:00
|
|
|
*/
|
2015-03-29 14:59:08 +00:00
|
|
|
void Draw(gfxContext* ctx, mozilla::gfx::IntSize size,
|
2013-10-25 21:25:40 +00:00
|
|
|
uint32_t flags, Screen *screen, Visual *visual);
|
2010-07-02 04:04:09 +00:00
|
|
|
|
|
|
|
private:
|
2015-03-29 14:59:08 +00:00
|
|
|
bool DrawDirect(gfxContext *ctx, mozilla::gfx::IntSize bounds,
|
2013-09-20 02:00:35 +00:00
|
|
|
uint32_t flags, Screen *screen, Visual *visual);
|
2010-07-02 04:04:09 +00:00
|
|
|
|
2015-03-29 14:59:08 +00:00
|
|
|
bool DrawCairo(cairo_t* cr, mozilla::gfx::IntSize size,
|
2013-09-20 02:00:35 +00:00
|
|
|
uint32_t flags, Screen *screen, Visual *visual);
|
|
|
|
|
|
|
|
void DrawFallback(mozilla::gfx::DrawTarget* dt, gfxContext* ctx,
|
2015-03-29 14:59:08 +00:00
|
|
|
gfxASurface* aSurface, mozilla::gfx::IntSize& size,
|
2015-04-21 15:04:57 +00:00
|
|
|
mozilla::gfx::IntRect& drawingRect, bool canDrawOverBackground,
|
2013-10-25 21:25:40 +00:00
|
|
|
uint32_t flags, Screen* screen, Visual* visual);
|
2013-09-20 02:00:35 +00:00
|
|
|
|
2013-10-25 21:25:40 +00:00
|
|
|
bool DrawOntoTempSurface(cairo_surface_t *tempXlibSurface,
|
2015-04-21 15:04:57 +00:00
|
|
|
mozilla::gfx::IntPoint offset);
|
2010-07-02 04:04:09 +00:00
|
|
|
|
2006-02-23 01:01:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /*GFXXLIBNATIVERENDER_H_*/
|