1998-04-14 00:24:54 +04: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 nsIDocument_h___
|
|
|
|
#define nsIDocument_h___
|
|
|
|
|
|
|
|
#include "nslayout.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsIUnicharInputStream.h"
|
|
|
|
class nsIArena;
|
|
|
|
class nsIContent;
|
|
|
|
class nsIDocumentContainer;
|
|
|
|
class nsIDocumentObserver;
|
|
|
|
class nsIPresContext;
|
|
|
|
class nsIPresShell;
|
1998-04-30 22:21:59 +04:00
|
|
|
class nsISelection;
|
1998-04-14 00:24:54 +04:00
|
|
|
class nsISubContent;
|
|
|
|
class nsIStyleSet;
|
|
|
|
class nsIStyleSheet;
|
|
|
|
class nsIURL;
|
|
|
|
class nsIViewManager;
|
|
|
|
class nsString;
|
|
|
|
|
|
|
|
// IID for the nsIDocument interface
|
|
|
|
#define NS_IDOCUMENT_IID \
|
|
|
|
{ 0x94c6ceb0, 0x9447, 0x11d1, \
|
|
|
|
{0x93, 0x23, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Document interface
|
|
|
|
class nsIDocument : public nsISupports {
|
|
|
|
public:
|
|
|
|
// All documents have a memory arena associated with them which is
|
|
|
|
// used for memory allocation during document creation. This call
|
|
|
|
// returns the arena associated with this document.
|
|
|
|
virtual nsIArena* GetArena() = 0;
|
|
|
|
|
|
|
|
virtual void LoadURL(nsIURL* aURL) = 0;
|
|
|
|
|
|
|
|
virtual void StartDocumentLoad() = 0;
|
|
|
|
virtual void PauseDocumentLoad() = 0;
|
|
|
|
virtual void StopDocumentLoad() = 0;
|
|
|
|
virtual void WaitForDocumentLoad() = 0;
|
|
|
|
virtual PRBool IsDocumentLoaded() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the title of the document. May return null.
|
|
|
|
*/
|
|
|
|
virtual const nsString* GetDocumentTitle() const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the URL for the document. May return null.
|
|
|
|
*/
|
|
|
|
virtual nsIURL* GetDocumentURL() const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a standard name for the document's character set. This will
|
|
|
|
* trigger a startDocumentLoad if necessary to answer the question.
|
|
|
|
*/
|
|
|
|
virtual nsCharSetID GetDocumentCharacterSet() const = 0;
|
|
|
|
virtual void SetDocumentCharacterSet(nsCharSetID aCharSetID) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new presentation shell that will use aContext for
|
|
|
|
* it's presentation context (presentation context's <b>must not</b> be
|
|
|
|
* shared among multiple presentation shell's).
|
|
|
|
*/
|
1998-04-25 22:32:59 +04:00
|
|
|
virtual nsresult CreateShell(nsIPresContext* aContext,
|
|
|
|
nsIViewManager* aViewManager,
|
|
|
|
nsIStyleSet* aStyleSet,
|
|
|
|
nsIPresShell** aInstancePtrResult) = 0;
|
1998-04-14 00:24:54 +04:00
|
|
|
virtual PRBool DeleteShell(nsIPresShell* aShell) = 0;
|
|
|
|
virtual PRInt32 GetNumberOfShells() = 0;
|
|
|
|
virtual nsIPresShell* GetShellAt(PRInt32 aIndex) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the parent document of this document. Will return null
|
|
|
|
* unless this document is within a compound document and has a parent.
|
|
|
|
*/
|
|
|
|
virtual nsIDocument* GetParentDocument() = 0;
|
|
|
|
virtual void SetParentDocument(nsIDocument* aParent) = 0;
|
|
|
|
virtual void AddSubDocument(nsIDocument* aSubDoc) = 0;
|
|
|
|
virtual PRInt32 GetNumberOfSubDocuments() = 0;
|
|
|
|
virtual nsIDocument* GetSubDocumentAt(PRInt32 aIndex) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the root content object for this document.
|
|
|
|
*/
|
|
|
|
virtual nsIContent* GetRootContent() = 0;
|
|
|
|
virtual void SetRootContent(nsIContent* aRoot) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the style sheets owned by this document.
|
|
|
|
*/
|
|
|
|
virtual PRInt32 GetNumberOfStyleSheets() = 0;
|
|
|
|
virtual nsIStyleSheet* GetStyleSheetAt(PRInt32 aIndex) = 0;
|
|
|
|
virtual void AddStyleSheet(nsIStyleSheet* aSheet) = 0;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Document notification API's
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new observer of document change notifications. Whenever
|
|
|
|
* content is changed, appended, inserted or removed the observers are
|
|
|
|
* informed.
|
|
|
|
*/
|
|
|
|
virtual void AddObserver(nsIDocumentObserver* aObserver) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove an observer of document change notifications. This will
|
|
|
|
* return false if the observer cannot be found.
|
|
|
|
*/
|
|
|
|
virtual PRBool RemoveObserver(nsIDocumentObserver* aObserver) = 0;
|
|
|
|
|
|
|
|
// Observation hooks used by content nodes to propagate
|
|
|
|
// notifications to document observers.
|
|
|
|
virtual void ContentChanged(nsIContent* aContent,
|
|
|
|
nsISubContent* aSubContent,
|
|
|
|
PRInt32 aChangeType) = 0;
|
|
|
|
|
|
|
|
virtual void ContentAppended(nsIContent* aContainer) = 0;
|
|
|
|
|
|
|
|
virtual void ContentInserted(nsIContent* aContainer,
|
|
|
|
nsIContent* aChild,
|
|
|
|
PRInt32 aIndexInContainer) = 0;
|
|
|
|
|
|
|
|
virtual void ContentReplaced(nsIContent* aContainer,
|
|
|
|
nsIContent* aOldChild,
|
|
|
|
nsIContent* aNewChild,
|
|
|
|
PRInt32 aIndexInContainer) = 0;
|
|
|
|
|
|
|
|
virtual void ContentWillBeRemoved(nsIContent* aContainer,
|
|
|
|
nsIContent* aChild,
|
|
|
|
PRInt32 aIndexInContainer) = 0;
|
|
|
|
|
|
|
|
virtual void ContentHasBeenRemoved(nsIContent* aContainer,
|
|
|
|
nsIContent* aChild,
|
|
|
|
PRInt32 aIndexInContainer) = 0;
|
1998-04-30 22:21:59 +04:00
|
|
|
/**
|
|
|
|
* Returns the Selection Object
|
|
|
|
*/
|
|
|
|
virtual nsISelection * GetSelection() = 0;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// XXX Belongs somewhere else
|
|
|
|
extern NS_LAYOUT nsresult
|
|
|
|
NS_NewHTMLDocument(nsIDocument** aInstancePtrResult);
|
|
|
|
|
|
|
|
#endif /* nsIDocument_h___ */
|