/* AbiWord * Copyright (C) 2001-2002 Dom Lachowicz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef GR_UNIXGNOMEIMAGE_H #define GR_UNIXGNOMEIMAGE_H #include #include "gr_CairoGraphics.h" class ABI_EXPORT GR_UnixImage : public GR_CairoRasterImage { public: GR_UnixImage(const char* pszName); GR_UnixImage(const char* pszName, GdkPixbuf * pPixbif); GR_UnixImage(const char* pszName, GRType imageType); virtual ~GR_UnixImage(); virtual bool convertToBuffer(UT_ByteBuf** ppBB) const; virtual bool convertFromBuffer(const UT_ByteBuf* pBB, const std::string & mimetype, UT_sint32 iDisplayWidth, UT_sint32 iDisplayHeight); bool saveToPNG(const char * szFile); virtual bool hasAlpha (void) const; virtual UT_sint32 rowStride (void) const; virtual GR_Image::GRType getType(void) const; GdkPixbuf * getData(void) const { return m_image; } void setData(GdkPixbuf *data) { m_image = data;} virtual void scaleImageTo(GR_Graphics * pG, const UT_Rect & rec); virtual bool isTransparentAt(UT_sint32 x, UT_sint32 y); void scale (UT_sint32 iDisplayWidth, UT_sint32 iDisplayHeight); virtual void cairoSetSource(cairo_t *, double x, double y); protected: virtual GR_UnixImage *makeSubimage(const std::string & n, UT_sint32 x, UT_sint32 y, UT_sint32 w, UT_sint32 h) const; private: GdkPixbuf * m_image; GR_Image::GRType m_ImageType; }; #endif /* GR_UNIXGNOMEIMAGE_H */