2010-05-24 15:28:51 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00: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-05-24 15:28:51 +00:00
|
|
|
|
|
|
|
#ifndef GFX_CONTAINERLAYERD3D9_H
|
|
|
|
#define GFX_CONTAINERLAYERD3D9_H
|
|
|
|
|
|
|
|
#include "Layers.h"
|
|
|
|
#include "LayerManagerD3D9.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
2011-07-04 13:15:05 +00:00
|
|
|
|
|
|
|
template<class Container>
|
|
|
|
static void ContainerInsertAfter(Container* aContainer, Layer* aChild, Layer* aAfter);
|
|
|
|
template<class Container>
|
|
|
|
static void ContainerRemoveChild(Container* aContainer, Layer* aChild);
|
|
|
|
template<class Container>
|
2012-08-29 10:52:55 +00:00
|
|
|
static void ContainerRepositionChild(Container* aContainer, Layer* aChild, Layer* aAfter);
|
|
|
|
template<class Container>
|
2011-07-04 13:15:05 +00:00
|
|
|
static void ContainerRender(Container* aContainer, LayerManagerD3D9* aManager);
|
2010-05-24 15:28:51 +00:00
|
|
|
|
2010-05-29 03:27:03 +00:00
|
|
|
class ContainerLayerD3D9 : public ContainerLayer,
|
2010-05-25 07:37:19 +00:00
|
|
|
public LayerD3D9
|
2010-05-24 15:28:51 +00:00
|
|
|
{
|
2011-07-04 13:15:05 +00:00
|
|
|
template<class Container>
|
|
|
|
friend void ContainerInsertAfter(Container* aContainer, Layer* aChild, Layer* aAfter);
|
|
|
|
template<class Container>
|
|
|
|
friend void ContainerRemoveChild(Container* aContainer, Layer* aChild);
|
|
|
|
template<class Container>
|
2012-08-29 10:52:55 +00:00
|
|
|
friend void ContainerRepositionChild(Container* aContainer, Layer* aChild, Layer* aAfter);
|
|
|
|
template<class Container>
|
2011-07-04 13:15:05 +00:00
|
|
|
friend void ContainerRender(Container* aContainer, LayerManagerD3D9* aManager);
|
|
|
|
|
2010-05-24 15:28:51 +00:00
|
|
|
public:
|
|
|
|
ContainerLayerD3D9(LayerManagerD3D9 *aManager);
|
2010-05-25 07:37:19 +00:00
|
|
|
~ContainerLayerD3D9();
|
2010-05-24 15:28:51 +00:00
|
|
|
|
2010-05-31 23:29:37 +00:00
|
|
|
nsIntRect GetVisibleRect() { return mVisibleRegion.GetBounds(); }
|
2010-05-24 15:28:51 +00:00
|
|
|
|
|
|
|
/* ContainerLayer implementation */
|
2010-05-31 23:29:37 +00:00
|
|
|
virtual void InsertAfter(Layer* aChild, Layer* aAfter);
|
2010-05-24 15:28:51 +00:00
|
|
|
|
2010-05-31 23:29:37 +00:00
|
|
|
virtual void RemoveChild(Layer* aChild);
|
2010-05-24 15:28:51 +00:00
|
|
|
|
2012-08-29 10:52:55 +00:00
|
|
|
virtual void RepositionChild(Layer* aChild, Layer* aAfter);
|
|
|
|
|
2010-05-24 15:28:51 +00:00
|
|
|
/* LayerD3D9 implementation */
|
|
|
|
Layer* GetLayer();
|
|
|
|
|
|
|
|
LayerD3D9* GetFirstChildD3D9();
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsEmpty();
|
2010-05-24 15:28:51 +00:00
|
|
|
|
2010-11-08 09:06:15 +00:00
|
|
|
void RenderLayer();
|
2010-09-15 22:15:49 +00:00
|
|
|
|
|
|
|
virtual void LayerManagerDestroyed();
|
2010-10-21 20:41:04 +00:00
|
|
|
|
2010-11-08 09:06:15 +00:00
|
|
|
virtual void ComputeEffectiveTransforms(const gfx3DMatrix& aTransformToSurface)
|
|
|
|
{
|
|
|
|
DefaultComputeEffectiveTransforms(aTransformToSurface);
|
|
|
|
}
|
2010-05-24 15:28:51 +00:00
|
|
|
};
|
|
|
|
|
2011-07-04 13:15:05 +00:00
|
|
|
class ShadowContainerLayerD3D9 : public ShadowContainerLayer,
|
|
|
|
public LayerD3D9
|
|
|
|
{
|
|
|
|
template<class Container>
|
|
|
|
friend void ContainerInsertAfter(Container* aContainer, Layer* aChild, Layer* aAfter);
|
|
|
|
template<class Container>
|
|
|
|
friend void ContainerRemoveChild(Container* aContainer, Layer* aChild);
|
|
|
|
template<class Container>
|
2012-08-29 10:52:55 +00:00
|
|
|
friend void ContainerRepositionChild(Container* aContainer, Layer* aChild, Layer* aAfter);
|
|
|
|
template<class Container>
|
2011-07-04 13:15:05 +00:00
|
|
|
friend void ContainerRender(Container* aContainer, LayerManagerD3D9* aManager);
|
|
|
|
|
|
|
|
public:
|
|
|
|
ShadowContainerLayerD3D9(LayerManagerD3D9 *aManager);
|
|
|
|
~ShadowContainerLayerD3D9();
|
|
|
|
|
|
|
|
void InsertAfter(Layer* aChild, Layer* aAfter);
|
|
|
|
|
|
|
|
void RemoveChild(Layer* aChild);
|
|
|
|
|
2012-08-29 10:52:55 +00:00
|
|
|
void RepositionChild(Layer* aChild, Layer* aAfter);
|
|
|
|
|
2011-07-04 13:15:05 +00:00
|
|
|
// LayerD3D9 Implementation
|
|
|
|
virtual Layer* GetLayer() { return this; }
|
|
|
|
|
|
|
|
virtual void Destroy();
|
|
|
|
|
|
|
|
LayerD3D9* GetFirstChildD3D9();
|
|
|
|
|
|
|
|
virtual void RenderLayer();
|
|
|
|
|
|
|
|
virtual void ComputeEffectiveTransforms(const gfx3DMatrix& aTransformToSurface)
|
|
|
|
{
|
|
|
|
DefaultComputeEffectiveTransforms(aTransformToSurface);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-05-24 15:28:51 +00:00
|
|
|
} /* layers */
|
|
|
|
} /* mozilla */
|
|
|
|
|
|
|
|
#endif /* GFX_CONTAINERLAYERD3D9_H */
|