2013-04-26 07:55:37 -07: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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_CanvasGradient_h
|
|
|
|
#define mozilla_dom_CanvasGradient_h
|
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-04-26 07:55:37 -07:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
2013-04-26 07:55:54 -07:00
|
|
|
#include "mozilla/dom/CanvasRenderingContext2DBinding.h"
|
2013-04-26 07:55:56 -07:00
|
|
|
#include "mozilla/dom/CanvasRenderingContext2D.h"
|
2013-04-26 07:55:54 -07:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2013-04-26 07:55:56 -07:00
|
|
|
#include "nsWrapperCache.h"
|
2013-11-19 19:50:46 -08:00
|
|
|
#include "gfxGradientCache.h"
|
2013-04-26 07:55:37 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-07-26 11:25:56 -07:00
|
|
|
class CanvasGradient : public nsWrapperCache
|
2013-04-26 07:55:37 -07:00
|
|
|
{
|
|
|
|
public:
|
2013-07-26 11:25:56 -07:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(CanvasGradient)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(CanvasGradient)
|
2013-04-26 07:55:37 -07:00
|
|
|
|
2015-01-25 14:22:08 -08:00
|
|
|
enum class Type : uint8_t {
|
2013-04-26 07:55:37 -07:00
|
|
|
LINEAR = 0,
|
|
|
|
RADIAL
|
2015-01-25 14:22:08 -08:00
|
|
|
};
|
2013-04-26 07:55:37 -07:00
|
|
|
|
|
|
|
Type GetType()
|
|
|
|
{
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::gfx::GradientStops *
|
|
|
|
GetGradientStopsForTarget(mozilla::gfx::DrawTarget *aRT)
|
|
|
|
{
|
2014-06-19 13:35:33 -07:00
|
|
|
if (mStops && mStops->GetBackendType() == aRT->GetBackendType()) {
|
2013-04-26 07:55:37 -07:00
|
|
|
return mStops;
|
|
|
|
}
|
|
|
|
|
2013-11-19 19:50:46 -08:00
|
|
|
mStops =
|
|
|
|
gfx::gfxGradientCache::GetOrCreateGradientStops(aRT,
|
|
|
|
mRawStops,
|
2014-01-10 11:06:17 -08:00
|
|
|
gfx::ExtendMode::CLAMP);
|
2013-04-26 07:55:37 -07:00
|
|
|
|
|
|
|
return mStops;
|
|
|
|
}
|
|
|
|
|
2013-04-26 07:55:54 -07:00
|
|
|
// WebIDL
|
|
|
|
void AddColorStop(float offset, const nsAString& colorstr, ErrorResult& rv);
|
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-04-26 07:55:54 -07:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return CanvasGradientBinding::Wrap(aCx, this);
|
2013-04-26 07:55:54 -07:00
|
|
|
}
|
2013-04-26 07:55:37 -07:00
|
|
|
|
2013-04-26 07:55:56 -07:00
|
|
|
CanvasRenderingContext2D* GetParentObject()
|
|
|
|
{
|
|
|
|
return mContext;
|
|
|
|
}
|
|
|
|
|
2013-04-26 07:55:37 -07:00
|
|
|
protected:
|
2013-04-26 07:55:56 -07:00
|
|
|
CanvasGradient(CanvasRenderingContext2D* aContext, Type aType)
|
|
|
|
: mContext(aContext)
|
|
|
|
, mType(aType)
|
|
|
|
{
|
|
|
|
}
|
2013-04-26 07:55:37 -07:00
|
|
|
|
2013-04-26 07:55:56 -07:00
|
|
|
nsRefPtr<CanvasRenderingContext2D> mContext;
|
2013-04-26 07:55:37 -07:00
|
|
|
nsTArray<mozilla::gfx::GradientStop> mRawStops;
|
|
|
|
mozilla::RefPtr<mozilla::gfx::GradientStops> mStops;
|
|
|
|
Type mType;
|
|
|
|
virtual ~CanvasGradient() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_CanvasGradient_h
|