2002-03-22 20:18:42 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2002-03-22 20:18:42 +00:00
|
|
|
|
2006-03-25 05:47:31 +00:00
|
|
|
/* DOM object representing color values in DOM computed style */
|
|
|
|
|
2002-03-22 20:18:42 +00:00
|
|
|
#ifndef nsDOMCSSRGBColor_h__
|
|
|
|
#define nsDOMCSSRGBColor_h__
|
|
|
|
|
2012-12-14 07:51:39 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-10-20 18:04:36 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2012-12-14 06:40:52 +00:00
|
|
|
#include "nsWrapperCache.h"
|
2002-03-22 20:18:42 +00:00
|
|
|
|
2012-10-20 18:04:36 +00:00
|
|
|
class nsROCSSPrimitiveValue;
|
2002-03-22 20:18:42 +00:00
|
|
|
|
2013-02-13 21:39:23 +00:00
|
|
|
class nsDOMCSSRGBColor : public nsWrapperCache
|
2012-12-14 06:40:52 +00:00
|
|
|
{
|
2002-03-22 20:18:42 +00:00
|
|
|
public:
|
2012-10-20 18:04:36 +00:00
|
|
|
nsDOMCSSRGBColor(nsROCSSPrimitiveValue* aRed,
|
|
|
|
nsROCSSPrimitiveValue* aGreen,
|
|
|
|
nsROCSSPrimitiveValue* aBlue,
|
|
|
|
nsROCSSPrimitiveValue* aAlpha,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aHasAlpha);
|
2002-03-22 20:18:42 +00:00
|
|
|
|
2013-02-13 21:39:23 +00:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsDOMCSSRGBColor)
|
2007-01-25 02:03:02 +00:00
|
|
|
|
2013-02-13 21:39:23 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(nsDOMCSSRGBColor)
|
2012-12-14 06:40:52 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HasAlpha() const { return mHasAlpha; }
|
2002-03-22 20:18:42 +00:00
|
|
|
|
2012-10-20 18:04:36 +00:00
|
|
|
// RGBColor webidl interface
|
|
|
|
nsROCSSPrimitiveValue* Red() const
|
|
|
|
{
|
|
|
|
return mRed;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Green() const
|
|
|
|
{
|
|
|
|
return mGreen;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Blue() const
|
|
|
|
{
|
|
|
|
return mBlue;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Alpha() const
|
|
|
|
{
|
|
|
|
return mAlpha;
|
|
|
|
}
|
|
|
|
|
2012-12-14 07:51:39 +00:00
|
|
|
nsISupports* GetParentObject() const
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-04-08 22:27:18 +00:00
|
|
|
virtual JSObject *WrapObject(JSContext *cx)
|
2012-12-14 07:51:39 +00:00
|
|
|
MOZ_OVERRIDE MOZ_FINAL;
|
|
|
|
|
2002-03-22 20:18:42 +00:00
|
|
|
private:
|
2014-06-23 22:40:01 +00:00
|
|
|
virtual ~nsDOMCSSRGBColor(void);
|
|
|
|
|
2012-10-20 18:04:36 +00:00
|
|
|
nsRefPtr<nsROCSSPrimitiveValue> mRed;
|
|
|
|
nsRefPtr<nsROCSSPrimitiveValue> mGreen;
|
|
|
|
nsRefPtr<nsROCSSPrimitiveValue> mBlue;
|
|
|
|
nsRefPtr<nsROCSSPrimitiveValue> mAlpha;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHasAlpha;
|
2002-03-22 20:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMCSSRGBColor_h__
|