2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2002-11-17 15:37:56 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-12-11 02:51:05 +00:00
|
|
|
*
|
2002-11-17 15:37:56 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1998-12-11 02:51:05 +00:00
|
|
|
*
|
2001-09-25 01:32:19 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1998-12-11 02:51:05 +00:00
|
|
|
*
|
2002-11-17 15:37:56 +00:00
|
|
|
* The Original Code is atom lists for CSS pseudos.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-25 01:32:19 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-25 01:32:19 +00:00
|
|
|
* Contributor(s):
|
2003-01-01 23:53:20 +00:00
|
|
|
* L. David Baron <dbaron@dbaron.org>
|
2001-09-25 01:32:19 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2002-11-17 15:37:56 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-25 01:32:19 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2002-11-17 15:37:56 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-25 01:32:19 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
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
|
|
|
// Empty class derived from nsIAtom so that function signatures can
|
|
|
|
// require an atom from this atom list.
|
|
|
|
class nsICSSPseudoClass : public nsIAtom {};
|
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
|
|
|
|
2002-11-17 15:37:56 +00:00
|
|
|
static PRBool IsPseudoClass(nsIAtom *aAtom);
|
2008-06-03 03:17:35 +00:00
|
|
|
static PRBool HasStringArg(nsIAtom* aAtom);
|
|
|
|
static PRBool HasNthPairArg(nsIAtom* aAtom);
|
1998-12-11 02:51:05 +00:00
|
|
|
|
2002-11-17 15:37:56 +00:00
|
|
|
#define CSS_PSEUDO_CLASS(_name, _value) static nsICSSPseudoClass* _name;
|
|
|
|
#include "nsCSSPseudoClassList.h"
|
|
|
|
#undef CSS_PSEUDO_CLASS
|
|
|
|
};
|
1998-12-11 02:51:05 +00:00
|
|
|
|
2002-11-17 15:37:56 +00:00
|
|
|
#endif /* nsCSSPseudoClasses_h___ */
|