mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
|
/* -*- 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/. */
|
||
|
|
||
|
#include "mozilla/StandardInteger.h"
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace image {
|
||
|
|
||
|
class RasterImage;
|
||
|
|
||
|
// The metadata about an image that decoders accumulate as they decode.
|
||
|
class ImageMetadata
|
||
|
{
|
||
|
public:
|
||
|
ImageMetadata()
|
||
|
: mHotspotX(-1)
|
||
|
, mHotspotY(-1)
|
||
|
, mLoopCount(-1)
|
||
|
, mIsNonPremultiplied(false)
|
||
|
{}
|
||
|
|
||
|
// Set the metadata this object represents on an image.
|
||
|
void SetOnImage(RasterImage* image);
|
||
|
|
||
|
void SetHotspot(uint16_t hotspotx, uint16_t hotspoty)
|
||
|
{
|
||
|
mHotspotX = hotspotx;
|
||
|
mHotspotY = hotspoty;
|
||
|
}
|
||
|
void SetLoopCount(int32_t loopcount)
|
||
|
{
|
||
|
mLoopCount = loopcount;
|
||
|
}
|
||
|
|
||
|
void SetIsNonPremultiplied(bool nonPremult)
|
||
|
{
|
||
|
mIsNonPremultiplied = nonPremult;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
// The hotspot found on cursors, or -1 if none was found.
|
||
|
int32_t mHotspotX;
|
||
|
int32_t mHotspotY;
|
||
|
|
||
|
// The loop count for animated images, or -1 for infinite loop.
|
||
|
int32_t mLoopCount;
|
||
|
|
||
|
bool mIsNonPremultiplied;
|
||
|
};
|
||
|
|
||
|
} // namespace image
|
||
|
} // namespace mozilla
|