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
|
|
|
|
|
|
|
/* atom list for CSS pseudo-classes */
|
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
#ifndef nsCSSPseudoClasses_h___
|
|
|
|
#define nsCSSPseudoClasses_h___
|
|
|
|
|
2013-09-16 05:06:52 +04:00
|
|
|
#include "nsStringFwd.h"
|
2013-03-03 04:31:48 +04:00
|
|
|
|
2016-04-01 03:08:15 +03:00
|
|
|
// This pseudo-class is accepted only in UA style sheets.
|
2014-10-23 20:57:28 +04:00
|
|
|
#define CSS_PSEUDO_CLASS_UA_SHEET_ONLY (1<<0)
|
2016-04-01 03:08:15 +03:00
|
|
|
// This pseudo-class is accepted only in UA style sheets and chrome.
|
|
|
|
#define CSS_PSEUDO_CLASS_UA_SHEET_AND_CHROME (1<<1)
|
2014-10-23 20:57:28 +04:00
|
|
|
|
2013-03-03 04:31:48 +04:00
|
|
|
class nsIAtom;
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2016-04-22 15:40:45 +03:00
|
|
|
namespace mozilla {
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2016-04-22 15:40:45 +03:00
|
|
|
// 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
|
|
|
|
{
|
2014-10-23 20:57:27 +04:00
|
|
|
#define CSS_PSEUDO_CLASS(_name, _value, _flags, _pref) \
|
2016-04-22 15:40:45 +03:00
|
|
|
_name,
|
2009-12-11 10:37:41 +03:00
|
|
|
#include "nsCSSPseudoClassList.h"
|
|
|
|
#undef CSS_PSEUDO_CLASS
|
2016-04-22 15:40:45 +03:00
|
|
|
Count,
|
|
|
|
NotPseudo // This value MUST be last! SelectorMatches depends on it.
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
class nsCSSPseudoClasses
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// TODO: Move to private in later patch
|
|
|
|
typedef mozilla::CSSPseudoClassType Type;
|
|
|
|
|
|
|
|
static void AddRefAtoms();
|
2009-12-11 10:37:41 +03:00
|
|
|
|
|
|
|
static Type GetPseudoType(nsIAtom* aAtom);
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool HasStringArg(Type aType);
|
|
|
|
static bool HasNthPairArg(Type aType);
|
|
|
|
static bool HasSelectorListArg(Type aType) {
|
2016-04-22 15:40:45 +03:00
|
|
|
return aType == Type::any;
|
2011-03-23 16:52:24 +03:00
|
|
|
}
|
2013-11-28 10:46:38 +04:00
|
|
|
static bool IsUserActionPseudoClass(Type aType);
|
2011-03-23 16:52:25 +03:00
|
|
|
|
2014-10-23 20:57:28 +04:00
|
|
|
static bool PseudoClassIsUASheetOnly(Type aType) {
|
|
|
|
return PseudoClassHasFlags(aType, CSS_PSEUDO_CLASS_UA_SHEET_ONLY);
|
|
|
|
}
|
2016-04-01 03:08:15 +03:00
|
|
|
static bool PseudoClassIsUASheetAndChromeOnly(Type aType) {
|
|
|
|
return PseudoClassHasFlags(aType, CSS_PSEUDO_CLASS_UA_SHEET_AND_CHROME);
|
|
|
|
}
|
2014-10-23 20:57:28 +04:00
|
|
|
|
2011-03-23 16:52:25 +03:00
|
|
|
// Should only be used on types other than Count and NotPseudoClass
|
|
|
|
static void PseudoTypeToString(Type aType, nsAString& aString);
|
2014-10-23 20:57:27 +04:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
};
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
#endif /* nsCSSPseudoClasses_h___ */
|