2001-09-25 05:32:19 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2006-03-25 08:47:31 +03:00
|
|
|
|
|
|
|
/* base class for all rule types in a CSS style sheet */
|
|
|
|
|
2011-03-07 06:59:03 +03:00
|
|
|
#ifndef mozilla_css_Rule_h___
|
|
|
|
#define mozilla_css_Rule_h___
|
1999-06-10 09:32:38 +04:00
|
|
|
|
2016-09-26 15:03:25 +03:00
|
|
|
#include "mozilla/StyleSheetInlines.h"
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2015-11-05 11:44:10 +03:00
|
|
|
#include "nsISupports.h"
|
2011-04-08 05:23:46 +04:00
|
|
|
#include "nsIDOMCSSRule.h"
|
2017-01-13 18:41:02 +03:00
|
|
|
#include "nsWrapperCache.h"
|
1999-06-10 09:32:38 +04:00
|
|
|
|
2012-08-06 06:14:52 +04:00
|
|
|
class nsIDocument;
|
2010-08-08 09:28:33 +04:00
|
|
|
struct nsRuleData;
|
|
|
|
template<class T> struct already_AddRefed;
|
2012-09-30 20:40:24 +04:00
|
|
|
class nsHTMLCSSStyleSheet;
|
2010-08-08 09:28:33 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace css {
|
|
|
|
class GroupRule;
|
|
|
|
|
2017-01-20 21:30:32 +03:00
|
|
|
#define DECL_STYLE_RULE_INHERIT_NO_DOMRULE \
|
|
|
|
/* nothing */
|
|
|
|
|
|
|
|
#define DECL_STYLE_RULE_INHERIT \
|
|
|
|
DECL_STYLE_RULE_INHERIT_NO_DOMRULE \
|
2017-01-13 18:41:02 +03:00
|
|
|
virtual nsIDOMCSSRule* GetDOMRule() override;
|
2017-01-20 21:30:32 +03:00
|
|
|
|
2017-01-13 18:41:02 +03:00
|
|
|
class Rule : public nsISupports
|
|
|
|
, public nsWrapperCache
|
|
|
|
{
|
2011-03-29 07:21:20 +04:00
|
|
|
protected:
|
2014-07-15 02:57:54 +04:00
|
|
|
Rule(uint32_t aLineNumber, uint32_t aColumnNumber)
|
2015-11-09 10:57:16 +03:00
|
|
|
: mSheet(nullptr),
|
2014-07-15 02:57:02 +04:00
|
|
|
mParentRule(nullptr),
|
|
|
|
mLineNumber(aLineNumber),
|
2015-11-05 11:44:10 +03:00
|
|
|
mColumnNumber(aColumnNumber)
|
2010-09-18 22:43:17 +04:00
|
|
|
{
|
|
|
|
}
|
1999-06-10 09:32:38 +04:00
|
|
|
|
2011-03-07 06:59:03 +03:00
|
|
|
Rule(const Rule& aCopy)
|
2010-09-18 22:43:17 +04:00
|
|
|
: mSheet(aCopy.mSheet),
|
2014-07-15 02:57:02 +04:00
|
|
|
mParentRule(aCopy.mParentRule),
|
|
|
|
mLineNumber(aCopy.mLineNumber),
|
2015-11-05 11:44:10 +03:00
|
|
|
mColumnNumber(aCopy.mColumnNumber)
|
2010-09-18 22:43:17 +04:00
|
|
|
{
|
|
|
|
}
|
1999-06-10 09:32:38 +04:00
|
|
|
|
2011-03-18 08:18:08 +03:00
|
|
|
virtual ~Rule() {}
|
|
|
|
|
2011-03-29 07:21:20 +04:00
|
|
|
public:
|
1999-06-10 09:32:38 +04:00
|
|
|
|
2016-12-01 02:18:14 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2017-01-13 18:41:02 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS(Rule)
|
2016-12-01 02:18:14 +03:00
|
|
|
// Return true if this rule is known to be a cycle collection leaf, in the
|
|
|
|
// sense that it doesn't have any outgoing owning edges.
|
|
|
|
virtual bool IsCCLeaf() const MOZ_MUST_OVERRIDE;
|
|
|
|
|
2015-11-05 11:44:10 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const = 0;
|
|
|
|
#endif
|
|
|
|
|
2011-04-08 05:23:46 +04:00
|
|
|
// The constants in this list must maintain the following invariants:
|
|
|
|
// If a rule of type N must appear before a rule of type M in stylesheets
|
|
|
|
// then N < M
|
2014-06-20 14:32:49 +04:00
|
|
|
// Note that CSSStyleSheet::RebuildChildList assumes that no other kinds of
|
2011-04-08 05:23:46 +04:00
|
|
|
// rules can come between two rules of type IMPORT_RULE.
|
|
|
|
enum {
|
|
|
|
UNKNOWN_RULE = 0,
|
|
|
|
CHARSET_RULE,
|
|
|
|
IMPORT_RULE,
|
|
|
|
NAMESPACE_RULE,
|
|
|
|
STYLE_RULE,
|
|
|
|
MEDIA_RULE,
|
|
|
|
FONT_FACE_RULE,
|
|
|
|
PAGE_RULE,
|
|
|
|
KEYFRAME_RULE,
|
|
|
|
KEYFRAMES_RULE,
|
2012-08-02 04:32:12 +04:00
|
|
|
DOCUMENT_RULE,
|
2013-05-20 06:59:20 +04:00
|
|
|
SUPPORTS_RULE,
|
2014-06-12 05:10:00 +04:00
|
|
|
FONT_FEATURE_VALUES_RULE,
|
|
|
|
COUNTER_STYLE_RULE
|
2011-04-08 05:23:46 +04:00
|
|
|
};
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual int32_t GetType() const = 0;
|
2011-04-08 05:23:46 +04:00
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
StyleSheet* GetStyleSheet() const { return mSheet; }
|
2011-04-08 07:51:25 +04:00
|
|
|
|
2012-08-06 06:14:52 +04:00
|
|
|
// Return the document the rule lives in, if any
|
|
|
|
nsIDocument* GetDocument() const
|
|
|
|
{
|
2016-11-23 02:26:20 +03:00
|
|
|
StyleSheet* sheet = GetStyleSheet();
|
2012-08-06 06:14:52 +04:00
|
|
|
return sheet ? sheet->GetDocument() : nullptr;
|
|
|
|
}
|
|
|
|
|
2016-11-23 02:26:20 +03:00
|
|
|
virtual void SetStyleSheet(StyleSheet* aSheet);
|
2011-04-08 07:51:25 +04:00
|
|
|
|
|
|
|
void SetParentRule(GroupRule* aRule) {
|
|
|
|
// We don't reference count this up reference. The group rule
|
|
|
|
// will tell us when it's going away or when we're detached from
|
|
|
|
// it.
|
|
|
|
mParentRule = aRule;
|
|
|
|
}
|
1999-06-10 09:32:38 +04:00
|
|
|
|
2014-07-15 02:57:02 +04:00
|
|
|
uint32_t GetLineNumber() const { return mLineNumber; }
|
|
|
|
uint32_t GetColumnNumber() const { return mColumnNumber; }
|
|
|
|
|
2011-04-08 05:23:46 +04:00
|
|
|
/**
|
2013-10-08 22:47:21 +04:00
|
|
|
* Clones |this|. Never returns nullptr.
|
2011-04-08 05:23:46 +04:00
|
|
|
*/
|
|
|
|
virtual already_AddRefed<Rule> Clone() const = 0;
|
|
|
|
|
2017-01-20 21:30:32 +03:00
|
|
|
// Note that this returns null for inline style rules since they aren't
|
|
|
|
// supposed to have a DOM rule representation (and our code wouldn't work).
|
|
|
|
virtual nsIDOMCSSRule* GetDOMRule() = 0;
|
|
|
|
|
2017-01-20 21:30:37 +03:00
|
|
|
// to implement methods on nsIDOMCSSRule
|
2017-01-20 21:30:41 +03:00
|
|
|
nsresult GetParentRule(nsIDOMCSSRule** aParentRule);
|
|
|
|
nsresult GetParentStyleSheet(nsIDOMCSSStyleSheet** aSheet);
|
|
|
|
Rule* GetCSSRule();
|
2017-01-20 21:30:37 +03:00
|
|
|
|
2012-01-03 06:19:14 +04:00
|
|
|
// This is pure virtual because all of Rule's data members are non-owning and
|
|
|
|
// thus measured elsewhere.
|
2013-06-23 16:03:39 +04:00
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf)
|
2013-03-24 06:14:43 +04:00
|
|
|
const MOZ_MUST_OVERRIDE = 0;
|
2012-01-03 06:19:14 +04:00
|
|
|
|
1999-06-10 09:32:38 +04:00
|
|
|
protected:
|
2016-12-01 02:18:14 +03:00
|
|
|
// True if we're known-live for cycle collection purposes.
|
|
|
|
bool IsKnownLive() const;
|
|
|
|
|
2015-11-09 10:57:16 +03:00
|
|
|
// This is sometimes null (e.g., for style attributes).
|
2016-11-23 02:26:20 +03:00
|
|
|
StyleSheet* mSheet;
|
2015-05-22 08:00:00 +03:00
|
|
|
// When the parent GroupRule is destroyed, it will call SetParentRule(nullptr)
|
|
|
|
// on this object. (Through SetParentRuleReference);
|
|
|
|
GroupRule* MOZ_NON_OWNING_REF mParentRule;
|
2014-07-15 02:57:02 +04:00
|
|
|
|
|
|
|
// Keep the same type so that MSVC packs them.
|
|
|
|
uint32_t mLineNumber;
|
2015-11-05 11:44:10 +03:00
|
|
|
uint32_t mColumnNumber;
|
1999-06-10 09:32:38 +04:00
|
|
|
};
|
|
|
|
|
2011-03-07 06:59:03 +03:00
|
|
|
} // namespace css
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_css_Rule_h___ */
|