1998-04-13 20:24:54 +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
|
1998-08-29 20:20:38 +00:00
|
|
|
* Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
1998-04-13 20:24:54 +00:00
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
1998-08-29 20:20:38 +00:00
|
|
|
* 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.
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
1998-08-29 20:20:38 +00:00
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
|
|
|
#ifndef nsIContent_h___
|
|
|
|
#define nsIContent_h___
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "nslayout.h"
|
|
|
|
#include "nsISupports.h"
|
1998-06-08 00:57:15 +00:00
|
|
|
#include "nsGUIEvent.h"
|
1998-08-29 20:20:38 +00:00
|
|
|
|
|
|
|
// Forward declarations
|
1998-04-13 20:24:54 +00:00
|
|
|
class nsIAtom;
|
|
|
|
class nsIDocument;
|
|
|
|
class nsIPresContext;
|
|
|
|
class nsString;
|
|
|
|
class nsString;
|
|
|
|
class nsVoidArray;
|
1998-07-14 22:34:27 +00:00
|
|
|
class nsXIFConverter;
|
1998-06-23 21:53:02 +00:00
|
|
|
class nsIDOMEvent;
|
1998-07-14 22:34:27 +00:00
|
|
|
class nsIContent;
|
1998-11-11 22:06:16 +00:00
|
|
|
class nsISupportsArray;
|
1998-12-17 07:22:28 +00:00
|
|
|
class nsIDOMRange;
|
1999-10-05 23:47:46 +00:00
|
|
|
class nsISizeOfHandler;
|
1998-07-14 22:34:27 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
// IID for the nsIContent interface
|
|
|
|
#define NS_ICONTENT_IID \
|
|
|
|
{ 0x78030220, 0x9447, 0x11d1, \
|
|
|
|
{0x93, 0x23, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} }
|
|
|
|
|
|
|
|
// A node of content in a documents content model. This interface
|
|
|
|
// is supported by all content objects.
|
1998-08-29 20:20:38 +00:00
|
|
|
class nsIContent : public nsISupports {
|
1998-04-13 20:24:54 +00:00
|
|
|
public:
|
1999-03-03 19:48:57 +00:00
|
|
|
static const nsIID& GetIID() { static nsIID iid = NS_ICONTENT_IID; return iid; }
|
1998-12-18 03:43:29 +00:00
|
|
|
|
1998-06-03 15:39:32 +00:00
|
|
|
NS_IMETHOD GetDocument(nsIDocument*& aResult) const = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-10-26 23:26:01 +00:00
|
|
|
NS_IMETHOD SetDocument(nsIDocument* aDocument, PRBool aDeep) = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
NS_IMETHOD GetParent(nsIContent*& aResult) const = 0;
|
1998-06-03 15:39:32 +00:00
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
NS_IMETHOD SetParent(nsIContent* aParent) = 0;
|
|
|
|
|
1998-12-11 02:30:08 +00:00
|
|
|
/**
|
|
|
|
* Get the namespace that this tag is defined in
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetNameSpaceID(PRInt32& aResult) const = 0;
|
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
NS_IMETHOD GetTag(nsIAtom*& aResult) const = 0;
|
|
|
|
|
|
|
|
NS_IMETHOD CanContainChildren(PRBool& aResult) const = 0;
|
|
|
|
|
|
|
|
NS_IMETHOD ChildCount(PRInt32& aResult) const = 0;
|
|
|
|
|
|
|
|
NS_IMETHOD ChildAt(PRInt32 aIndex, nsIContent*& aResult) const = 0;
|
|
|
|
|
|
|
|
NS_IMETHOD IndexOf(nsIContent* aPossibleChild, PRInt32& aIndex) const = 0;
|
|
|
|
|
|
|
|
NS_IMETHOD InsertChildAt(nsIContent* aKid, PRInt32 aIndex,
|
1998-06-03 15:39:32 +00:00
|
|
|
PRBool aNotify) = 0;
|
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
NS_IMETHOD ReplaceChildAt(nsIContent* aKid, PRInt32 aIndex,
|
1998-06-03 15:39:32 +00:00
|
|
|
PRBool aNotify) = 0;
|
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
NS_IMETHOD AppendChildTo(nsIContent* aKid, PRBool aNotify) = 0;
|
1998-06-03 15:39:32 +00:00
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
NS_IMETHOD RemoveChildAt(PRInt32 aIndex, PRBool aNotify) = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-05-29 02:09:38 +00:00
|
|
|
/**
|
|
|
|
* Test and see if this piece of content is synthetic. Synthetic content
|
|
|
|
* is content generated stylistically and should normally be ignored
|
|
|
|
* during content saving.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD IsSynthetic(PRBool& aResult) = 0;
|
|
|
|
|
1999-01-12 16:37:24 +00:00
|
|
|
/**
|
|
|
|
* Parses an attribute string into an atom that represents the
|
|
|
|
* attribute name and an identifier that represents the namespace
|
|
|
|
* of the attribute. The namespace identifier may be computed
|
|
|
|
* from a namespace prefix that must be interpreted in the context
|
|
|
|
* of the content itself.
|
|
|
|
*
|
|
|
|
* @param aStr the unparsed attribute string
|
|
|
|
* @param aName out parameter representing the name of the attribute
|
|
|
|
* @param aNameSpaceID out parameter reprsenting the namespace
|
|
|
|
* of the attribute
|
|
|
|
*/
|
|
|
|
NS_IMETHOD ParseAttributeString(const nsString& aStr,
|
|
|
|
nsIAtom*& aName,
|
|
|
|
PRInt32& aNameSpaceID) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the prefix for the specified name space identifier in
|
|
|
|
* the context of the content element itself.
|
|
|
|
*
|
|
|
|
* @param aNameSpaceID identifier of the namespace
|
|
|
|
* @param aPrefix out parameter representing the prefix for the namespace
|
|
|
|
*/
|
1999-03-20 01:51:00 +00:00
|
|
|
NS_IMETHOD GetNameSpacePrefixFromId(PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom*& aPrefix) = 0;
|
1999-01-12 16:37:24 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
/**
|
|
|
|
* Set attribute values. All attribute values are assumed to have a
|
|
|
|
* canonical String representation that can be used for these
|
|
|
|
* methods. The setAttribute method is assumed to perform a translation
|
|
|
|
* of the canonical form into the underlying content specific
|
|
|
|
* form.
|
|
|
|
*
|
1998-08-29 20:20:38 +00:00
|
|
|
* @param aName the name of the attribute
|
|
|
|
|
|
|
|
* @param aValue may legitimately be the empty string.
|
|
|
|
*
|
|
|
|
* @param aUpdateMask specifies how whether or not the document should be
|
|
|
|
* notified of the attribute change.
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
1998-12-20 01:08:13 +00:00
|
|
|
NS_IMETHOD SetAttribute(PRInt32 aNameSpaceID, nsIAtom* aName,
|
1998-08-29 20:20:38 +00:00
|
|
|
const nsString& aValue,
|
|
|
|
PRBool aNotify) = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current value of the attribute. This returns a form that is
|
|
|
|
* suitable for passing back into setAttribute.
|
|
|
|
*
|
|
|
|
* <UL>
|
|
|
|
*
|
|
|
|
* <LI>If the attribute is not set and has no default value, return
|
1998-08-29 20:20:38 +00:00
|
|
|
* NS_CONTENT_ATTR_NOT_THERE.
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
|
|
|
* <LI>If the attribute exists, but has no value, return
|
1998-08-29 20:20:38 +00:00
|
|
|
* NS_CONTENT_ATTR_NO_VALUE.
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
|
|
|
* <LI>If the attribute has a value, empty or otherwise, set ret to
|
1998-08-29 20:20:38 +00:00
|
|
|
* be the value, and return NS_CONTENT_ATTR_HAS_VALUE (== NS_OK).
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
1998-08-29 20:20:38 +00:00
|
|
|
* </UL>
|
|
|
|
*/
|
1998-12-20 01:08:13 +00:00
|
|
|
NS_IMETHOD GetAttribute(PRInt32 aNameSpaceID, nsIAtom* aName,
|
|
|
|
nsString& aResult) const = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-11-11 22:06:16 +00:00
|
|
|
/**
|
|
|
|
* Remove an attribute so that it is no longer explicitly specified.
|
|
|
|
*
|
|
|
|
* @param aAttribute the name of the attribute to unset
|
|
|
|
*
|
|
|
|
* @param aNotify specifies whether or not the document should be
|
|
|
|
* notified of the attribute change
|
|
|
|
*
|
|
|
|
*/
|
1998-12-20 01:08:13 +00:00
|
|
|
NS_IMETHOD UnsetAttribute(PRInt32 aNameSpaceID, nsIAtom* aAttribute,
|
|
|
|
PRBool aNotify) = 0;
|
1998-11-11 22:06:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
1998-12-20 01:08:13 +00:00
|
|
|
* Get the namespace & name of a given attribute.
|
1998-11-11 22:06:16 +00:00
|
|
|
*
|
1998-12-20 01:08:13 +00:00
|
|
|
* @param aIndex the index of the attribute name
|
|
|
|
* @param aNameSpace an out param of the name space ID of the attribute name
|
|
|
|
* @param aName an out param if the attribute name
|
1998-11-11 22:06:16 +00:00
|
|
|
*
|
|
|
|
*/
|
1998-12-20 01:08:13 +00:00
|
|
|
NS_IMETHOD GetAttributeNameAt(PRInt32 aIndex,
|
|
|
|
PRInt32& aNameSpaceID,
|
|
|
|
nsIAtom*& aName) const = 0;
|
1998-11-11 22:06:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the number of all specified attributes.
|
|
|
|
*
|
|
|
|
* @param aCountResult an out parameter to be filled in with
|
|
|
|
* the number of attributes
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetAttributeCount(PRInt32& aCountResult) const = 0;
|
|
|
|
|
1999-10-05 23:47:46 +00:00
|
|
|
/**
|
|
|
|
* Get the size of the content object. The size value should include
|
|
|
|
* all subordinate data referenced by the content that is not
|
|
|
|
* accounted for by child content. However, this value should not
|
|
|
|
* include the frame objects, style contexts, views or other data
|
|
|
|
* that lies logically outside the content model.
|
|
|
|
*
|
|
|
|
* If the implementation so chooses, instead of returning the total
|
|
|
|
* subordinate data it may instead use the sizeof handler to store
|
|
|
|
* away subordinate data under its own key so that the subordinate
|
|
|
|
* data may be tabulated independently of the frame itself.
|
|
|
|
*
|
|
|
|
* The caller is responsible for recursing over all children that
|
|
|
|
* the content contains.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SizeOf(nsISizeOfHandler* aSizer, PRUint32* aResult) const = 0;
|
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
/**
|
|
|
|
* List the content (and anything it contains) out to the given
|
|
|
|
* file stream. Use aIndent as the base indent during formatting.
|
|
|
|
* Returns NS_OK unless a file error occurs.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD List(FILE* out = stdout, PRInt32 aIndent = 0) const = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-07-14 22:34:27 +00:00
|
|
|
/**
|
|
|
|
* Translate the content object into the (XIF) XML Interchange Format
|
|
|
|
* XIF is an intermediate form of the content model, the buffer
|
|
|
|
* will then be parsed into any number of formats including HTML, TXT, etc.
|
|
|
|
|
1998-07-27 18:04:04 +00:00
|
|
|
* BeginConvertToXIF -- opens a container and writes out the attributes
|
|
|
|
* ConvertContentToXIF -- typically does nothing unless there is text content
|
1998-07-14 22:34:27 +00:00
|
|
|
* FinishConvertToXIF -- closes a container
|
1998-08-29 20:20:38 +00:00
|
|
|
*/
|
|
|
|
NS_IMETHOD BeginConvertToXIF(nsXIFConverter& aConverter) const = 0;
|
|
|
|
NS_IMETHOD ConvertContentToXIF(nsXIFConverter& aConverter) const = 0;
|
|
|
|
NS_IMETHOD FinishConvertToXIF(nsXIFConverter& aConverter) const = 0;
|
1998-07-14 22:34:27 +00:00
|
|
|
|
1998-12-17 07:22:28 +00:00
|
|
|
/**
|
|
|
|
* Inform content of range ownership changes. This allows content
|
|
|
|
* to do the right thing to ranges in the face of changes to the content
|
|
|
|
* model.
|
|
|
|
|
|
|
|
* RangeAdd -- informs content that it owns one or both range endpoints
|
|
|
|
* RangeRemove -- informs content that it no longer owns a range endpoint
|
1998-12-30 08:28:16 +00:00
|
|
|
* GetRangeList -- returns the list of ranges that have one or both endpoints
|
|
|
|
* within this content item
|
1998-12-17 07:22:28 +00:00
|
|
|
*/
|
|
|
|
NS_IMETHOD RangeAdd(nsIDOMRange& aRange) = 0;
|
|
|
|
NS_IMETHOD RangeRemove(nsIDOMRange& aRange) = 0;
|
1998-12-30 08:28:16 +00:00
|
|
|
NS_IMETHOD GetRangeList(nsVoidArray*& aResult) const = 0;
|
1998-12-17 07:22:28 +00:00
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
/**
|
|
|
|
* Handle a DOM event for this piece of content.
|
|
|
|
*/
|
1998-06-08 00:57:15 +00:00
|
|
|
NS_IMETHOD HandleDOMEvent(nsIPresContext& aPresContext,
|
1998-07-23 02:55:33 +00:00
|
|
|
nsEvent* aEvent,
|
|
|
|
nsIDOMEvent** aDOMEvent,
|
|
|
|
PRUint32 aFlags,
|
|
|
|
nsEventStatus& aEventStatus) = 0;
|
1999-08-31 10:06:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get and set a unique ID for this piece of content.
|
|
|
|
* This ID is used as a key to store state information
|
|
|
|
* about this content object and its associated frame object.
|
|
|
|
* The state information is stored in a dictionary that is
|
|
|
|
* manipulated by the frame manager (nsIFrameManager) inside layout.
|
|
|
|
* An opaque pointer to this dictionary is passed to the session
|
|
|
|
* history as a handle associated with the current document's state
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetContentID(PRUint32* aID) = 0;
|
|
|
|
NS_IMETHOD SetContentID(PRUint32 aID) = 0;
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
1998-08-29 20:20:38 +00:00
|
|
|
// nsresult codes for GetAttribute
|
|
|
|
#define NS_CONTENT_ATTR_HAS_VALUE NS_OK
|
|
|
|
|
|
|
|
#define NS_CONTENT_ATTR_NO_VALUE \
|
|
|
|
NS_ERROR_GENERATE_SUCCESS(NS_ERROR_MODULE_LAYOUT,0)
|
|
|
|
|
|
|
|
#define NS_CONTENT_ATTR_NOT_THERE \
|
|
|
|
NS_ERROR_GENERATE_SUCCESS(NS_ERROR_MODULE_LAYOUT,1)
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#endif /* nsIContent_h___ */
|