/* -*- Mode: C++; tab-width: 20; 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/. */ #ifndef GFX_ContainerLayerComposite_H #define GFX_ContainerLayerComposite_H #include "Layers.h" // for Layer (ptr only), etc #include "mozilla/Attributes.h" // for MOZ_OVERRIDE #include "mozilla/layers/LayerManagerComposite.h" #include "mozilla/layers/LayersTypes.h" // for MOZ_LAYERS_HAVE_LOG class gfx3DMatrix; struct nsIntPoint; struct nsIntRect; namespace mozilla { namespace layers { class CompositableHost; class ContainerLayerComposite : public ContainerLayer, public LayerComposite { template friend void ContainerRender(ContainerT* aContainer, const nsIntPoint& aOffset, LayerManagerComposite* aManager, const nsIntRect& aClipRect); public: ContainerLayerComposite(LayerManagerComposite *aManager); ~ContainerLayerComposite(); void InsertAfter(Layer* aChild, Layer* aAfter); void RemoveChild(Layer* aChild); void RepositionChild(Layer* aChild, Layer* aAfter); // LayerComposite Implementation virtual Layer* GetLayer() MOZ_OVERRIDE { return this; } virtual void Destroy() MOZ_OVERRIDE; LayerComposite* GetFirstChildComposite(); virtual void RenderLayer(const nsIntPoint& aOffset, const nsIntRect& aClipRect) MOZ_OVERRIDE; virtual void ComputeEffectiveTransforms(const gfx3DMatrix& aTransformToSurface) MOZ_OVERRIDE { DefaultComputeEffectiveTransforms(aTransformToSurface); } virtual void CleanupResources() MOZ_OVERRIDE; virtual LayerComposite* AsLayerComposite() MOZ_OVERRIDE { return this; } // container layers don't use a compositable CompositableHost* GetCompositableHost() MOZ_OVERRIDE { return nullptr; } #ifdef MOZ_LAYERS_HAVE_LOG virtual const char* Name() const MOZ_OVERRIDE { return "ContainerLayerComposite"; } #endif }; class RefLayerComposite : public RefLayer, public LayerComposite { template friend void ContainerRender(ContainerT* aContainer, const nsIntPoint& aOffset, LayerManagerComposite* aManager, const nsIntRect& aClipRect); public: RefLayerComposite(LayerManagerComposite *aManager); ~RefLayerComposite(); /** LayerOGL implementation */ Layer* GetLayer() MOZ_OVERRIDE { return this; } void Destroy() MOZ_OVERRIDE; LayerComposite* GetFirstChildComposite(); virtual void RenderLayer(const nsIntPoint& aOffset, const nsIntRect& aClipRect) MOZ_OVERRIDE; virtual void ComputeEffectiveTransforms(const gfx3DMatrix& aTransformToSurface) MOZ_OVERRIDE { DefaultComputeEffectiveTransforms(aTransformToSurface); } virtual void CleanupResources() MOZ_OVERRIDE; virtual LayerComposite* AsLayerComposite() MOZ_OVERRIDE { return this; } // ref layers don't use a compositable CompositableHost* GetCompositableHost() MOZ_OVERRIDE { return nullptr; } #ifdef MOZ_LAYERS_HAVE_LOG virtual const char* Name() const MOZ_OVERRIDE { return "RefLayerComposite"; } #endif }; } /* layers */ } /* mozilla */ #endif /* GFX_ContainerLayerComposite_H */