2012-06-28 23:01:34 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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/. */
|
|
|
|
|
2014-03-31 21:02:10 -07:00
|
|
|
#include "BasicLayersImpl.h" // for FillRectWithMask, etc
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "Layers.h" // for ColorLayer, etc
|
|
|
|
#include "BasicImplData.h" // for BasicImplData
|
|
|
|
#include "BasicLayers.h" // for BasicLayerManager
|
|
|
|
#include "gfxContext.h" // for gfxContext, etc
|
|
|
|
#include "gfxRect.h" // for gfxRect
|
2014-02-12 07:07:47 -08:00
|
|
|
#include "gfx2DGlue.h"
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "mozilla/mozalloc.h" // for operator new
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nsCOMPtr.h" // for already_AddRefed
|
|
|
|
#include "nsDebug.h" // for NS_ASSERTION
|
|
|
|
#include "nsISupportsImpl.h" // for Layer::AddRef, etc
|
|
|
|
#include "nsRect.h" // for nsIntRect
|
|
|
|
#include "nsRegion.h" // for nsIntRegion
|
2014-03-31 21:02:10 -07:00
|
|
|
#include "mozilla/gfx/PathHelpers.h"
|
2012-06-28 23:01:34 -07:00
|
|
|
|
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2012-07-12 05:51:57 -07:00
|
|
|
namespace layers {
|
|
|
|
|
2012-06-28 23:01:34 -07:00
|
|
|
class BasicColorLayer : public ColorLayer, public BasicImplData {
|
|
|
|
public:
|
|
|
|
BasicColorLayer(BasicLayerManager* aLayerManager) :
|
2013-08-16 06:18:36 -07:00
|
|
|
ColorLayer(aLayerManager,
|
|
|
|
static_cast<BasicImplData*>(MOZ_THIS_IN_INITIALIZER_LIST()))
|
2012-06-28 23:01:34 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(BasicColorLayer);
|
|
|
|
}
|
|
|
|
virtual ~BasicColorLayer()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(BasicColorLayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SetVisibleRegion(const nsIntRegion& aRegion)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(BasicManager()->InConstruction(),
|
|
|
|
"Can only set properties in construction phase");
|
|
|
|
ColorLayer::SetVisibleRegion(aRegion);
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:31:27 -07:00
|
|
|
virtual void Paint(DrawTarget* aDT,
|
|
|
|
const gfx::Point& aDeviceOffset,
|
|
|
|
Layer* aMaskLayer) MOZ_OVERRIDE
|
2012-06-28 23:01:34 -07:00
|
|
|
{
|
2014-02-12 07:07:47 -08:00
|
|
|
if (IsHidden()) {
|
2012-06-28 23:01:34 -07:00
|
|
|
return;
|
2014-02-12 07:07:47 -08:00
|
|
|
}
|
2012-06-28 23:01:34 -07:00
|
|
|
|
2014-03-31 21:02:10 -07:00
|
|
|
Rect snapped(mBounds.x, mBounds.y, mBounds.width, mBounds.height);
|
|
|
|
if (UserToDevicePixelSnapped(snapped, aDT->GetTransform())) {
|
|
|
|
Matrix mat = aDT->GetTransform();
|
2014-03-31 21:02:10 -07:00
|
|
|
mat.Invert();
|
|
|
|
snapped = mat.TransformBounds(snapped);
|
|
|
|
}
|
2013-07-09 07:11:00 -07:00
|
|
|
|
2014-05-11 17:31:27 -07:00
|
|
|
FillRectWithMask(aDT, aDeviceOffset, snapped, ToColor(mColor),
|
2014-03-31 21:02:10 -07:00
|
|
|
DrawOptions(GetEffectiveOpacity(), GetEffectiveOperator(this)),
|
|
|
|
aMaskLayer);
|
2013-07-09 07:11:00 -07:00
|
|
|
}
|
2013-07-09 09:05:04 -07:00
|
|
|
|
2012-06-28 23:01:34 -07:00
|
|
|
protected:
|
|
|
|
BasicLayerManager* BasicManager()
|
|
|
|
{
|
|
|
|
return static_cast<BasicLayerManager*>(mManager);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
already_AddRefed<ColorLayer>
|
|
|
|
BasicLayerManager::CreateColorLayer()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(InConstruction(), "Only allowed in construction phase");
|
|
|
|
nsRefPtr<ColorLayer> layer = new BasicColorLayer(this);
|
|
|
|
return layer.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|