1998-07-18 21:43:02 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* 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/
|
1998-07-18 21:43:02 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +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-07-18 21:43:02 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 03:43:54 +00:00
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-07-18 21:43:02 +00:00
|
|
|
*/
|
|
|
|
#ifndef nsIWebShell_h___
|
|
|
|
#define nsIWebShell_h___
|
|
|
|
|
1998-07-20 16:37:52 +00:00
|
|
|
#include "nsweb.h"
|
1998-07-18 21:43:02 +00:00
|
|
|
#include "nsIWidget.h"
|
1999-11-19 07:35:27 +00:00
|
|
|
#include "nsIParser.h"
|
1998-07-18 21:43:02 +00:00
|
|
|
#include "nsIScrollableView.h"
|
|
|
|
#include "nsIContentViewerContainer.h"
|
1999-06-28 10:35:57 +00:00
|
|
|
#include "nsIChannel.h"
|
1998-11-09 23:30:16 +00:00
|
|
|
#include "nsIScrollableView.h"
|
1999-06-14 22:10:41 +00:00
|
|
|
#include "nsISessionHistory.h"
|
1999-07-04 23:38:56 +00:00
|
|
|
#include "nsIUrlDispatcher.h"
|
1998-07-18 21:43:02 +00:00
|
|
|
|
1999-05-14 22:40:03 +00:00
|
|
|
class nsIDOMElement;
|
1999-05-16 07:52:02 +00:00
|
|
|
class nsIDOMWindow;
|
1998-07-19 01:17:39 +00:00
|
|
|
class nsIFactory;
|
1999-08-03 20:51:41 +00:00
|
|
|
//class nsIPostData;
|
1998-07-18 21:43:02 +00:00
|
|
|
class nsIStreamObserver;
|
1998-07-23 04:23:00 +00:00
|
|
|
class nsIDocumentLoader;
|
1999-04-06 21:00:26 +00:00
|
|
|
class nsIDocumentLoaderObserver;
|
1998-07-18 21:43:02 +00:00
|
|
|
class nsIWebShell;
|
|
|
|
class nsIWebShellContainer;
|
1998-07-31 06:02:06 +00:00
|
|
|
class nsIPref;
|
1999-04-20 01:50:03 +00:00
|
|
|
class nsIContent;
|
1999-11-18 07:06:07 +00:00
|
|
|
class nsIURIContentListener;
|
1999-11-11 22:32:13 +00:00
|
|
|
class nsIDOMDocument;
|
1999-11-23 09:57:47 +00:00
|
|
|
class nsIChromeEventHandler;
|
1998-07-18 21:43:02 +00:00
|
|
|
|
|
|
|
// Interface ID for nsIWebShell
|
|
|
|
#define NS_IWEB_SHELL_IID \
|
|
|
|
{ 0xa6cf9058, 0x15b3, 0x11d2,{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
|
|
|
|
|
|
|
|
// Interface ID for nsIWebShellContainer
|
|
|
|
#define NS_IWEB_SHELL_CONTAINER_IID \
|
|
|
|
{ 0xa6cf905a, 0x15b3, 0x11d2,{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
|
|
|
|
|
|
|
|
// Class ID for an implementation of nsIWebShell
|
|
|
|
#define NS_WEB_SHELL_CID \
|
|
|
|
{ 0xa6cf9059, 0x15b3, 0x11d2,{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
1998-08-14 23:08:54 +00:00
|
|
|
typedef enum {
|
|
|
|
nsLoadURL,
|
|
|
|
nsLoadHistory,
|
|
|
|
nsLoadLink,
|
|
|
|
nsLoadRefresh
|
|
|
|
} nsLoadType;
|
|
|
|
|
1998-07-18 21:43:02 +00:00
|
|
|
// Container for web shell's
|
|
|
|
class nsIWebShellContainer : public nsISupports {
|
|
|
|
public:
|
1999-03-11 22:34:13 +00:00
|
|
|
static const nsIID& GetIID() { static nsIID iid = NS_IWEB_SHELL_CONTAINER_IID; return iid; }
|
|
|
|
|
1998-07-18 21:43:02 +00:00
|
|
|
// History control
|
1999-04-06 21:00:26 +00:00
|
|
|
NS_IMETHOD WillLoadURL(nsIWebShell* aShell,
|
|
|
|
const PRUnichar* aURL,
|
|
|
|
nsLoadType aReason) = 0;
|
|
|
|
|
|
|
|
NS_IMETHOD BeginLoadURL(nsIWebShell* aShell,
|
|
|
|
const PRUnichar* aURL) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHOD ProgressLoadURL(nsIWebShell* aShell,
|
|
|
|
const PRUnichar* aURL,
|
|
|
|
PRInt32 aProgress,
|
|
|
|
PRInt32 aProgressMax) = 0;
|
|
|
|
|
|
|
|
NS_IMETHOD EndLoadURL(nsIWebShell* aShell,
|
1998-12-08 01:57:00 +00:00
|
|
|
const PRUnichar* aURL,
|
1999-08-05 01:28:30 +00:00
|
|
|
nsresult aStatus) = 0;
|
1999-04-06 21:00:26 +00:00
|
|
|
|
1998-07-18 21:43:02 +00:00
|
|
|
};
|
|
|
|
|
1998-07-22 23:40:27 +00:00
|
|
|
// Return value from WillLoadURL
|
|
|
|
#define NS_WEB_SHELL_CANCEL_URL_LOAD 0xC0E70000
|
|
|
|
|
1998-07-18 21:43:02 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The web shell is a container for implementations of nsIContentViewer.
|
|
|
|
* It is a content-viewer-container and also knows how to delegate certain
|
|
|
|
* behavior to an nsIWebShellContainer.
|
|
|
|
*
|
|
|
|
* Web shells can be arranged in a tree.
|
|
|
|
*
|
1998-07-19 01:17:39 +00:00
|
|
|
* Web shells are also nsIWebShellContainer's because they can contain
|
|
|
|
* other web shells.
|
1998-07-18 21:43:02 +00:00
|
|
|
*/
|
|
|
|
class nsIWebShell : public nsIContentViewerContainer {
|
|
|
|
public:
|
1999-03-11 22:34:13 +00:00
|
|
|
static const nsIID& GetIID() { static nsIID iid = NS_IWEB_SHELL_IID; return iid; }
|
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
/**
|
|
|
|
* Set the nsIWebShellContainer for the WebShell.
|
|
|
|
*/
|
1998-07-18 21:43:02 +00:00
|
|
|
NS_IMETHOD SetContainer(nsIWebShellContainer* aContainer) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
1999-03-13 03:31:55 +00:00
|
|
|
/**
|
1999-04-06 21:00:26 +00:00
|
|
|
* Return the current nsIWebShellContainer.
|
1999-03-13 03:31:55 +00:00
|
|
|
*/
|
1999-04-06 21:00:26 +00:00
|
|
|
NS_IMETHOD GetContainer(nsIWebShellContainer*& aResult) = 0;
|
1999-03-13 03:31:55 +00:00
|
|
|
|
1999-11-16 20:06:12 +00:00
|
|
|
/**
|
|
|
|
* Returns the top level window (this would be the containing window
|
|
|
|
* the same object that implements nsIWebShellContainer, nsIWebShellWindow,
|
|
|
|
* and nsIBrowserWindow).
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetTopLevelWindow(nsIWebShellContainer** aTopLevelWindow) = 0;
|
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
/**
|
|
|
|
* Return the root WebShell instance. Since WebShells can be nested
|
|
|
|
* (when frames are present for example) this instance represents the
|
|
|
|
* outermost WebShell.
|
|
|
|
*/
|
1998-07-19 01:17:39 +00:00
|
|
|
NS_IMETHOD GetRootWebShell(nsIWebShell*& aResult) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
1999-10-25 22:20:10 +00:00
|
|
|
/**
|
|
|
|
* Get the referrer of the link using this WebShell.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetReferrer(nsIURI **aReferrer) = 0;
|
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
//
|
1998-08-14 23:08:54 +00:00
|
|
|
// Document load api's
|
1998-11-03 08:04:34 +00:00
|
|
|
//
|
|
|
|
/**
|
|
|
|
* Return the nsIDocumentLoader associated with the WebShell.
|
|
|
|
*/
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD GetDocumentLoader(nsIDocumentLoader*& aResult) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the document associated with the specified URL into the WebShell.
|
|
|
|
*/
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD LoadURL(const PRUnichar *aURLSpec,
|
1999-08-03 20:51:41 +00:00
|
|
|
nsIInputStream* aPostDataStream=nsnull,
|
1998-08-19 23:01:52 +00:00
|
|
|
PRBool aModifyHistory=PR_TRUE,
|
1999-07-01 19:30:20 +00:00
|
|
|
nsLoadFlags aType = nsIChannel::LOAD_NORMAL,
|
1999-09-02 21:39:01 +00:00
|
|
|
const PRUint32 aLocalIP=0,
|
1999-09-17 04:26:02 +00:00
|
|
|
nsISupports * aHistoryState=nsnull,
|
|
|
|
const PRUnichar* aReferrer=nsnull) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
1998-11-11 20:31:45 +00:00
|
|
|
/**
|
|
|
|
* Load the document associated with the specified URL into the WebShell.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD LoadURL(const PRUnichar *aURLSpec,
|
|
|
|
const char* aCommand,
|
1999-08-03 20:51:41 +00:00
|
|
|
nsIInputStream* aPostDataStream=nsnull,
|
1998-11-11 20:31:45 +00:00
|
|
|
PRBool aModifyHistory=PR_TRUE,
|
1999-07-01 19:30:20 +00:00
|
|
|
nsLoadFlags aType = nsIChannel::LOAD_NORMAL,
|
1999-09-02 21:39:01 +00:00
|
|
|
const PRUint32 aLocalIP=0,
|
1999-09-17 04:26:02 +00:00
|
|
|
nsISupports * aHistoryState=nsnull,
|
2000-02-16 07:29:50 +00:00
|
|
|
const PRUnichar* aReferrer=nsnull,
|
|
|
|
const char * aWindowTarget = nsnull) = 0;
|
1998-11-11 20:31:45 +00:00
|
|
|
|
1999-09-08 03:59:21 +00:00
|
|
|
/**
|
|
|
|
* Load the document with the specified URI into the WebShell. Assuming you have
|
|
|
|
* an nsIURI instead of a PRUnichar string, this is the preferred way to load a url.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD LoadURI(nsIURI * aUri,
|
|
|
|
const char * aCommand,
|
|
|
|
nsIInputStream* aPostDataStream=nsnull,
|
|
|
|
PRBool aModifyHistory=PR_TRUE,
|
|
|
|
nsLoadFlags aType = nsIChannel::LOAD_NORMAL,
|
|
|
|
const PRUint32 aLocalIP=0,
|
1999-09-17 04:26:02 +00:00
|
|
|
nsISupports * aHistoryState=nsnull,
|
2000-02-16 07:29:50 +00:00
|
|
|
const PRUnichar* aReferrer=nsnull,
|
|
|
|
const char * aWindowTarget = nsnull) = 0;
|
1999-09-08 03:59:21 +00:00
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
//
|
1998-07-18 21:43:02 +00:00
|
|
|
// History api's
|
1998-11-03 08:04:34 +00:00
|
|
|
//
|
|
|
|
/**
|
|
|
|
* Load the previous document in the history list.
|
|
|
|
*/
|
1998-07-22 11:22:59 +00:00
|
|
|
NS_IMETHOD GoTo(PRInt32 aHistoryIndex) = 0;
|
1999-01-28 23:13:48 +00:00
|
|
|
NS_IMETHOD GetHistoryLength(PRInt32& aResult) = 0;
|
1998-07-18 21:43:02 +00:00
|
|
|
NS_IMETHOD GetHistoryIndex(PRInt32& aResult) = 0;
|
1999-02-14 06:35:01 +00:00
|
|
|
NS_IMETHOD GetURL(PRInt32 aHistoryIndex, const PRUnichar **aURLResult) = 0;
|
1998-07-18 21:43:02 +00:00
|
|
|
|
|
|
|
// SetToolBar
|
|
|
|
// SetMenuBar
|
|
|
|
// SetStatusBar
|
1998-08-18 22:01:50 +00:00
|
|
|
|
1998-10-23 20:47:57 +00:00
|
|
|
/**
|
|
|
|
* Finds text in content
|
|
|
|
*/
|
|
|
|
NS_IMETHOD FindNext(const PRUnichar * aSearchStr, PRBool aMatchCase, PRBool aSearchDown, PRBool &aIsFound) = 0;
|
1999-06-14 22:10:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the URL of the current WebShell.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetURL(const PRUnichar* aURL) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the handle to SessionHistory
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetSessionHistory(nsISessionHistory *& aResult) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a handle to SessionHistory
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetSessionHistory(nsISessionHistory * aSHist) = 0;
|
|
|
|
|
|
|
|
/* Set & Get Session History details */
|
|
|
|
NS_IMETHOD SetIsInSHist(PRBool aIsFrame) = 0;
|
|
|
|
NS_IMETHOD GetIsInSHist(PRBool& aIsFrame) = 0;
|
|
|
|
|
1999-08-30 22:45:46 +00:00
|
|
|
/**
|
1999-08-31 14:49:21 +00:00
|
|
|
* Get and set the history state for the document.
|
1999-08-30 22:45:46 +00:00
|
|
|
*/
|
|
|
|
NS_IMETHOD GetHistoryState(nsISupports** aLayoutHistoryState) = 0;
|
1999-08-31 14:49:21 +00:00
|
|
|
NS_IMETHOD SetHistoryState(nsISupports* aLayoutHistoryState) = 0;
|
2000-02-15 22:55:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify children to fire unload events before root data gone
|
|
|
|
*/
|
|
|
|
NS_IMETHOD FireUnloadEvent(void) = 0;
|
1998-07-18 21:43:02 +00:00
|
|
|
};
|
|
|
|
|
1998-07-19 01:17:39 +00:00
|
|
|
extern "C" NS_WEB nsresult
|
|
|
|
NS_NewWebShellFactory(nsIFactory** aFactory);
|
|
|
|
|
1999-09-22 01:24:20 +00:00
|
|
|
#ifdef DETECT_WEBSHELL_LEAKS
|
|
|
|
extern "C" NS_WEB
|
|
|
|
unsigned long
|
|
|
|
NS_TotalWebShellsInExistence();
|
1999-08-27 12:32:18 +00:00
|
|
|
#endif
|
|
|
|
|
1998-07-18 21:43:02 +00:00
|
|
|
#endif /* nsIWebShell_h___ */
|