2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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 23:18:42 +03:00
|
|
|
|
2006-03-25 08:47:31 +03:00
|
|
|
/* DOM object representing color values in DOM computed style */
|
|
|
|
|
2002-03-22 23:18:42 +03:00
|
|
|
#ifndef nsDOMCSSRGBColor_h__
|
|
|
|
#define nsDOMCSSRGBColor_h__
|
|
|
|
|
2012-12-14 11:51:39 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2018-05-08 10:20:43 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2012-10-20 22:04:36 +04:00
|
|
|
class nsROCSSPrimitiveValue;
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2018-05-08 10:20:43 +03:00
|
|
|
class nsDOMCSSRGBColor final : public mozilla::RefCounted<nsDOMCSSRGBColor>
|
2012-12-14 10:40:52 +04:00
|
|
|
{
|
2002-03-22 23:18:42 +03:00
|
|
|
public:
|
2018-05-08 10:20:43 +03:00
|
|
|
MOZ_DECLARE_REFCOUNTED_TYPENAME(nsDOMCSSRGBColor);
|
2012-10-20 22:04:36 +04:00
|
|
|
nsDOMCSSRGBColor(nsROCSSPrimitiveValue* aRed,
|
|
|
|
nsROCSSPrimitiveValue* aGreen,
|
|
|
|
nsROCSSPrimitiveValue* aBlue,
|
|
|
|
nsROCSSPrimitiveValue* aAlpha,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aHasAlpha);
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool HasAlpha() const { return mHasAlpha; }
|
2002-03-22 23:18:42 +03:00
|
|
|
|
2012-10-20 22:04:36 +04:00
|
|
|
// RGBColor webidl interface
|
|
|
|
nsROCSSPrimitiveValue* Red() const
|
|
|
|
{
|
|
|
|
return mRed;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Green() const
|
|
|
|
{
|
|
|
|
return mGreen;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Blue() const
|
|
|
|
{
|
|
|
|
return mBlue;
|
|
|
|
}
|
|
|
|
nsROCSSPrimitiveValue* Alpha() const
|
|
|
|
{
|
|
|
|
return mAlpha;
|
|
|
|
}
|
|
|
|
|
2018-05-08 10:20:43 +03:00
|
|
|
~nsDOMCSSRGBColor();
|
2014-06-24 02:40:01 +04:00
|
|
|
|
2018-05-08 10:20:43 +03:00
|
|
|
protected:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsROCSSPrimitiveValue> mRed;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mGreen;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mBlue;
|
|
|
|
RefPtr<nsROCSSPrimitiveValue> mAlpha;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mHasAlpha;
|
2002-03-22 23:18:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMCSSRGBColor_h__
|