2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 05:47:31 +00:00
|
|
|
|
|
|
|
/* atom list for CSS pseudo-classes */
|
|
|
|
|
2002-11-17 15:37:56 +00:00
|
|
|
#ifndef nsCSSPseudoClasses_h___
|
|
|
|
#define nsCSSPseudoClasses_h___
|
|
|
|
|
|
|
|
#include "nsIAtom.h"
|
1998-12-11 02:51:05 +00:00
|
|
|
|
2002-11-17 15:37:56 +00:00
|
|
|
class nsCSSPseudoClasses {
|
|
|
|
public:
|
1998-12-11 02:51:05 +00:00
|
|
|
|
2002-11-17 15:37:56 +00:00
|
|
|
static void AddRefAtoms();
|
1998-12-11 02:51:05 +00:00
|
|
|
|
2009-12-11 07:37:41 +00:00
|
|
|
enum Type {
|
2012-12-25 03:35:34 +00:00
|
|
|
#define CSS_PSEUDO_CLASS(_name, _value, _pref) \
|
2009-12-11 07:37:41 +00:00
|
|
|
ePseudoClass_##_name,
|
|
|
|
#include "nsCSSPseudoClassList.h"
|
|
|
|
#undef CSS_PSEUDO_CLASS
|
|
|
|
ePseudoClass_Count,
|
2009-12-11 07:37:41 +00:00
|
|
|
ePseudoClass_NotPseudoClass /* This value MUST be last! SelectorMatches
|
|
|
|
depends on it. */
|
2009-12-11 07:37:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static Type GetPseudoType(nsIAtom* aAtom);
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool HasStringArg(Type aType);
|
|
|
|
static bool HasNthPairArg(Type aType);
|
|
|
|
static bool HasSelectorListArg(Type aType) {
|
2011-03-23 13:52:24 +00:00
|
|
|
return aType == ePseudoClass_any;
|
|
|
|
}
|
2011-03-23 13:52:25 +00:00
|
|
|
|
|
|
|
// Should only be used on types other than Count and NotPseudoClass
|
|
|
|
static void PseudoTypeToString(Type aType, nsAString& aString);
|
2002-11-17 15:37:56 +00:00
|
|
|
};
|
1998-12-11 02:51:05 +00:00
|
|
|
|
2002-11-17 15:37:56 +00:00
|
|
|
#endif /* nsCSSPseudoClasses_h___ */
|