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