1998-07-20 21:15:52 +00: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 "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/
|
|
|
|
*
|
|
|
|
* 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 Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
#ifndef nsBrowserWindow_h___
|
|
|
|
#define nsBrowserWindow_h___
|
|
|
|
|
|
|
|
#include "nsIBrowserWindow.h"
|
|
|
|
#include "nsIStreamListener.h"
|
1998-07-22 00:26:23 +00:00
|
|
|
#include "nsINetSupport.h"
|
1998-07-20 21:15:52 +00:00
|
|
|
#include "nsIWebShell.h"
|
|
|
|
#include "nsIScriptContextOwner.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsVoidArray.h"
|
|
|
|
#include "nsCRT.h"
|
1998-09-23 23:02:54 +00:00
|
|
|
//#include "nsIPref.h"
|
1998-07-31 18:34:53 +00:00
|
|
|
|
1998-12-17 15:52:48 +00:00
|
|
|
#include "nsIXPBaseWindow.h"
|
|
|
|
#include "nsPrintSetupDialog.h"
|
|
|
|
#include "nsFindDialog.h"
|
1999-01-06 21:59:17 +00:00
|
|
|
#include "nsTableInspectorDialog.h"
|
|
|
|
#include "nsImageInspectorDialog.h"
|
1998-12-17 15:52:48 +00:00
|
|
|
|
1998-08-28 16:14:37 +00:00
|
|
|
class nsILabel;
|
|
|
|
class nsICheckButton;
|
|
|
|
class nsIRadioButton;
|
|
|
|
class nsIDialog;
|
1998-07-20 21:15:52 +00:00
|
|
|
class nsITextWidget;
|
|
|
|
class nsIButton;
|
|
|
|
class nsIThrobber;
|
|
|
|
class nsViewerApp;
|
1998-10-15 23:23:04 +00:00
|
|
|
class nsIDocumentViewer;
|
|
|
|
class nsIPresContext;
|
1998-07-21 00:48:35 +00:00
|
|
|
class nsIPresShell;
|
1998-07-31 18:34:53 +00:00
|
|
|
class nsIPref;
|
1998-12-11 16:36:21 +00:00
|
|
|
class nsIContentConnector;
|
1998-07-21 00:48:35 +00:00
|
|
|
|
|
|
|
#define SAMPLES_BASE_URL "resource:/res/samples"
|
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
/**
|
|
|
|
* Abstract base class for our test app's browser windows
|
|
|
|
*/
|
|
|
|
class nsBrowserWindow : public nsIBrowserWindow,
|
|
|
|
public nsIStreamObserver,
|
1998-07-22 00:26:23 +00:00
|
|
|
public nsINetSupport,
|
1998-07-21 04:47:14 +00:00
|
|
|
public nsIWebShellContainer
|
1998-07-20 21:15:52 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
void* operator new(size_t sz) {
|
|
|
|
void* rv = new char[sz];
|
|
|
|
nsCRT::zero(rv, sz);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIBrowserWindow
|
|
|
|
NS_IMETHOD Init(nsIAppShell* aAppShell,
|
1998-07-31 06:02:06 +00:00
|
|
|
nsIPref* aPrefs,
|
1998-07-20 21:15:52 +00:00
|
|
|
const nsRect& aBounds,
|
1998-08-05 04:23:21 +00:00
|
|
|
PRUint32 aChromeMask,
|
|
|
|
PRBool aAllowPlugins = PR_TRUE);
|
1998-07-20 21:15:52 +00:00
|
|
|
NS_IMETHOD MoveTo(PRInt32 aX, PRInt32 aY);
|
|
|
|
NS_IMETHOD SizeTo(PRInt32 aWidth, PRInt32 aHeight);
|
1998-07-21 00:48:35 +00:00
|
|
|
NS_IMETHOD GetBounds(nsRect& aBounds);
|
1998-10-01 22:23:48 +00:00
|
|
|
NS_IMETHOD GetWindowBounds(nsRect& aBounds);
|
1998-07-20 21:15:52 +00:00
|
|
|
NS_IMETHOD Show();
|
|
|
|
NS_IMETHOD Hide();
|
1998-09-04 00:47:15 +00:00
|
|
|
NS_IMETHOD Close();
|
1998-09-09 01:19:11 +00:00
|
|
|
NS_IMETHOD SetChrome(PRUint32 aNewChromeMask);
|
1998-07-20 21:15:52 +00:00
|
|
|
NS_IMETHOD GetChrome(PRUint32& aChromeMaskResult);
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD SetTitle(const PRUnichar* aTitle);
|
|
|
|
NS_IMETHOD GetTitle(PRUnichar** aResult);
|
|
|
|
NS_IMETHOD SetStatus(const PRUnichar* aStatus);
|
|
|
|
NS_IMETHOD GetStatus(PRUnichar** aResult);
|
1998-09-12 00:22:27 +00:00
|
|
|
NS_IMETHOD SetProgress(PRInt32 aProgress, PRInt32 aProgressMax);
|
1998-07-21 00:48:35 +00:00
|
|
|
NS_IMETHOD GetWebShell(nsIWebShell*& aResult);
|
1998-07-20 21:15:52 +00:00
|
|
|
|
|
|
|
// nsIStreamObserver
|
|
|
|
NS_IMETHOD OnStartBinding(nsIURL* aURL, const char *aContentType);
|
1998-12-16 05:40:20 +00:00
|
|
|
NS_IMETHOD OnProgress(nsIURL* aURL, PRUint32 aProgress, PRUint32 aProgressMax);
|
|
|
|
NS_IMETHOD OnStatus(nsIURL* aURL, const PRUnichar* aMsg);
|
|
|
|
NS_IMETHOD OnStopBinding(nsIURL* aURL, nsresult status, const PRUnichar* aMsg);
|
1998-07-20 21:15:52 +00:00
|
|
|
|
|
|
|
// nsIWebShellContainer
|
1998-08-14 23:08:54 +00:00
|
|
|
NS_IMETHOD WillLoadURL(nsIWebShell* aShell, const PRUnichar* aURL, nsLoadType aReason);
|
|
|
|
NS_IMETHOD BeginLoadURL(nsIWebShell* aShell, const PRUnichar* aURL);
|
|
|
|
NS_IMETHOD ProgressLoadURL(nsIWebShell* aShell, const PRUnichar* aURL, PRInt32 aProgress, PRInt32 aProgressMax);
|
|
|
|
NS_IMETHOD EndLoadURL(nsIWebShell* aShell, const PRUnichar* aURL, PRInt32 aStatus);
|
1998-12-08 02:39:48 +00:00
|
|
|
NS_IMETHOD NewWebShell(PRUint32 aChromeMask,
|
|
|
|
PRBool aVisible,
|
|
|
|
nsIWebShell *&aNewWebShell);
|
1998-09-18 00:35:55 +00:00
|
|
|
NS_IMETHOD FindWebShellWithName(const PRUnichar* aName, nsIWebShell*& aResult);
|
1998-11-06 01:30:07 +00:00
|
|
|
NS_IMETHOD FocusAvailable(nsIWebShell* aFocusedWebShell);
|
1998-07-20 21:15:52 +00:00
|
|
|
|
1998-07-22 00:26:23 +00:00
|
|
|
// nsINetSupport
|
|
|
|
NS_IMETHOD_(void) Alert(const nsString &aText);
|
|
|
|
NS_IMETHOD_(PRBool) Confirm(const nsString &aText);
|
|
|
|
NS_IMETHOD_(PRBool) Prompt(const nsString &aText,
|
|
|
|
const nsString &aDefault,
|
|
|
|
nsString &aResult);
|
|
|
|
NS_IMETHOD_(PRBool) PromptUserAndPassword(const nsString &aText,
|
|
|
|
nsString &aUser,
|
|
|
|
nsString &aPassword);
|
|
|
|
NS_IMETHOD_(PRBool) PromptPassword(const nsString &aText,
|
|
|
|
nsString &aPassword);
|
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
// nsBrowserWindow
|
|
|
|
virtual nsresult CreateMenuBar(PRInt32 aWidth) = 0;
|
|
|
|
virtual nsresult CreateToolBar(PRInt32 aWidth);
|
|
|
|
virtual nsresult CreateStatusBar(PRInt32 aWidth);
|
|
|
|
void Layout(PRInt32 aWidth, PRInt32 aHeight);
|
|
|
|
void Back();
|
|
|
|
void Forward();
|
1998-11-11 20:31:45 +00:00
|
|
|
void GoTo(const PRUnichar* aURL,const char* aCommand=nsnull);
|
1998-07-20 21:15:52 +00:00
|
|
|
void StartThrobber();
|
|
|
|
void StopThrobber();
|
|
|
|
void LoadThrobberImages();
|
|
|
|
void DestroyThrobberImages();
|
1998-07-20 22:13:11 +00:00
|
|
|
virtual nsEventStatus DispatchMenuItem(PRInt32 aID) = 0;
|
1998-07-20 21:15:52 +00:00
|
|
|
|
1998-07-21 16:45:21 +00:00
|
|
|
void DoFileOpen();
|
1998-07-27 18:17:07 +00:00
|
|
|
void DoCopy();
|
1998-08-07 04:45:03 +00:00
|
|
|
void DoJSConsole();
|
1998-09-22 00:57:54 +00:00
|
|
|
void DoPrefs();
|
1998-08-14 01:51:00 +00:00
|
|
|
void DoEditorMode(nsIWebShell* aWebShell);
|
1998-07-31 16:53:45 +00:00
|
|
|
nsIPresShell* GetPresShell();
|
1998-07-21 16:45:21 +00:00
|
|
|
|
1998-08-28 16:14:37 +00:00
|
|
|
void DoFind();
|
1998-08-04 20:04:55 +00:00
|
|
|
void DoSelectAll();
|
1998-11-05 23:57:02 +00:00
|
|
|
NS_IMETHOD FindNext(const nsString &aSearchStr, PRBool aMatchCase, PRBool aSearchDown, PRBool &aIsFound);
|
|
|
|
NS_IMETHOD ForceRefresh();
|
1998-08-04 20:04:55 +00:00
|
|
|
|
1998-12-03 10:12:30 +00:00
|
|
|
void DoTreeView();
|
1999-01-05 22:59:02 +00:00
|
|
|
void DoToolbarDemo();
|
1998-12-03 10:12:30 +00:00
|
|
|
|
1998-10-15 23:23:04 +00:00
|
|
|
void ShowPrintPreview(PRInt32 aID);
|
1998-11-14 01:58:34 +00:00
|
|
|
void DoPrint(void);
|
1998-12-17 15:52:48 +00:00
|
|
|
void DoPrintSetup(void);
|
1999-01-06 21:59:17 +00:00
|
|
|
void DoTableInspector(void);
|
|
|
|
void DoImageInspector(void);
|
1998-10-15 23:23:04 +00:00
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
#ifdef NS_DEBUG
|
|
|
|
void DumpContent(FILE *out = stdout);
|
1998-09-02 22:07:42 +00:00
|
|
|
void DumpFrames(FILE *out = stdout, nsString *aFilter = nsnull);
|
1998-07-20 21:15:52 +00:00
|
|
|
void DumpViews(FILE *out = stdout);
|
|
|
|
void DumpWebShells(FILE *out = stdout);
|
|
|
|
void DumpStyleSheets(FILE *out = stdout);
|
|
|
|
void DumpStyleContexts(FILE *out = stdout);
|
|
|
|
void ToggleFrameBorders();
|
|
|
|
void ShowContentSize();
|
|
|
|
void ShowFrameSize();
|
|
|
|
void ShowStyleSize();
|
1998-07-20 22:22:13 +00:00
|
|
|
void DoDebugSave();
|
1998-07-27 18:17:07 +00:00
|
|
|
void DoToggleSelection();
|
1998-07-21 00:48:35 +00:00
|
|
|
void DoDebugRobot();
|
|
|
|
void DoSiteWalker();
|
1998-07-20 22:13:11 +00:00
|
|
|
nsEventStatus DispatchDebugMenu(PRInt32 aID);
|
1998-07-20 21:15:52 +00:00
|
|
|
#endif
|
1999-01-23 07:10:37 +00:00
|
|
|
nsEventStatus DispatchStyleMenu(PRInt32 aID);
|
|
|
|
void SetCompatibilityMode(PRBool aIsStandard);
|
1998-07-20 21:15:52 +00:00
|
|
|
|
1998-08-28 16:14:37 +00:00
|
|
|
nsEventStatus ProcessDialogEvent(nsGUIEvent *aEvent);
|
|
|
|
|
1998-10-15 23:23:04 +00:00
|
|
|
// Initialize a second view on a different browser windows document
|
|
|
|
// viewer.
|
|
|
|
nsresult Init(nsIAppShell* aAppShell,
|
|
|
|
nsIPref* aPrefs,
|
|
|
|
const nsRect& aBounds,
|
|
|
|
PRUint32 aChromeMask,
|
|
|
|
PRBool aAllowPlugins,
|
|
|
|
nsIDocumentViewer* aDocViewer,
|
|
|
|
nsIPresContext* aPresContext);
|
1998-08-28 16:14:37 +00:00
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
void SetApp(nsViewerApp* aApp) {
|
|
|
|
mApp = aApp;
|
|
|
|
}
|
|
|
|
|
1998-09-15 00:14:31 +00:00
|
|
|
static void CloseAllWindows();
|
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
nsViewerApp* mApp;
|
|
|
|
|
|
|
|
PRUint32 mChromeMask;
|
|
|
|
nsString mTitle;
|
|
|
|
|
|
|
|
nsIWidget* mWindow;
|
|
|
|
nsIWebShell* mWebShell;
|
|
|
|
|
|
|
|
// "Toolbar"
|
|
|
|
nsITextWidget* mLocation;
|
|
|
|
nsIButton* mBack;
|
|
|
|
nsIButton* mForward;
|
|
|
|
nsIThrobber* mThrobber;
|
1999-01-05 22:59:02 +00:00
|
|
|
nsIContentConnector* mTreeView; // HACK
|
|
|
|
nsIContentConnector* mToolbox; // HACK
|
1998-12-03 10:12:30 +00:00
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
// "Status bar"
|
|
|
|
nsITextWidget* mStatus;
|
|
|
|
|
1998-08-28 16:14:37 +00:00
|
|
|
// Find Dialog
|
|
|
|
nsIDialog * mDialog;
|
|
|
|
nsIButton * mCancelBtn;
|
|
|
|
nsIButton * mFindBtn;
|
|
|
|
nsITextWidget * mTextField;
|
|
|
|
nsICheckButton * mMatchCheckBtn;
|
|
|
|
nsIRadioButton * mUpRadioBtn;
|
|
|
|
nsIRadioButton * mDwnRadioBtn;
|
|
|
|
nsILabel * mLabel;
|
|
|
|
|
1998-12-17 15:52:48 +00:00
|
|
|
nsIXPBaseWindow * mXPDialog;
|
1999-01-06 21:59:17 +00:00
|
|
|
nsIXPBaseWindow * mTableInspectorDialog;
|
|
|
|
nsIXPBaseWindow * mImageInspectorDialog;
|
1998-12-17 15:52:48 +00:00
|
|
|
PrintSetupInfo mPrintSetupInfo;
|
|
|
|
|
1999-01-06 21:59:17 +00:00
|
|
|
nsTableInspectorDialog * mTableInspector;
|
|
|
|
nsImageInspectorDialog * mImageInspector;
|
|
|
|
|
1998-08-19 21:00:51 +00:00
|
|
|
//for creating more instances
|
1998-11-18 05:31:03 +00:00
|
|
|
nsIAppShell* mAppShell;
|
|
|
|
nsIPref* mPrefs;
|
1998-08-19 21:00:51 +00:00
|
|
|
PRBool mAllowPlugins;
|
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
// Global window collection
|
|
|
|
static nsVoidArray gBrowsers;
|
|
|
|
static void AddBrowser(nsBrowserWindow* aBrowser);
|
|
|
|
static void RemoveBrowser(nsBrowserWindow* aBrowser);
|
|
|
|
static nsBrowserWindow* FindBrowserFor(nsIWidget* aWidget, PRIntn aWhich);
|
|
|
|
|
|
|
|
protected:
|
1999-01-06 21:59:17 +00:00
|
|
|
nsIDOMDocument* GetDOMDocument(nsIWebShell *aWebShell);
|
|
|
|
|
1998-07-20 21:15:52 +00:00
|
|
|
nsBrowserWindow();
|
|
|
|
virtual ~nsBrowserWindow();
|
|
|
|
};
|
|
|
|
|
|
|
|
// XXX This is bad; because we can't hang a closure off of the event
|
|
|
|
// callback we have no way to store our This pointer; therefore we
|
|
|
|
// have to hunt to find the browswer that events belong too!!!
|
|
|
|
|
|
|
|
// aWhich for FindBrowserFor
|
|
|
|
#define FIND_WINDOW 0
|
|
|
|
#define FIND_BACK 1
|
|
|
|
#define FIND_FORWARD 2
|
|
|
|
#define FIND_LOCATION 3
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsNativeBrowserWindow : public nsBrowserWindow {
|
|
|
|
public:
|
|
|
|
nsNativeBrowserWindow();
|
|
|
|
~nsNativeBrowserWindow();
|
|
|
|
|
|
|
|
virtual nsresult CreateMenuBar(PRInt32 aWidth);
|
1998-07-20 22:13:11 +00:00
|
|
|
virtual nsEventStatus DispatchMenuItem(PRInt32 aID);
|
1998-07-20 21:15:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsBrowserWindow_h___ */
|