mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
214 lines
8.3 KiB
C
214 lines
8.3 KiB
C
/* -*- 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.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
/******
|
|
|
|
This file contains the list of all layout nsIAtoms and their values
|
|
|
|
It is designed to be used as inline input to nsLayoutAtoms.cpp *only*
|
|
through the magic of C preprocessing.
|
|
|
|
All entires must be enclosed in the macro LAYOUT_ATOM which will have cruel
|
|
and unusual things done to it
|
|
|
|
It is recommended (but not strictly necessary) to keep all entries
|
|
in alphabetical order
|
|
|
|
The first argument to LAYOUT_ATOM is the C++ identifier of the atom
|
|
The second argument is the string value of the atom
|
|
|
|
******/
|
|
|
|
|
|
// Alphabetical list of media type atoms
|
|
LAYOUT_ATOM(all, "all") // Media atoms must be lower case
|
|
LAYOUT_ATOM(aural, "aural")
|
|
LAYOUT_ATOM(braille, "braille")
|
|
LAYOUT_ATOM(embossed, "embossed")
|
|
LAYOUT_ATOM(handheld, "handheld")
|
|
LAYOUT_ATOM(print, "print")
|
|
LAYOUT_ATOM(projection, "projection")
|
|
LAYOUT_ATOM(screen, "screen")
|
|
LAYOUT_ATOM(tty, "tty")
|
|
LAYOUT_ATOM(tv, "tv")
|
|
|
|
// Alphabetical list of standard name space prefixes
|
|
LAYOUT_ATOM(htmlNameSpace, "html")
|
|
LAYOUT_ATOM(xmlNameSpace, "xml")
|
|
LAYOUT_ATOM(xmlnsNameSpace, "xmlns")
|
|
|
|
// Alphabetical list of frame additional child list names
|
|
LAYOUT_ATOM(absoluteList, "Absolute-list")
|
|
LAYOUT_ATOM(bulletList, "Bullet-list")
|
|
LAYOUT_ATOM(captionList, "Caption-list")
|
|
LAYOUT_ATOM(colGroupList, "ColGroup-list")
|
|
LAYOUT_ATOM(editorDisplayList, "EditorDisplay-List")
|
|
LAYOUT_ATOM(fixedList, "Fixed-list")
|
|
LAYOUT_ATOM(floaterList, "Floater-list")
|
|
LAYOUT_ATOM(overflowList, "Overflow-list")
|
|
LAYOUT_ATOM(popupList, "Popup-list")
|
|
|
|
// Alphabetical list of pseudo tag names for non-element content
|
|
LAYOUT_ATOM(canvasPseudo, ":canvas")
|
|
LAYOUT_ATOM(commentTagName, "__moz_comment")
|
|
LAYOUT_ATOM(dummyOptionPseudo, ":-moz-dummy-option")
|
|
LAYOUT_ATOM(optionSelectedPseudo, "_moz-option-selected")
|
|
LAYOUT_ATOM(textTagName, "__moz_text")
|
|
LAYOUT_ATOM(pagePseudo, ":-moz-page")
|
|
LAYOUT_ATOM(pageSequencePseudo, ":-moz-page-sequence")
|
|
LAYOUT_ATOM(processingInstructionTagName, "__moz_pi")
|
|
LAYOUT_ATOM(scrolledContentPseudo, ":scrolled-content")
|
|
LAYOUT_ATOM(viewportPseudo, ":viewport")
|
|
LAYOUT_ATOM(viewportScrollPseudo, ":viewport-scroll")
|
|
LAYOUT_ATOM(selectScrolledContentPseudo, ":-moz-select-scrolled-content")
|
|
|
|
// Alphabetical list of frame types
|
|
LAYOUT_ATOM(areaFrame, "AreaFrame")
|
|
LAYOUT_ATOM(blockFrame, "BlockFrame")
|
|
LAYOUT_ATOM(brFrame, "BRFrame")
|
|
LAYOUT_ATOM(bulletFrame, "BulletFrame")
|
|
LAYOUT_ATOM(gfxButtonControlFrame, "gfxButtonControlFrame")
|
|
LAYOUT_ATOM(hrFrame, "HRFrame")
|
|
LAYOUT_ATOM(htmlFrameInnerFrame, "htmlFrameInnerFrame")
|
|
LAYOUT_ATOM(htmlFrameOuterFrame, "htmlFrameOuterFrame")
|
|
LAYOUT_ATOM(imageFrame, "ImageFrame")
|
|
LAYOUT_ATOM(inlineFrame, "InlineFrame")
|
|
LAYOUT_ATOM(letterFrame, "LetterFrame")
|
|
LAYOUT_ATOM(lineFrame, "LineFrame")
|
|
LAYOUT_ATOM(listControlFrame,"ListControlFrame")
|
|
LAYOUT_ATOM(objectFrame, "ObjectFrame")
|
|
LAYOUT_ATOM(pageFrame, "PageFrame")
|
|
LAYOUT_ATOM(placeholderFrame, "PlaceholderFrame")
|
|
LAYOUT_ATOM(positionedInlineFrame, "PositionedInlineFrame")
|
|
LAYOUT_ATOM(canvasFrame, "CanvasFrame")
|
|
LAYOUT_ATOM(rootFrame, "RootFrame")
|
|
LAYOUT_ATOM(scrollFrame, "ScrollFrame")
|
|
LAYOUT_ATOM(tableCaptionFrame, "TableCaptionFrame")
|
|
LAYOUT_ATOM(tableCellFrame, "TableCellFrame")
|
|
LAYOUT_ATOM(tableColFrame, "TableColFrame")
|
|
LAYOUT_ATOM(tableColGroupFrame, "TableColGroupFrame")
|
|
LAYOUT_ATOM(tableFrame, "TableFrame")
|
|
LAYOUT_ATOM(tableOuterFrame, "TableOuterFrame")
|
|
LAYOUT_ATOM(tableRowGroupFrame, "TableRowGroupFrame")
|
|
LAYOUT_ATOM(tableRowFrame, "TableRowFrame")
|
|
LAYOUT_ATOM(textInputFrame,"TextInputFrame")
|
|
LAYOUT_ATOM(textFrame, "TextFrame")
|
|
LAYOUT_ATOM(viewportFrame, "ViewportFrame")
|
|
|
|
// Alphabetical list of frame property names
|
|
LAYOUT_ATOM(collapseOffsetProperty, "CollapseOffsetProperty") // nsPoint*
|
|
LAYOUT_ATOM(inlineFrameAnnotation, "InlineFrameAnnotation") // BOOL
|
|
LAYOUT_ATOM(maxElementSizeProperty, "MaxElementSizeProperty") // nsSize*
|
|
LAYOUT_ATOM(overflowAreaProperty, "OverflowArea") // nsRect*
|
|
LAYOUT_ATOM(overflowProperty, "OverflowProperty") // list of nsIFrame*
|
|
LAYOUT_ATOM(overflowLinesProperty, "OverflowLinesProperty") // list of nsLineBox*
|
|
LAYOUT_ATOM(spaceManagerProperty, "SpaceManagerProperty") // the space manager for a block
|
|
LAYOUT_ATOM(viewProperty, "ViewProperty") // nsView*
|
|
|
|
// Alphabetical list of event handler names
|
|
LAYOUT_ATOM(onabort, "onabort")
|
|
LAYOUT_ATOM(onblur, "onblur")
|
|
LAYOUT_ATOM(onbroadcast, "onbroadcast")
|
|
LAYOUT_ATOM(onchange, "onchange")
|
|
LAYOUT_ATOM(onclick, "onclick")
|
|
LAYOUT_ATOM(onclose, "onclose")
|
|
LAYOUT_ATOM(oncommand, "oncommand")
|
|
LAYOUT_ATOM(oncommandupdate, "oncommandupdate")
|
|
LAYOUT_ATOM(oncontextmenu, "oncontextmenu")
|
|
LAYOUT_ATOM(onpopupshowing, "onpopupshowing")
|
|
LAYOUT_ATOM(onpopupshown, "onpopupshown")
|
|
LAYOUT_ATOM(onpopuphiding, "onpopuphiding")
|
|
LAYOUT_ATOM(onpopuphidden, "onpopuphidden")
|
|
LAYOUT_ATOM(ondblclick, "ondblclick")
|
|
LAYOUT_ATOM(ondragdrop, "ondragdrop")
|
|
LAYOUT_ATOM(ondragenter, "ondragenter")
|
|
LAYOUT_ATOM(ondragexit, "ondragexit")
|
|
LAYOUT_ATOM(ondraggesture, "ondraggesture")
|
|
LAYOUT_ATOM(ondragover, "ondragover")
|
|
LAYOUT_ATOM(onerror, "onerror")
|
|
LAYOUT_ATOM(onfocus, "onfocus")
|
|
LAYOUT_ATOM(oninput, "oninput")
|
|
LAYOUT_ATOM(onkeydown, "onkeydown")
|
|
LAYOUT_ATOM(onkeypress, "onkeypress")
|
|
LAYOUT_ATOM(onkeyup, "onkeyup")
|
|
LAYOUT_ATOM(onload, "onload")
|
|
LAYOUT_ATOM(onmousedown, "onmousedown")
|
|
LAYOUT_ATOM(onmousemove, "onmousemove")
|
|
LAYOUT_ATOM(onmouseover, "onmouseover")
|
|
LAYOUT_ATOM(onmouseout, "onmouseout")
|
|
LAYOUT_ATOM(onmouseup, "onmouseup")
|
|
LAYOUT_ATOM(onpaint, "onpaint")
|
|
LAYOUT_ATOM(onreset, "onreset")
|
|
LAYOUT_ATOM(onresize, "onresize")
|
|
LAYOUT_ATOM(onscroll, "onscroll")
|
|
LAYOUT_ATOM(onselect, "onselect")
|
|
LAYOUT_ATOM(onsubmit, "onsubmit")
|
|
LAYOUT_ATOM(onunload, "onunload")
|
|
|
|
// scrolling
|
|
LAYOUT_ATOM(onoverflow, "onoverflow")
|
|
LAYOUT_ATOM(onunderflow, "onunderflow")
|
|
LAYOUT_ATOM(onoverflowchanged, "onoverflowchanged")
|
|
|
|
// mutation events
|
|
LAYOUT_ATOM(onDOMSubtreeModified, "onDOMSubtreeModified")
|
|
LAYOUT_ATOM(onDOMNodeInserted, "onDOMNodeInserted")
|
|
LAYOUT_ATOM(onDOMNodeRemoved, "onDOMNodeRemoved")
|
|
LAYOUT_ATOM(onDOMNodeRemovedFromDocument, "onDOMNodeRemovedFromDocument")
|
|
LAYOUT_ATOM(onDOMNodeInsertedIntoDocument, "onDOMNodeInsertedIntoDocument")
|
|
LAYOUT_ATOM(onDOMAttrModified, "onDOMAttrModified")
|
|
LAYOUT_ATOM(onDOMCharacterDataModified, "onDOMCharacterDataModified")
|
|
|
|
// Alphabetical list of languages for lang-specific transforms
|
|
LAYOUT_ATOM(Japanese, "ja")
|
|
LAYOUT_ATOM(Korean, "ko")
|
|
|
|
// other
|
|
LAYOUT_ATOM(wildcard, "*")
|
|
LAYOUT_ATOM(mozdirty, "_moz_dirty")
|
|
|
|
#ifdef IBMBIDI
|
|
LAYOUT_ATOM(directionalFrame, "DirectionalFrame")
|
|
LAYOUT_ATOM(baseLevel, "BaseLevel") // PRUint8
|
|
LAYOUT_ATOM(embeddingLevel, "EmbeddingLevel") // PRUint8
|
|
LAYOUT_ATOM(endsInDiacritic, "EndsInDiacritic") // PRUint32
|
|
LAYOUT_ATOM(nextBidi, "NextBidi") // nsIFrame*
|
|
LAYOUT_ATOM(charType, "charType") // PRUint8
|
|
#endif
|
|
|
|
#ifdef DEBUG
|
|
// Alphabetical list of atoms used by debugging code
|
|
LAYOUT_ATOM(cellMap, "TableCellMap")
|
|
LAYOUT_ATOM(imageMap, "ImageMap")
|
|
LAYOUT_ATOM(lineBoxBig, "LineBox:inline,big")
|
|
LAYOUT_ATOM(lineBoxBlockBig, "LineBox:block,big")
|
|
LAYOUT_ATOM(lineBoxBlockSmall, "LineBox:block,small")
|
|
LAYOUT_ATOM(lineBoxFloaters, "LineBoxFloaters")
|
|
LAYOUT_ATOM(lineBoxSmall, "LineBox:inline,small")
|
|
LAYOUT_ATOM(spaceManager, "SpaceManager")
|
|
LAYOUT_ATOM(tableColCache, "TableColumnCache")
|
|
LAYOUT_ATOM(tableStrategy, "TableLayoutStrategy")
|
|
LAYOUT_ATOM(textRun, "TextRun")
|
|
LAYOUT_ATOM(xml_document_entities, "XMLDocumentEntities")
|
|
LAYOUT_ATOM(xml_document_notations, "XMLDocumentNotations")
|
|
#endif
|