2013-04-05 21:14:32 +00: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 03:52:05 +00:00
|
|
|
#ifndef mozilla_image_ClippedImage_h
|
|
|
|
#define mozilla_image_ClippedImage_h
|
2013-04-05 21:14:32 +00:00
|
|
|
|
|
|
|
#include "ImageWrapper.h"
|
2014-04-15 18:02:23 +00:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2013-08-27 22:10:28 +00:00
|
|
|
#include "mozilla/Maybe.h"
|
2014-04-15 18:02:23 +00:00
|
|
|
#include "mozilla/RefPtr.h"
|
2013-04-05 21:14:32 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace image {
|
|
|
|
|
2013-04-25 22:58:32 +00:00
|
|
|
class ClippedImageCachedSurface;
|
2013-04-05 21:14:32 +00:00
|
|
|
class DrawSingleTileCallback;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An Image wrapper that clips an image against a rectangle. Right now only
|
|
|
|
* absolute coordinates in pixels are supported.
|
|
|
|
*
|
|
|
|
* XXX(seth): There a known (performance, not correctness) issue with
|
|
|
|
* GetImageContainer. See the comments for that method for more information.
|
|
|
|
*/
|
|
|
|
class ClippedImage : public ImageWrapper
|
|
|
|
{
|
2014-07-10 15:00:31 +00:00
|
|
|
typedef gfx::SourceSurface SourceSurface;
|
2014-04-15 18:02:23 +00:00
|
|
|
|
2013-04-05 21:14:32 +00:00
|
|
|
public:
|
2014-07-14 19:21:34 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2013-04-05 21:14:32 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD GetWidth(int32_t* aWidth) override;
|
|
|
|
NS_IMETHOD GetHeight(int32_t* aHeight) override;
|
|
|
|
NS_IMETHOD GetIntrinsicSize(nsSize* aSize) override;
|
|
|
|
NS_IMETHOD GetIntrinsicRatio(nsSize* aRatio) override;
|
2015-06-17 14:00:52 +00:00
|
|
|
NS_IMETHOD_(already_AddRefed<SourceSurface>)
|
2015-03-21 16:28:04 +00:00
|
|
|
GetFrame(uint32_t aWhichFrame, uint32_t aFlags) override;
|
2015-05-13 07:23:44 +00:00
|
|
|
NS_IMETHOD_(bool) IsImageContainerAvailable(layers::LayerManager* aManager,
|
|
|
|
uint32_t aFlags) override;
|
2015-03-18 02:40:16 +00:00
|
|
|
NS_IMETHOD_(already_AddRefed<layers::ImageContainer>)
|
|
|
|
GetImageContainer(layers::LayerManager* aManager,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aFlags) override;
|
2015-02-04 21:50:56 +00:00
|
|
|
NS_IMETHOD_(DrawResult) Draw(gfxContext* aContext,
|
|
|
|
const nsIntSize& aSize,
|
|
|
|
const ImageRegion& aRegion,
|
|
|
|
uint32_t aWhichFrame,
|
|
|
|
GraphicsFilter aFilter,
|
|
|
|
const Maybe<SVGImageContext>& aSVGContext,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aFlags) override;
|
|
|
|
NS_IMETHOD RequestDiscard() override;
|
|
|
|
NS_IMETHOD_(Orientation) GetOrientation() override;
|
2015-04-04 19:57:00 +00:00
|
|
|
NS_IMETHOD_(nsIntRect) GetImageSpaceInvalidationRect(const nsIntRect& aRect)
|
|
|
|
override;
|
2014-07-28 21:27:40 +00:00
|
|
|
nsIntSize OptimalImageSizeForDest(const gfxSize& aDest,
|
|
|
|
uint32_t aWhichFrame,
|
|
|
|
GraphicsFilter aFilter,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aFlags) override;
|
2013-04-05 21:14:32 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
ClippedImage(Image* aImage, nsIntRect aClip);
|
|
|
|
|
2014-06-23 18:49:08 +00:00
|
|
|
virtual ~ClippedImage();
|
|
|
|
|
2013-04-05 21:14:32 +00:00
|
|
|
private:
|
2015-06-17 14:00:52 +00:00
|
|
|
already_AddRefed<SourceSurface>
|
2014-08-22 20:12:38 +00:00
|
|
|
GetFrameInternal(const nsIntSize& aSize,
|
|
|
|
const Maybe<SVGImageContext>& aSVGContext,
|
2014-04-15 18:02:23 +00:00
|
|
|
uint32_t aWhichFrame,
|
|
|
|
uint32_t aFlags);
|
2013-04-05 21:14:32 +00:00
|
|
|
bool ShouldClip();
|
2015-02-04 21:50:56 +00:00
|
|
|
DrawResult DrawSingleTile(gfxContext* aContext,
|
|
|
|
const nsIntSize& aSize,
|
|
|
|
const ImageRegion& aRegion,
|
|
|
|
uint32_t aWhichFrame,
|
|
|
|
GraphicsFilter aFilter,
|
|
|
|
const Maybe<SVGImageContext>& aSVGContext,
|
|
|
|
uint32_t aFlags);
|
2013-04-05 21:14:32 +00:00
|
|
|
|
2013-04-25 22:58:32 +00:00
|
|
|
// If we are forced to draw a temporary surface, we cache it here.
|
|
|
|
nsAutoPtr<ClippedImageCachedSurface> mCachedSurface;
|
|
|
|
|
2013-04-05 21:14:32 +00:00
|
|
|
nsIntRect mClip; // The region to clip to.
|
|
|
|
Maybe<bool> mShouldClip; // Memoized ShouldClip() if present.
|
|
|
|
|
|
|
|
friend class DrawSingleTileCallback;
|
2013-04-05 21:14:34 +00:00
|
|
|
friend class ImageOps;
|
2013-04-05 21:14:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-05-15 03:52:05 +00:00
|
|
|
#endif // mozilla_image_ClippedImage_h
|