1998-12-02 03:29:29 +03: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 08:30:17 +03:00
|
|
|
// Alphabetical list of media type atoms
|
1998-12-02 03:29:29 +03: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 08:30:17 +03:00
|
|
|
|
1998-12-11 05:31:51 +03:00
|
|
|
// Alphabetical list of standard name space prefixes
|
|
|
|
static nsIAtom* htmlNameSpace;
|
|
|
|
static nsIAtom* xmlNameSpace;
|
1998-12-21 08:56:51 +03:00
|
|
|
static nsIAtom* xmlnsNameSpace;
|
1998-12-11 05:31:51 +03:00
|
|
|
|
1998-12-09 08:30:17 +03:00
|
|
|
// Alphabetical list of frame additional child list names
|
|
|
|
static nsIAtom* absoluteList;
|
1998-12-11 05:31:51 +03:00
|
|
|
static nsIAtom* bulletList;
|
1998-12-09 08:30:17 +03:00
|
|
|
static nsIAtom* colGroupList;
|
1999-01-27 06:48:39 +03:00
|
|
|
static nsIAtom* fixedList;
|
1998-12-09 08:30:17 +03:00
|
|
|
static nsIAtom* floaterList;
|
1999-01-23 01:48:00 +03:00
|
|
|
|
|
|
|
// Alphabetical list of pseudo tag names for non-element content
|
|
|
|
static nsIAtom* commentTagName;
|
1999-02-11 09:39:07 +03:00
|
|
|
static nsIAtom* textTagName;
|
1999-04-01 00:49:25 +04:00
|
|
|
static nsIAtom* processingInstructionTagName;
|
1999-02-11 09:39:07 +03:00
|
|
|
static nsIAtom* viewportPseudo;
|
1999-02-19 03:53:09 +03:00
|
|
|
static nsIAtom* pagePseudo;
|
1999-02-14 06:47:33 +03:00
|
|
|
|
|
|
|
// Alphabetical list of frame types
|
|
|
|
static nsIAtom* areaFrame;
|
|
|
|
static nsIAtom* pageFrame;
|
|
|
|
static nsIAtom* rootFrame;
|
|
|
|
static nsIAtom* scrollFrame;
|
1999-02-24 08:54:31 +03:00
|
|
|
static nsIAtom* tableOuterFrame;
|
|
|
|
static nsIAtom* tableFrame;
|
|
|
|
static nsIAtom* tableRowGroupFrame;
|
|
|
|
static nsIAtom* tableRowFrame;
|
|
|
|
static nsIAtom* tableCellFrame;
|
1999-02-24 08:33:40 +03:00
|
|
|
static nsIAtom* textFrame;
|
1999-02-14 06:47:33 +03:00
|
|
|
static nsIAtom* viewportFrame;
|
1998-12-02 03:29:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsLayoutAtoms_h___ */
|