gecko-dev/xpfe/browser/src/nsBrowserInstance.h

120 строки
3.6 KiB
C
Исходник Обычный вид История

1999-08-31 18:05:08 +04:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* 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/
1999-08-31 18:05:08 +04: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.
1999-08-31 18:05:08 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-08-31 18:05:08 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-08-31 18:05:08 +04:00
*/
#ifndef nsBrowserInstance_h___
#define nsBrowserInstance_h___
#include "nsIBrowserInstance.h"
1999-09-02 00:41:30 +04:00
#include "nsIAppShellComponentImpl.h"
1999-08-31 18:05:08 +04:00
#include "nscore.h"
#include "nsCOMPtr.h"
#include "nsWeakReference.h"
1999-08-31 18:05:08 +04:00
#include "nsString.h"
#include "nsISupports.h"
#include "nsIStreamObserver.h"
#include "nsIDocumentLoaderObserver.h"
#include "nsIObserver.h"
#include "nsISessionHistory.h"
#include "nsIURIContentListener.h"
#include "nsICmdLineHandler.h"
1999-08-31 18:05:08 +04:00
#ifdef DEBUG_radha
#include "nsISHistory.h"
#endif
class nsIDocShell;
1999-08-31 18:05:08 +04:00
class nsIScriptContext;
class nsIDOMWindow;
class nsIDOMNode;
class nsIURI;
class nsIWebShellWindow;
class nsIFindComponent;
1999-08-31 18:05:08 +04:00
#define SHISTORY_POPUP_LIST 10
////////////////////////////////////////////////////////////////////////////////
// nsBrowserInstance:
////////////////////////////////////////////////////////////////////////////////
class nsBrowserInstance : public nsIBrowserInstance,
public nsIDocumentLoaderObserver,
public nsISessionHistory,
public nsIURIContentListener,
public nsSupportsWeakReference {
1999-08-31 18:05:08 +04:00
public:
nsBrowserInstance();
virtual ~nsBrowserInstance();
NS_DECL_ISUPPORTS
NS_DECL_NSIBROWSERINSTANCE
NS_DEFINE_STATIC_CID_ACCESSOR( NS_BROWSERINSTANCE_CID )
// nsIDocumentLoaderObserver
NS_DECL_NSIDOCUMENTLOADEROBSERVER
1999-08-31 18:05:08 +04:00
// nsISessionHistory
NS_DECL_NSISESSIONHISTORY
// URI Content listener
NS_DECL_NSIURICONTENTLISTENER
1999-08-31 18:05:08 +04:00
protected:
NS_IMETHOD ExecuteScript(nsIScriptContext * aContext, const nsString& aScript);
void InitializeSearch(nsIFindComponent*);
NS_IMETHOD CreateMenuItem(nsIDOMNode * , PRInt32,const PRUnichar * );
NS_IMETHOD UpdateGoMenu();
NS_IMETHOD ClearHistoryPopup(nsIDOMNode * );
1999-08-31 18:05:08 +04:00
PRBool mIsClosed;
1999-08-31 18:05:08 +04:00
nsIScriptContext *mToolbarScriptContext; // weak reference
nsIScriptContext *mContentScriptContext; // weak reference
nsIDOMWindow *mToolbarWindow; // weak reference
nsIDOMWindow *mContentWindow; // weak reference
nsIWebShellWindow *mWebShellWin; // weak reference
nsIDocShell * mDocShell; // weak reference
nsIDOMWindow* mDOMWindow; // weak reference
1999-08-31 18:05:08 +04:00
nsIWebShell * mContentAreaWebShell; // weak reference
nsIDocumentLoader * mContentAreaDocLoader; // weak reference
1999-08-31 18:05:08 +04:00
nsISessionHistory* mSHistory; // this is a service
nsCOMPtr<nsISupports> mSearchContext; // at last, something we really own
1999-09-02 00:41:30 +04:00
nsInstanceCounter mInstanceCounter;
#ifdef DEBUG_radha
nsISHistory * mNewSHistory;
#endif /* DEBUG_radha */
PRBool mIsLoadingHistory;
1999-08-31 18:05:08 +04:00
#ifdef DEBUG_warren
PRIntervalTime mLoadStartTime;
#endif
};
#endif // nsBrowserInstance_h___