2010-05-18 08:04:22 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 15:12:37 +04: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-02 02:09:35 +03:00
|
|
|
|
|
|
|
#ifndef GFX_IMAGELAYER_H
|
|
|
|
#define GFX_IMAGELAYER_H
|
|
|
|
|
2013-08-12 03:17:23 +04:00
|
|
|
#include "Layers.h" // for Layer, etc
|
2013-10-02 01:01:19 +04:00
|
|
|
#include "GraphicsFilter.h" // for GraphicsFilter
|
2013-08-12 03:17:23 +04:00
|
|
|
#include "mozilla/gfx/BaseSize.h" // for BaseSize
|
2013-12-20 20:46:29 +04:00
|
|
|
#include "mozilla/gfx/Point.h" // for IntSize
|
2013-08-12 03:17:23 +04:00
|
|
|
#include "mozilla/layers/LayersTypes.h"
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nscore.h" // for nsACString
|
|
|
|
|
|
|
|
class gfx3DMatrix;
|
2011-09-28 02:19:24 +04:00
|
|
|
|
2010-03-02 02:09:35 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
class ImageContainer;
|
2010-03-02 02:09:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A Layer which renders an Image.
|
|
|
|
*/
|
2013-05-30 01:59:24 +04:00
|
|
|
class ImageLayer : public Layer {
|
2010-03-02 02:09:35 +03: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 13:20:52 +04:00
|
|
|
virtual void SetContainer(ImageContainer* aContainer);
|
2012-08-19 23:33:25 +04:00
|
|
|
|
2010-03-02 02:09:35 +03:00
|
|
|
/**
|
|
|
|
* CONSTRUCTION PHASE ONLY
|
|
|
|
* Set the filter used to resample this image if necessary.
|
|
|
|
*/
|
2013-10-02 01:01:19 +04:00
|
|
|
void SetFilter(GraphicsFilter aFilter)
|
2013-03-28 14:58:45 +04:00
|
|
|
{
|
|
|
|
if (mFilter != aFilter) {
|
|
|
|
MOZ_LAYERS_LOG_IF_SHADOWABLE(this, ("Layer::Mutated(%p) Filter", this));
|
|
|
|
mFilter = aFilter;
|
|
|
|
Mutated();
|
|
|
|
}
|
|
|
|
}
|
2010-03-02 02:09:35 +03:00
|
|
|
|
2012-03-13 05:41:29 +04:00
|
|
|
/**
|
|
|
|
* CONSTRUCTION PHASE ONLY
|
|
|
|
* Set the size to scale the image to and the mode at which to scale.
|
|
|
|
*/
|
2013-12-20 20:46:29 +04:00
|
|
|
void SetScaleToSize(const gfx::IntSize &aSize, ScaleMode aMode)
|
2012-03-13 05:41:29 +04:00
|
|
|
{
|
2013-05-10 01:02:50 +04:00
|
|
|
if (mScaleToSize != aSize || mScaleMode != aMode) {
|
|
|
|
mScaleToSize = aSize;
|
|
|
|
mScaleMode = aMode;
|
|
|
|
Mutated();
|
|
|
|
}
|
2012-03-13 05:41:29 +04:00
|
|
|
}
|
|
|
|
|
2012-07-04 04:24:55 +04:00
|
|
|
|
2010-03-02 02:09:35 +03:00
|
|
|
ImageContainer* GetContainer() { return mContainer; }
|
2013-10-02 01:01:19 +04:00
|
|
|
GraphicsFilter GetFilter() { return mFilter; }
|
2013-12-20 20:46:29 +04:00
|
|
|
const gfx::IntSize& GetScaleToSize() { return mScaleToSize; }
|
2012-08-29 09:47:18 +04:00
|
|
|
ScaleMode GetScaleMode() { return mScaleMode; }
|
2010-03-02 02:09:35 +03:00
|
|
|
|
2010-07-21 22:06:33 +04:00
|
|
|
MOZ_LAYER_DECL_NAME("ImageLayer", TYPE_IMAGE)
|
2010-07-02 05:01:09 +04:00
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
virtual void ComputeEffectiveTransforms(const gfx3DMatrix& aTransformToSurface);
|
2010-11-08 12:06:15 +03:00
|
|
|
|
2012-05-23 03:14:03 +04:00
|
|
|
/**
|
|
|
|
* if true, the image will only be backed by a single tile texture
|
|
|
|
*/
|
2013-08-02 03:02:06 +04:00
|
|
|
void SetDisallowBigImage(bool aDisallowBigImage)
|
2012-05-23 03:14:03 +04:00
|
|
|
{
|
2013-08-02 03:02:06 +04:00
|
|
|
if (mDisallowBigImage != aDisallowBigImage) {
|
|
|
|
MOZ_LAYERS_LOG_IF_SHADOWABLE(this, ("Layer::Mutated(%p) DisallowBigImage", this));
|
|
|
|
mDisallowBigImage = aDisallowBigImage;
|
2013-03-28 14:58:45 +04:00
|
|
|
Mutated();
|
|
|
|
}
|
2012-05-23 03:14:03 +04:00
|
|
|
}
|
|
|
|
|
2010-03-02 02:09:35 +03:00
|
|
|
protected:
|
2012-08-19 23:33:25 +04:00
|
|
|
ImageLayer(LayerManager* aManager, void* aImplData);
|
|
|
|
~ImageLayer();
|
2010-07-21 22:06:33 +04:00
|
|
|
virtual nsACString& PrintInfo(nsACString& aTo, const char* aPrefix);
|
|
|
|
|
2012-03-13 05:41:29 +04:00
|
|
|
|
2010-03-02 02:09:35 +03:00
|
|
|
nsRefPtr<ImageContainer> mContainer;
|
2013-10-02 01:01:19 +04:00
|
|
|
GraphicsFilter mFilter;
|
2013-12-20 20:46:29 +04:00
|
|
|
gfx::IntSize mScaleToSize;
|
2012-03-13 05:41:29 +04:00
|
|
|
ScaleMode mScaleMode;
|
2013-08-02 03:02:06 +04:00
|
|
|
bool mDisallowBigImage;
|
2010-03-02 02:09:35 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_IMAGELAYER_H */
|