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
|
|
|
|
|
|
|
/* atom list for CSS anonymous boxes */
|
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
#ifndef nsCSSAnonBoxes_h___
|
|
|
|
#define nsCSSAnonBoxes_h___
|
|
|
|
|
|
|
|
#include "nsIAtom.h"
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
// Empty class derived from nsIAtom so that function signatures can
|
|
|
|
// require an atom from this atom list.
|
|
|
|
class nsICSSAnonBoxPseudo : public nsIAtom {};
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
class nsCSSAnonBoxes {
|
|
|
|
public:
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
static void AddRefAtoms();
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool IsAnonBox(nsIAtom *aAtom);
|
2009-10-08 07:22:42 +04:00
|
|
|
#ifdef MOZ_XUL
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool IsTreePseudoElement(nsIAtom* aPseudo);
|
2009-10-08 07:22:42 +04:00
|
|
|
#endif
|
2016-04-22 02:18:41 +03:00
|
|
|
static bool IsNonElement(nsIAtom* aPseudo)
|
2017-03-08 08:18:32 +03:00
|
|
|
{
|
|
|
|
return aPseudo == mozText || aPseudo == oofPlaceholder ||
|
|
|
|
aPseudo == firstLetterContinuation;
|
|
|
|
}
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2017-07-05 09:21:10 +03:00
|
|
|
#define CSS_ANON_BOX(_name, _value) static nsICSSAnonBoxPseudo* _name;
|
2002-11-17 18:37:56 +03:00
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_ANON_BOX
|
2017-03-08 08:18:39 +03:00
|
|
|
|
|
|
|
typedef uint8_t NonInheritingBase;
|
|
|
|
enum class NonInheriting : NonInheritingBase {
|
2017-07-05 09:21:10 +03:00
|
|
|
#define CSS_ANON_BOX(_name, _value) /* nothing */
|
2017-03-08 08:18:39 +03:00
|
|
|
#define CSS_NON_INHERITING_ANON_BOX(_name, _value) _name,
|
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_NON_INHERITING_ANON_BOX
|
|
|
|
#undef CSS_ANON_BOX
|
|
|
|
_Count
|
|
|
|
};
|
|
|
|
|
|
|
|
// Be careful using this: if we have a lot of non-inheriting anon box types it
|
|
|
|
// might not be very fast. We may want to think of ways to handle that
|
|
|
|
// (e.g. by moving to an enum instead of an atom, like we did for
|
|
|
|
// pseudo-elements, or by adding a new value of the pseudo-element enum for
|
|
|
|
// non-inheriting anon boxes or something).
|
|
|
|
static bool IsNonInheritingAnonBox(nsIAtom* aPseudo)
|
|
|
|
{
|
|
|
|
return
|
2017-07-05 09:21:10 +03:00
|
|
|
#define CSS_ANON_BOX(_name, _value) /* nothing */
|
2017-03-08 08:18:39 +03:00
|
|
|
#define CSS_NON_INHERITING_ANON_BOX(_name, _value) _name == aPseudo ||
|
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_NON_INHERITING_ANON_BOX
|
|
|
|
#undef CSS_ANON_BOX
|
2017-03-09 07:39:47 +03:00
|
|
|
false;
|
2017-03-08 08:18:39 +03:00
|
|
|
}
|
|
|
|
|
2017-08-05 00:34:18 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
// NOTE(emilio): DEBUG only because this does a pretty slow linear search. Try
|
|
|
|
// to use IsNonInheritingAnonBox if you know the atom is an anon box already
|
2017-08-11 07:07:12 +03:00
|
|
|
// or, even better, nothing like this. Note that this function returns true
|
|
|
|
// for wrapper anon boxes as well, since they're all inheriting.
|
2017-08-05 00:34:18 +03:00
|
|
|
static bool IsInheritingAnonBox(nsIAtom* aPseudo)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#define CSS_ANON_BOX(_name, _value) _name == aPseudo ||
|
|
|
|
#define CSS_NON_INHERITING_ANON_BOX(_name, _value) /* nothing */
|
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_NON_INHERITING_ANON_BOX
|
|
|
|
#undef CSS_ANON_BOX
|
|
|
|
false;
|
|
|
|
}
|
2017-08-11 07:07:12 +03:00
|
|
|
#endif // DEBUG
|
|
|
|
|
|
|
|
// This function is rather slow; you probably don't want to use it outside
|
|
|
|
// asserts unless you have to.
|
|
|
|
static bool IsWrapperAnonBox(nsIAtom* aPseudo) {
|
|
|
|
// We commonly get null passed here, and want to quickly return false for
|
|
|
|
// it.
|
|
|
|
return aPseudo &&
|
|
|
|
(
|
|
|
|
#define CSS_ANON_BOX(_name, _value) /* nothing */
|
|
|
|
#define CSS_WRAPPER_ANON_BOX(_name, _value) _name == aPseudo ||
|
|
|
|
#define CSS_NON_INHERITING_ANON_BOX(_name, _value) /* nothing */
|
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_NON_INHERITING_ANON_BOX
|
|
|
|
#undef CSS_WRAPPER_ANON_BOX
|
|
|
|
#undef CSS_ANON_BOX
|
|
|
|
false);
|
|
|
|
}
|
2017-08-05 00:34:18 +03:00
|
|
|
|
2017-03-09 07:39:47 +03:00
|
|
|
// Get the NonInheriting type for a given pseudo tag. The pseudo tag must
|
|
|
|
// test true for IsNonInheritingAnonBox.
|
|
|
|
static NonInheriting NonInheritingTypeForPseudoTag(nsIAtom* aPseudo);
|
|
|
|
|
2017-03-08 08:18:39 +03:00
|
|
|
// Get the atom for a given non-inheriting anon box type. aBoxType must be <
|
|
|
|
// NonInheriting::_Count.
|
|
|
|
static nsIAtom* GetNonInheritingPseudoAtom(NonInheriting aBoxType);
|
2002-11-17 18:37:56 +03:00
|
|
|
};
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
#endif /* nsCSSAnonBoxes_h___ */
|