2003-06-07 22:14:42 +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-30 06:20:34 +00:00
|
|
|
|
|
|
|
/* enum types for CSS properties and their values */
|
|
|
|
|
2003-06-07 22:14:42 +00:00
|
|
|
#ifndef nsCSSProperty_h___
|
|
|
|
#define nsCSSProperty_h___
|
|
|
|
|
|
|
|
/*
|
|
|
|
Declare the enum list using the magic of preprocessing
|
|
|
|
enum values are "eCSSProperty_foo" (where foo is the property)
|
|
|
|
|
|
|
|
To change the list of properties, see nsCSSPropList.h
|
|
|
|
|
|
|
|
*/
|
|
|
|
enum nsCSSProperty {
|
|
|
|
eCSSProperty_UNKNOWN = -1,
|
|
|
|
|
2012-05-10 01:29:37 +00:00
|
|
|
#define CSS_PROP(name_, id_, method_, flags_, pref_, parsevariant_, \
|
|
|
|
kwtable_, stylestruct_, stylestructoffset_, animtype_) \
|
2009-09-11 10:46:36 +00:00
|
|
|
eCSSProperty_##id_,
|
2003-06-07 22:14:42 +00:00
|
|
|
#include "nsCSSPropList.h"
|
|
|
|
#undef CSS_PROP
|
|
|
|
|
|
|
|
eCSSProperty_COUNT_no_shorthands,
|
|
|
|
// Make the count continue where it left off:
|
|
|
|
eCSSProperty_COUNT_DUMMY = eCSSProperty_COUNT_no_shorthands - 1,
|
|
|
|
|
2012-05-10 01:29:37 +00:00
|
|
|
#define CSS_PROP_SHORTHAND(name_, id_, method_, flags_, pref_) \
|
|
|
|
eCSSProperty_##id_,
|
2003-06-07 22:14:42 +00:00
|
|
|
#include "nsCSSPropList.h"
|
|
|
|
#undef CSS_PROP_SHORTHAND
|
|
|
|
|
2009-01-23 01:28:13 +00:00
|
|
|
eCSSProperty_COUNT,
|
2013-03-13 16:58:39 +00:00
|
|
|
// Make the count continue where it left off:
|
|
|
|
eCSSProperty_COUNT_DUMMY2 = eCSSProperty_COUNT - 1,
|
|
|
|
|
|
|
|
#define CSS_PROP_ALIAS(aliasname_, id_, method_, pref_) \
|
|
|
|
eCSSPropertyAlias_##method_,
|
|
|
|
#include "nsCSSPropAliasList.h"
|
|
|
|
#undef CSS_PROP_ALIAS
|
|
|
|
|
|
|
|
eCSSProperty_COUNT_with_aliases,
|
|
|
|
// Make the count continue where it left off:
|
|
|
|
eCSSProperty_COUNT_DUMMY3 = eCSSProperty_COUNT_with_aliases - 1,
|
2009-01-23 01:28:13 +00:00
|
|
|
|
2013-03-13 16:58:39 +00:00
|
|
|
// Some of the values below could probably overlap with each other
|
|
|
|
// if we had a need for them to do so.
|
2009-08-20 21:52:47 +00:00
|
|
|
|
|
|
|
// Extra values for use in the values of the 'transition-property'
|
|
|
|
// property.
|
|
|
|
eCSSPropertyExtra_no_properties,
|
|
|
|
eCSSPropertyExtra_all_properties,
|
|
|
|
|
2009-01-23 01:28:13 +00:00
|
|
|
// Extra dummy values for nsCSSParser internal use.
|
2011-08-23 04:18:22 +00:00
|
|
|
eCSSPropertyExtra_x_none_value,
|
|
|
|
eCSSPropertyExtra_x_auto_value
|
2003-06-07 22:14:42 +00:00
|
|
|
};
|
|
|
|
|
2008-08-07 23:15:40 +00:00
|
|
|
// The "descriptors" that can appear in a @font-face rule.
|
|
|
|
// They have the syntax of properties but different value rules.
|
|
|
|
enum nsCSSFontDesc {
|
|
|
|
eCSSFontDesc_UNKNOWN = -1,
|
2011-12-20 16:49:16 +00:00
|
|
|
#define CSS_FONT_DESC(name_, method_) eCSSFontDesc_##method_,
|
|
|
|
#include "nsCSSFontDescList.h"
|
|
|
|
#undef CSS_FONT_DESC
|
2008-08-07 23:15:40 +00:00
|
|
|
eCSSFontDesc_COUNT
|
|
|
|
};
|
|
|
|
|
2003-06-07 22:14:42 +00:00
|
|
|
#endif /* nsCSSProperty_h___ */
|