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