blob: 1206ea570dafaee8fba7120ecb04ba6699e06936 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CSSMathInvert_h
#define CSSMathInvert_h
#include "base/macros.h"
#include "core/css/cssom/CSSMathValue.h"
namespace blink {
// Represents the inverse of a CSSNumericValue.
// See CSSMathInvert.idl for more information about this class.
class CORE_EXPORT CSSMathInvert : public CSSMathValue {
DEFINE_WRAPPERTYPEINFO();
public:
// The constructor defined in the IDL.
static CSSMathInvert* Create(const CSSNumberish& arg) {
return Create(CSSNumericValue::FromNumberish(arg));
}
// Blink-internal constructor
static CSSMathInvert* Create(CSSNumericValue* value) {
return new CSSMathInvert(
value, CSSNumericValueType::NegateExponents(value->Type()));
}
String getOperator() const final { return "invert"; }
void value(CSSNumberish& value) { value.SetCSSNumericValue(value_); }
void setValue(const CSSNumberish& value) {
value_ = CSSNumericValue::FromNumberish(value);
}
// From CSSStyleValue.
StyleValueType GetType() const final { return CSSStyleValue::kInvertType; }
void Trace(Visitor* visitor) override {
visitor->Trace(value_);
CSSMathValue::Trace(visitor);
}
bool Equals(const CSSNumericValue& other) const final {
if (other.GetType() != kNegateType)
return false;
// We can safely cast here as we know 'other' has the same type as us.
const auto& other_invert = static_cast<const CSSMathInvert&>(other);
return value_->Equals(*other_invert.value_);
}
CSSCalcExpressionNode* ToCalcExpressionNode() const final {
// TODO(crbug.com/782103): Implement.
return nullptr;
}
private:
CSSMathInvert(CSSNumericValue* value, const CSSNumericValueType& type)
: CSSMathValue(type), value_(value) {}
// From CSSNumericValue
CSSNumericValue* Invert() final { return value_.Get(); }
WTF::Optional<CSSNumericSumValue> SumValue() const final;
Member<CSSNumericValue> value_;
DISALLOW_COPY_AND_ASSIGN(CSSMathInvert);
};
} // namespace blink
#endif // CSSMathInvert_h