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-03-03 04:31:48 +04:00
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
class nsIAtom;
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
class nsCSSPseudoClasses {
|
|
|
|
public:
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
static void AddRefAtoms();
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2009-12-11 10:37:41 +03:00
|
|
|
enum Type {
|
2012-12-25 07:35:34 +04:00
|
|
|
#define CSS_PSEUDO_CLASS(_name, _value, _pref) \
|
2009-12-11 10:37:41 +03:00
|
|
|
ePseudoClass_##_name,
|
|
|
|
#include "nsCSSPseudoClassList.h"
|
|
|
|
#undef CSS_PSEUDO_CLASS
|
|
|
|
ePseudoClass_Count,
|
2009-12-11 10:37:41 +03:00
|
|
|
ePseudoClass_NotPseudoClass /* This value MUST be last! SelectorMatches
|
|
|
|
depends on it. */
|
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) {
|
2011-03-23 16:52:24 +03:00
|
|
|
return aType == ePseudoClass_any;
|
|
|
|
}
|
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);
|
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___ */
|