1998-12-02 00:29:29 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
#ifndef nsLayoutAtoms_h___
|
|
|
|
#define nsLayoutAtoms_h___
|
|
|
|
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class wraps up the creation (and destruction) of the standard
|
|
|
|
* set of atoms used during layout processing. These objects
|
|
|
|
* are created when the first presentation context is created and they
|
|
|
|
* are destroyed when the last presentation context object is destroyed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsLayoutAtoms {
|
|
|
|
public:
|
|
|
|
|
|
|
|
static void AddrefAtoms();
|
|
|
|
static void ReleaseAtoms();
|
|
|
|
|
1998-12-09 05:30:17 +00:00
|
|
|
// Alphabetical list of media type atoms
|
1998-12-02 00:29:29 +00:00
|
|
|
static nsIAtom* all;
|
|
|
|
static nsIAtom* aural;
|
|
|
|
static nsIAtom* braille;
|
|
|
|
static nsIAtom* embossed;
|
|
|
|
static nsIAtom* handheld;
|
|
|
|
static nsIAtom* print;
|
|
|
|
static nsIAtom* projection;
|
|
|
|
static nsIAtom* screen;
|
|
|
|
static nsIAtom* tty;
|
|
|
|
static nsIAtom* tv;
|
1998-12-09 05:30:17 +00:00
|
|
|
|
1998-12-11 02:31:51 +00:00
|
|
|
// Alphabetical list of standard name space prefixes
|
|
|
|
static nsIAtom* htmlNameSpace;
|
|
|
|
static nsIAtom* xmlNameSpace;
|
1998-12-21 05:56:51 +00:00
|
|
|
static nsIAtom* xmlnsNameSpace;
|
1998-12-11 02:31:51 +00:00
|
|
|
|
1998-12-09 05:30:17 +00:00
|
|
|
// Alphabetical list of frame additional child list names
|
|
|
|
static nsIAtom* absoluteList;
|
1998-12-11 02:31:51 +00:00
|
|
|
static nsIAtom* bulletList;
|
1998-12-09 05:30:17 +00:00
|
|
|
static nsIAtom* colGroupList;
|
1999-01-27 03:48:39 +00:00
|
|
|
static nsIAtom* fixedList;
|
1998-12-09 05:30:17 +00:00
|
|
|
static nsIAtom* floaterList;
|
1999-01-22 22:48:00 +00:00
|
|
|
|
|
|
|
// Alphabetical list of pseudo tag names for non-element content
|
|
|
|
static nsIAtom* commentTagName;
|
1999-02-11 06:39:07 +00:00
|
|
|
static nsIAtom* textTagName;
|
1999-03-31 20:49:25 +00:00
|
|
|
static nsIAtom* processingInstructionTagName;
|
1999-02-11 06:39:07 +00:00
|
|
|
static nsIAtom* viewportPseudo;
|
1999-02-19 00:53:09 +00:00
|
|
|
static nsIAtom* pagePseudo;
|
1999-02-14 03:47:33 +00:00
|
|
|
|
|
|
|
// Alphabetical list of frame types
|
|
|
|
static nsIAtom* areaFrame;
|
1999-04-20 18:20:52 +00:00
|
|
|
static nsIAtom* blockFrame;
|
|
|
|
static nsIAtom* inlineFrame;
|
1999-04-27 22:07:22 +00:00
|
|
|
static nsIAtom* letterFrame;
|
|
|
|
static nsIAtom* lineFrame;
|
1999-02-14 03:47:33 +00:00
|
|
|
static nsIAtom* pageFrame;
|
1999-04-23 14:32:12 +00:00
|
|
|
static nsIAtom* placeholderFrame;
|
1999-04-20 18:27:37 +00:00
|
|
|
static nsIAtom* positionedInlineFrame;
|
1999-02-14 03:47:33 +00:00
|
|
|
static nsIAtom* rootFrame;
|
|
|
|
static nsIAtom* scrollFrame;
|
1999-02-24 05:54:31 +00:00
|
|
|
static nsIAtom* tableOuterFrame;
|
|
|
|
static nsIAtom* tableFrame;
|
|
|
|
static nsIAtom* tableRowGroupFrame;
|
|
|
|
static nsIAtom* tableRowFrame;
|
|
|
|
static nsIAtom* tableCellFrame;
|
1999-02-24 05:33:40 +00:00
|
|
|
static nsIAtom* textFrame;
|
1999-02-14 03:47:33 +00:00
|
|
|
static nsIAtom* viewportFrame;
|
1998-12-02 00:29:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsLayoutAtoms_h___ */
|