2013-03-11 05:43:38 +04:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#ifndef mozilla_image_FrozenImage_h
|
|
|
|
#define mozilla_image_FrozenImage_h
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
#include "ImageWrapper.h"
|
2014-04-15 22:02:23 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace image {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An Image wrapper that disables animation, freezing the image at its first
|
|
|
|
* frame. It does this using two strategies. If this is the only instance of the
|
|
|
|
* image, animation will never start, because IncrementAnimationConsumers is
|
|
|
|
* ignored. If there is another instance that is animated, that's still OK,
|
|
|
|
* because any imgIContainer method that is affected by animation gets its
|
|
|
|
* aWhichFrame argument set to FRAME_FIRST when it passes through FrozenImage.
|
|
|
|
*
|
|
|
|
* XXX(seth): There a known (performance, not correctness) issue with
|
|
|
|
* GetImageContainer. See the comments for that method for more information.
|
|
|
|
*/
|
|
|
|
class FrozenImage : public ImageWrapper
|
|
|
|
{
|
2014-07-10 19:00:31 +04:00
|
|
|
typedef gfx::SourceSurface SourceSurface;
|
2014-04-15 22:02:23 +04:00
|
|
|
|
2013-03-11 05:43:38 +04:00
|
|
|
public:
|
2014-07-14 23:21:34 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2013-03-11 05:43:38 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void IncrementAnimationConsumers() override;
|
|
|
|
virtual void DecrementAnimationConsumers() override;
|
2013-03-11 05:43:38 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetAnimated(bool* aAnimated) override;
|
2015-06-17 17:00:52 +03:00
|
|
|
NS_IMETHOD_(already_AddRefed<SourceSurface>)
|
2015-03-21 19:28:04 +03:00
|
|
|
GetFrame(uint32_t aWhichFrame, uint32_t aFlags) override;
|
2015-09-19 23:34:09 +03:00
|
|
|
NS_IMETHOD_(already_AddRefed<SourceSurface>)
|
|
|
|
GetFrameAtSize(const gfx::IntSize& aSize,
|
|
|
|
uint32_t aWhichFrame,
|
|
|
|
uint32_t aFlags) override;
|
2015-05-13 10:23:44 +03:00
|
|
|
NS_IMETHOD_(bool) IsImageContainerAvailable(layers::LayerManager* aManager,
|
|
|
|
uint32_t aFlags) override;
|
2015-03-18 05:40:16 +03:00
|
|
|
NS_IMETHOD_(already_AddRefed<layers::ImageContainer>)
|
|
|
|
GetImageContainer(layers::LayerManager* aManager,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aFlags) override;
|
2015-02-05 00:50:56 +03:00
|
|
|
NS_IMETHOD_(DrawResult) Draw(gfxContext* aContext,
|
|
|
|
const nsIntSize& aSize,
|
|
|
|
const ImageRegion& aRegion,
|
|
|
|
uint32_t aWhichFrame,
|
2015-10-06 03:18:10 +03:00
|
|
|
gfx::Filter aFilter,
|
2015-02-05 00:50:56 +03:00
|
|
|
const Maybe<SVGImageContext>& aSVGContext,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aFlags) override;
|
|
|
|
NS_IMETHOD_(void) RequestRefresh(const TimeStamp& aTime) override;
|
|
|
|
NS_IMETHOD GetAnimationMode(uint16_t* aAnimationMode) override;
|
|
|
|
NS_IMETHOD SetAnimationMode(uint16_t aAnimationMode) override;
|
|
|
|
NS_IMETHOD ResetAnimation() override;
|
|
|
|
NS_IMETHOD_(float) GetFrameIndex(uint32_t aWhichFrame) override;
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
protected:
|
2014-09-02 20:20:24 +04:00
|
|
|
explicit FrozenImage(Image* aImage) : ImageWrapper(aImage) { }
|
2014-06-23 22:49:08 +04:00
|
|
|
virtual ~FrozenImage() { }
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
private:
|
2013-04-06 01:14:34 +04:00
|
|
|
friend class ImageOps;
|
2013-03-11 05:43:38 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#endif // mozilla_image_FrozenImage_h
|