/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * 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/. */ #ifndef mozilla_image_ImageMetadata_h #define mozilla_image_ImageMetadata_h #include #include "mozilla/Maybe.h" #include "nsSize.h" #include "Orientation.h" namespace mozilla { namespace image { class RasterImage; // The metadata about an image that decoders accumulate as they decode. class ImageMetadata { public: ImageMetadata() : mLoopCount(-1) , mFirstFrameTimeout(0) , mHasAnimation(false) { } void SetHotspot(uint16_t aHotspotX, uint16_t aHotspotY) { mHotspot = Some(gfx::IntPoint(aHotspotX, aHotspotY)); } gfx::IntPoint GetHotspot() const { return *mHotspot; } bool HasHotspot() const { return mHotspot.isSome(); } void SetLoopCount(int32_t loopcount) { mLoopCount = loopcount; } int32_t GetLoopCount() const { return mLoopCount; } void SetFirstFrameTimeout(int32_t aTimeout) { mFirstFrameTimeout = aTimeout; } int32_t GetFirstFrameTimeout() const { return mFirstFrameTimeout; } void SetSize(int32_t width, int32_t height, Orientation orientation) { if (!HasSize()) { mSize.emplace(nsIntSize(width, height)); mOrientation.emplace(orientation); } } nsIntSize GetSize() const { return *mSize; } Orientation GetOrientation() const { return *mOrientation; } bool HasSize() const { return mSize.isSome(); } bool HasOrientation() const { return mOrientation.isSome(); } void SetHasAnimation() { mHasAnimation = true; } bool HasAnimation() const { return mHasAnimation; } private: /// The hotspot found on cursors, if present. Maybe mHotspot; /// The loop count for animated images, or -1 for infinite loop. int32_t mLoopCount; /// The timeout of an animated image's first frame. int32_t mFirstFrameTimeout; Maybe mSize; Maybe mOrientation; bool mHasAnimation : 1; }; } // namespace image } // namespace mozilla #endif // mozilla_image_ImageMetadata_h