2012-06-29 10:01:34 +04: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-04-01 08:02:10 +04:00
|
|
|
#include "BasicLayersImpl.h" // for FillRectWithMask, etc
|
2013-08-12 03:17:23 +04: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 19:07:47 +04:00
|
|
|
#include "gfx2DGlue.h"
|
2013-08-12 03:17:23 +04: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-04-01 08:02:10 +04:00
|
|
|
#include "mozilla/gfx/PathHelpers.h"
|
2012-06-29 10:01:34 +04:00
|
|
|
|
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2012-07-12 16:51:57 +04:00
|
|
|
namespace layers {
|
|
|
|
|
2012-06-29 10:01:34 +04:00
|
|
|
class BasicColorLayer : public ColorLayer, public BasicImplData {
|
|
|
|
public:
|
2014-08-20 08:55:14 +04:00
|
|
|
explicit BasicColorLayer(BasicLayerManager* aLayerManager) :
|
2015-01-07 08:39:46 +03:00
|
|
|
ColorLayer(aLayerManager, static_cast<BasicImplData*>(this))
|
2012-06-29 10:01:34 +04:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(BasicColorLayer);
|
|
|
|
}
|
2014-07-15 19:37:45 +04:00
|
|
|
|
|
|
|
protected:
|
2012-06-29 10:01:34 +04:00
|
|
|
virtual ~BasicColorLayer()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(BasicColorLayer);
|
|
|
|
}
|
|
|
|
|
2014-07-15 19:37:45 +04:00
|
|
|
public:
|
2015-01-03 05:10:46 +03:00
|
|
|
virtual void SetVisibleRegion(const nsIntRegion& aRegion) MOZ_OVERRIDE
|
2012-06-29 10:01:34 +04:00
|
|
|
{
|
|
|
|
NS_ASSERTION(BasicManager()->InConstruction(),
|
|
|
|
"Can only set properties in construction phase");
|
|
|
|
ColorLayer::SetVisibleRegion(aRegion);
|
|
|
|
}
|
|
|
|
|
2014-05-12 04:31:27 +04:00
|
|
|
virtual void Paint(DrawTarget* aDT,
|
|
|
|
const gfx::Point& aDeviceOffset,
|
|
|
|
Layer* aMaskLayer) MOZ_OVERRIDE
|
2012-06-29 10:01:34 +04:00
|
|
|
{
|
2014-02-12 19:07:47 +04:00
|
|
|
if (IsHidden()) {
|
2012-06-29 10:01:34 +04:00
|
|
|
return;
|
2014-02-12 19:07:47 +04:00
|
|
|
}
|
2012-06-29 10:01:34 +04:00
|
|
|
|
2014-04-01 08:02:10 +04:00
|
|
|
Rect snapped(mBounds.x, mBounds.y, mBounds.width, mBounds.height);
|
2014-10-19 13:22:47 +04:00
|
|
|
MaybeSnapToDevicePixels(snapped, *aDT, true);
|
2013-07-09 18:11:00 +04:00
|
|
|
|
2014-10-07 18:18:01 +04:00
|
|
|
// Clip drawing in case we're using (unbounded) operator source.
|
|
|
|
aDT->PushClipRect(snapped);
|
2014-05-12 04:31:27 +04:00
|
|
|
FillRectWithMask(aDT, aDeviceOffset, snapped, ToColor(mColor),
|
2014-04-01 08:02:10 +04:00
|
|
|
DrawOptions(GetEffectiveOpacity(), GetEffectiveOperator(this)),
|
|
|
|
aMaskLayer);
|
2014-10-07 18:18:01 +04:00
|
|
|
aDT->PopClip();
|
2013-07-09 18:11:00 +04:00
|
|
|
}
|
2013-07-09 20:05:04 +04:00
|
|
|
|
2012-06-29 10:01:34 +04: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();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|