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
|
|
|
/**
|
|
|
|
* Initialization function for a WebShell instance. This method provides
|
|
|
|
* information needed by the WebShell to embed itself inside of a native
|
|
|
|
* window provided by the caller. It is assumed that this function will be
|
|
|
|
* called only once.
|
|
|
|
*/
|
1998-07-18 21:43:02 +00:00
|
|
|
NS_IMETHOD Init(nsNativeWidget aNativeParent,
|
1998-08-14 23:08:54 +00:00
|
|
|
PRInt32 x, PRInt32 y, PRInt32 w, PRInt32 h,
|
1998-08-05 04:23:21 +00:00
|
|
|
nsScrollPreference aScrolling = nsScrollPreference_kAuto,
|
1998-11-02 22:19:08 +00:00
|
|
|
PRBool aAllowPlugins = PR_TRUE,
|
1998-11-04 21:46:00 +00:00
|
|
|
PRBool aIsSunkenBorder = PR_FALSE) = 0;
|
1998-07-18 21:43:02 +00:00
|
|
|
|
1999-11-24 09:39:58 +00:00
|
|
|
NS_IMETHOD RemoveFocus() = 0;
|
|
|
|
|
|
|
|
|
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
|
|
|
/**
|
1999-04-06 21:00:26 +00:00
|
|
|
* Set the DocLoaderObserver which receives all notifications from URLs
|
1998-11-03 08:04:34 +00:00
|
|
|
* loaded by the document.
|
|
|
|
*/
|
1999-04-06 21:00:26 +00:00
|
|
|
NS_IMETHOD SetDocLoaderObserver(nsIDocumentLoaderObserver* anObserver) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
1999-04-06 21:00:26 +00:00
|
|
|
* Return the current nsIDocLoadeObserver
|
1998-11-03 08:04:34 +00:00
|
|
|
*/
|
1999-11-29 21:09:47 +00:00
|
|
|
NS_IMETHOD GetDocLoaderObserver(nsIDocumentLoaderObserver** aResult) = 0;
|
1998-07-22 11:22:59 +00:00
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
/**
|
|
|
|
* Set the nsIPref used to get/set preference values...
|
|
|
|
*/
|
1998-07-31 06:02:06 +00:00
|
|
|
NS_IMETHOD SetPrefs(nsIPref* aPrefs) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current nsIPref interface.
|
|
|
|
*/
|
1998-07-31 06:02:06 +00:00
|
|
|
NS_IMETHOD GetPrefs(nsIPref*& aPrefs) = 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
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the parent WebShell.
|
|
|
|
*/
|
1998-07-18 21:43:02 +00:00
|
|
|
NS_IMETHOD SetParent(nsIWebShell* aParent) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the parent WebShell.
|
|
|
|
*/
|
1998-07-18 21:43:02 +00:00
|
|
|
NS_IMETHOD GetParent(nsIWebShell*& aParent) = 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
|
|
|
/**
|
|
|
|
* Return the current number of WebShells which are immediate children
|
|
|
|
* of the current WebShell.
|
|
|
|
*/
|
1998-07-18 21:43:02 +00:00
|
|
|
NS_IMETHOD GetChildCount(PRInt32& aResult) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new child WebShell.
|
|
|
|
*/
|
1998-07-19 01:17:39 +00:00
|
|
|
NS_IMETHOD AddChild(nsIWebShell* aChild) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
1999-05-05 00:10:33 +00:00
|
|
|
/**
|
|
|
|
* Remove a child WebShell.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RemoveChild(nsIWebShell* aChild) = 0;
|
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
/**
|
|
|
|
* Return the child WebShell at the requested index.
|
|
|
|
*/
|
1998-07-18 21:43:02 +00:00
|
|
|
NS_IMETHOD ChildAt(PRInt32 aIndex, nsIWebShell*& aResult) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the name of the current WebShell.
|
|
|
|
*/
|
1999-02-14 06:35:01 +00:00
|
|
|
NS_IMETHOD GetName(const PRUnichar** aName) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the name of the current WebShell.
|
|
|
|
*/
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD SetName(const PRUnichar* aName) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the child WebShell with the specified name.
|
|
|
|
*/
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD FindChildWithName(const PRUnichar* aName,
|
1998-07-18 21:43:02 +00:00
|
|
|
nsIWebShell*& aResult) = 0;
|
1999-04-16 08:15:04 +00:00
|
|
|
|
1999-11-23 09:57:47 +00:00
|
|
|
/*
|
|
|
|
* Get Chrome Event Handler
|
1999-05-27 21:05:27 +00:00
|
|
|
*/
|
1999-11-23 09:57:47 +00:00
|
|
|
NS_IMETHOD SetChromeEventHandler(nsIChromeEventHandler* aChromeEventHandler) = 0;
|
1999-05-27 21:05:27 +00:00
|
|
|
|
1999-11-16 01:02:17 +00:00
|
|
|
/**
|
|
|
|
* Get the content viewer for this webshell.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetContentViewer(nsIContentViewer** aResult) = 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
|
|
|
|
1999-07-15 14:22:06 +00:00
|
|
|
/**
|
|
|
|
* Lets us know if the webshell document fired off a load
|
|
|
|
*/
|
|
|
|
NS_IMETHOD IsBusy(PRBool& 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,
|
|
|
|
const PRUnichar* aReferrer=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,
|
|
|
|
const PRUnichar* aReferrer=nsnull) = 0;
|
1999-09-08 03:59:21 +00:00
|
|
|
|
1999-11-11 22:32:13 +00:00
|
|
|
/** Set the document for this webshell.
|
|
|
|
* This simulates a URI load, in that the same notifications are sent as
|
|
|
|
* if the caller had called LoadURI.
|
|
|
|
* @param aDOMDoc
|
|
|
|
* @param aRootNode
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetDocument(nsIDOMDocument *aDOMDoc, nsIDOMElement *aRootNode) = 0;
|
|
|
|
|
1998-11-11 20:31:45 +00:00
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
/**
|
|
|
|
* Stop loading the current document.
|
|
|
|
*/
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD Stop(void) = 0;
|
1998-11-03 08:04:34 +00:00
|
|
|
|
1999-11-30 04:32:42 +00:00
|
|
|
// XXX Temp Hacks
|
|
|
|
|
|
|
|
NS_IMETHOD StopBeforeRequestingURL() = 0;
|
|
|
|
NS_IMETHOD StopAfterURLAvailable() = 0;
|
|
|
|
|
1998-11-03 08:04:34 +00:00
|
|
|
/**
|
|
|
|
* Reload the current document.
|
|
|
|
*/
|
1999-07-01 19:30:20 +00:00
|
|
|
NS_IMETHOD Reload(nsLoadFlags aType) = 0;
|
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 Back() = 0;
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD CanBack() = 0;
|
1998-07-22 11:22:59 +00:00
|
|
|
NS_IMETHOD Forward() = 0;
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD CanForward() = 0;
|
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
|
|
|
|
|
|
|
NS_IMETHOD SetContentViewer(nsIContentViewer* aViewer) = 0;
|
1999-11-19 07:35:27 +00:00
|
|
|
NS_IMETHOD SetScrolling(PRInt32 aScrolling, PRBool aSetCurrentAndInitial = PR_TRUE) = 0;
|
|
|
|
NS_IMETHOD GetScrolling(PRInt32& aScrolling) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-08-18 22:01:50 +00:00
|
|
|
// XXX these are here until there a better way to pass along info to a sub doc
|
1999-11-19 07:35:27 +00:00
|
|
|
NS_IMETHOD GetMarginWidth (PRInt32* aWidth) = 0;
|
1998-08-18 22:01:50 +00:00
|
|
|
NS_IMETHOD SetMarginWidth (PRInt32 aWidth) = 0;
|
1999-11-19 07:35:27 +00:00
|
|
|
NS_IMETHOD GetMarginHeight(PRInt32* aWidth) = 0;
|
1998-08-18 22:01:50 +00:00
|
|
|
NS_IMETHOD SetMarginHeight(PRInt32 aHeight) = 0;
|
1999-11-19 07:35:27 +00:00
|
|
|
|
1999-04-16 04:25:17 +00:00
|
|
|
/**
|
|
|
|
* Set/Get the document scale factor
|
|
|
|
*/
|
|
|
|
|
|
|
|
NS_IMETHOD SetZoom(float aZoom) = 0;
|
|
|
|
NS_IMETHOD GetZoom(float *aZoom) = 0;
|
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the URL of the current WebShell.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetURL(const PRUnichar** aURL) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
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___ */
|