Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | /* DOM object representing color values in DOM computed style */ |
michael@0 | 7 | |
michael@0 | 8 | #ifndef nsDOMCSSRGBColor_h__ |
michael@0 | 9 | #define nsDOMCSSRGBColor_h__ |
michael@0 | 10 | |
michael@0 | 11 | #include "mozilla/Attributes.h" |
michael@0 | 12 | #include "nsAutoPtr.h" |
michael@0 | 13 | #include "nsWrapperCache.h" |
michael@0 | 14 | |
michael@0 | 15 | class nsROCSSPrimitiveValue; |
michael@0 | 16 | |
michael@0 | 17 | class nsDOMCSSRGBColor : public nsWrapperCache |
michael@0 | 18 | { |
michael@0 | 19 | public: |
michael@0 | 20 | nsDOMCSSRGBColor(nsROCSSPrimitiveValue* aRed, |
michael@0 | 21 | nsROCSSPrimitiveValue* aGreen, |
michael@0 | 22 | nsROCSSPrimitiveValue* aBlue, |
michael@0 | 23 | nsROCSSPrimitiveValue* aAlpha, |
michael@0 | 24 | bool aHasAlpha); |
michael@0 | 25 | |
michael@0 | 26 | virtual ~nsDOMCSSRGBColor(void); |
michael@0 | 27 | |
michael@0 | 28 | NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsDOMCSSRGBColor) |
michael@0 | 29 | |
michael@0 | 30 | NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(nsDOMCSSRGBColor) |
michael@0 | 31 | |
michael@0 | 32 | bool HasAlpha() const { return mHasAlpha; } |
michael@0 | 33 | |
michael@0 | 34 | // RGBColor webidl interface |
michael@0 | 35 | nsROCSSPrimitiveValue* Red() const |
michael@0 | 36 | { |
michael@0 | 37 | return mRed; |
michael@0 | 38 | } |
michael@0 | 39 | nsROCSSPrimitiveValue* Green() const |
michael@0 | 40 | { |
michael@0 | 41 | return mGreen; |
michael@0 | 42 | } |
michael@0 | 43 | nsROCSSPrimitiveValue* Blue() const |
michael@0 | 44 | { |
michael@0 | 45 | return mBlue; |
michael@0 | 46 | } |
michael@0 | 47 | nsROCSSPrimitiveValue* Alpha() const |
michael@0 | 48 | { |
michael@0 | 49 | return mAlpha; |
michael@0 | 50 | } |
michael@0 | 51 | |
michael@0 | 52 | nsISupports* GetParentObject() const |
michael@0 | 53 | { |
michael@0 | 54 | return nullptr; |
michael@0 | 55 | } |
michael@0 | 56 | |
michael@0 | 57 | virtual JSObject *WrapObject(JSContext *cx) |
michael@0 | 58 | MOZ_OVERRIDE MOZ_FINAL; |
michael@0 | 59 | |
michael@0 | 60 | private: |
michael@0 | 61 | nsRefPtr<nsROCSSPrimitiveValue> mRed; |
michael@0 | 62 | nsRefPtr<nsROCSSPrimitiveValue> mGreen; |
michael@0 | 63 | nsRefPtr<nsROCSSPrimitiveValue> mBlue; |
michael@0 | 64 | nsRefPtr<nsROCSSPrimitiveValue> mAlpha; |
michael@0 | 65 | bool mHasAlpha; |
michael@0 | 66 | }; |
michael@0 | 67 | |
michael@0 | 68 | #endif // nsDOMCSSRGBColor_h__ |