michael@0: /* vim:set sw=4 sts=4 et cin: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef NSIMAGETOPIXBUF_H_ michael@0: #define NSIMAGETOPIXBUF_H_ michael@0: michael@0: #include "nsIImageToPixbuf.h" michael@0: #include "mozilla/Attributes.h" michael@0: michael@0: namespace mozilla { michael@0: namespace gfx { michael@0: class SourceSurface; michael@0: } michael@0: } michael@0: michael@0: class nsImageToPixbuf MOZ_FINAL : public nsIImageToPixbuf { michael@0: typedef mozilla::gfx::SourceSurface SourceSurface; michael@0: michael@0: public: michael@0: NS_DECL_ISUPPORTS michael@0: NS_IMETHOD_(GdkPixbuf*) ConvertImageToPixbuf(imgIContainer* aImage); michael@0: michael@0: // Friendlier version of ConvertImageToPixbuf for callers inside of michael@0: // widget michael@0: /** michael@0: * The return value of all these, if not null, should be michael@0: * released as needed by the caller using g_object_unref. michael@0: */ michael@0: static GdkPixbuf* ImageToPixbuf(imgIContainer * aImage); michael@0: static GdkPixbuf* SourceSurfaceToPixbuf(SourceSurface* aSurface, michael@0: int32_t aWidth, michael@0: int32_t aHeight); michael@0: michael@0: private: michael@0: ~nsImageToPixbuf() {} michael@0: }; michael@0: michael@0: michael@0: // fc2389b8-c650-4093-9e42-b05e5f0685b7 michael@0: #define NS_IMAGE_TO_PIXBUF_CID \ michael@0: { 0xfc2389b8, 0xc650, 0x4093, \ michael@0: { 0x9e, 0x42, 0xb0, 0x5e, 0x5f, 0x06, 0x85, 0xb7 } } michael@0: michael@0: #endif