Just like CSSPseudoElementType, which uses a special type to represent the maximum length. We can replace "CSSPseudoClassType::NotPseudo + 1" with "CSSPseudoClassType::MAX", which means the maximum length. MozReview-Commit-ID: 4xH0avpWPqX
74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
/* atom list for CSS pseudo-classes */
|
|
|
|
#ifndef nsCSSPseudoClasses_h___
|
|
#define nsCSSPseudoClasses_h___
|
|
|
|
#include "nsStringFwd.h"
|
|
|
|
// This pseudo-class is accepted only in UA style sheets.
|
|
#define CSS_PSEUDO_CLASS_UA_SHEET_ONLY (1<<0)
|
|
// This pseudo-class is accepted only in UA style sheets and chrome.
|
|
#define CSS_PSEUDO_CLASS_UA_SHEET_AND_CHROME (1<<1)
|
|
|
|
class nsIAtom;
|
|
|
|
namespace mozilla {
|
|
|
|
// The total count of CSSPseudoClassType is less than 256,
|
|
// so use uint8_t as its underlying type.
|
|
typedef uint8_t CSSPseudoClassTypeBase;
|
|
enum class CSSPseudoClassType : CSSPseudoClassTypeBase
|
|
{
|
|
#define CSS_PSEUDO_CLASS(_name, _value, _flags, _pref) \
|
|
_name,
|
|
#include "nsCSSPseudoClassList.h"
|
|
#undef CSS_PSEUDO_CLASS
|
|
Count,
|
|
NotPseudo, // This value MUST be second last! SelectorMatches depends on it.
|
|
MAX
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
class nsCSSPseudoClasses
|
|
{
|
|
typedef mozilla::CSSPseudoClassType Type;
|
|
|
|
public:
|
|
static void AddRefAtoms();
|
|
|
|
static Type GetPseudoType(nsIAtom* aAtom);
|
|
static bool HasStringArg(Type aType);
|
|
static bool HasNthPairArg(Type aType);
|
|
static bool HasSelectorListArg(Type aType) {
|
|
return aType == Type::any;
|
|
}
|
|
static bool IsUserActionPseudoClass(Type aType);
|
|
|
|
static bool PseudoClassIsUASheetOnly(Type aType) {
|
|
return PseudoClassHasFlags(aType, CSS_PSEUDO_CLASS_UA_SHEET_ONLY);
|
|
}
|
|
static bool PseudoClassIsUASheetAndChromeOnly(Type aType) {
|
|
return PseudoClassHasFlags(aType, CSS_PSEUDO_CLASS_UA_SHEET_AND_CHROME);
|
|
}
|
|
|
|
// Should only be used on types other than Count and NotPseudoClass
|
|
static void PseudoTypeToString(Type aType, nsAString& aString);
|
|
|
|
private:
|
|
static uint32_t FlagsForPseudoClass(const Type aType);
|
|
|
|
// Does the given pseudo-class have all of the flags given?
|
|
static bool PseudoClassHasFlags(const Type aType, uint32_t aFlags)
|
|
{
|
|
return (FlagsForPseudoClass(aType) & aFlags) == aFlags;
|
|
}
|
|
};
|
|
|
|
#endif /* nsCSSPseudoClasses_h___ */
|