2010-05-17 21:04:22 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 04:12:37 -07:00
|
|
|
* 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/. */
|
2010-03-01 15:09:35 -08:00
|
|
|
|
|
|
|
#ifndef GFX_IMAGELAYER_H
|
|
|
|
#define GFX_IMAGELAYER_H
|
|
|
|
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "Layers.h" // for Layer, etc
|
2013-10-01 14:01:19 -07:00
|
|
|
#include "GraphicsFilter.h" // for GraphicsFilter
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "mozilla/gfx/BaseSize.h" // for BaseSize
|
2013-12-20 08:46:29 -08:00
|
|
|
#include "mozilla/gfx/Point.h" // for IntSize
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "mozilla/layers/LayersTypes.h"
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nscore.h" // for nsACString
|
|
|
|
|
2010-03-01 15:09:35 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2012-08-19 12:33:25 -07:00
|
|
|
class ImageContainer;
|
2010-03-01 15:09:35 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A Layer which renders an Image.
|
|
|
|
*/
|
2013-05-29 14:59:24 -07:00
|
|
|
class ImageLayer : public Layer {
|
2010-03-01 15:09:35 -08:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* CONSTRUCTION PHASE ONLY
|
|
|
|
* Set the ImageContainer. aContainer must have the same layer manager
|
|
|
|
* as this layer.
|
|
|
|
*/
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
virtual void SetContainer(ImageContainer* aContainer);
|
2012-08-19 12:33:25 -07:00
|
|
|
|
2010-03-01 15:09:35 -08:00
|
|
|
/**
|
|
|
|
* CONSTRUCTION PHASE ONLY
|
|
|
|
* Set the filter used to resample this image if necessary.
|
|
|
|
*/
|
2013-10-01 14:01:19 -07:00
|
|
|
void SetFilter(GraphicsFilter aFilter)
|
2013-03-28 03:58:45 -07:00
|
|
|
{
|
|
|
|
if (mFilter != aFilter) {
|
|
|
|
MOZ_LAYERS_LOG_IF_SHADOWABLE(this, ("Layer::Mutated(%p) Filter", this));
|
|
|
|
mFilter = aFilter;
|
|
|
|
Mutated();
|
|
|
|
}
|
|
|
|
}
|
2010-03-01 15:09:35 -08:00
|
|
|
|
2012-03-12 18:41:29 -07:00
|
|
|
/**
|
|
|
|
* CONSTRUCTION PHASE ONLY
|
|
|
|
* Set the size to scale the image to and the mode at which to scale.
|
|
|
|
*/
|
2013-12-20 08:46:29 -08:00
|
|
|
void SetScaleToSize(const gfx::IntSize &aSize, ScaleMode aMode)
|
2012-03-12 18:41:29 -07:00
|
|
|
{
|
2013-05-09 14:02:50 -07:00
|
|
|
if (mScaleToSize != aSize || mScaleMode != aMode) {
|
|
|
|
mScaleToSize = aSize;
|
|
|
|
mScaleMode = aMode;
|
|
|
|
Mutated();
|
|
|
|
}
|
2012-03-12 18:41:29 -07:00
|
|
|
}
|
|
|
|
|
2012-07-03 17:24:55 -07:00
|
|
|
|
2010-03-01 15:09:35 -08:00
|
|
|
ImageContainer* GetContainer() { return mContainer; }
|
2013-10-01 14:01:19 -07:00
|
|
|
GraphicsFilter GetFilter() { return mFilter; }
|
2013-12-20 08:46:29 -08:00
|
|
|
const gfx::IntSize& GetScaleToSize() { return mScaleToSize; }
|
2012-08-28 22:47:18 -07:00
|
|
|
ScaleMode GetScaleMode() { return mScaleMode; }
|
2010-03-01 15:09:35 -08:00
|
|
|
|
2010-07-21 11:06:33 -07:00
|
|
|
MOZ_LAYER_DECL_NAME("ImageLayer", TYPE_IMAGE)
|
2010-07-01 18:01:09 -07:00
|
|
|
|
2014-01-27 07:28:04 -08:00
|
|
|
virtual void ComputeEffectiveTransforms(const gfx::Matrix4x4& aTransformToSurface);
|
2010-11-08 01:06:15 -08:00
|
|
|
|
2012-05-22 16:14:03 -07:00
|
|
|
/**
|
|
|
|
* if true, the image will only be backed by a single tile texture
|
|
|
|
*/
|
2013-08-01 16:02:06 -07:00
|
|
|
void SetDisallowBigImage(bool aDisallowBigImage)
|
2012-05-22 16:14:03 -07:00
|
|
|
{
|
2013-08-01 16:02:06 -07:00
|
|
|
if (mDisallowBigImage != aDisallowBigImage) {
|
|
|
|
MOZ_LAYERS_LOG_IF_SHADOWABLE(this, ("Layer::Mutated(%p) DisallowBigImage", this));
|
|
|
|
mDisallowBigImage = aDisallowBigImage;
|
2013-03-28 03:58:45 -07:00
|
|
|
Mutated();
|
|
|
|
}
|
2012-05-22 16:14:03 -07:00
|
|
|
}
|
|
|
|
|
2010-03-01 15:09:35 -08:00
|
|
|
protected:
|
2012-08-19 12:33:25 -07:00
|
|
|
ImageLayer(LayerManager* aManager, void* aImplData);
|
|
|
|
~ImageLayer();
|
2010-07-21 11:06:33 -07:00
|
|
|
virtual nsACString& PrintInfo(nsACString& aTo, const char* aPrefix);
|
|
|
|
|
2012-03-12 18:41:29 -07:00
|
|
|
|
2010-03-01 15:09:35 -08:00
|
|
|
nsRefPtr<ImageContainer> mContainer;
|
2013-10-01 14:01:19 -07:00
|
|
|
GraphicsFilter mFilter;
|
2013-12-20 08:46:29 -08:00
|
|
|
gfx::IntSize mScaleToSize;
|
2012-03-12 18:41:29 -07:00
|
|
|
ScaleMode mScaleMode;
|
2013-08-01 16:02:06 -07:00
|
|
|
bool mDisallowBigImage;
|
2010-03-01 15:09:35 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_IMAGELAYER_H */
|