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
|
|
|
|
|
|
|
|
#include "Layers.h"
|
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
#include "ImageTypes.h"
|
2011-12-15 14:26:42 +04:00
|
|
|
#include "nsISupportsImpl.h"
|
2010-03-02 02:09:35 +03:00
|
|
|
#include "gfxPattern.h"
|
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.
|
|
|
|
*/
|
|
|
|
class THEBES_API ImageLayer : public Layer {
|
|
|
|
public:
|
2012-03-13 05:41:29 +04:00
|
|
|
enum ScaleMode {
|
|
|
|
SCALE_NONE,
|
2012-09-18 07:16:15 +04:00
|
|
|
SCALE_STRETCH
|
2012-03-13 05:41:29 +04:00
|
|
|
// Unimplemented - SCALE_PRESERVE_ASPECT_RATIO_CONTAIN
|
|
|
|
};
|
|
|
|
|
2010-03-02 02:09:35 +03:00
|
|
|
/**
|
|
|
|
* 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-03-28 14:58:45 +04:00
|
|
|
void SetFilter(gfxPattern::GraphicsFilter aFilter)
|
|
|
|
{
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
void SetScaleToSize(const gfxIntSize &aSize, ScaleMode aMode)
|
|
|
|
{
|
|
|
|
mScaleToSize = aSize;
|
|
|
|
mScaleMode = aMode;
|
|
|
|
}
|
|
|
|
|
2012-07-04 04:24:55 +04:00
|
|
|
|
2010-03-02 02:09:35 +03:00
|
|
|
ImageContainer* GetContainer() { return mContainer; }
|
|
|
|
gfxPattern::GraphicsFilter GetFilter() { return mFilter; }
|
2012-08-29 09:47:18 +04:00
|
|
|
const gfxIntSize& GetScaleToSize() { return mScaleToSize; }
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
void SetForceSingleTile(bool aForceSingleTile)
|
|
|
|
{
|
2013-03-28 14:58:45 +04:00
|
|
|
if (mForceSingleTile != aForceSingleTile) {
|
|
|
|
MOZ_LAYERS_LOG_IF_SHADOWABLE(this, ("Layer::Mutated(%p) ForceSingleTile", this));
|
|
|
|
mForceSingleTile = aForceSingleTile;
|
|
|
|
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;
|
|
|
|
gfxPattern::GraphicsFilter mFilter;
|
2012-03-13 05:41:29 +04:00
|
|
|
gfxIntSize mScaleToSize;
|
|
|
|
ScaleMode mScaleMode;
|
2012-05-23 03:14:03 +04:00
|
|
|
bool mForceSingleTile;
|
2010-03-02 02:09:35 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_IMAGELAYER_H */
|