2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
// vim:cindent:tabstop=2:expandtab:shiftwidth=2:
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* style rule processor for CSS style sheets, responsible for selector
|
|
|
|
* matching and cascading
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsCSSRuleProcessor_h_
|
|
|
|
#define nsCSSRuleProcessor_h_
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIStyleRuleProcessor.h"
|
|
|
|
#include "nsCSSStyleSheet.h"
|
2008-11-25 15:22:38 -08:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2009-08-01 08:53:40 -07:00
|
|
|
#include "nsCSSRules.h"
|
2011-03-29 10:29:21 -07:00
|
|
|
#include "nsRuleWalker.h"
|
2011-12-05 20:58:15 -08:00
|
|
|
#include "nsEventStates.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-05-11 13:41:47 -07:00
|
|
|
struct CascadeEnumData;
|
2011-12-22 02:50:56 -08:00
|
|
|
struct nsCSSSelector;
|
|
|
|
struct nsCSSSelectorList;
|
|
|
|
struct RuleCascadeData;
|
2011-03-29 10:29:21 -07:00
|
|
|
struct TreeMatchContext;
|
2011-04-11 23:18:43 -07:00
|
|
|
class nsCSSKeyframesRule;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The CSS style rule processor provides a mechanism for sibling style
|
|
|
|
* sheets to combine their rule processing in order to allow proper
|
|
|
|
* cascading to happen.
|
|
|
|
*
|
|
|
|
* CSS style rule processors keep a live reference on all style sheets
|
|
|
|
* bound to them. The CSS style sheets keep a weak reference to all the
|
|
|
|
* processors that they are bound to (many to many). The CSS style sheet
|
|
|
|
* is told when the rule processor is going away (via DropRuleProcessor).
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsCSSRuleProcessor: public nsIStyleRuleProcessor {
|
|
|
|
public:
|
2010-05-11 13:41:47 -07:00
|
|
|
typedef nsTArray<nsRefPtr<nsCSSStyleSheet> > sheet_array_type;
|
|
|
|
|
2013-01-08 15:25:47 -08:00
|
|
|
// aScopeElement must be non-null iff aSheetType is
|
|
|
|
// nsStyleSet::eScopedDocSheet.
|
|
|
|
nsCSSRuleProcessor(const sheet_array_type& aSheets,
|
|
|
|
uint8_t aSheetType,
|
|
|
|
mozilla::dom::Element* aScopeElement);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsCSSRuleProcessor();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsresult ClearRuleCascades();
|
|
|
|
|
2010-04-07 10:29:10 -07:00
|
|
|
static nsresult Startup();
|
|
|
|
static void Shutdown();
|
2008-08-05 13:02:43 -07:00
|
|
|
static void FreeSystemMetrics();
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool HasSystemMetric(nsIAtom* aMetric);
|
2007-11-19 12:08:20 -08:00
|
|
|
|
2008-07-21 17:55:52 -07:00
|
|
|
/*
|
2011-03-29 10:29:20 -07:00
|
|
|
* Returns true if the given aElement matches one of the
|
2008-07-21 17:55:52 -07:00
|
|
|
* selectors in aSelectorList. Note that this method will assume
|
2011-03-29 10:29:21 -07:00
|
|
|
* the given aElement is not a relevant link. aSelectorList must not
|
2009-12-10 23:37:41 -08:00
|
|
|
* include any pseudo-element selectors. aSelectorList is allowed
|
2011-10-17 07:59:28 -07:00
|
|
|
* to be null; in this case false will be returned.
|
2008-07-21 17:55:52 -07:00
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool SelectorListMatches(mozilla::dom::Element* aElement,
|
2011-03-29 10:29:21 -07:00
|
|
|
TreeMatchContext& aTreeMatchContext,
|
2008-07-21 17:55:52 -07:00
|
|
|
nsCSSSelectorList* aSelectorList);
|
|
|
|
|
2011-03-29 10:29:21 -07:00
|
|
|
/*
|
|
|
|
* Helper to get the content state for a content node. This may be
|
|
|
|
* slightly adjusted from IntrinsicState().
|
|
|
|
*/
|
2012-03-29 23:16:22 -07:00
|
|
|
static nsEventStates GetContentState(mozilla::dom::Element* aElement,
|
|
|
|
const TreeMatchContext& aTreeMatchContext);
|
2011-03-29 10:29:21 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper to get the content state for :visited handling for an element
|
|
|
|
*/
|
|
|
|
static nsEventStates GetContentStateForVisitedHandling(
|
|
|
|
mozilla::dom::Element* aElement,
|
2012-03-29 23:16:22 -07:00
|
|
|
const TreeMatchContext& aTreeMatchContext,
|
2011-03-29 10:29:21 -07:00
|
|
|
nsRuleWalker::VisitedHandlingType aVisitedHandling,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIsRelevantLink);
|
2011-03-29 10:29:21 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper to test whether a node is a link
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool IsLink(mozilla::dom::Element* aElement);
|
2011-03-29 10:29:21 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIStyleRuleProcessor
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual void RulesMatching(ElementRuleProcessorData* aData) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual void RulesMatching(PseudoElementRuleProcessorData* aData) MOZ_OVERRIDE;
|
2009-12-10 23:37:40 -08:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual void RulesMatching(AnonBoxRuleProcessorData* aData) MOZ_OVERRIDE;
|
2009-12-10 23:37:40 -08:00
|
|
|
|
2009-12-10 23:37:40 -08:00
|
|
|
#ifdef MOZ_XUL
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual void RulesMatching(XULTreeRuleProcessorData* aData) MOZ_OVERRIDE;
|
2009-12-10 23:37:40 -08:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual nsRestyleHint HasStateDependentStyle(StateRuleProcessorData* aData) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual bool HasDocumentStateDependentStyle(StateRuleProcessorData* aData) MOZ_OVERRIDE;
|
2010-03-17 10:10:57 -07:00
|
|
|
|
2010-03-31 17:43:32 -07:00
|
|
|
virtual nsRestyleHint
|
2012-09-14 09:10:08 -07:00
|
|
|
HasAttributeDependentStyle(AttributeRuleProcessorData* aData) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual bool MediumFeaturesChanged(nsPresContext* aPresContext) MOZ_OVERRIDE;
|
2008-07-26 09:14:48 -07:00
|
|
|
|
2013-03-23 19:14:43 -07:00
|
|
|
virtual size_t SizeOfExcludingThis(nsMallocSizeOfFun mallocSizeOf)
|
|
|
|
const MOZ_MUST_OVERRIDE MOZ_OVERRIDE;
|
|
|
|
virtual size_t SizeOfIncludingThis(nsMallocSizeOfFun mallocSizeOf)
|
|
|
|
const MOZ_MUST_OVERRIDE MOZ_OVERRIDE;
|
2011-08-01 11:25:20 -07:00
|
|
|
|
2008-11-25 15:22:38 -08:00
|
|
|
// Append all the currently-active font face rules to aArray. Return
|
|
|
|
// true for success and false for failure.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AppendFontFaceRules(nsPresContext* aPresContext,
|
2011-12-08 21:01:52 -08:00
|
|
|
nsTArray<nsFontFaceRuleContainer>& aArray);
|
2008-11-25 15:22:38 -08:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AppendKeyframesRules(nsPresContext* aPresContext,
|
2011-12-08 21:01:52 -08:00
|
|
|
nsTArray<nsCSSKeyframesRule*>& aArray);
|
2011-04-11 23:18:43 -07:00
|
|
|
|
2012-08-31 14:21:28 -07:00
|
|
|
bool AppendPageRules(nsPresContext* aPresContext,
|
|
|
|
nsTArray<nsCSSPageRule*>& aArray);
|
|
|
|
|
2013-01-08 15:25:47 -08:00
|
|
|
/**
|
|
|
|
* Returns the scope element for the scoped style sheets this rule
|
|
|
|
* processor is for. If this is not a rule processor for scoped style
|
|
|
|
* sheets, it returns null.
|
|
|
|
*/
|
|
|
|
mozilla::dom::Element* GetScopeElement() const { return mScopeElement; }
|
|
|
|
|
2008-08-06 10:42:56 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
void AssertQuirksChangeOK() {
|
2008-11-25 13:27:54 -08:00
|
|
|
NS_ASSERTION(!mRuleCascades, "can't toggle quirks style sheet without "
|
|
|
|
"clearing rule cascades");
|
2008-08-06 10:42:56 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-09 13:53:45 -07:00
|
|
|
#ifdef XP_WIN
|
|
|
|
// Cached theme identifier for the moz-windows-theme media query.
|
2012-08-22 08:56:38 -07:00
|
|
|
static uint8_t GetWindowsThemeIdentifier();
|
|
|
|
static void SetWindowsThemeIdentifier(uint8_t aId) {
|
2010-10-09 13:53:45 -07:00
|
|
|
sWinThemeId = aId;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-12-05 20:58:15 -08:00
|
|
|
struct StateSelector {
|
|
|
|
StateSelector(nsEventStates aStates, nsCSSSelector* aSelector)
|
|
|
|
: mStates(aStates),
|
|
|
|
mSelector(aSelector)
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsEventStates mStates;
|
|
|
|
nsCSSSelector* mSelector;
|
|
|
|
};
|
|
|
|
|
2008-10-07 15:10:19 -07:00
|
|
|
private:
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool CascadeSheet(nsCSSStyleSheet* aSheet, CascadeEnumData* aData);
|
2008-10-07 15:10:19 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
RuleCascadeData* GetRuleCascade(nsPresContext* aPresContext);
|
2008-07-26 09:14:48 -07:00
|
|
|
void RefreshRuleCascade(nsPresContext* aPresContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// The sheet order here is the same as in nsStyleSet::mSheets
|
2010-05-11 13:41:47 -07:00
|
|
|
sheet_array_type mSheets;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-07-26 09:14:48 -07:00
|
|
|
// active first, then cached (most recent first)
|
2007-03-22 10:30:00 -07:00
|
|
|
RuleCascadeData* mRuleCascades;
|
2008-07-26 09:14:48 -07:00
|
|
|
|
|
|
|
// The last pres context for which GetRuleCascades was called.
|
|
|
|
nsPresContext *mLastPresContext;
|
2013-01-08 15:25:47 -08:00
|
|
|
|
|
|
|
// The scope element for this rule processor's scoped style sheets.
|
|
|
|
// Only used if mSheetType == nsStyleSet::eScopedDocSheet.
|
|
|
|
nsRefPtr<mozilla::dom::Element> mScopeElement;
|
|
|
|
|
2008-11-26 19:50:16 -08:00
|
|
|
// type of stylesheet using this processor
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t mSheetType; // == nsStyleSet::sheetType
|
2010-10-09 13:53:45 -07:00
|
|
|
|
|
|
|
#ifdef XP_WIN
|
2012-08-22 08:56:38 -07:00
|
|
|
static uint8_t sWinThemeId;
|
2010-10-09 13:53:45 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsCSSRuleProcessor_h_ */
|