2001-04-27 13:03:17 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* 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 the Mozilla browser.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications, Inc. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1999, Mozilla. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
*/
|
2000-07-18 23:13:07 +00:00
|
|
|
#ifndef webshell____h
|
|
|
|
#define webshell____h
|
|
|
|
|
2001-09-21 02:38:37 +00:00
|
|
|
#include "nsError.h"
|
2000-07-18 23:13:07 +00:00
|
|
|
#include "nsIWebShellServices.h"
|
|
|
|
#include "nsIWebShell.h"
|
|
|
|
#include "nsILinkHandler.h"
|
|
|
|
#include "nsIClipboardCommands.h"
|
|
|
|
#include "nsDocShell.h"
|
2002-02-02 05:13:56 +00:00
|
|
|
#include "nsICommandManager.h"
|
2002-08-06 23:51:42 +00:00
|
|
|
#include "nsIIOService.h"
|
2002-05-15 18:55:21 +00:00
|
|
|
#include "nsCRT.h"
|
2002-09-24 00:35:51 +00:00
|
|
|
#include "nsIDocumentLoader.h"
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2002-05-03 07:49:43 +00:00
|
|
|
class nsIEventQueue;
|
2000-11-16 20:08:48 +00:00
|
|
|
class nsIController;
|
2001-06-19 00:28:10 +00:00
|
|
|
struct PRThread;
|
2000-11-16 20:08:48 +00:00
|
|
|
|
2000-07-18 23:13:07 +00:00
|
|
|
typedef enum {
|
2001-04-27 13:04:22 +00:00
|
|
|
eCharsetReloadInit,
|
|
|
|
eCharsetReloadRequested,
|
|
|
|
eCharsetReloadStopOrigional
|
2000-07-18 23:13:07 +00:00
|
|
|
} eCharsetReloadState;
|
|
|
|
|
2001-09-21 02:38:37 +00:00
|
|
|
#define NS_ERROR_WEBSHELL_REQUEST_REJECTED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_GENERAL,1001)
|
|
|
|
|
2000-07-18 23:13:07 +00:00
|
|
|
class nsWebShell : public nsDocShell,
|
|
|
|
public nsIWebShell,
|
|
|
|
public nsIWebShellContainer,
|
|
|
|
public nsIWebShellServices,
|
|
|
|
public nsILinkHandler,
|
|
|
|
public nsIClipboardCommands
|
|
|
|
{
|
|
|
|
public:
|
2001-04-27 13:03:17 +00:00
|
|
|
nsWebShell();
|
|
|
|
virtual ~nsWebShell();
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
NS_DECL_AND_IMPL_ZEROING_OPERATOR_NEW
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
NS_DECL_NSICLIPBOARDCOMMANDS
|
|
|
|
NS_DECL_NSIWEBSHELLSERVICES
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
// nsIWebShell
|
|
|
|
NS_IMETHOD SetContainer(nsIWebShellContainer* aContainer);
|
|
|
|
NS_IMETHOD GetContainer(nsIWebShellContainer*& aResult);
|
|
|
|
NS_IMETHOD GetDocumentLoader(nsIDocumentLoader*& aResult);
|
|
|
|
|
|
|
|
// nsILinkHandler
|
|
|
|
NS_IMETHOD OnLinkClick(nsIContent* aContent,
|
|
|
|
nsLinkVerb aVerb,
|
2002-11-20 00:44:26 +00:00
|
|
|
nsIURI* aURI,
|
2001-04-27 13:03:17 +00:00
|
|
|
const PRUnichar* aTargetSpec,
|
|
|
|
nsIInputStream* aPostDataStream = 0,
|
|
|
|
nsIInputStream* aHeadersDataStream = 0);
|
2002-03-13 06:08:56 +00:00
|
|
|
NS_IMETHOD OnLinkClickSync(nsIContent* aContent,
|
|
|
|
nsLinkVerb aVerb,
|
2002-11-20 00:44:26 +00:00
|
|
|
nsIURI* aURI,
|
2002-03-13 06:08:56 +00:00
|
|
|
const PRUnichar* aTargetSpec,
|
|
|
|
nsIInputStream* aPostDataStream = 0,
|
|
|
|
nsIInputStream* aHeadersDataStream = 0,
|
|
|
|
nsIDocShell** aDocShell = 0,
|
|
|
|
nsIRequest** aRequest = 0);
|
2001-04-27 13:03:17 +00:00
|
|
|
NS_IMETHOD OnOverLink(nsIContent* aContent,
|
2002-11-20 00:44:26 +00:00
|
|
|
nsIURI* aURI,
|
2001-04-27 13:03:17 +00:00
|
|
|
const PRUnichar* aTargetSpec);
|
2002-11-20 00:44:26 +00:00
|
|
|
NS_IMETHOD OnLeaveLink();
|
2003-07-01 02:59:54 +00:00
|
|
|
NS_IMETHOD GetLinkState(nsIURI* aLinkURI, nsLinkState& aState);
|
2001-04-27 13:03:17 +00:00
|
|
|
|
|
|
|
NS_IMETHOD Create();
|
|
|
|
NS_IMETHOD Destroy();
|
2000-07-18 23:13:07 +00:00
|
|
|
|
|
|
|
// nsWebShell
|
2001-06-19 00:28:10 +00:00
|
|
|
nsresult GetEventQueue(nsIEventQueue **aQueue);
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
static nsEventStatus PR_CALLBACK HandleEvent(nsGUIEvent *aEvent);
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2002-01-08 13:01:38 +00:00
|
|
|
// NS_IMETHOD SetURL(const PRUnichar* aURL);
|
2000-07-18 23:13:07 +00:00
|
|
|
|
|
|
|
protected:
|
2002-01-08 13:01:38 +00:00
|
|
|
// void GetRootWebShellEvenIfChrome(nsIWebShell** aResult);
|
2001-04-27 13:03:17 +00:00
|
|
|
void InitFrameData();
|
|
|
|
|
2000-11-16 20:08:48 +00:00
|
|
|
// helpers for executing commands
|
2002-07-15 22:04:13 +00:00
|
|
|
virtual nsresult GetControllerForCommand ( const char *inCommand, nsIController** outController );
|
|
|
|
virtual nsresult IsCommandEnabled ( const char * inCommand, PRBool* outEnabled );
|
|
|
|
virtual nsresult DoCommand ( const char * inCommand );
|
2002-02-02 05:13:56 +00:00
|
|
|
nsresult EnsureCommandHandler();
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
//
|
|
|
|
// Helper method that is called when a new document (including any
|
|
|
|
// sub-documents - ie. frames) has been completely loaded.
|
|
|
|
//
|
|
|
|
virtual nsresult EndPageLoad(nsIWebProgress *aProgress,
|
|
|
|
nsIChannel* channel,
|
|
|
|
nsresult aStatus);
|
2000-12-20 23:18:03 +00:00
|
|
|
|
2001-06-19 00:28:10 +00:00
|
|
|
PRThread *mThread;
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
nsIWebShellContainer* mContainer;
|
2002-09-24 00:35:51 +00:00
|
|
|
nsCOMPtr<nsIDocumentLoader> mDocLoader;
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
eCharsetReloadState mCharsetReloadState;
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
nsISupports* mHistoryState; // Weak reference. Session history owns this.
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2001-04-27 13:03:17 +00:00
|
|
|
nsresult CreateViewer(nsIRequest* request,
|
|
|
|
const char* aContentType,
|
|
|
|
const char* aCommand,
|
|
|
|
nsIStreamListener** aResult);
|
2000-07-18 23:13:07 +00:00
|
|
|
|
2002-02-02 05:13:56 +00:00
|
|
|
nsCOMPtr<nsICommandManager> mCommandManager;
|
2002-08-06 23:51:42 +00:00
|
|
|
|
2000-09-11 22:06:52 +00:00
|
|
|
#ifdef DEBUG
|
2000-07-18 23:13:07 +00:00
|
|
|
private:
|
2001-04-27 13:03:17 +00:00
|
|
|
// We're counting the number of |nsWebShells| to help find leaks
|
|
|
|
static unsigned long gNumberOfWebShells;
|
2000-09-11 22:06:52 +00:00
|
|
|
#endif /* DEBUG */
|
2000-07-18 23:13:07 +00:00
|
|
|
};
|
|
|
|
|
2000-07-19 13:36:35 +00:00
|
|
|
#endif /* webshell____h */
|
|
|
|
|