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
|
|
|
|
|
|
|
/* keywords used within CSS property values */
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#ifndef nsCSSKeywords_h___
|
|
|
|
#define nsCSSKeywords_h___
|
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
#include "nsStringFwd.h"
|
1999-07-18 00:32:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Declare the enum list using the magic of preprocessing
|
|
|
|
enum values are "eCSSKeyword_foo" (where foo is the keyword)
|
|
|
|
|
|
|
|
To change the list of keywords, see nsCSSKeywordList.h
|
|
|
|
|
|
|
|
*/
|
2000-08-22 06:57:32 +00:00
|
|
|
#define CSS_KEY(_name,_id) eCSSKeyword_##_id,
|
1999-07-18 00:32:32 +00:00
|
|
|
enum nsCSSKeyword {
|
|
|
|
eCSSKeyword_UNKNOWN = -1,
|
|
|
|
#include "nsCSSKeywordList.h"
|
|
|
|
eCSSKeyword_COUNT
|
|
|
|
};
|
|
|
|
#undef CSS_KEY
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2001-10-19 20:59:33 +00:00
|
|
|
class nsCSSKeywords {
|
1998-04-13 20:24:54 +00:00
|
|
|
public:
|
1999-07-18 00:32:32 +00:00
|
|
|
static void AddRefTable(void);
|
|
|
|
static void ReleaseTable(void);
|
|
|
|
|
|
|
|
// Given a keyword string, return the enum value
|
2001-11-27 21:13:53 +00:00
|
|
|
static nsCSSKeyword LookupKeyword(const nsACString& aKeyword);
|
|
|
|
static nsCSSKeyword LookupKeyword(const nsAString& aKeyword);
|
1999-07-18 00:32:32 +00:00
|
|
|
|
|
|
|
// Given a keyword enum, get the string value
|
2001-11-27 21:13:53 +00:00
|
|
|
static const nsAFlatCString& GetStringValue(nsCSSKeyword aKeyword);
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsCSSKeywords_h___ */
|