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