2016-11-23 02:26:20 +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: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
/* representation of CSSStyleRule for stylo */
|
|
|
|
|
|
|
|
#ifndef mozilla_ServoStyleRule_h
|
|
|
|
#define mozilla_ServoStyleRule_h
|
|
|
|
|
2017-01-20 21:30:14 +03:00
|
|
|
#include "mozilla/css/Rule.h"
|
2016-11-23 02:26:20 +03:00
|
|
|
#include "mozilla/ServoBindingTypes.h"
|
|
|
|
|
|
|
|
#include "nsIDOMCSSStyleRule.h"
|
2016-11-23 02:26:20 +03:00
|
|
|
#include "nsDOMCSSDeclaration.h"
|
2016-11-23 02:26:20 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
class ServoDeclarationBlock;
|
2016-11-23 02:53:01 +03:00
|
|
|
class ServoStyleRule;
|
2016-11-23 02:26:20 +03:00
|
|
|
|
|
|
|
class ServoStyleRuleDeclaration final : public nsDOMCSSDeclaration
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_IMETHOD GetParentRule(nsIDOMCSSRule** aParent) final;
|
|
|
|
nsINode* GetParentObject() final;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DeclarationBlock* GetCSSDeclaration(Operation aOperation) final;
|
|
|
|
nsresult SetCSSDeclaration(DeclarationBlock* aDecl) final;
|
|
|
|
nsIDocument* DocToUpdate() final;
|
|
|
|
void GetCSSParsingEnvironment(CSSParsingEnvironment& aCSSParseEnv) final;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// For accessing the constructor.
|
|
|
|
friend class ServoStyleRule;
|
|
|
|
|
|
|
|
explicit ServoStyleRuleDeclaration(
|
|
|
|
already_AddRefed<RawServoDeclarationBlock> aDecls);
|
|
|
|
~ServoStyleRuleDeclaration();
|
|
|
|
|
|
|
|
inline ServoStyleRule* Rule();
|
|
|
|
|
|
|
|
RefPtr<ServoDeclarationBlock> mDecls;
|
|
|
|
};
|
|
|
|
|
2017-01-20 21:30:14 +03:00
|
|
|
class ServoStyleRule final : public css::Rule
|
2016-11-23 02:26:20 +03:00
|
|
|
, public nsIDOMCSSStyleRule
|
|
|
|
{
|
|
|
|
public:
|
2016-11-23 02:26:20 +03:00
|
|
|
explicit ServoStyleRule(already_AddRefed<RawServoStyleRule> aRawRule);
|
2016-11-23 02:26:20 +03:00
|
|
|
|
2017-01-20 21:31:31 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(ServoStyleRule,
|
2016-11-23 02:26:20 +03:00
|
|
|
css::Rule)
|
2017-01-20 21:30:37 +03:00
|
|
|
NS_DECL_NSIDOMCSSRULE
|
2016-11-23 02:26:20 +03:00
|
|
|
NS_DECL_NSIDOMCSSSTYLERULE
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
RawServoStyleRule* Raw() const { return mRawRule; }
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
// Methods of mozilla::css::Rule
|
|
|
|
int32_t GetType() const final { return css::Rule::STYLE_RULE; }
|
|
|
|
already_AddRefed<Rule> Clone() const final;
|
2017-01-20 21:30:32 +03:00
|
|
|
nsIDOMCSSRule* GetDOMRule() final { return this; }
|
2017-01-20 21:30:59 +03:00
|
|
|
nsIDOMCSSRule* GetExistingDOMRule() final { return this; }
|
2016-11-23 02:26:20 +03:00
|
|
|
size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const final;
|
|
|
|
#ifdef DEBUG
|
|
|
|
void List(FILE* out = stdout, int32_t aIndent = 0) const final;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
~ServoStyleRule() {}
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
// For computing the offset of mDecls.
|
|
|
|
friend class ServoStyleRuleDeclaration;
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
RefPtr<RawServoStyleRule> mRawRule;
|
2016-11-23 02:26:20 +03:00
|
|
|
ServoStyleRuleDeclaration mDecls;
|
2016-11-23 02:26:20 +03:00
|
|
|
};
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
ServoStyleRule*
|
|
|
|
ServoStyleRuleDeclaration::Rule()
|
|
|
|
{
|
|
|
|
return reinterpret_cast<ServoStyleRule*>(reinterpret_cast<uint8_t*>(this) -
|
|
|
|
offsetof(ServoStyleRule, mDecls));
|
|
|
|
}
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_ServoStyleRule_h
|