2008-04-19 08:43:23 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 04:12:37 -07: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/. */
|
2008-04-19 08:43:23 -07:00
|
|
|
|
|
|
|
#ifndef GFX_QPAINTERSURFACE_H
|
|
|
|
#define GFX_QPAINTERSURFACE_H
|
|
|
|
|
|
|
|
#include "gfxASurface.h"
|
|
|
|
#include "gfxImageSurface.h"
|
|
|
|
|
2010-10-04 23:15:57 -07:00
|
|
|
#include "cairo-features.h"
|
|
|
|
#ifdef CAIRO_HAS_QT_SURFACE
|
|
|
|
|
2008-04-19 08:43:23 -07:00
|
|
|
class QPainter;
|
2008-04-20 01:40:10 -07:00
|
|
|
class QImage;
|
2008-04-19 08:43:23 -07:00
|
|
|
|
2013-05-29 14:59:24 -07:00
|
|
|
class gfxQPainterSurface : public gfxASurface {
|
2008-04-19 08:43:23 -07:00
|
|
|
public:
|
|
|
|
gfxQPainterSurface(QPainter *painter);
|
|
|
|
gfxQPainterSurface(const gfxIntSize& size, gfxImageFormat format);
|
2008-04-28 18:15:30 -07:00
|
|
|
gfxQPainterSurface(const gfxIntSize& size, gfxContentType content);
|
2008-04-19 08:43:23 -07:00
|
|
|
|
|
|
|
gfxQPainterSurface(cairo_surface_t *csurf);
|
|
|
|
|
|
|
|
virtual ~gfxQPainterSurface();
|
|
|
|
|
|
|
|
QPainter *GetQPainter() { return mPainter; }
|
|
|
|
|
2008-04-20 01:40:10 -07:00
|
|
|
QImage *GetQImage();
|
2010-11-11 12:31:22 -08:00
|
|
|
already_AddRefed<gfxImageSurface> GetAsImageSurface();
|
2008-04-20 01:40:10 -07:00
|
|
|
|
2008-04-19 08:43:23 -07:00
|
|
|
protected:
|
|
|
|
QPainter *mPainter;
|
|
|
|
};
|
|
|
|
|
2010-10-04 23:15:57 -07:00
|
|
|
#endif
|
|
|
|
|
2008-04-19 08:43:23 -07:00
|
|
|
#endif /* GFX_QPAINTERSURFACE_H */
|