2001-09-25 22:43:09 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1998-07-16 01:16:47 +00:00
|
|
|
*
|
2001-09-25 22:43:09 +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-16 01:16:47 +00:00
|
|
|
*
|
2001-09-25 22:43:09 +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-16 01:16:47 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-25 22:43:09 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-25 22:43:09 +00:00
|
|
|
* Contributor(s):
|
2000-02-08 13:40:10 +00:00
|
|
|
* Travis Bogard <travis@netscape.com>
|
2000-08-09 03:30:46 +00:00
|
|
|
* Brendan Eich <brendan@mozilla.org>
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
* David Hyatt (hyatt@netscape.com)
|
2001-04-18 06:06:31 +00:00
|
|
|
* Dan Rosen <dr@netscape.com>
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
* Vidur Apparao <vidur@netscape.com>
|
|
|
|
* Johnny Stenback <jst@netscape.com>
|
2001-09-25 22:43:09 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
// Local Includes
|
1998-07-24 05:05:42 +00:00
|
|
|
#include "nsGlobalWindow.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsScreen.h"
|
|
|
|
#include "nsHistory.h"
|
|
|
|
#include "nsBarProps.h"
|
|
|
|
|
|
|
|
// Helper Classes
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsXPIDLString.h"
|
|
|
|
#include "nsJSUtils.h"
|
1998-07-16 01:16:47 +00:00
|
|
|
#include "prmem.h"
|
2000-08-22 03:51:17 +00:00
|
|
|
#include "jsdbgapi.h" // for JS_ClearWatchPointsForObject
|
2000-08-23 17:27:06 +00:00
|
|
|
#include "nsReadableUtils.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsDOMClassInfo.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
|
|
|
|
// Other Classes
|
2000-12-30 19:22:22 +00:00
|
|
|
#include "nsIEventListenerManager.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsEscape.h"
|
|
|
|
#include "nsStyleCoord.h"
|
|
|
|
#include "nsMimeTypeArray.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsPluginArray.h"
|
2001-04-04 22:09:56 +00:00
|
|
|
#include "nsIPluginHost.h"
|
2003-03-25 06:54:52 +00:00
|
|
|
#ifdef OJI
|
2001-05-02 22:04:10 +00:00
|
|
|
#include "nsIJVMManager.h"
|
2003-03-25 06:54:52 +00:00
|
|
|
#endif
|
2001-02-22 03:01:34 +00:00
|
|
|
#include "nsContentCID.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
|
|
|
|
// Interfaces Needed
|
2001-10-31 23:43:27 +00:00
|
|
|
#include "nsIWidget.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIBaseWindow.h"
|
|
|
|
#include "nsICharsetConverterManager.h"
|
2000-02-10 04:56:56 +00:00
|
|
|
#include "nsICodebasePrincipal.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIContent.h"
|
2002-02-01 14:52:11 +00:00
|
|
|
#include "nsIWebBrowserPrint.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIContentViewerEdit.h"
|
|
|
|
#include "nsIDocShell.h"
|
2000-03-30 22:38:32 +00:00
|
|
|
#include "nsIDocShellLoadInfo.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIDocShellTreeItem.h"
|
|
|
|
#include "nsIDocShellTreeNode.h"
|
2001-05-17 02:15:27 +00:00
|
|
|
#include "nsIDocCharset.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIDocument.h"
|
2000-05-11 19:17:07 +00:00
|
|
|
#include "nsIDOMCrypto.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIDOMDocument.h"
|
2000-04-26 13:58:56 +00:00
|
|
|
#include "nsIDOMDocumentView.h"
|
2002-02-20 03:33:52 +00:00
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMDocumentEvent.h"
|
|
|
|
#include "nsIDOMEvent.h"
|
2003-04-16 00:00:55 +00:00
|
|
|
#include "nsIDOMPopupBlockedEvent.h"
|
2000-05-11 19:17:07 +00:00
|
|
|
#include "nsIDOMPkcs11.h"
|
2002-01-05 02:20:55 +00:00
|
|
|
#include "nsIEmbeddingSiteWindow2.h"
|
1999-10-18 15:06:38 +00:00
|
|
|
#include "nsIEventQueueService.h"
|
2000-04-24 04:41:27 +00:00
|
|
|
#include "nsIEventStateManager.h"
|
2001-05-11 21:05:08 +00:00
|
|
|
#include "nsIHttpProtocolHandler.h"
|
2000-03-31 03:33:49 +00:00
|
|
|
#include "nsIJSContextStack.h"
|
2000-10-15 23:23:12 +00:00
|
|
|
#include "nsIJSRuntimeService.h"
|
2000-02-08 22:45:45 +00:00
|
|
|
#include "nsIMarkupDocumentViewer.h"
|
2002-11-25 23:21:25 +00:00
|
|
|
#include "nsIPrefService.h"
|
|
|
|
#include "nsIPrefBranch.h"
|
|
|
|
#include "nsIPrefBranchInternal.h"
|
|
|
|
#include "nsIPrefLocalizedString.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIPresShell.h"
|
1998-07-24 05:05:42 +00:00
|
|
|
#include "nsIPrivateDOMEvent.h"
|
2001-08-31 04:06:39 +00:00
|
|
|
#include "nsIProgrammingLanguage.h"
|
2001-04-10 18:30:25 +00:00
|
|
|
#include "nsIAuthPrompt.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIScriptGlobalObjectOwner.h"
|
1999-07-07 07:50:03 +00:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2001-01-27 16:58:15 +00:00
|
|
|
#include "nsIScrollableView.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsISelectionController.h"
|
2000-09-14 11:45:01 +00:00
|
|
|
#include "nsISelection.h"
|
2000-04-28 14:02:29 +00:00
|
|
|
#include "nsIFrameSelection.h"
|
2000-08-22 03:51:17 +00:00
|
|
|
#include "nsISidebar.h" // XXX for sidebar HACK, see bug 20721
|
2000-08-07 20:55:36 +00:00
|
|
|
#include "nsIPrompt.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIWebNavigation.h"
|
|
|
|
#include "nsIWebBrowser.h"
|
|
|
|
#include "nsIWebBrowserChrome.h"
|
2001-09-30 19:56:32 +00:00
|
|
|
#include "nsIWebBrowserFind.h" // For window.find()
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIWebShell.h"
|
2001-09-30 19:56:32 +00:00
|
|
|
#include "nsIWindowMediator.h" // For window.find()
|
2000-05-17 06:38:43 +00:00
|
|
|
#include "nsIComputedDOMStyle.h"
|
2000-10-30 23:33:34 +00:00
|
|
|
#include "nsIEntropyCollector.h"
|
2000-05-11 19:17:07 +00:00
|
|
|
#include "nsDOMCID.h"
|
2000-05-03 13:03:17 +00:00
|
|
|
#include "nsDOMError.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsIWindowWatcher.h"
|
2001-02-17 02:46:48 +00:00
|
|
|
#include "nsPIWindowWatcher.h"
|
2001-07-16 02:40:48 +00:00
|
|
|
#include "nsIContentViewer.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsISupportsPrimitives.h"
|
|
|
|
#include "nsDOMClassInfo.h"
|
|
|
|
#include "nsIJSNativeInitializer.h"
|
2002-02-20 03:33:52 +00:00
|
|
|
#include "nsIFullScreen.h"
|
2002-03-20 11:23:13 +00:00
|
|
|
#include "nsIStringBundle.h"
|
2002-12-11 00:03:34 +00:00
|
|
|
#include "nsIScriptEventManager.h" // For GetInterface()
|
2002-12-04 02:51:47 +00:00
|
|
|
#include "nsIConsoleService.h"
|
2003-04-12 03:08:23 +00:00
|
|
|
#include "nsIControllerContext.h"
|
|
|
|
#include "nsGlobalWindowCommands.h"
|
2003-04-25 22:24:37 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2002-01-12 12:37:31 +00:00
|
|
|
|
2002-02-06 04:37:26 +00:00
|
|
|
#include "plbase64.h"
|
|
|
|
|
2002-01-15 01:11:16 +00:00
|
|
|
#include "nsIPrintSettings.h"
|
1999-04-20 19:41:17 +00:00
|
|
|
|
2000-11-04 08:21:20 +00:00
|
|
|
#include "nsWindowRoot.h"
|
2003-04-16 00:00:55 +00:00
|
|
|
#include "nsNetCID.h"
|
2000-11-04 08:21:20 +00:00
|
|
|
|
2000-09-22 05:02:20 +00:00
|
|
|
// XXX An unfortunate dependency exists here (two XUL files).
|
2000-02-11 00:57:54 +00:00
|
|
|
#include "nsIDOMXULDocument.h"
|
|
|
|
#include "nsIDOMXULCommandDispatcher.h"
|
2000-09-22 05:02:20 +00:00
|
|
|
|
2000-09-08 06:59:14 +00:00
|
|
|
#include "nsIBindingManager.h"
|
2000-09-22 05:02:20 +00:00
|
|
|
#include "nsIXBLService.h"
|
|
|
|
|
2002-10-25 02:31:12 +00:00
|
|
|
// used for popup blocking, needs to be converted to something
|
|
|
|
// belonging to the back-end like nsIContentPolicy
|
2002-10-08 03:30:26 +00:00
|
|
|
#include "nsIPopupWindowManager.h"
|
2000-02-11 00:57:54 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
static nsIEntropyCollector *gEntropyCollector = nsnull;
|
|
|
|
static nsIPrefBranch *gPrefBranch = nsnull;
|
2002-07-08 07:11:59 +00:00
|
|
|
static PRInt32 gRefCnt = 0;
|
|
|
|
nsIXPConnect *GlobalWindowImpl::sXPConnect = nsnull;
|
|
|
|
nsIScriptSecurityManager *GlobalWindowImpl::sSecMan = nsnull;
|
|
|
|
nsIFactory *GlobalWindowImpl::sComputedDOMStyleFactory = nsnull;
|
2002-12-12 22:37:07 +00:00
|
|
|
#ifdef DEBUG_jst
|
|
|
|
PRInt32 gTimeoutCnt = 0;
|
|
|
|
#endif
|
2002-06-19 00:42:23 +00:00
|
|
|
|
2002-07-08 07:11:59 +00:00
|
|
|
#define DOM_MIN_TIMEOUT_VALUE 10 // 10ms
|
2000-10-30 23:33:34 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
// CIDs
|
2002-11-25 23:21:25 +00:00
|
|
|
static NS_DEFINE_CID(kEventQueueServiceCID, NS_EVENTQUEUESERVICE_CID);
|
2003-03-25 06:54:52 +00:00
|
|
|
#ifdef OJI
|
2001-05-02 22:04:10 +00:00
|
|
|
static NS_DEFINE_CID(kJVMServiceCID, NS_JVMMANAGER_CID);
|
2003-03-25 06:54:52 +00:00
|
|
|
#endif
|
2001-05-11 21:05:08 +00:00
|
|
|
static NS_DEFINE_CID(kHTTPHandlerCID, NS_HTTPPROTOCOLHANDLER_CID);
|
2000-02-08 13:40:10 +00:00
|
|
|
static NS_DEFINE_CID(kXULControllersCID, NS_XULCONTROLLERS_CID);
|
2000-08-22 03:51:17 +00:00
|
|
|
static NS_DEFINE_CID(kCharsetConverterManagerCID,
|
|
|
|
NS_ICHARSETCONVERTERMANAGER_CID);
|
2000-05-11 19:17:07 +00:00
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
2001-09-30 19:56:32 +00:00
|
|
|
static NS_DEFINE_CID(kWindowMediatorCID, NS_WINDOWMEDIATOR_CID); // For window.find()
|
2002-03-20 11:23:13 +00:00
|
|
|
static NS_DEFINE_CID(kCStringBundleServiceCID, NS_STRINGBUNDLESERVICE_CID);
|
|
|
|
|
2003-04-09 00:52:48 +00:00
|
|
|
static const char sJSStackContractID[] = "@mozilla.org/js/xpc/ContextStack;1";
|
2002-02-26 05:28:26 +00:00
|
|
|
|
2003-04-09 00:52:48 +00:00
|
|
|
static const char kDOMBundleURL[] = "chrome://global/locale/commonDialogs.properties";
|
|
|
|
static const char kDOMSecurityWarningsBundleURL[] = "chrome://communicator/locale/dom/dom.properties";
|
2002-03-20 11:23:13 +00:00
|
|
|
|
2003-04-09 00:52:48 +00:00
|
|
|
static const char kCryptoContractID[] = NS_CRYPTO_CONTRACTID;
|
|
|
|
static const char kPkcs11ContractID[] = NS_PKCS11_CONTRACTID;
|
1999-10-14 10:58:25 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
//*** GlobalWindowImpl: Object Management
|
|
|
|
//*****************************************************************************
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
GlobalWindowImpl::GlobalWindowImpl()
|
|
|
|
: mJSObject(nsnull),
|
|
|
|
mNavigator(nsnull),
|
|
|
|
mScreen(nsnull),
|
|
|
|
mHistory(nsnull),
|
|
|
|
mFrames(nsnull),
|
|
|
|
mLocation(nsnull),
|
|
|
|
mMenubar(nsnull),
|
|
|
|
mToolbar(nsnull),
|
|
|
|
mLocationbar(nsnull),
|
|
|
|
mPersonalbar(nsnull),
|
|
|
|
mStatusbar(nsnull),
|
|
|
|
mScrollbars(nsnull),
|
|
|
|
mTimeouts(nsnull),
|
|
|
|
mTimeoutInsertionPoint(&mTimeouts),
|
|
|
|
mRunningTimeout(nsnull),
|
|
|
|
mTimeoutPublicIdCounter(1),
|
|
|
|
mTimeoutFiringDepth(0),
|
|
|
|
mFirstDocumentLoad(PR_TRUE),
|
|
|
|
mIsScopeClear(PR_TRUE),
|
|
|
|
mIsDocumentLoaded(PR_FALSE),
|
|
|
|
mFullScreen(PR_FALSE),
|
2003-05-29 00:48:35 +00:00
|
|
|
mIsClosed(PR_FALSE),
|
2003-06-20 22:44:33 +00:00
|
|
|
mOpenerWasCleared(PR_FALSE),
|
2002-11-28 01:35:45 +00:00
|
|
|
mLastMouseButtonAction(LL_ZERO),
|
|
|
|
mGlobalObjectOwner(nsnull),
|
|
|
|
mDocShell(nsnull),
|
|
|
|
mMutationBits(0),
|
|
|
|
mChromeEventHandler(nsnull),
|
|
|
|
mFrameElement(nsnull)
|
1999-12-17 00:50:17 +00:00
|
|
|
{
|
2001-05-18 00:02:52 +00:00
|
|
|
// We could have failed the first time through trying
|
|
|
|
// to create the entropy collector, so we should
|
|
|
|
// try to get one until we succeed.
|
|
|
|
if (gRefCnt++ == 0 || !gEntropyCollector) {
|
2002-11-25 23:21:25 +00:00
|
|
|
CallGetService(NS_ENTROPYCOLLECTOR_CONTRACTID, &gEntropyCollector);
|
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
if (!gPrefBranch) {
|
|
|
|
CallGetService(NS_PREFSERVICE_CONTRACTID, &gPrefBranch);
|
2000-10-30 23:33:34 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
if (!sXPConnect) {
|
2002-11-25 23:21:25 +00:00
|
|
|
CallGetService(nsIXPConnect::GetCID(), &sXPConnect);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
}
|
2002-05-17 22:24:06 +00:00
|
|
|
|
|
|
|
if (!sSecMan) {
|
2002-11-25 23:21:25 +00:00
|
|
|
CallGetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &sSecMan);
|
2002-05-17 22:24:06 +00:00
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
GlobalWindowImpl::~GlobalWindowImpl()
|
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (!--gRefCnt) {
|
|
|
|
NS_IF_RELEASE(gEntropyCollector);
|
|
|
|
}
|
|
|
|
|
|
|
|
mDocument = nsnull; // Forces Release
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
CleanUp();
|
2002-11-25 23:21:25 +00:00
|
|
|
|
|
|
|
if (!gRefCnt) {
|
|
|
|
// Destroy the Pref Branch last, since some things need
|
|
|
|
// to use it before it goes away.
|
|
|
|
NS_IF_RELEASE(gPrefBranch);
|
|
|
|
}
|
1999-12-17 00:50:17 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// static
|
|
|
|
void
|
|
|
|
GlobalWindowImpl::ShutDown()
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(sXPConnect);
|
2002-05-17 22:24:06 +00:00
|
|
|
NS_IF_RELEASE(sSecMan);
|
2002-07-08 07:11:59 +00:00
|
|
|
NS_IF_RELEASE(sComputedDOMStyleFactory);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_jst
|
|
|
|
printf ("---- Leaked %d GlobalWindowImpl's\n", gRefCnt);
|
2002-12-12 22:37:07 +00:00
|
|
|
printf ("---- Leaked %d nsTimeoutImpl's\n", gTimeoutCnt);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2002-12-20 08:00:08 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::CleanUp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IF_RELEASE(mNavigator);
|
|
|
|
NS_IF_RELEASE(mScreen);
|
|
|
|
NS_IF_RELEASE(mHistory);
|
|
|
|
NS_IF_RELEASE(mMenubar);
|
|
|
|
NS_IF_RELEASE(mToolbar);
|
|
|
|
NS_IF_RELEASE(mLocationbar);
|
|
|
|
NS_IF_RELEASE(mPersonalbar);
|
|
|
|
NS_IF_RELEASE(mStatusbar);
|
|
|
|
NS_IF_RELEASE(mScrollbars);
|
|
|
|
NS_IF_RELEASE(mLocation);
|
|
|
|
NS_IF_RELEASE(mFrames);
|
2002-12-20 08:00:08 +00:00
|
|
|
|
|
|
|
ClearControllers();
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mOpener = nsnull; // Forces Release
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
mContext = nsnull; // Forces Release
|
2001-06-26 21:29:08 +00:00
|
|
|
mChromeEventHandler = nsnull; // Forces Release
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
|
|
|
|
2002-12-20 08:00:08 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::ClearControllers()
|
|
|
|
{
|
2003-04-12 03:08:23 +00:00
|
|
|
if (mControllers) {
|
|
|
|
PRUint32 count;
|
|
|
|
mControllers->GetControllerCount(&count);
|
2002-12-20 08:00:08 +00:00
|
|
|
|
2003-04-12 03:08:23 +00:00
|
|
|
while (count--) {
|
|
|
|
nsCOMPtr<nsIController> controller;
|
|
|
|
mControllers->GetControllerAt(count, getter_AddRefs(controller));
|
2002-12-20 08:00:08 +00:00
|
|
|
|
2003-04-15 19:55:10 +00:00
|
|
|
nsCOMPtr<nsIControllerContext> context = do_QueryInterface(controller);
|
2003-04-12 03:08:23 +00:00
|
|
|
if (context)
|
|
|
|
context->SetCommandContext(nsnull);
|
2002-12-20 08:00:08 +00:00
|
|
|
}
|
|
|
|
|
2003-04-12 03:08:23 +00:00
|
|
|
mControllers = nsnull;
|
|
|
|
}
|
2002-12-20 08:00:08 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsISupports
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
2000-02-08 13:40:10 +00:00
|
|
|
|
1998-07-16 01:16:47 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// QueryInterface implementation for GlobalWindowImpl
|
2000-02-08 13:40:10 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN(GlobalWindowImpl)
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIScriptGlobalObject)
|
2000-09-01 01:54:35 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMWindowInternal)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMWindow)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMJSWindow)
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptGlobalObject)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptObjectPrincipal)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMEventReceiver)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMEventTarget)
|
2002-11-09 00:25:25 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOM3EventTarget)
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsPIDOMWindow)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMViewCSS)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMAbstractView)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupportsWeakReference)
|
2001-05-17 02:15:27 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIInterfaceRequestor)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(Window)
|
2000-02-08 13:40:10 +00:00
|
|
|
NS_INTERFACE_MAP_END
|
1998-07-16 01:16:47 +00:00
|
|
|
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMPL_ADDREF(GlobalWindowImpl)
|
|
|
|
NS_IMPL_RELEASE(GlobalWindowImpl)
|
|
|
|
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIScriptGlobalObject
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetContext(nsIScriptContext* aContext)
|
1999-05-14 03:10:51 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
// if setting the context to null, then we won't get to clean up the
|
|
|
|
// named reference, so do it now
|
|
|
|
if (!aContext) {
|
|
|
|
NS_WARNING("Possibly early removal of script object, see bug #41608");
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
} else {
|
|
|
|
JSContext *cx = (JSContext *)aContext->GetNativeContext();
|
|
|
|
|
|
|
|
mJSObject = ::JS_GetGlobalObject(cx);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mContext = aContext;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2001-10-19 04:13:37 +00:00
|
|
|
if (mContext) {
|
2001-10-31 23:52:52 +00:00
|
|
|
nsCOMPtr<nsIDOMWindowInternal> parent;
|
|
|
|
GetParentInternal(getter_AddRefs(parent));
|
2001-10-19 04:13:37 +00:00
|
|
|
|
2001-10-31 23:52:52 +00:00
|
|
|
if (parent) {
|
2001-10-19 04:13:37 +00:00
|
|
|
// This window is a [i]frame, don't bother GC'ing when the
|
|
|
|
// frame's context is destroyed since a GC will happen when the
|
|
|
|
// frameset or host document is destroyed anyway.
|
|
|
|
|
|
|
|
mContext->SetGCOnDestruction(PR_FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1999-05-14 03:10:51 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetContext(nsIScriptContext ** aContext)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
*aContext = mContext;
|
|
|
|
NS_IF_ADDREF(*aContext);
|
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1999-07-27 20:51:39 +00:00
|
|
|
|
2003-05-05 20:55:37 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetOpenerScriptURL(nsIURI* aURI)
|
|
|
|
{
|
|
|
|
mOpenerScriptURL = aURI;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetNewDocument(nsIDOMDocument* aDocument,
|
2002-07-09 02:49:58 +00:00
|
|
|
PRBool aRemoveEventListeners,
|
|
|
|
PRBool aClearScopeHint)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2003-06-18 23:48:57 +00:00
|
|
|
if (!aDocument && mDocument) {
|
|
|
|
// Cache the old principal now that the document is being removed.
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
2000-09-20 23:38:28 +00:00
|
|
|
|
2003-06-18 23:48:57 +00:00
|
|
|
doc->GetPrincipal(getter_AddRefs(mDocumentPrincipal));
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-08-09 03:30:46 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Always clear watchpoints, to deal with two cases:
|
|
|
|
// 1. The first document for this window is loading, and a miscreant has
|
|
|
|
// preset watchpoints on the window object in order to attack the new
|
|
|
|
// document's privileged information.
|
|
|
|
// 2. A document loaded and used watchpoints on its own window, leaving
|
2002-11-28 01:04:18 +00:00
|
|
|
// them set until the next document loads. We must clean up window
|
2000-08-22 03:51:17 +00:00
|
|
|
// watchpoints here.
|
|
|
|
// Watchpoints set on document and subordinate objects are all cleared
|
|
|
|
// when those sub-window objects are finalized, after JS_ClearScope and
|
|
|
|
// a GC run that finds them to be garbage.
|
|
|
|
|
2003-06-18 23:48:57 +00:00
|
|
|
JSContext *cx = nsnull;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2003-06-18 23:48:57 +00:00
|
|
|
if (mContext) {
|
|
|
|
cx = (JSContext *)mContext->GetNativeContext();
|
2002-06-27 01:27:00 +00:00
|
|
|
|
2003-06-18 23:48:57 +00:00
|
|
|
if (mJSObject) {
|
|
|
|
::JS_ClearWatchPointsForObject(cx, mJSObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aDocument) {
|
|
|
|
if (mNavigator && mDocumentPrincipal) {
|
2003-06-19 00:08:29 +00:00
|
|
|
// Loading a new document. Compare its principal against the
|
2003-06-18 23:48:57 +00:00
|
|
|
// old principal to see whether we are allowed to keep the old
|
|
|
|
// navigator object.
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(aDocument));
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> newPrincipal;
|
|
|
|
doc->GetPrincipal(getter_AddRefs(newPrincipal));
|
|
|
|
|
|
|
|
nsresult rv =
|
|
|
|
sSecMan->CheckSameOriginPrincipal(mDocumentPrincipal,
|
|
|
|
newPrincipal);
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// Same origins. Notify the navigator object that we are
|
|
|
|
// loading a new document, so it can make sure it is ready
|
|
|
|
// for the new document.
|
|
|
|
mNavigator->LoadingNewDocument();
|
|
|
|
} else {
|
|
|
|
// Different origins. Destroy the navigator object so it gets
|
|
|
|
// recreated for the new document. The plugins or mime types
|
|
|
|
// arrays may have changed. See bug 150087.
|
|
|
|
mNavigatorHolder = nsnull;
|
|
|
|
|
|
|
|
mNavigator->SetDocShell(nsnull);
|
|
|
|
|
|
|
|
NS_RELEASE(mNavigator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let go of the cached principal since we no longer need it.
|
|
|
|
mDocumentPrincipal = nsnull;
|
2002-06-27 01:27:00 +00:00
|
|
|
}
|
2002-06-21 19:34:54 +00:00
|
|
|
|
2002-07-09 02:49:58 +00:00
|
|
|
if (mSidebar) {
|
|
|
|
mSidebar->SetWindow(nsnull);
|
|
|
|
mSidebar = nsnull;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mFirstDocumentLoad) {
|
2000-09-22 05:02:20 +00:00
|
|
|
if (aDocument) {
|
2000-09-14 06:18:09 +00:00
|
|
|
mFirstDocumentLoad = PR_FALSE;
|
2000-09-22 05:02:20 +00:00
|
|
|
}
|
2000-09-14 06:18:09 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mDocument = aDocument;
|
2000-09-22 05:02:20 +00:00
|
|
|
|
|
|
|
if (mDocument) {
|
|
|
|
// Get our private root. If it is equal to us, then we
|
2002-02-09 03:36:55 +00:00
|
|
|
// need to attach our global key bindings that handle
|
2000-09-22 05:02:20 +00:00
|
|
|
// browser scrolling and other browser commands.
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> internal;
|
|
|
|
GetPrivateRoot(getter_AddRefs(internal));
|
2003-03-25 00:17:27 +00:00
|
|
|
|
|
|
|
if (internal == NS_STATIC_CAST(nsIDOMWindowInternal *, this)) {
|
2002-02-09 03:36:55 +00:00
|
|
|
nsCOMPtr<nsIXBLService> xblService =
|
2003-06-18 23:48:57 +00:00
|
|
|
do_GetService("@mozilla.org/xbl;1");
|
2000-09-22 05:02:20 +00:00
|
|
|
if (xblService) {
|
2003-03-25 00:17:27 +00:00
|
|
|
nsCOMPtr<nsIDOMEventReceiver> rec =
|
|
|
|
do_QueryInterface(mChromeEventHandler);
|
2000-09-22 05:02:20 +00:00
|
|
|
xblService->AttachGlobalKeyHandler(rec);
|
2002-02-09 03:36:55 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// for now, the only way to get drag/drop is to use the XUL
|
|
|
|
// wrapper. There are just too many things that need to be
|
|
|
|
// added to hookup DnD with XBL (pinkerton)
|
2001-01-23 00:41:54 +00:00
|
|
|
//xblService->AttachGlobalDragHandler(rec);
|
2000-09-22 05:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-08-09 03:30:46 +00:00
|
|
|
|
2000-10-06 00:22:56 +00:00
|
|
|
/* No mDocShell means we've already been partially closed down.
|
|
|
|
When that happens, setting status isn't a big requirement,
|
|
|
|
so don't. (Doesn't happen under normal circumstances, but
|
|
|
|
bug 49615 describes a case.) */
|
2000-12-03 01:21:54 +00:00
|
|
|
/* We only want to do this when we're setting a new document rather
|
2002-11-28 01:04:18 +00:00
|
|
|
than going away. See bug 61840. */
|
2002-07-09 03:43:15 +00:00
|
|
|
|
2000-12-03 01:21:54 +00:00
|
|
|
if (mDocShell && aDocument) {
|
2000-10-06 00:22:56 +00:00
|
|
|
SetStatus(nsString());
|
|
|
|
SetDefaultStatus(nsString());
|
|
|
|
}
|
2000-08-29 02:04:44 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mDocument) {
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
|
|
|
nsCOMPtr<nsIURI> docURL;
|
2000-08-09 03:30:46 +00:00
|
|
|
|
2001-07-13 01:30:44 +00:00
|
|
|
// If we had a document in this window the document most likely
|
|
|
|
// made our scope "unclear"
|
|
|
|
|
|
|
|
mIsScopeClear = PR_FALSE;
|
2001-07-11 09:09:30 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (doc) {
|
2001-06-20 03:27:48 +00:00
|
|
|
doc->GetDocumentURL(getter_AddRefs(docURL));
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-08-09 03:30:46 +00:00
|
|
|
|
2002-07-09 02:49:58 +00:00
|
|
|
if (aRemoveEventListeners && mListenerManager) {
|
2001-10-01 02:08:30 +00:00
|
|
|
mListenerManager->RemoveAllListeners(PR_FALSE);
|
|
|
|
mListenerManager = nsnull;
|
|
|
|
}
|
|
|
|
|
2001-07-12 03:13:28 +00:00
|
|
|
if (docURL) {
|
2002-07-10 02:00:45 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> treeItem(do_QueryInterface(mDocShell));
|
|
|
|
PRBool isContentWindow = PR_FALSE;
|
|
|
|
|
|
|
|
if (treeItem) {
|
|
|
|
PRInt32 itemType = nsIDocShellTreeItem::typeContent;
|
|
|
|
treeItem->GetItemType(&itemType);
|
|
|
|
|
|
|
|
isContentWindow = itemType != nsIDocShellTreeItem::typeChrome;
|
|
|
|
}
|
|
|
|
|
2003-05-05 20:55:37 +00:00
|
|
|
PRBool isAboutBlank = PR_FALSE;
|
2002-03-06 07:48:55 +00:00
|
|
|
nsCAutoString url;
|
2003-05-05 20:55:37 +00:00
|
|
|
docURL->GetSpec(url);
|
|
|
|
isAboutBlank = url.Equals(NS_LITERAL_CSTRING("about:blank"));
|
|
|
|
|
|
|
|
PRBool isSameOrigin = PR_FALSE;
|
|
|
|
if (isAboutBlank && mOpenerScriptURL) {
|
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(mDocShell));
|
|
|
|
if (webNav) {
|
|
|
|
nsCOMPtr<nsIURI> newDocURL;
|
|
|
|
webNav->GetCurrentURI(getter_AddRefs(newDocURL));
|
|
|
|
if (newDocURL && sSecMan) {
|
|
|
|
isSameOrigin =
|
|
|
|
NS_SUCCEEDED(sSecMan->CheckSameOriginURI(mOpenerScriptURL,
|
|
|
|
newDocURL));
|
|
|
|
}
|
|
|
|
}
|
2002-07-10 02:00:45 +00:00
|
|
|
}
|
|
|
|
|
2003-05-05 20:55:37 +00:00
|
|
|
if (!isAboutBlank ||
|
2003-06-18 23:48:57 +00:00
|
|
|
(isContentWindow && aClearScopeHint && !isSameOrigin)) {
|
2003-05-05 20:55:37 +00:00
|
|
|
// the current document is *not* about:blank,
|
|
|
|
// or aClearScopeHint is true and the new document
|
|
|
|
// has a different origin than the calling script.
|
|
|
|
// clear timeouts and clear the scope
|
2000-08-22 03:51:17 +00:00
|
|
|
ClearAllTimeouts();
|
2000-08-09 03:30:46 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (mContext && mJSObject) {
|
2003-06-18 23:48:57 +00:00
|
|
|
if (mNavigator) {
|
|
|
|
nsISupports* navigator =
|
|
|
|
NS_REINTERPRET_CAST(nsISupports*, mNavigator);
|
|
|
|
sXPConnect->WrapNative(cx, mJSObject, navigator,
|
|
|
|
NS_GET_IID(nsIDOMNavigator),
|
|
|
|
getter_AddRefs(mNavigatorHolder));
|
|
|
|
}
|
|
|
|
|
2003-03-25 00:17:27 +00:00
|
|
|
::JS_ClearScope(cx, mJSObject);
|
|
|
|
::JS_ClearRegExpStatics(cx);
|
|
|
|
|
|
|
|
mIsScopeClear = PR_TRUE;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2000-08-09 03:30:46 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
|
2001-05-23 00:15:54 +00:00
|
|
|
if (mContext && aDocument) {
|
2003-06-18 23:48:57 +00:00
|
|
|
if (mNavigator && mJSObject) {
|
|
|
|
// Make our JS wrapper hold on to the navigator object so
|
|
|
|
// that it doesn't go away when transitioning from page to
|
|
|
|
// page. We do this by just asking for the navigator
|
|
|
|
// property on the global object. That causes the global
|
|
|
|
// object's resolve hook to cache the property on the
|
|
|
|
// global, and thus root it which prevents GC from getting
|
|
|
|
// rid of the object.
|
|
|
|
jsval dummy;
|
|
|
|
::JS_GetProperty(cx, mJSObject, "navigator", &dummy);
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Add an extra ref in case we release mContext during GC.
|
|
|
|
nsCOMPtr<nsIScriptContext> kungFuDeathGrip = mContext;
|
|
|
|
kungFuDeathGrip->GC();
|
|
|
|
}
|
1999-11-16 23:11:50 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mDocument = aDocument;
|
1999-05-27 21:06:51 +00:00
|
|
|
|
2002-04-27 00:03:47 +00:00
|
|
|
if (mDocument && mContext) {
|
2003-06-18 23:48:57 +00:00
|
|
|
|
2002-04-27 00:03:47 +00:00
|
|
|
if (mIsScopeClear) {
|
|
|
|
mContext->InitContext(this);
|
|
|
|
} else if (mJSObject) {
|
|
|
|
// If we didn't clear the scope (i.e. the old document was
|
|
|
|
// about:blank) then we need to update the cached document
|
|
|
|
// property on the window to reflect the new document and not
|
|
|
|
// the old one.
|
|
|
|
|
|
|
|
nsWindowSH::CacheDocumentProperty(cx, mJSObject, this);
|
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2000-11-27 07:55:20 +00:00
|
|
|
// Clear our mutation bitfield.
|
|
|
|
mMutationBits = 0;
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1999-06-09 19:04:18 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetDocShell(nsIDocShell* aDocShell)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-09-22 05:02:20 +00:00
|
|
|
if (aDocShell == mDocShell)
|
|
|
|
return NS_OK;
|
|
|
|
|
2002-07-10 04:58:59 +00:00
|
|
|
// SetDocShell(nsnull) means the window is being torn down. Drop our
|
|
|
|
// reference to the script context, allowing it to be deleted
|
|
|
|
// later. Meanwhile, keep our weak reference to the script object
|
|
|
|
// (mJSObject) so that it can be retrieved later (until it is
|
|
|
|
// finalized by the JS GC).
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!aDocShell && mContext) {
|
2000-10-15 23:23:12 +00:00
|
|
|
ClearAllTimeouts();
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-07-10 04:58:59 +00:00
|
|
|
// if we are closing the window while in full screen mode, be sure
|
|
|
|
// to restore os chrome
|
2002-02-20 03:33:52 +00:00
|
|
|
if (mFullScreen) {
|
|
|
|
nsCOMPtr<nsIFocusController> focusController;
|
|
|
|
GetRootFocusController(getter_AddRefs(focusController));
|
|
|
|
PRBool isActive = PR_FALSE;
|
|
|
|
focusController->GetActive(&isActive);
|
|
|
|
// only restore OS chrome if the closing window was active
|
2002-07-10 04:58:59 +00:00
|
|
|
|
2002-02-20 03:33:52 +00:00
|
|
|
if (isActive) {
|
|
|
|
nsCOMPtr<nsIFullScreen> fullScreen =
|
|
|
|
do_GetService("@mozilla.org/browser/fullscreen;1");
|
2002-07-10 04:58:59 +00:00
|
|
|
|
2002-02-20 03:33:52 +00:00
|
|
|
if (fullScreen)
|
|
|
|
fullScreen->ShowAllOSChrome();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-20 08:00:08 +00:00
|
|
|
ClearControllers();
|
|
|
|
|
2003-06-18 23:48:57 +00:00
|
|
|
mNavigatorHolder = nsnull;
|
|
|
|
|
2002-09-04 02:18:52 +00:00
|
|
|
mContext->GC();
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mContext = nsnull; // force release now
|
2001-06-26 21:29:08 +00:00
|
|
|
mChromeEventHandler = nsnull; // force release now
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2002-07-10 04:58:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mDocShell = aDocShell; // Weak Reference
|
|
|
|
|
|
|
|
if (mLocation)
|
|
|
|
mLocation->SetDocShell(aDocShell);
|
2001-01-23 22:29:41 +00:00
|
|
|
if (mNavigator)
|
|
|
|
mNavigator->SetDocShell(aDocShell);
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mHistory)
|
|
|
|
mHistory->SetDocShell(aDocShell);
|
|
|
|
if (mFrames)
|
|
|
|
mFrames->SetDocShell(aDocShell);
|
|
|
|
if (mScreen)
|
|
|
|
mScreen->SetDocShell(aDocShell);
|
|
|
|
|
|
|
|
if (mDocShell) {
|
|
|
|
// tell our member elements about the new browserwindow
|
|
|
|
if (mMenubar) {
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
GetWebBrowserChrome(getter_AddRefs(browserChrome));
|
|
|
|
mMenubar->SetWebBrowserChrome(browserChrome);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get our enclosing chrome shell and retrieve its global window impl, so
|
|
|
|
// that we can do some forwarding to the chrome document.
|
2000-11-04 08:21:20 +00:00
|
|
|
mDocShell->GetChromeEventHandler(getter_AddRefs(mChromeEventHandler));
|
|
|
|
if (!mChromeEventHandler) {
|
|
|
|
// We have no chrome event handler. If we have a parent,
|
2002-11-28 01:04:18 +00:00
|
|
|
// get our chrome event handler from the parent. If
|
2000-11-04 08:21:20 +00:00
|
|
|
// we don't have a parent, then we need to make a new
|
|
|
|
// window root object that will function as a chrome event
|
|
|
|
// handler and receive all events that occur anywhere inside
|
|
|
|
// our window.
|
|
|
|
nsCOMPtr<nsIDOMWindow> parentWindow;
|
|
|
|
GetParent(getter_AddRefs(parentWindow));
|
|
|
|
if (parentWindow.get() != NS_STATIC_CAST(nsIDOMWindow*,this)) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> piWindow(do_QueryInterface(parentWindow));
|
|
|
|
nsCOMPtr<nsIChromeEventHandler> handler;
|
|
|
|
piWindow->GetChromeEventHandler(getter_AddRefs(mChromeEventHandler));
|
|
|
|
}
|
|
|
|
else NS_NewWindowRoot(this, getter_AddRefs(mChromeEventHandler));
|
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-08-07 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetDocShell(nsIDocShell ** aDocShell)
|
1999-02-10 16:25:11 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
*aDocShell = mDocShell;
|
|
|
|
NS_IF_ADDREF(*aDocShell);
|
|
|
|
return NS_OK;
|
1999-02-10 16:25:11 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetOpenerWindow(nsIDOMWindowInternal* aOpener)
|
1998-09-03 01:19:58 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
mOpener = aOpener;
|
|
|
|
return NS_OK;
|
1999-12-03 09:24:22 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetGlobalObjectOwner(nsIScriptGlobalObjectOwner* aOwner)
|
1999-12-03 09:24:22 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
mGlobalObjectOwner = aOwner; // Note this is supposed to be a weak ref.
|
|
|
|
return NS_OK;
|
1999-12-03 09:24:22 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetGlobalObjectOwner(nsIScriptGlobalObjectOwner ** aOwner)
|
1999-12-03 09:24:22 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aOwner);
|
1999-12-03 09:24:22 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aOwner = mGlobalObjectOwner;
|
|
|
|
NS_IF_ADDREF(*aOwner);
|
|
|
|
return NS_OK;
|
1998-09-03 01:19:58 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::HandleDOMEvent(nsIPresContext* aPresContext,
|
|
|
|
nsEvent* aEvent,
|
|
|
|
nsIDOMEvent** aDOMEvent,
|
|
|
|
PRUint32 aFlags,
|
|
|
|
nsEventStatus* aEventStatus)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult ret = NS_OK;
|
2001-04-17 05:52:11 +00:00
|
|
|
PRBool externalDOMEvent = PR_FALSE;
|
2000-08-22 03:51:17 +00:00
|
|
|
nsIDOMEvent *domEvent = nsnull;
|
2001-05-18 00:02:52 +00:00
|
|
|
static PRUint32 count = 0;
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
/* mChromeEventHandler and mContext go dangling in the middle of this
|
2000-02-08 13:40:10 +00:00
|
|
|
function under some circumstances (events that destroy the window)
|
|
|
|
without this addref. */
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIChromeEventHandler> kungFuDeathGrip1(mChromeEventHandler);
|
|
|
|
nsCOMPtr<nsIScriptContext> kungFuDeathGrip2(mContext);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
/* If this is a mouse event, use the struct to provide entropy for
|
2000-10-30 23:33:34 +00:00
|
|
|
* the system.
|
|
|
|
*/
|
2002-02-09 03:36:55 +00:00
|
|
|
if (gEntropyCollector &&
|
2002-11-09 00:25:25 +00:00
|
|
|
(NS_EVENT_FLAG_CAPTURE & aFlags) &&
|
2001-05-18 00:02:52 +00:00
|
|
|
(aEvent->message == NS_MOUSE_MOVE)) {
|
|
|
|
//I'd like to not come in here if there is a mChromeEventHandler
|
2002-02-09 03:36:55 +00:00
|
|
|
//present, but there is always one when the message is
|
2001-05-18 00:02:52 +00:00
|
|
|
//NS_MOUSE_MOVE.
|
|
|
|
//
|
|
|
|
//Chances are this counter will overflow during the life of the
|
2002-11-28 01:04:18 +00:00
|
|
|
//process, but that's OK for our case. Means we get a little
|
2001-05-18 00:02:52 +00:00
|
|
|
//more entropy.
|
|
|
|
if (count++ % 100 == 0) {
|
2002-02-09 03:36:55 +00:00
|
|
|
//Since the high bits seem to be zero's most of the time,
|
2001-05-18 00:02:52 +00:00
|
|
|
//let's only take the lowest half of the point structure.
|
|
|
|
PRInt16 myCoord[4];
|
|
|
|
|
|
|
|
myCoord[0] = aEvent->point.x;
|
|
|
|
myCoord[1] = aEvent->point.y;
|
|
|
|
myCoord[2] = aEvent->refPoint.x;
|
|
|
|
myCoord[3] = aEvent->refPoint.y;
|
|
|
|
gEntropyCollector->RandomUpdate((void*)myCoord, sizeof(myCoord));
|
|
|
|
gEntropyCollector->RandomUpdate((void*)&aEvent->time, sizeof(PRUint32));
|
|
|
|
}
|
2000-10-30 23:33:34 +00:00
|
|
|
}
|
|
|
|
|
2002-02-20 03:33:52 +00:00
|
|
|
// if the window is deactivated while in full screen mode,
|
|
|
|
// restore OS chrome, and hide it again upon re-activation
|
2002-11-09 00:25:25 +00:00
|
|
|
if (mFullScreen && (NS_EVENT_FLAG_BUBBLE & aFlags)) {
|
2002-02-20 03:33:52 +00:00
|
|
|
if (aEvent->message == NS_DEACTIVATE || aEvent->message == NS_ACTIVATE) {
|
|
|
|
nsCOMPtr<nsIFullScreen> fullScreen =
|
|
|
|
do_GetService("@mozilla.org/browser/fullscreen;1");
|
|
|
|
if (fullScreen) {
|
|
|
|
if (aEvent->message == NS_DEACTIVATE)
|
|
|
|
fullScreen->ShowAllOSChrome();
|
|
|
|
else
|
|
|
|
fullScreen->HideAllOSChrome();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_EVENT_FLAG_INIT & aFlags) {
|
2001-04-17 05:52:11 +00:00
|
|
|
if (aDOMEvent) {
|
|
|
|
if (*aDOMEvent) {
|
2002-02-09 03:36:55 +00:00
|
|
|
externalDOMEvent = PR_TRUE;
|
2001-04-17 05:52:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2000-08-22 03:51:17 +00:00
|
|
|
aDOMEvent = &domEvent;
|
|
|
|
}
|
2002-11-09 00:25:25 +00:00
|
|
|
aEvent->flags |= aFlags;
|
2000-08-22 03:51:17 +00:00
|
|
|
aFlags &= ~(NS_EVENT_FLAG_CANT_BUBBLE | NS_EVENT_FLAG_CANT_CANCEL);
|
2002-11-09 00:25:25 +00:00
|
|
|
aFlags |= NS_EVENT_FLAG_BUBBLE | NS_EVENT_FLAG_CAPTURE;
|
2000-09-08 06:59:14 +00:00
|
|
|
|
|
|
|
// Execute bindingdetached handlers before we tear ourselves
|
|
|
|
// down.
|
2002-11-09 00:25:25 +00:00
|
|
|
if (aEvent->message == NS_PAGE_UNLOAD && mDocument && !(aFlags & NS_EVENT_FLAG_SYSTEM_EVENT)) {
|
2000-09-08 06:59:14 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
|
|
|
nsCOMPtr<nsIBindingManager> bindingManager;
|
|
|
|
doc->GetBindingManager(getter_AddRefs(bindingManager));
|
|
|
|
if (bindingManager)
|
|
|
|
bindingManager->ExecuteDetachedHandlers();
|
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2001-08-31 04:06:39 +00:00
|
|
|
if (aEvent->message == NS_PAGE_UNLOAD) {
|
|
|
|
mIsDocumentLoaded = PR_FALSE;
|
2002-03-08 21:48:28 +00:00
|
|
|
} else if ((aEvent->message >= NS_MOUSE_LEFT_BUTTON_UP &&
|
|
|
|
aEvent->message <= NS_MOUSE_RIGHT_BUTTON_DOWN) ||
|
|
|
|
(aEvent->message >= NS_MOUSE_LEFT_DOUBLECLICK &&
|
|
|
|
aEvent->message <= NS_MOUSE_RIGHT_CLICK)) {
|
|
|
|
mLastMouseButtonAction = PR_Now();
|
2001-08-31 04:06:39 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Capturing stage
|
2002-11-09 00:25:25 +00:00
|
|
|
if ((NS_EVENT_FLAG_CAPTURE & aFlags) && mChromeEventHandler) {
|
2000-08-22 03:51:17 +00:00
|
|
|
// Check chrome document capture here.
|
2000-10-05 21:40:13 +00:00
|
|
|
// XXX The chrome can not handle this, see bug 51211
|
|
|
|
if (aEvent->message != NS_IMAGE_LOAD) {
|
|
|
|
mChromeEventHandler->HandleChromeEvent(aPresContext, aEvent, aDOMEvent,
|
2002-11-09 00:25:25 +00:00
|
|
|
aFlags & NS_EVENT_CAPTURE_MASK,
|
2000-10-05 21:40:13 +00:00
|
|
|
aEventStatus);
|
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Local handling stage
|
2003-02-24 20:15:59 +00:00
|
|
|
if ((aEvent->message != NS_BLUR_CONTENT || !GetBlurSuppression()) &&
|
|
|
|
mListenerManager &&
|
2002-11-09 00:25:25 +00:00
|
|
|
!(NS_EVENT_FLAG_CANT_BUBBLE & aEvent->flags && NS_EVENT_FLAG_BUBBLE & aFlags && !(NS_EVENT_FLAG_INIT & aFlags))) {
|
2000-08-22 03:51:17 +00:00
|
|
|
aEvent->flags |= aFlags;
|
|
|
|
mListenerManager->HandleEvent(aPresContext, aEvent, aDOMEvent, this,
|
|
|
|
aFlags, aEventStatus);
|
|
|
|
aEvent->flags &= ~aFlags;
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2001-08-31 04:06:39 +00:00
|
|
|
if (aEvent->message == NS_PAGE_LOAD)
|
|
|
|
mIsDocumentLoaded = PR_TRUE;
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Bubbling stage
|
2002-11-09 00:25:25 +00:00
|
|
|
if ((NS_EVENT_FLAG_BUBBLE & aFlags) && mChromeEventHandler) {
|
2000-08-22 03:51:17 +00:00
|
|
|
// Bubble to a chrome document if it exists
|
|
|
|
// XXX Need a way to know if an event should really bubble or not.
|
|
|
|
// For now filter out load and unload, since they cause problems.
|
|
|
|
if ((aEvent->message != NS_PAGE_LOAD) &&
|
|
|
|
(aEvent->message != NS_PAGE_UNLOAD) &&
|
2000-09-07 20:37:01 +00:00
|
|
|
(aEvent->message != NS_IMAGE_LOAD) &&
|
2000-08-22 03:51:17 +00:00
|
|
|
(aEvent->message != NS_FOCUS_CONTENT) &&
|
|
|
|
(aEvent->message != NS_BLUR_CONTENT)) {
|
|
|
|
mChromeEventHandler->HandleChromeEvent(aPresContext, aEvent,
|
2002-11-09 00:25:25 +00:00
|
|
|
aDOMEvent, aFlags & NS_EVENT_BUBBLE_MASK,
|
2000-08-22 03:51:17 +00:00
|
|
|
aEventStatus);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-17 04:17:16 +00:00
|
|
|
if (aEvent->message == NS_PAGE_LOAD) {
|
|
|
|
nsCOMPtr<nsIContent> content(do_QueryInterface(mFrameElement));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> parent;
|
|
|
|
GetParentInternal(getter_AddRefs(parent));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> treeItem(do_QueryInterface(mDocShell));
|
|
|
|
|
|
|
|
PRInt32 itemType = nsIDocShellTreeItem::typeChrome;
|
|
|
|
|
|
|
|
if (treeItem) {
|
|
|
|
treeItem->GetItemType(&itemType);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (content && parent && itemType != nsIDocShellTreeItem::typeChrome) {
|
|
|
|
// If we're not in chrome, or at a chrome boundary, fire the
|
|
|
|
// onload event for the frame element.
|
|
|
|
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent event;
|
|
|
|
|
|
|
|
event.eventStructType = NS_EVENT;
|
|
|
|
event.message = NS_PAGE_LOAD;
|
|
|
|
|
2002-05-29 17:56:50 +00:00
|
|
|
// Most of the time we could get a pres context to pass in here,
|
|
|
|
// but not always (i.e. if this window is not shown there won't
|
|
|
|
// be a pres context available). Since we're not firing a GUI
|
|
|
|
// event we don't need a pres context anyway so we just pass
|
|
|
|
// null as the pres context all the time here.
|
|
|
|
|
2002-09-20 22:58:40 +00:00
|
|
|
ret = content->HandleDOMEvent(nsnull, &event, nsnull,
|
|
|
|
NS_EVENT_FLAG_INIT, &status);
|
2002-04-17 04:17:16 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-31 04:06:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_EVENT_FLAG_INIT & aFlags) {
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// We're leaving the DOM event loop so if we created an event,
|
|
|
|
// release here.
|
2001-04-17 05:52:11 +00:00
|
|
|
if (*aDOMEvent && !externalDOMEvent) {
|
2000-08-22 03:51:17 +00:00
|
|
|
nsrefcnt rc;
|
|
|
|
NS_RELEASE2(*aDOMEvent, rc);
|
|
|
|
if (rc) {
|
|
|
|
// Okay, so someone in the DOM loop (a listener, JS object) still has
|
|
|
|
// a ref to the DOM Event but the internal data hasn't been malloc'd.
|
|
|
|
// Force a copy of the data here so the DOM Event is still valid.
|
|
|
|
nsCOMPtr<nsIPrivateDOMEvent>
|
|
|
|
privateEvent(do_QueryInterface(*aDOMEvent));
|
|
|
|
if (privateEvent)
|
|
|
|
privateEvent->DuplicatePrivateData();
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2001-04-17 05:52:11 +00:00
|
|
|
aDOMEvent = nsnull;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return ret;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
JSObject *
|
|
|
|
GlobalWindowImpl::GetGlobalJSObject()
|
|
|
|
{
|
|
|
|
return mJSObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::OnFinalize(JSObject *aJSObject)
|
|
|
|
{
|
|
|
|
if (aJSObject == mJSObject) {
|
|
|
|
mJSObject = nsnull;
|
|
|
|
} else if (mJSObject) {
|
|
|
|
NS_ERROR("Huh? XPConnect created more than one wrapper for this global!");
|
|
|
|
} else {
|
|
|
|
NS_WARNING("Weird, we're finalized with a null mJSObject?");
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2001-11-27 09:18:28 +00:00
|
|
|
NS_IMETHODIMP
|
2002-02-09 02:48:31 +00:00
|
|
|
GlobalWindowImpl::SetScriptsEnabled(PRBool aEnabled, PRBool aFireTimeouts)
|
2001-11-27 09:18:28 +00:00
|
|
|
{
|
2002-02-09 02:48:31 +00:00
|
|
|
if (aEnabled && aFireTimeouts) {
|
2001-11-27 09:18:28 +00:00
|
|
|
// Scripts are enabled (again?) on this context, run timeouts that
|
|
|
|
// fired on this context while scripts were disabled.
|
|
|
|
|
|
|
|
RunTimeout(nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIScriptObjectPrincipal
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPrincipal(nsIPrincipal** result)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-09-20 23:38:28 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(result);
|
2000-09-19 05:21:00 +00:00
|
|
|
|
2000-09-20 23:38:28 +00:00
|
|
|
if (mDocument) {
|
|
|
|
// If we have a document, get the principal from the document
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
2000-09-19 05:21:00 +00:00
|
|
|
|
2000-09-20 23:38:28 +00:00
|
|
|
return doc->GetPrincipal(result);
|
|
|
|
}
|
2000-09-19 05:21:00 +00:00
|
|
|
|
2000-09-20 23:38:28 +00:00
|
|
|
if (mDocumentPrincipal) {
|
|
|
|
*result = mDocumentPrincipal;
|
|
|
|
NS_ADDREF(*result);
|
2000-09-19 05:21:00 +00:00
|
|
|
|
2000-09-20 23:38:28 +00:00
|
|
|
return NS_OK;
|
2000-09-19 05:21:00 +00:00
|
|
|
}
|
2000-07-13 21:48:25 +00:00
|
|
|
|
2000-09-20 23:38:28 +00:00
|
|
|
// If we don't have a principal and we don't have a document we
|
|
|
|
// ask the parent window for the principal. This can happen when
|
|
|
|
// loading a frameset that has a <frame src="javascript:xxx">, in
|
|
|
|
// that case the global window is used in JS before we've loaded
|
|
|
|
// a document into the window.
|
2001-10-31 23:52:52 +00:00
|
|
|
nsCOMPtr<nsIDOMWindowInternal> parent;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2001-10-31 23:52:52 +00:00
|
|
|
GetParentInternal(getter_AddRefs(parent));
|
2000-07-13 21:48:25 +00:00
|
|
|
|
2001-10-31 23:52:52 +00:00
|
|
|
if (parent) {
|
2000-09-20 23:38:28 +00:00
|
|
|
nsCOMPtr<nsIScriptObjectPrincipal> objPrincipal(do_QueryInterface(parent));
|
|
|
|
|
|
|
|
if (objPrincipal) {
|
|
|
|
return objPrincipal->GetPrincipal(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_FAILURE;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIDOMWindow
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetDocument(nsIDOMDocument** aDocument)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-04-17 04:17:16 +00:00
|
|
|
// lazily instantiate an about:blank document if necessary, and if
|
|
|
|
// we have what it takes to do so. Note that domdoc here is the same
|
|
|
|
// thing as our mDocument, but we don't have to explicitly set the
|
|
|
|
// member variable because the docshell has already called
|
|
|
|
// SetNewDocument().
|
2001-11-16 02:14:53 +00:00
|
|
|
if (!mDocument && mDocShell)
|
|
|
|
nsCOMPtr<nsIDOMDocument> domdoc(do_GetInterface(mDocShell));
|
|
|
|
|
2000-09-01 01:54:35 +00:00
|
|
|
*aDocument = mDocument;
|
|
|
|
NS_IF_ADDREF(*aDocument);
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2002-02-06 03:48:20 +00:00
|
|
|
// like GetDocument, but merely fetches the document if it already exists
|
|
|
|
NS_IMETHODIMP GlobalWindowImpl::GetExtantDocument(nsIDOMDocument** aDocument)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aDocument);
|
|
|
|
*aDocument = mDocument;
|
|
|
|
NS_IF_ADDREF(*aDocument);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-09-01 01:54:35 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIDOMWindowInternal
|
|
|
|
//*****************************************************************************
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetWindow(nsIDOMWindowInternal** aWindow)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-09-01 01:54:35 +00:00
|
|
|
*aWindow = NS_STATIC_CAST(nsIDOMWindowInternal *, this);
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ADDREF(*aWindow);
|
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetSelf(nsIDOMWindowInternal** aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-09-01 01:54:35 +00:00
|
|
|
*aWindow = NS_STATIC_CAST(nsIDOMWindowInternal *, this);
|
|
|
|
NS_ADDREF(*aWindow);
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetNavigator(nsIDOMNavigator** aNavigator)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mNavigator) {
|
2001-01-23 22:29:41 +00:00
|
|
|
mNavigator = new NavigatorImpl(mDocShell);
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_TRUE(mNavigator, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
NS_ADDREF(mNavigator);
|
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aNavigator = mNavigator;
|
|
|
|
NS_ADDREF(*aNavigator);
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetScreen(nsIDOMScreen** aScreen)
|
1999-01-28 23:12:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mScreen && mDocShell) {
|
|
|
|
mScreen = new ScreenImpl(mDocShell);
|
|
|
|
NS_ENSURE_TRUE(mScreen, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
NS_ADDREF(mScreen);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aScreen = mScreen;
|
|
|
|
NS_ADDREF(*aScreen);
|
|
|
|
return NS_OK;
|
1999-01-28 23:12:54 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetHistory(nsIDOMHistory** aHistory)
|
1999-01-28 23:12:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mHistory && mDocShell) {
|
|
|
|
mHistory = new HistoryImpl(mDocShell);
|
|
|
|
NS_ENSURE_TRUE(mHistory, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
NS_ADDREF(mHistory);
|
|
|
|
}
|
|
|
|
*aHistory = mHistory;
|
|
|
|
NS_ADDREF(*aHistory);
|
|
|
|
return NS_OK;
|
1999-01-28 23:12:54 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetParent(nsIDOMWindow** aParent)
|
1999-06-09 19:04:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aParent);
|
|
|
|
*aParent = nsnull;
|
|
|
|
if (!mDocShell)
|
|
|
|
return NS_OK;
|
1999-06-09 19:04:18 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(docShellAsItem, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> parent;
|
|
|
|
docShellAsItem->GetSameTypeParent(getter_AddRefs(parent));
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (parent) {
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject(do_GetInterface(parent));
|
|
|
|
NS_ENSURE_SUCCESS(CallQueryInterface(globalObject.get(), aParent),
|
|
|
|
NS_ERROR_FAILURE);
|
|
|
|
}
|
|
|
|
else {
|
2000-09-01 01:54:35 +00:00
|
|
|
*aParent = NS_STATIC_CAST(nsIDOMWindowInternal *, this);
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ADDREF(*aParent);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
1999-06-09 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetTop(nsIDOMWindow** aTop)
|
1999-06-09 19:04:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult ret = NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aTop = nsnull;
|
|
|
|
if (mDocShell) {
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> root;
|
|
|
|
docShellAsItem->GetSameTypeRootTreeItem(getter_AddRefs(root));
|
|
|
|
|
|
|
|
if (root) {
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject(do_GetInterface(root));
|
|
|
|
CallQueryInterface(globalObject.get(), aTop);
|
|
|
|
}
|
|
|
|
}
|
1999-06-09 19:04:18 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
return ret;
|
1999-06-09 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetContent(nsIDOMWindow** aContent)
|
1999-06-09 19:04:18 +00:00
|
|
|
{
|
2000-02-08 13:40:10 +00:00
|
|
|
*aContent = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
NS_ENSURE_TRUE(treeOwner, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> primaryContent;
|
|
|
|
treeOwner->GetPrimaryContentShell(getter_AddRefs(primaryContent));
|
|
|
|
|
2000-09-01 01:54:35 +00:00
|
|
|
nsCOMPtr<nsIDOMWindowInternal> domWindow(do_GetInterface(primaryContent));
|
2000-02-08 13:40:10 +00:00
|
|
|
*aContent = domWindow;
|
|
|
|
NS_IF_ADDREF(*aContent);
|
1999-06-09 19:04:18 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-02-16 07:13:59 +00:00
|
|
|
// XXX for sidebar HACK, see bug 20721
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetSidebar(nsISidebar** aSidebar)
|
2000-02-16 07:13:59 +00:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mSidebar) {
|
2000-09-13 23:57:52 +00:00
|
|
|
mSidebar = do_CreateInstance(NS_SIDEBAR_CONTRACTID, &rv);
|
2000-02-16 07:13:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mSidebar) {
|
2000-09-01 01:54:35 +00:00
|
|
|
nsIDOMWindowInternal *win = NS_STATIC_CAST(nsIDOMWindowInternal *, this);
|
2000-02-16 07:13:59 +00:00
|
|
|
/* no addref */
|
|
|
|
mSidebar->SetWindow(win);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aSidebar = mSidebar;
|
|
|
|
NS_IF_ADDREF(*aSidebar);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPrompter(nsIPrompt** aPrompt)
|
2000-08-07 20:55:36 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mDocShell)
|
2000-08-07 20:55:36 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrompt> prompter(do_GetInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(prompter, NS_ERROR_NO_INTERFACE);
|
|
|
|
|
|
|
|
NS_ADDREF(*aPrompt = prompter);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetMenubar(nsIDOMBarProp** aMenubar)
|
1999-06-09 19:04:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mMenubar) {
|
|
|
|
mMenubar = new MenubarPropImpl();
|
|
|
|
if (mMenubar) {
|
|
|
|
NS_ADDREF(mMenubar);
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
if (mDocShell &&
|
|
|
|
NS_SUCCEEDED(GetWebBrowserChrome(getter_AddRefs(browserChrome)))) {
|
2002-02-16 01:15:52 +00:00
|
|
|
mMenubar->SetWebBrowserChrome(browserChrome);
|
1999-06-19 22:15:14 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
1999-06-09 19:04:18 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aMenubar = mMenubar;
|
|
|
|
NS_IF_ADDREF(mMenubar);
|
|
|
|
return NS_OK;
|
1999-06-09 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetToolbar(nsIDOMBarProp** aToolbar)
|
1999-06-09 19:04:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mToolbar) {
|
|
|
|
mToolbar = new ToolbarPropImpl();
|
|
|
|
if (mToolbar) {
|
|
|
|
NS_ADDREF(mToolbar);
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
if (mDocShell &&
|
|
|
|
NS_SUCCEEDED(GetWebBrowserChrome(getter_AddRefs(browserChrome)))) {
|
|
|
|
mToolbar->SetWebBrowserChrome(browserChrome);
|
1999-06-19 22:15:14 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
1999-06-09 19:04:18 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aToolbar = mToolbar;
|
|
|
|
NS_IF_ADDREF(mToolbar);
|
|
|
|
return NS_OK;
|
1999-06-09 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetLocationbar(nsIDOMBarProp** aLocationbar)
|
1999-06-09 19:04:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mLocationbar) {
|
|
|
|
mLocationbar = new LocationbarPropImpl();
|
|
|
|
if (mLocationbar) {
|
|
|
|
NS_ADDREF(mLocationbar);
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
if (mDocShell &&
|
|
|
|
NS_SUCCEEDED(GetWebBrowserChrome(getter_AddRefs(browserChrome)))) {
|
|
|
|
mLocationbar->SetWebBrowserChrome(browserChrome);
|
1999-06-19 22:15:14 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
1999-06-09 19:04:18 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aLocationbar = mLocationbar;
|
|
|
|
NS_IF_ADDREF(mLocationbar);
|
|
|
|
return NS_OK;
|
1999-06-09 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPersonalbar(nsIDOMBarProp** aPersonalbar)
|
1999-06-09 19:04:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mPersonalbar) {
|
|
|
|
mPersonalbar = new PersonalbarPropImpl();
|
|
|
|
if (mPersonalbar) {
|
|
|
|
NS_ADDREF(mPersonalbar);
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
if (mDocShell &&
|
|
|
|
NS_SUCCEEDED(GetWebBrowserChrome(getter_AddRefs(browserChrome)))) {
|
|
|
|
mPersonalbar->SetWebBrowserChrome(browserChrome);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aPersonalbar = mPersonalbar;
|
|
|
|
NS_IF_ADDREF(mPersonalbar);
|
|
|
|
return NS_OK;
|
1999-06-09 19:04:18 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetStatusbar(nsIDOMBarProp** aStatusbar)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mStatusbar) {
|
|
|
|
mStatusbar = new StatusbarPropImpl();
|
|
|
|
if (mStatusbar) {
|
|
|
|
NS_ADDREF(mStatusbar);
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
if (mDocShell &&
|
|
|
|
NS_SUCCEEDED(GetWebBrowserChrome(getter_AddRefs(browserChrome)))) {
|
|
|
|
mStatusbar->SetWebBrowserChrome(browserChrome);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
1998-08-13 23:37:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aStatusbar = mStatusbar;
|
|
|
|
NS_IF_ADDREF(mStatusbar);
|
|
|
|
return NS_OK;
|
1998-08-13 23:37:54 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetScrollbars(nsIDOMBarProp** aScrollbars)
|
1998-09-03 01:19:58 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mScrollbars) {
|
2002-02-16 01:15:52 +00:00
|
|
|
mScrollbars = new ScrollbarsPropImpl(this);
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mScrollbars) {
|
|
|
|
NS_ADDREF(mScrollbars);
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
if (mDocShell &&
|
|
|
|
NS_SUCCEEDED(GetWebBrowserChrome(getter_AddRefs(browserChrome)))) {
|
|
|
|
mScrollbars->SetWebBrowserChrome(browserChrome);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aScrollbars = mScrollbars;
|
|
|
|
NS_IF_ADDREF(mScrollbars);
|
|
|
|
return NS_OK;
|
1998-09-03 01:19:58 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetDirectories(nsIDOMBarProp** aDirectories)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
return GetPersonalbar(aDirectories);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-08-15 00:13:51 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetClosed(PRBool* aClosed)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2003-05-29 00:48:35 +00:00
|
|
|
// If someone called close(), or if we don't have a docshell, we're
|
|
|
|
// closed.
|
|
|
|
*aClosed = mIsClosed || !mDocShell;
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1999-12-17 22:25:22 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetFrames(nsIDOMWindowCollection** aFrames)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mFrames && mDocShell) {
|
|
|
|
mFrames = new nsDOMWindowList(mDocShell);
|
|
|
|
NS_ENSURE_TRUE(mFrames, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
NS_ADDREF(mFrames);
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aFrames = NS_STATIC_CAST(nsIDOMWindowCollection *, mFrames);
|
|
|
|
NS_IF_ADDREF(mFrames);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetCrypto(nsIDOMCrypto** aCrypto)
|
2000-05-11 19:17:07 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mCrypto) {
|
2000-09-13 23:57:52 +00:00
|
|
|
mCrypto = do_CreateInstance(kCryptoContractID, &rv);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-05-11 19:17:07 +00:00
|
|
|
*aCrypto = mCrypto;
|
2000-05-16 23:52:42 +00:00
|
|
|
NS_IF_ADDREF(*aCrypto);
|
|
|
|
return NS_OK;
|
2000-05-11 19:17:07 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPkcs11(nsIDOMPkcs11** aPkcs11)
|
2000-05-11 19:17:07 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mPkcs11) {
|
2000-09-13 23:57:52 +00:00
|
|
|
mPkcs11 = do_CreateInstance(kPkcs11ContractID, &rv);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-05-11 19:17:07 +00:00
|
|
|
*aPkcs11 = mPkcs11;
|
2000-05-16 23:52:42 +00:00
|
|
|
NS_IF_ADDREF(*aPkcs11);
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-05-11 19:17:07 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetControllers(nsIControllers** aResult)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mControllers) {
|
2002-12-20 08:00:08 +00:00
|
|
|
nsresult rv;
|
|
|
|
mControllers = do_CreateInstance(kXULControllersCID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2003-04-12 03:08:23 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Add in the default controller
|
2003-04-12 03:08:23 +00:00
|
|
|
nsCOMPtr<nsIController> controller = do_CreateInstance(
|
|
|
|
NS_WINDOWCONTROLLER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
mControllers->InsertControllerAt(0, controller);
|
|
|
|
nsCOMPtr<nsIControllerContext> controllerContext = do_QueryInterface(controller);
|
|
|
|
if (!controllerContext) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
controllerContext->SetCommandContext(NS_STATIC_CAST(nsIDOMWindow*, this));
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2003-04-12 03:08:23 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aResult = mControllers;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
1998-08-13 23:37:54 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetOpener(nsIDOMWindowInternal** aOpener)
|
1998-08-13 04:34:53 +00:00
|
|
|
{
|
2002-02-26 04:50:21 +00:00
|
|
|
*aOpener = nsnull;
|
2002-02-28 00:22:59 +00:00
|
|
|
// First, check if we were called from a privileged chrome script
|
2002-05-17 22:24:06 +00:00
|
|
|
|
|
|
|
NS_ENSURE_TRUE(sSecMan, NS_ERROR_FAILURE);
|
2002-02-28 00:22:59 +00:00
|
|
|
PRBool inChrome;
|
2002-05-17 22:24:06 +00:00
|
|
|
nsresult rv = sSecMan->SubjectPrincipalIsSystem(&inChrome);
|
2002-02-28 00:22:59 +00:00
|
|
|
if (NS_SUCCEEDED(rv) && inChrome) {
|
|
|
|
*aOpener = mOpener;
|
|
|
|
NS_IF_ADDREF(*aOpener);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-26 04:50:21 +00:00
|
|
|
// We don't want to reveal the opener if the opener is a mail window,
|
|
|
|
// because opener can be used to spoof the contents of a message (bug 105050).
|
|
|
|
// So, we look in the opener's root docshell to see if it's a mail window.
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> openerSGO(do_QueryInterface(mOpener));
|
|
|
|
if (openerSGO) {
|
|
|
|
nsCOMPtr<nsIDocShell> openerDocShell;
|
|
|
|
openerSGO->GetDocShell(getter_AddRefs(openerDocShell));
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(openerDocShell));
|
|
|
|
if (docShellAsItem) {
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> openerRootItem;
|
|
|
|
docShellAsItem->GetRootTreeItem(getter_AddRefs(openerRootItem));
|
|
|
|
nsCOMPtr<nsIDocShell> openerRootDocShell(do_QueryInterface(openerRootItem));
|
|
|
|
if (openerRootDocShell) {
|
|
|
|
PRUint32 appType;
|
|
|
|
nsresult rv = openerRootDocShell->GetAppType(&appType);
|
|
|
|
if (NS_SUCCEEDED(rv) && appType != nsIDocShell::APP_TYPE_MAIL) {
|
|
|
|
*aOpener = mOpener;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IF_ADDREF(*aOpener);
|
|
|
|
return NS_OK;
|
1998-08-13 04:34:53 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetOpener(nsIDOMWindowInternal* aOpener)
|
1998-08-07 04:45:03 +00:00
|
|
|
{
|
2003-05-05 20:55:37 +00:00
|
|
|
// check if we were called from a privileged chrome script.
|
|
|
|
// If not, opener is settable only to null.
|
|
|
|
if (aOpener && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2003-06-20 22:44:33 +00:00
|
|
|
if (mOpener && !aOpener)
|
|
|
|
mOpenerWasCleared = PR_TRUE;
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mOpener = aOpener;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1999-06-15 03:17:11 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::GetStatus(nsAString& aStatus)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
aStatus = mStatus;
|
|
|
|
return NS_OK;
|
1998-08-13 23:37:54 +00:00
|
|
|
}
|
1998-08-07 04:45:03 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::SetStatus(const nsAString& aStatus)
|
1999-06-26 21:48:29 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_status_change is true,
|
|
|
|
* prevent setting window.status by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_status_change") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mStatus = aStatus;
|
1999-06-26 21:48:29 +00:00
|
|
|
|
2002-02-05 06:04:56 +00:00
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
GetWebBrowserChrome(getter_AddRefs(browserChrome));
|
|
|
|
if(browserChrome) {
|
|
|
|
browserChrome->SetStatus(nsIWebBrowserChrome::STATUS_SCRIPT,
|
|
|
|
PromiseFlatString(aStatus).get());
|
|
|
|
}
|
1999-06-26 21:48:29 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1999-06-26 21:48:29 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::GetDefaultStatus(nsAString& aDefaultStatus)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
aDefaultStatus = mDefaultStatus;
|
|
|
|
return NS_OK;
|
1998-08-13 23:37:54 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::SetDefaultStatus(const nsAString& aDefaultStatus)
|
1998-08-21 21:39:27 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_status_change is true,
|
|
|
|
* prevent setting window.defaultStatus by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_status_change") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mDefaultStatus = aDefaultStatus;
|
1998-08-21 21:39:27 +00:00
|
|
|
|
2002-04-12 10:11:00 +00:00
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome;
|
|
|
|
GetWebBrowserChrome(getter_AddRefs(browserChrome));
|
|
|
|
if (browserChrome) {
|
|
|
|
browserChrome->SetStatus(nsIWebBrowserChrome::STATUS_SCRIPT_DEFAULT,
|
|
|
|
PromiseFlatString(aDefaultStatus).get());
|
|
|
|
}
|
1998-08-21 21:39:27 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-08-21 21:39:27 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::GetName(nsAString& aName)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsXPIDLString name;
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
if (docShellAsItem)
|
|
|
|
docShellAsItem->GetName(getter_Copies(name));
|
1998-08-13 23:37:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
aName.Assign(name);
|
|
|
|
return NS_OK;
|
1998-08-13 23:37:54 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::SetName(const nsAString& aName)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult result = NS_OK;
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
if (docShellAsItem)
|
2001-04-02 19:40:52 +00:00
|
|
|
result = docShellAsItem->SetName(PromiseFlatString(aName).get());
|
2000-08-22 03:51:17 +00:00
|
|
|
return result;
|
1998-08-13 23:37:54 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetInnerWidth(PRInt32* aInnerWidth)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2002-02-05 05:47:22 +00:00
|
|
|
FlushPendingNotifications(PR_TRUE);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> docShellWin(do_QueryInterface(mDocShell));
|
|
|
|
*aInnerWidth = 0;
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 notused;
|
2000-08-22 03:51:17 +00:00
|
|
|
if (docShellWin)
|
2002-05-20 20:06:29 +00:00
|
|
|
docShellWin->GetSize(aInnerWidth, ¬used);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
1998-08-13 23:37:54 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetInnerWidth(PRInt32 aInnerWidth)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent setting window.innerWidth by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(docShellAsItem, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellParent;
|
|
|
|
docShellAsItem->GetSameTypeParent(getter_AddRefs(docShellParent));
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// It's only valid to access this from a top window. Doesn't work from
|
2000-08-22 03:51:17 +00:00
|
|
|
// sub-frames.
|
|
|
|
if (docShellParent)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
return NS_OK; // Silent failure
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
docShellAsItem->GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
NS_ENSURE_TRUE(treeOwner, NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityWidthAndHeight(&aInnerWidth, nsnull),
|
|
|
|
NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIBaseWindow> docShellAsWin(do_QueryInterface(mDocShell));
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 notused, cy = 0;
|
|
|
|
docShellAsWin->GetSize(¬used, &cy);
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwner->SizeShellTo(docShellAsItem, aInnerWidth, cy),
|
|
|
|
NS_ERROR_FAILURE);
|
1998-08-13 23:37:54 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetInnerHeight(PRInt32* aInnerHeight)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2002-02-05 05:47:22 +00:00
|
|
|
FlushPendingNotifications(PR_TRUE);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIBaseWindow> docShellWin(do_QueryInterface(mDocShell));
|
|
|
|
*aInnerHeight = 0;
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 notused;
|
2000-08-22 03:51:17 +00:00
|
|
|
if (docShellWin)
|
2002-05-20 20:06:29 +00:00
|
|
|
docShellWin->GetSize(¬used, aInnerHeight);
|
1999-07-16 01:14:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetInnerHeight(PRInt32 aInnerHeight)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent setting window.innerHeight by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(docShellAsItem, NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellParent;
|
|
|
|
docShellAsItem->GetSameTypeParent(getter_AddRefs(docShellParent));
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// It's only valid to access this from a top window. Doesn't work from
|
2000-08-22 03:51:17 +00:00
|
|
|
// sub-frames.
|
|
|
|
if (docShellParent)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
return NS_OK; // Silent failure
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
docShellAsItem->GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
NS_ENSURE_TRUE(treeOwner, NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityWidthAndHeight(nsnull, &aInnerHeight),
|
|
|
|
NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIBaseWindow> docShellAsWin(do_QueryInterface(mDocShell));
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 cx = 0, notused;
|
|
|
|
docShellAsWin->GetSize(&cx, ¬used);
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwner->
|
|
|
|
SizeShellTo(docShellAsItem, cx, aInnerHeight),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetOuterWidth(PRInt32* aOuterWidth)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
1999-03-29 23:48:47 +00:00
|
|
|
|
2002-02-05 05:47:22 +00:00
|
|
|
FlushPendingNotifications(PR_TRUE);
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 notused;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetSize(aOuterWidth, ¬used),
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetOuterWidth(PRInt32 aOuterWidth)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent setting window.outerWidth by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityWidthAndHeight(&aOuterWidth, nsnull),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 notused, cy;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetSize(¬used, &cy), NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetSize(aOuterWidth, cy, PR_TRUE),
|
|
|
|
NS_ERROR_FAILURE);
|
1999-07-28 07:03:29 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetOuterHeight(PRInt32* aOuterHeight)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2002-02-05 05:47:22 +00:00
|
|
|
FlushPendingNotifications(PR_TRUE);
|
2000-02-11 07:14:41 +00:00
|
|
|
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 notused;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetSize(¬used, aOuterHeight),
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetOuterHeight(PRInt32 aOuterHeight)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent setting window.outerHeight by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityWidthAndHeight(nsnull, &aOuterHeight),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2002-05-20 20:06:29 +00:00
|
|
|
PRInt32 cx, notused;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetSize(&cx, ¬used), NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetSize(cx, aOuterHeight, PR_TRUE),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetScreenX(PRInt32* aScreenX)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2001-06-22 00:48:50 +00:00
|
|
|
PRInt32 y;
|
|
|
|
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetPosition(aScreenX, &y),
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetScreenX(PRInt32 aScreenX)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent setting window.screenX by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityLeftAndTop(&aScreenX, nsnull),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2001-06-22 00:48:50 +00:00
|
|
|
PRInt32 x, y;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetPosition(&x, &y),
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetPosition(aScreenX, y),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetScreenY(PRInt32* aScreenY)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2001-06-22 00:48:50 +00:00
|
|
|
PRInt32 x;
|
|
|
|
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetPosition(&x, aScreenY),
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetScreenY(PRInt32 aScreenY)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent setting window.screenY by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityLeftAndTop(nsnull, &aScreenY),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2001-06-22 00:48:50 +00:00
|
|
|
PRInt32 x, y;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetPosition(&x, &y),
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetPosition(x, aScreenY),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2000-06-21 00:20:39 +00:00
|
|
|
nsresult
|
2000-08-22 03:51:17 +00:00
|
|
|
GlobalWindowImpl::CheckSecurityWidthAndHeight(PRInt32* aWidth,
|
|
|
|
PRInt32* aHeight)
|
2000-06-21 00:20:39 +00:00
|
|
|
{
|
2002-11-28 01:04:18 +00:00
|
|
|
// This one is easy. Just ensure the variable is greater than 100;
|
2000-06-21 00:20:39 +00:00
|
|
|
if ((aWidth && *aWidth < 100) || (aHeight && *aHeight < 100)) {
|
2000-08-22 03:51:17 +00:00
|
|
|
// Check security state for use in determing window dimensions
|
2002-05-17 22:24:06 +00:00
|
|
|
|
|
|
|
NS_ENSURE_TRUE(sSecMan, NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
PRBool enabled;
|
2002-05-17 22:24:06 +00:00
|
|
|
nsresult res = sSecMan->IsCapabilityEnabled("UniversalBrowserWrite",
|
|
|
|
&enabled);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
|
|
|
if (NS_FAILED(res) || !enabled) {
|
|
|
|
//sec check failed
|
|
|
|
if (aWidth && *aWidth < 100) {
|
|
|
|
*aWidth = 100;
|
|
|
|
}
|
|
|
|
if (aHeight && *aHeight < 100) {
|
|
|
|
*aHeight = 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::CheckSecurityLeftAndTop(PRInt32* aLeft, PRInt32* aTop)
|
|
|
|
{
|
2002-11-28 01:04:18 +00:00
|
|
|
// This one is harder. We have to get the screen size and window dimensions.
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Check security state for use in determing window dimensions
|
2002-05-17 22:24:06 +00:00
|
|
|
|
|
|
|
NS_ENSURE_TRUE(sSecMan, NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
PRBool enabled;
|
2002-05-17 22:24:06 +00:00
|
|
|
nsresult res = sSecMan->IsCapabilityEnabled("UniversalBrowserWrite",
|
|
|
|
&enabled);
|
2000-06-21 00:20:39 +00:00
|
|
|
if (NS_FAILED(res)) {
|
2000-08-22 03:51:17 +00:00
|
|
|
enabled = PR_FALSE;
|
2000-06-21 00:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!enabled) {
|
2001-03-09 02:12:51 +00:00
|
|
|
PRInt32 screenLeft, screenTop, screenWidth, screenHeight;
|
|
|
|
PRInt32 winLeft, winTop, winWidth, winHeight;
|
|
|
|
|
2002-02-05 05:47:22 +00:00
|
|
|
FlushPendingNotifications(PR_TRUE);
|
2001-03-09 02:12:51 +00:00
|
|
|
|
|
|
|
// Get the window size
|
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwner;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
if (treeOwner)
|
|
|
|
treeOwner->GetPositionAndSize(&winLeft, &winTop, &winWidth, &winHeight);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Get the screen dimensions
|
2001-03-09 02:12:51 +00:00
|
|
|
// XXX This should use nsIScreenManager once it's fully fleshed out.
|
2000-06-21 00:20:39 +00:00
|
|
|
nsCOMPtr<nsIDOMScreen> screen;
|
2001-03-09 02:12:51 +00:00
|
|
|
GetScreen(getter_AddRefs(screen));
|
|
|
|
if (screen) {
|
|
|
|
screen->GetAvailLeft(&screenLeft);
|
2000-08-22 03:51:17 +00:00
|
|
|
screen->GetAvailWidth(&screenWidth);
|
|
|
|
screen->GetAvailHeight(&screenHeight);
|
2001-11-10 23:30:13 +00:00
|
|
|
#if defined(XP_MAC) || defined(XP_MACOSX)
|
2001-03-09 02:12:51 +00:00
|
|
|
/* The mac's coordinate system is different from the assumed Windows'
|
|
|
|
system. It offsets by the height of the menubar so that a window
|
|
|
|
placed at (0,0) will be entirely visible. Unfortunately that
|
|
|
|
correction is made elsewhere (in Widget) and the meaning of
|
|
|
|
the Avail... coordinates is overloaded. Here we allow a window
|
|
|
|
to be placed at (0,0) because it does make sense to do so.
|
|
|
|
*/
|
|
|
|
screen->GetTop(&screenTop);
|
|
|
|
#else
|
|
|
|
screen->GetAvailTop(&screenTop);
|
|
|
|
#endif
|
2000-06-21 00:20:39 +00:00
|
|
|
}
|
|
|
|
|
2001-03-09 02:12:51 +00:00
|
|
|
if (screen && treeOwner) {
|
|
|
|
if (aLeft) {
|
|
|
|
if (screenLeft+screenWidth < *aLeft+winWidth)
|
|
|
|
*aLeft = screenLeft+screenWidth - winWidth;
|
|
|
|
if (screenLeft > *aLeft)
|
|
|
|
*aLeft = screenLeft;
|
|
|
|
}
|
|
|
|
if (aTop) {
|
|
|
|
if (screenTop+screenHeight < *aTop+winHeight)
|
|
|
|
*aTop = screenTop+screenHeight - winHeight;
|
|
|
|
if (screenTop > *aTop)
|
|
|
|
*aTop = screenTop;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (aLeft)
|
|
|
|
*aLeft = 0;
|
|
|
|
if (aTop)
|
|
|
|
*aTop = 0;
|
2000-06-21 00:20:39 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-06-21 00:20:39 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPageXOffset(PRInt32* aPageXOffset)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
return GetScrollX(aPageXOffset);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPageYOffset(PRInt32* aPageYOffset)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
return GetScrollY(aPageYOffset);
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2003-04-15 13:40:46 +00:00
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::GetScrollMaxXY(PRInt32* aScrollMaxX, PRInt32* aScrollMaxY)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2003-04-15 13:40:46 +00:00
|
|
|
nsresult rv;
|
2001-06-18 07:37:11 +00:00
|
|
|
nsIScrollableView *view = nsnull; // no addref/release for views
|
2000-08-22 03:51:17 +00:00
|
|
|
float p2t, t2p;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
GetScrollInfo(&view, &p2t, &t2p);
|
2003-04-15 13:40:46 +00:00
|
|
|
if (!view)
|
|
|
|
return NS_ERROR_FAILURE;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2003-04-15 13:40:46 +00:00
|
|
|
nsSize scrolledSize;
|
|
|
|
rv = view->GetContainerSize(&scrolledSize.width, &scrolledSize.height);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsIView* portView;
|
|
|
|
rv = CallQueryInterface(view, &portView);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsRect portRect;
|
|
|
|
portView->GetBounds(portRect);
|
|
|
|
|
|
|
|
if (aScrollMaxX)
|
|
|
|
*aScrollMaxX = PR_MAX(0,
|
|
|
|
(PRInt32)floor(t2p*(scrolledSize.width - portRect.width)));
|
|
|
|
if (aScrollMaxY)
|
|
|
|
*aScrollMaxY = PR_MAX(0,
|
|
|
|
(PRInt32)floor(t2p*(scrolledSize.height - portRect.height)));
|
|
|
|
|
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2003-04-15 13:40:46 +00:00
|
|
|
GlobalWindowImpl::GetScrollMaxX(PRInt32* aScrollMaxX)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2003-04-15 13:40:46 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aScrollMaxX);
|
|
|
|
*aScrollMaxX = 0;
|
|
|
|
return GetScrollMaxXY(aScrollMaxX, nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetScrollMaxY(PRInt32* aScrollMaxY)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aScrollMaxY);
|
|
|
|
*aScrollMaxY = 0;
|
|
|
|
return GetScrollMaxXY(nsnull, aScrollMaxY);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::GetScrollXY(PRInt32* aScrollX, PRInt32* aScrollY)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
2001-06-18 07:37:11 +00:00
|
|
|
nsIScrollableView *view = nsnull; // no addref/release for views
|
2000-08-22 03:51:17 +00:00
|
|
|
float p2t, t2p;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
GetScrollInfo(&view, &p2t, &t2p);
|
2003-04-15 13:40:46 +00:00
|
|
|
if (!view)
|
2003-04-18 13:52:49 +00:00
|
|
|
return NS_OK; // bug 202206 changed from NS_ERROR_FAILURE
|
2003-04-15 13:40:46 +00:00
|
|
|
|
|
|
|
nscoord xPos, yPos;
|
|
|
|
rv = view->GetScrollPosition(xPos, yPos);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (aScrollX)
|
|
|
|
*aScrollX = NSTwipsToIntPixels(xPos, t2p);
|
|
|
|
if (aScrollY)
|
2000-08-22 03:51:17 +00:00
|
|
|
*aScrollY = NSTwipsToIntPixels(yPos, t2p);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2003-04-15 13:40:46 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetScrollX(PRInt32* aScrollX)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aScrollX);
|
|
|
|
*aScrollX = 0;
|
|
|
|
return GetScrollXY(aScrollX, nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetScrollY(PRInt32* aScrollY)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aScrollY);
|
|
|
|
*aScrollY = 0;
|
|
|
|
return GetScrollXY(nsnull, aScrollY);
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetLength(PRUint32* aLength)
|
Beginnings of massive landing of joki changes.
Relevant nsbeta3+ bugs 43309, 44503, 2634, 2504,5981, 24698, 25758, 33577,
36062, 36217, 41191, 41491, 42356, 42829, 43016
r=saari (joki code). also been tested by heikki and bryner
2000-08-08 21:19:03 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDOMWindowCollection> frames;
|
|
|
|
if (NS_SUCCEEDED(GetFrames(getter_AddRefs(frames))) && frames) {
|
|
|
|
return frames->GetLength(aLength);
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
Beginnings of massive landing of joki changes.
Relevant nsbeta3+ bugs 43309, 44503, 2634, 2504,5981, 24698, 25758, 33577,
36062, 36217, 41191, 41491, 42356, 42829, 43016
r=saari (joki code). also been tested by heikki and bryner
2000-08-08 21:19:03 +00:00
|
|
|
}
|
|
|
|
|
2002-02-20 03:33:52 +00:00
|
|
|
NS_IMETHODIMP GlobalWindowImpl::SetFullScreen(PRBool aFullScreen)
|
|
|
|
{
|
2002-12-03 06:08:08 +00:00
|
|
|
// Only chrome can change our fullScreen mode.
|
|
|
|
if (aFullScreen == mFullScreen || !IsCallerChrome()) {
|
2002-02-20 03:33:52 +00:00
|
|
|
return NS_OK;
|
2002-12-03 06:08:08 +00:00
|
|
|
}
|
2002-02-20 03:33:52 +00:00
|
|
|
|
|
|
|
// SetFullScreen needs to be called on the root window, so get that
|
2002-11-28 01:04:18 +00:00
|
|
|
// via the DocShell tree, and if we are not already the root,
|
2002-02-20 03:33:52 +00:00
|
|
|
// call SetFullScreen on that window instead.
|
|
|
|
nsCOMPtr<nsIDocShell> docShell;
|
|
|
|
GetDocShell(getter_AddRefs(docShell));
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> treeItem = do_QueryInterface(docShell);
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> rootItem;
|
|
|
|
treeItem->GetRootTreeItem(getter_AddRefs(rootItem));
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> window = do_GetInterface(rootItem);
|
|
|
|
if (!window)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
if (rootItem != treeItem)
|
|
|
|
return window->SetFullScreen(aFullScreen);
|
|
|
|
|
|
|
|
// make sure we don't try to set full screen on a non-chrome window,
|
|
|
|
// which might happen in embedding world
|
|
|
|
PRInt32 itemType;
|
|
|
|
treeItem->GetItemType(&itemType);
|
|
|
|
if (itemType != nsIDocShellTreeItem::typeChrome)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// dispatch an onfullscreen DOM event so that XUL apps can
|
2002-02-20 03:33:52 +00:00
|
|
|
// respond visually if we are kicked into full screen mode
|
|
|
|
nsCOMPtr<nsIDOMDocumentEvent> doc(do_QueryInterface(mDocument));
|
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
|
|
|
doc->CreateEvent(NS_LITERAL_STRING("Events"), getter_AddRefs(event));
|
|
|
|
if (!event)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
event->InitEvent(NS_LITERAL_STRING("fullscreen"), PR_FALSE, PR_TRUE);
|
|
|
|
PRBool allowDefault;
|
|
|
|
DispatchEvent(event, &allowDefault);
|
|
|
|
|
|
|
|
// event handlers can prevent us from going into full-screen mode
|
|
|
|
if (!allowDefault)
|
|
|
|
return NS_OK;
|
|
|
|
|
2002-11-06 09:35:13 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
treeOwnerAsWin->GetMainWidget(getter_AddRefs(widget));
|
|
|
|
if (widget)
|
|
|
|
widget->MakeFullScreen(aFullScreen);
|
|
|
|
|
2002-02-20 03:33:52 +00:00
|
|
|
mFullScreen = aFullScreen;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP GlobalWindowImpl::GetFullScreen(PRBool* aFullScreen)
|
|
|
|
{
|
|
|
|
*aFullScreen = mFullScreen;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Dump(const nsAString& aStr)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2001-08-30 08:07:07 +00:00
|
|
|
#if !(defined(NS_DEBUG) || defined(MOZ_ENABLE_JS_DUMP))
|
2001-06-22 10:54:23 +00:00
|
|
|
{
|
|
|
|
// In optimized builds we check a pref that controls if we should
|
|
|
|
// enable output from dump() or not, in debug builds it's always
|
|
|
|
// enabled.
|
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
if (!gPrefBranch) {
|
2001-06-22 10:54:23 +00:00
|
|
|
return NS_OK;
|
2002-11-25 23:21:25 +00:00
|
|
|
}
|
2001-06-22 10:54:23 +00:00
|
|
|
|
|
|
|
PRBool enable_dump = PR_FALSE;
|
|
|
|
|
|
|
|
// if pref doesn't exist, disable dump output.
|
2002-11-25 23:21:25 +00:00
|
|
|
nsresult rv = gPrefBranch->GetBoolPref("browser.dom.window.dump.enabled",
|
|
|
|
&enable_dump);
|
2001-06-22 10:54:23 +00:00
|
|
|
|
|
|
|
if (NS_FAILED(rv) || !enable_dump) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
char *cstr = ToNewUTF8String(aStr);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2003-04-12 03:08:23 +00:00
|
|
|
#if defined(XP_MAC) || defined(XP_MACOSX)
|
2000-08-22 03:51:17 +00:00
|
|
|
// have to convert \r to \n so that printing to the console works
|
|
|
|
char *c = cstr, *cEnd = cstr + aStr.Length();
|
|
|
|
while (c < cEnd) {
|
|
|
|
if (*c == '\r')
|
|
|
|
*c = '\n';
|
|
|
|
c++;
|
|
|
|
}
|
1999-08-03 12:43:06 +00:00
|
|
|
#endif
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (cstr) {
|
2000-10-28 22:17:53 +00:00
|
|
|
printf("%s", cstr);
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCRT::free(cstr);
|
|
|
|
}
|
|
|
|
|
1998-07-16 01:16:47 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-05 05:47:22 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::EnsureReflowFlushAndPaint()
|
2001-04-25 19:52:49 +00:00
|
|
|
{
|
2002-02-05 05:47:22 +00:00
|
|
|
NS_ASSERTION(mDocShell, "EnsureReflowFlushAndPaint() called with no "
|
|
|
|
"docshell!");
|
2001-04-25 19:52:49 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
2002-02-05 05:47:22 +00:00
|
|
|
mDocShell->GetPresShell(getter_AddRefs(presShell));
|
2001-04-25 19:52:49 +00:00
|
|
|
|
|
|
|
if (!presShell)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Flush pending reflows.
|
2002-02-05 05:47:22 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
|
|
|
|
|
|
|
if (doc) {
|
|
|
|
doc->FlushPendingNotifications(PR_TRUE, PR_FALSE);
|
|
|
|
}
|
2001-04-25 19:52:49 +00:00
|
|
|
|
|
|
|
// Unsuppress painting.
|
2001-05-01 22:54:11 +00:00
|
|
|
presShell->UnsuppressPainting();
|
2001-04-25 19:52:49 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetTextZoom(float *aZoom)
|
2002-01-16 03:03:53 +00:00
|
|
|
{
|
|
|
|
if (mDocShell) {
|
|
|
|
nsCOMPtr<nsIContentViewer> contentViewer;
|
|
|
|
mDocShell->GetContentViewer(getter_AddRefs(contentViewer));
|
|
|
|
nsCOMPtr<nsIMarkupDocumentViewer> markupViewer(do_QueryInterface(contentViewer));
|
|
|
|
|
|
|
|
if (markupViewer) {
|
|
|
|
return markupViewer->GetTextZoom(aZoom);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetTextZoom(float aZoom)
|
2002-01-16 03:03:53 +00:00
|
|
|
{
|
|
|
|
if (mDocShell) {
|
|
|
|
nsCOMPtr<nsIContentViewer> contentViewer;
|
|
|
|
mDocShell->GetContentViewer(getter_AddRefs(contentViewer));
|
|
|
|
nsCOMPtr<nsIMarkupDocumentViewer> markupViewer(do_QueryInterface(contentViewer));
|
|
|
|
|
|
|
|
if (markupViewer)
|
|
|
|
return markupViewer->SetTextZoom(aZoom);
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2002-05-17 22:24:06 +00:00
|
|
|
// static
|
2002-03-20 11:23:13 +00:00
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::CheckSecurityIsChromeCaller(PRBool *aIsChrome)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aIsChrome);
|
|
|
|
|
|
|
|
*aIsChrome = PR_FALSE;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
// Check if this is a privileged system script
|
2002-05-17 22:24:06 +00:00
|
|
|
|
|
|
|
NS_ENSURE_TRUE(sSecMan, NS_ERROR_FAILURE);
|
2002-03-20 11:23:13 +00:00
|
|
|
|
|
|
|
PRBool isChrome = PR_FALSE;
|
2002-05-17 22:24:06 +00:00
|
|
|
nsresult rv = sSecMan->SubjectPrincipalIsSystem(&isChrome);
|
2002-03-20 11:23:13 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
*aIsChrome = isChrome;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-05-17 22:24:06 +00:00
|
|
|
// static
|
|
|
|
PRBool
|
|
|
|
GlobalWindowImpl::IsCallerChrome()
|
|
|
|
{
|
|
|
|
PRBool is_caller_chrome = PR_FALSE;
|
|
|
|
|
|
|
|
nsresult rv = CheckSecurityIsChromeCaller(&is_caller_chrome);
|
|
|
|
NS_ENSURE_SUCCESS(rv, PR_FALSE);
|
|
|
|
|
|
|
|
return is_caller_chrome;
|
|
|
|
}
|
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
void
|
2002-03-24 01:02:53 +00:00
|
|
|
GlobalWindowImpl::MakeScriptDialogTitle(const nsAString &aInTitle, nsAString &aOutTitle)
|
2002-03-20 11:23:13 +00:00
|
|
|
{
|
|
|
|
aOutTitle.Truncate(0);
|
|
|
|
|
|
|
|
// Load the string to be prepended to titles for script
|
|
|
|
// confirm/alert/prompt boxes.
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIStringBundleService> stringBundleService =
|
|
|
|
do_GetService(kCStringBundleServiceCID, &rv);
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
if (NS_SUCCEEDED(rv) && stringBundleService) {
|
2002-03-20 11:23:13 +00:00
|
|
|
nsCOMPtr<nsIStringBundle> stringBundle;
|
|
|
|
rv = stringBundleService->CreateBundle(kDOMBundleURL,
|
|
|
|
getter_AddRefs(stringBundle));
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
if (stringBundle) {
|
|
|
|
nsAutoString inTitle(aInTitle);
|
|
|
|
nsXPIDLString tempString;
|
|
|
|
const PRUnichar *formatStrings[1];
|
|
|
|
formatStrings[0] = inTitle.get();
|
|
|
|
rv = stringBundle->FormatStringFromName(
|
|
|
|
NS_LITERAL_STRING("ScriptDlgTitle").get(),
|
|
|
|
formatStrings, 1, getter_Copies(tempString));
|
|
|
|
if (tempString)
|
|
|
|
aOutTitle = tempString.get();
|
|
|
|
}
|
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
// Just in case
|
|
|
|
if (aOutTitle.IsEmpty()) {
|
|
|
|
NS_WARNING("could not get ScriptDlgTitle string from string bundle");
|
|
|
|
aOutTitle.Assign(NS_LITERAL_STRING("[Script] "));
|
|
|
|
aOutTitle.Append(aInTitle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Alert(const nsAString& aString)
|
2000-08-22 03:51:17 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(mDocShell);
|
1999-06-18 17:34:08 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsAutoString str;
|
1999-06-11 23:57:25 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
str.Assign(aString);
|
|
|
|
|
|
|
|
// XXX: Concatenation of optional args?
|
1999-11-16 20:05:21 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIPrompt> prompter(do_GetInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(prompter, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
// Test whether title needs to prefixed with [script]
|
|
|
|
PRBool isChrome = PR_FALSE;
|
|
|
|
nsAutoString newTitle;
|
|
|
|
const PRUnichar *title = nsnull;
|
|
|
|
nsresult rv = CheckSecurityIsChromeCaller(&isChrome);
|
|
|
|
if (NS_FAILED(rv) || !isChrome) {
|
|
|
|
MakeScriptDialogTitle(NS_LITERAL_STRING(""), newTitle);
|
|
|
|
title = newTitle.get();
|
|
|
|
}
|
|
|
|
NS_WARN_IF_FALSE(!isChrome, "chrome shouldn't be calling alert(), use the prompt service");
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// Before bringing up the window, unsuppress painting and flush
|
|
|
|
// pending reflows.
|
2002-02-05 05:47:22 +00:00
|
|
|
EnsureReflowFlushAndPaint();
|
2001-04-25 19:52:49 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
return prompter->Alert(title, str.get());
|
1999-06-11 23:57:25 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Confirm(const nsAString& aString, PRBool* aReturn)
|
1999-06-11 23:57:25 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_STATE(mDocShell);
|
|
|
|
|
|
|
|
nsAutoString str;
|
1999-06-11 23:57:25 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aReturn = PR_FALSE;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
str.Assign(aString);
|
|
|
|
|
|
|
|
// XXX: Concatenation of optional args?
|
1999-11-16 20:05:21 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
// Test whether title needs to prefixed with [script]
|
|
|
|
PRBool isChrome = PR_FALSE;
|
|
|
|
nsAutoString newTitle;
|
|
|
|
const PRUnichar *title = nsnull;
|
|
|
|
nsresult rv = CheckSecurityIsChromeCaller(&isChrome);
|
|
|
|
if (NS_FAILED(rv) || !isChrome) {
|
|
|
|
MakeScriptDialogTitle(NS_LITERAL_STRING(""), newTitle);
|
|
|
|
title = newTitle.get();
|
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
NS_WARN_IF_FALSE(!isChrome,
|
|
|
|
"chrome shouldn't be calling confirm(), use the prompt "
|
|
|
|
"service");
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIPrompt> prompter(do_GetInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(prompter, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// Before bringing up the window, unsuppress painting and flush
|
|
|
|
// pending reflows.
|
2002-02-05 05:47:22 +00:00
|
|
|
EnsureReflowFlushAndPaint();
|
2001-04-25 19:52:49 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
return prompter->Confirm(title, str.get(), aReturn);
|
1999-06-11 23:57:25 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Prompt(const nsAString& aMessage,
|
|
|
|
const nsAString& aInitial,
|
|
|
|
const nsAString& aTitle,
|
2001-05-08 22:43:25 +00:00
|
|
|
PRUint32 aSavePassword,
|
2002-03-24 00:16:18 +00:00
|
|
|
nsAString& aReturn)
|
1999-06-11 23:57:25 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_STATE(mDocShell);
|
1999-06-11 23:57:25 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
aReturn.Truncate(); // XXX Null string!!!
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAuthPrompt> prompter(do_GetInterface(mDocShell));
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(prompter, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
PRBool b;
|
|
|
|
nsXPIDLString uniResult;
|
|
|
|
|
|
|
|
// Before bringing up the window, unsuppress painting and flush
|
|
|
|
// pending reflows.
|
2002-02-05 05:47:22 +00:00
|
|
|
EnsureReflowFlushAndPaint();
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2002-03-20 11:23:13 +00:00
|
|
|
// Test whether title needs to prefixed with [script]
|
|
|
|
nsAutoString title;
|
|
|
|
PRBool isChrome = PR_FALSE;
|
|
|
|
rv = CheckSecurityIsChromeCaller(&isChrome);
|
|
|
|
if (NS_FAILED(rv) || !isChrome) {
|
|
|
|
MakeScriptDialogTitle(aTitle, title);
|
2003-06-18 23:48:57 +00:00
|
|
|
} else {
|
2002-03-20 11:23:13 +00:00
|
|
|
title.Assign(aTitle);
|
|
|
|
}
|
|
|
|
NS_WARN_IF_FALSE(!isChrome, "chrome shouldn't be calling prompt(), use the prompt service");
|
|
|
|
|
|
|
|
rv = prompter->Prompt(title.get(),
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
PromiseFlatString(aMessage).get(), nsnull,
|
|
|
|
aSavePassword,
|
|
|
|
PromiseFlatString(aInitial).get(),
|
|
|
|
getter_Copies(uniResult), &b);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (uniResult && b) {
|
|
|
|
aReturn.Assign(uniResult);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SetDOMStringToNull(aReturn);
|
|
|
|
|
|
|
|
// XXX: Since DOMString's can't be null yet we'll haveto do this here...
|
|
|
|
|
|
|
|
if (sXPConnect) {
|
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
|
|
|
|
|
|
|
sXPConnect->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
|
|
|
|
|
|
|
if (ncc) {
|
|
|
|
jsval *retval = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetRetValPtr(&retval);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*retval = JSVAL_NULL;
|
|
|
|
|
|
|
|
ncc->SetReturnValueWasSet(PR_TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Prompt(nsAString& aReturn)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(mDocShell);
|
|
|
|
NS_ENSURE_STATE(sXPConnect);
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
|
|
|
|
|
|
|
rv = sXPConnect->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsAutoString message, initial, title;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
PRUint32 argc;
|
|
|
|
jsval *argv = nsnull;
|
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
2001-04-10 18:30:25 +00:00
|
|
|
PRUint32 savePassword = nsIAuthPrompt::SAVE_PASSWORD_NEVER;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (argc > 0) {
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsJSUtils::ConvertJSValToString(message, cx, argv[0]);
|
2000-06-17 01:57:36 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (argc > 1) {
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsJSUtils::ConvertJSValToString(initial, cx, argv[1]);
|
2000-06-17 01:57:36 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (argc > 2) {
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsJSUtils::ConvertJSValToString(title, cx, argv[2]);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
|
|
|
if (argc > 3) {
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsJSUtils::ConvertJSValToUint32(&savePassword, cx, argv[3]);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-11-16 20:05:21 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
return Prompt(message, initial, title, savePassword, aReturn);
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Focus()
|
1998-09-03 01:19:58 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_flip is true,
|
|
|
|
* prevent setting window.focus() by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_flip") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
2002-01-16 00:11:51 +00:00
|
|
|
if (treeOwnerAsWin) {
|
2002-03-04 22:50:11 +00:00
|
|
|
PRBool isEnabled = PR_TRUE;
|
|
|
|
if (NS_SUCCEEDED(treeOwnerAsWin->GetEnabled(&isEnabled)) && !isEnabled) {
|
|
|
|
NS_WARNING( "Should not try to set the focus on a disabled window" );
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
treeOwnerAsWin->SetVisibility(PR_TRUE);
|
2002-01-16 00:11:51 +00:00
|
|
|
nsCOMPtr<nsIEmbeddingSiteWindow> embeddingWin(do_GetInterface(treeOwnerAsWin));
|
|
|
|
if (embeddingWin)
|
|
|
|
embeddingWin->SetFocus();
|
|
|
|
}
|
1999-07-02 19:43:26 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
2001-05-22 23:52:17 +00:00
|
|
|
if (mDocShell) {
|
2001-08-21 21:18:45 +00:00
|
|
|
mDocShell->GetEldestPresShell(getter_AddRefs(presShell));
|
2001-05-22 23:52:17 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
|
|
|
|
nsresult result = NS_OK;
|
|
|
|
if (presShell) {
|
|
|
|
nsCOMPtr<nsIViewManager> vm;
|
|
|
|
presShell->GetViewManager(getter_AddRefs(vm));
|
|
|
|
if (vm) {
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
vm->GetWidget(getter_AddRefs(widget));
|
|
|
|
if (widget)
|
2001-03-19 17:56:04 +00:00
|
|
|
// raise the window since this was a focus call on the window.
|
|
|
|
result = widget->SetFocus(PR_TRUE);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2001-06-30 00:25:09 +00:00
|
|
|
else {
|
|
|
|
nsCOMPtr<nsIFocusController> focusController;
|
|
|
|
GetRootFocusController(getter_AddRefs(focusController));
|
|
|
|
if (focusController)
|
|
|
|
focusController->SetFocusedWindow(this);
|
|
|
|
}
|
1998-09-03 01:19:58 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return result;
|
1998-09-03 01:19:58 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Blur()
|
2000-01-26 22:48:16 +00:00
|
|
|
{
|
2002-01-05 02:20:55 +00:00
|
|
|
nsresult rv = NS_ERROR_FAILURE;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-01-05 02:20:55 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwner));
|
2002-04-18 21:50:11 +00:00
|
|
|
nsCOMPtr<nsIEmbeddingSiteWindow2> siteWindow(do_GetInterface(treeOwner));
|
2002-01-05 02:20:55 +00:00
|
|
|
if (siteWindow)
|
|
|
|
rv = siteWindow->Blur();
|
2000-01-26 22:48:16 +00:00
|
|
|
|
2002-01-05 02:20:55 +00:00
|
|
|
if (NS_SUCCEEDED(rv))
|
2001-05-22 23:52:17 +00:00
|
|
|
mDocShell->SetHasFocus(PR_FALSE);
|
|
|
|
|
2002-01-05 02:20:55 +00:00
|
|
|
return rv;
|
2000-01-26 22:48:16 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Back()
|
1998-09-04 00:46:06 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(webNav, NS_ERROR_FAILURE);
|
1999-12-17 00:50:17 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return webNav->GoBack();
|
1998-09-04 00:46:06 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Forward()
|
1999-10-28 14:12:56 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(webNav, NS_ERROR_FAILURE);
|
1999-10-28 14:12:56 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return webNav->GoForward();
|
1999-10-28 14:12:56 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Home()
|
1999-10-28 14:12:56 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mDocShell)
|
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
NS_ENSURE_STATE(gPrefBranch);
|
1999-10-28 14:12:56 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
nsCOMPtr<nsIPrefLocalizedString> url;
|
|
|
|
gPrefBranch->GetComplexValue(PREF_BROWSER_STARTUP_HOMEPAGE,
|
|
|
|
NS_GET_IID(nsIPrefLocalizedString),
|
|
|
|
getter_AddRefs(url));
|
2000-08-22 03:51:17 +00:00
|
|
|
nsString homeURL;
|
2002-11-25 23:21:25 +00:00
|
|
|
if (url) {
|
|
|
|
nsXPIDLString tmp;
|
|
|
|
url->GetData(getter_Copies(tmp));
|
|
|
|
homeURL = tmp;
|
|
|
|
}
|
|
|
|
else {
|
2000-08-22 03:51:17 +00:00
|
|
|
// if all else fails, use this
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_seth
|
|
|
|
printf("all else failed. using %s as the home page\n", DEFAULT_HOME_PAGE);
|
|
|
|
#endif
|
2000-08-22 03:51:17 +00:00
|
|
|
homeURL.AssignWithConversion(DEFAULT_HOME_PAGE);
|
|
|
|
}
|
2001-11-30 22:35:33 +00:00
|
|
|
|
|
|
|
nsresult rv;
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(webNav, NS_ERROR_FAILURE);
|
2002-02-09 03:36:55 +00:00
|
|
|
rv = webNav->LoadURI(homeURL.get(),
|
2001-11-30 22:35:33 +00:00
|
|
|
nsIWebNavigation::LOAD_FLAGS_NONE,
|
|
|
|
nsnull,
|
|
|
|
nsnull,
|
|
|
|
nsnull);
|
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1999-10-28 14:12:56 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Stop()
|
2000-01-15 02:26:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(mDocShell));
|
2001-08-14 04:46:20 +00:00
|
|
|
return webNav->Stop(nsIWebNavigation::STOP_ALL);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Print()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-02-01 14:52:11 +00:00
|
|
|
nsCOMPtr<nsIWebBrowserPrint> webBrowserPrint;
|
2002-02-09 03:36:55 +00:00
|
|
|
if (NS_SUCCEEDED(GetInterface(NS_GET_IID(nsIWebBrowserPrint),
|
|
|
|
getter_AddRefs(webBrowserPrint)))) {
|
2002-05-07 12:03:37 +00:00
|
|
|
nsCOMPtr<nsIPrintSettings> printSettings;
|
|
|
|
webBrowserPrint->GetGlobalPrintSettings(getter_AddRefs(printSettings));
|
|
|
|
webBrowserPrint->Print(printSettings, nsnull);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::MoveTo(PRInt32 aXPos, PRInt32 aYPos)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent window.moveTo() by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityLeftAndTop(&aXPos, &aYPos),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetPosition(aXPos, aYPos),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::MoveBy(PRInt32 aXDif, PRInt32 aYDif)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent window.moveBy() by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
PRInt32 x, y;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetPosition(&x, &y), NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
PRInt32 newX = x + aXDif;
|
|
|
|
PRInt32 newY = y + aYDif;
|
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityLeftAndTop(&newX, &newY), NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetPosition(newX, newY),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ResizeTo(PRInt32 aWidth, PRInt32 aHeight)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent window.resizeTo() by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityWidthAndHeight(&aWidth, &aHeight),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetSize(aWidth, aHeight, PR_TRUE),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-01-15 02:26:10 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ResizeBy(PRInt32 aWidthDif, PRInt32 aHeightDif)
|
2000-01-15 02:26:10 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* prevent window.resizeBy() by exiting early
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
NS_ENSURE_TRUE(treeOwnerAsWin, NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
PRInt32 cx, cy;
|
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->GetSize(&cx, &cy), NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
PRInt32 newCX = cx + aWidthDif;
|
|
|
|
PRInt32 newCY = cy + aHeightDif;
|
|
|
|
NS_ENSURE_SUCCESS(CheckSecurityWidthAndHeight(&newCX, &newCY),
|
|
|
|
NS_ERROR_FAILURE);
|
2000-06-21 00:20:39 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(treeOwnerAsWin->SetSize(newCX, newCY,
|
|
|
|
PR_TRUE), NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SizeToContent()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-04-12 10:11:00 +00:00
|
|
|
/*
|
|
|
|
* If caller is not chrome and dom.disable_window_move_resize is true,
|
|
|
|
* block window.SizeToContent() by exiting
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!CanSetProperty("dom.disable_window_move_resize") && !IsCallerChrome()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
NS_ENSURE_TRUE(docShellAsItem, NS_ERROR_FAILURE);
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellParent;
|
|
|
|
docShellAsItem->GetSameTypeParent(getter_AddRefs(docShellParent));
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// It's only valid to access this from a top window. Doesn't work from
|
2000-08-22 03:51:17 +00:00
|
|
|
// sub-frames.
|
|
|
|
if (docShellParent)
|
|
|
|
return NS_ERROR_FAILURE;
|
2000-01-15 02:26:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIContentViewer> cv;
|
|
|
|
mDocShell->GetContentViewer(getter_AddRefs(cv));
|
|
|
|
nsCOMPtr<nsIMarkupDocumentViewer> markupViewer(do_QueryInterface(cv));
|
|
|
|
NS_ENSURE_TRUE(markupViewer, NS_ERROR_FAILURE);
|
|
|
|
NS_ENSURE_SUCCESS(markupViewer->SizeToContent(), NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-01-15 02:26:10 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Scroll(PRInt32 aXScroll, PRInt32 aYScroll)
|
1998-10-07 18:06:23 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
return ScrollTo(aXScroll, aYScroll);
|
1998-10-07 18:06:23 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ScrollTo(PRInt32 aXScroll, PRInt32 aYScroll)
|
1998-10-07 18:06:23 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult result;
|
2001-06-18 07:37:11 +00:00
|
|
|
nsIScrollableView *view = nsnull; // no addref/release for views
|
2000-08-22 03:51:17 +00:00
|
|
|
float p2t, t2p;
|
1999-04-28 20:33:43 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
result = GetScrollInfo(&view, &p2t, &t2p);
|
|
|
|
|
|
|
|
if (view) {
|
2001-06-22 00:48:50 +00:00
|
|
|
// Here we calculate what the max pixel value is that we can
|
|
|
|
// scroll to, we do this by dividing maxint with the pixel to
|
|
|
|
// twips conversion factor, and substracting 4, the 4 comes from
|
|
|
|
// experimenting with this value, anything less makes the view
|
|
|
|
// code not scroll correctly, I have no idea why. -- jst
|
|
|
|
const PRInt32 maxpx = (PRInt32)((float)0x7fffffff / p2t) - 4;
|
|
|
|
|
|
|
|
if (aXScroll > maxpx) {
|
|
|
|
aXScroll = maxpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aYScroll > maxpx) {
|
|
|
|
aYScroll = maxpx;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
result = view->ScrollTo(NSIntPixelsToTwips(aXScroll, p2t),
|
|
|
|
NSIntPixelsToTwips(aYScroll, p2t),
|
|
|
|
NS_VMREFRESH_IMMEDIATE);
|
|
|
|
}
|
2000-06-03 01:01:48 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return result;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1999-06-15 03:17:11 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ScrollBy(PRInt32 aXScrollDif,
|
|
|
|
PRInt32 aYScrollDif)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult result;
|
2001-06-18 07:37:11 +00:00
|
|
|
nsIScrollableView *view = nsnull; // no addref/release for views
|
2000-08-22 03:51:17 +00:00
|
|
|
float p2t, t2p;
|
|
|
|
|
|
|
|
result = GetScrollInfo(&view, &p2t, &t2p);
|
|
|
|
|
|
|
|
if (view) {
|
|
|
|
nscoord xPos, yPos;
|
|
|
|
result = view->GetScrollPosition(xPos, yPos);
|
|
|
|
if (NS_SUCCEEDED(result)) {
|
2001-06-22 00:48:50 +00:00
|
|
|
result = ScrollTo(NSTwipsToIntPixels(xPos, t2p) + aXScrollDif,
|
|
|
|
NSTwipsToIntPixels(yPos, t2p) + aYScrollDif);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
1999-04-28 20:33:43 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return result;
|
1998-10-07 18:06:23 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ScrollByLines(PRInt32 numLines)
|
2000-09-13 13:06:07 +00:00
|
|
|
{
|
|
|
|
nsresult result;
|
|
|
|
nsIScrollableView *view = nsnull; // no addref/release for views
|
|
|
|
float p2t, t2p;
|
|
|
|
|
|
|
|
result = GetScrollInfo(&view, &p2t, &t2p);
|
2003-06-18 23:48:57 +00:00
|
|
|
if (view) {
|
2000-09-13 13:06:07 +00:00
|
|
|
result = view->ScrollByLines(0, numLines);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ScrollByPages(PRInt32 numPages)
|
2000-09-13 13:06:07 +00:00
|
|
|
{
|
|
|
|
nsresult result;
|
|
|
|
nsIScrollableView *view = nsnull; // no addref/release for views
|
|
|
|
float p2t, t2p;
|
|
|
|
|
|
|
|
result = GetScrollInfo(&view, &p2t, &t2p);
|
2003-06-18 23:48:57 +00:00
|
|
|
if (view) {
|
2003-03-12 03:22:11 +00:00
|
|
|
result = view->ScrollByPages(0, numPages);
|
2000-09-13 13:06:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-27 00:55:57 +00:00
|
|
|
GlobalWindowImpl::ClearTimeout()
|
1998-10-07 18:06:23 +00:00
|
|
|
{
|
2002-03-27 00:55:57 +00:00
|
|
|
return ClearTimeoutOrInterval();
|
1998-10-07 18:06:23 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-27 00:55:57 +00:00
|
|
|
GlobalWindowImpl::ClearInterval()
|
1999-01-27 04:15:19 +00:00
|
|
|
{
|
2002-03-27 00:55:57 +00:00
|
|
|
return ClearTimeoutOrInterval();
|
1999-01-27 04:15:19 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetTimeout(PRBool *_retval)
|
|
|
|
{
|
|
|
|
return SetTimeoutOrInterval(PR_FALSE, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetInterval(PRBool *_retval)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
return SetTimeoutOrInterval(PR_TRUE, _retval);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-10-01 22:21:59 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetResizable(PRBool aResizable)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// nop
|
|
|
|
|
|
|
|
return NS_OK;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::CaptureEvents(PRInt32 aEventFlags)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIEventListenerManager> manager;
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_SUCCEEDED(GetListenerManager(getter_AddRefs(manager)))) {
|
|
|
|
manager->CaptureEvent(aEventFlags);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ReleaseEvents(PRInt32 aEventFlags)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIEventListenerManager> manager;
|
2000-02-16 06:59:07 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_SUCCEEDED(GetListenerManager(getter_AddRefs(manager)))) {
|
|
|
|
manager->ReleaseEvent(aEventFlags);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-02-16 06:59:07 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::RouteEvent(nsIDOMEvent* aEvt)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
//XXX Not the best solution -joki
|
|
|
|
return NS_OK;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::EnableExternalCapture()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::DisableExternalCapture()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
1998-10-01 22:21:59 +00:00
|
|
|
}
|
|
|
|
|
2002-10-08 03:30:26 +00:00
|
|
|
static
|
2002-10-25 02:31:12 +00:00
|
|
|
PRBool IsPopupBlocked(nsIDOMDocument* aDoc)
|
2002-10-08 03:30:26 +00:00
|
|
|
{
|
2002-10-25 02:31:12 +00:00
|
|
|
PRBool blocked = PR_FALSE;
|
2002-10-08 03:30:26 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(aDoc));
|
|
|
|
nsCOMPtr<nsIPopupWindowManager> pm(do_GetService(NS_POPUPWINDOWMANAGER_CONTRACTID));
|
2002-10-25 02:31:12 +00:00
|
|
|
if (pm && doc) {
|
2002-10-08 03:30:26 +00:00
|
|
|
nsCOMPtr<nsIURI> uri;
|
2002-10-25 02:31:12 +00:00
|
|
|
doc->GetDocumentURL(getter_AddRefs(uri));
|
2002-10-08 03:30:26 +00:00
|
|
|
|
2002-10-25 02:31:12 +00:00
|
|
|
PRUint32 permission = nsIPopupWindowManager::ALLOW_POPUP;
|
|
|
|
pm->TestPermission(uri, &permission);
|
|
|
|
blocked = (permission == nsIPopupWindowManager::DENY_POPUP);
|
2002-10-08 03:30:26 +00:00
|
|
|
}
|
2002-10-25 02:31:12 +00:00
|
|
|
return blocked;
|
2002-10-08 03:30:26 +00:00
|
|
|
}
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
static
|
2003-04-16 00:00:55 +00:00
|
|
|
void FirePopupBlockedEvent(nsIDOMDocument* aDoc,
|
|
|
|
nsIURI *aRequestingURI, nsIURI *aPopupURI)
|
2002-10-08 03:30:26 +00:00
|
|
|
{
|
|
|
|
if (aDoc) {
|
|
|
|
// Fire a "DOMPopupBlocked" event so that the UI can hear about blocked popups.
|
|
|
|
nsCOMPtr<nsIDOMDocumentEvent> docEvent(do_QueryInterface(aDoc));
|
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
2003-04-16 00:00:55 +00:00
|
|
|
docEvent->CreateEvent(NS_LITERAL_STRING("PopupBlockedEvents"), getter_AddRefs(event));
|
2002-10-08 03:30:26 +00:00
|
|
|
if (event) {
|
2003-04-16 00:00:55 +00:00
|
|
|
nsCOMPtr<nsIDOMPopupBlockedEvent> pbev(do_QueryInterface(event));
|
|
|
|
pbev->InitPopupBlockedEvent(NS_LITERAL_STRING("DOMPopupBlocked"),
|
|
|
|
PR_TRUE, PR_TRUE, aRequestingURI, aPopupURI);
|
2002-10-08 03:30:26 +00:00
|
|
|
PRBool noDefault;
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> targ(do_QueryInterface(aDoc));
|
|
|
|
targ->DispatchEvent(event, &noDefault);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-26 02:03:13 +00:00
|
|
|
void FirePopupWindowEvent(nsIDOMDocument* aDoc)
|
|
|
|
{
|
|
|
|
if (aDoc) {
|
|
|
|
// Fire a "PopupWindow" event
|
|
|
|
nsCOMPtr<nsIDOMDocumentEvent> docEvent(do_QueryInterface(aDoc));
|
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
|
|
|
docEvent->CreateEvent(NS_LITERAL_STRING("Events"), getter_AddRefs(event));
|
|
|
|
if (event) {
|
|
|
|
event->InitEvent(NS_LITERAL_STRING("PopupWindow"), PR_TRUE, PR_TRUE);
|
|
|
|
PRBool noDefault;
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> targ(do_QueryInterface(aDoc));
|
|
|
|
targ->DispatchEvent(event, &noDefault);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
// static
|
|
|
|
PRBool
|
|
|
|
GlobalWindowImpl::CanSetProperty(const char *aPrefName)
|
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(gPrefBranch);
|
|
|
|
|
|
|
|
PRBool prefValue = PR_TRUE;
|
|
|
|
gPrefBranch->GetBoolPref(aPrefName, &prefValue);
|
|
|
|
|
|
|
|
// If the pref is set to true, we can not set the property
|
|
|
|
// and vice versa.
|
|
|
|
return !prefValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-31 04:06:39 +00:00
|
|
|
/*
|
2002-01-08 09:19:01 +00:00
|
|
|
* Examine the current document state to see if we're in a way that is
|
2002-11-28 01:04:18 +00:00
|
|
|
* typically abused by web designers. This routine returns PR_TRUE if
|
2002-01-08 09:19:01 +00:00
|
|
|
* we're running a top level script, running an onload or onunload
|
2002-11-28 01:04:18 +00:00
|
|
|
* handler, or running a timeout. The window.open code uses this
|
2002-01-08 09:19:01 +00:00
|
|
|
* routine to determine wether or not to allow the new window.
|
2001-08-31 04:06:39 +00:00
|
|
|
*/
|
|
|
|
PRBool
|
|
|
|
GlobalWindowImpl::CheckForAbusePoint ()
|
|
|
|
{
|
2002-03-08 21:48:28 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> item(do_QueryInterface(mDocShell));
|
2002-01-08 09:19:01 +00:00
|
|
|
|
2002-03-08 21:48:28 +00:00
|
|
|
if (item) {
|
|
|
|
PRInt32 type = nsIDocShellTreeItem::typeChrome;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-03-08 21:48:28 +00:00
|
|
|
item->GetItemType(&type);
|
2002-01-08 09:19:01 +00:00
|
|
|
|
2002-03-08 21:48:28 +00:00
|
|
|
if (type != nsIDocShellTreeItem::typeContent)
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
if (!gPrefBranch) {
|
2002-03-08 21:48:28 +00:00
|
|
|
return PR_FALSE;
|
2002-11-25 23:21:25 +00:00
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-09-12 01:16:59 +00:00
|
|
|
if (!mIsDocumentLoaded || mRunningTimeout) {
|
2003-03-26 02:03:13 +00:00
|
|
|
return PR_TRUE;
|
2002-10-25 02:31:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 clickDelay = 0;
|
2002-11-25 23:21:25 +00:00
|
|
|
gPrefBranch->GetIntPref("dom.disable_open_click_delay", &clickDelay);
|
2002-10-25 02:31:12 +00:00
|
|
|
if (clickDelay) {
|
|
|
|
PRTime now, ll_delta;
|
|
|
|
PRInt32 delta;
|
|
|
|
now = PR_Now();
|
|
|
|
LL_SUB(ll_delta, now, mLastMouseButtonAction);
|
|
|
|
LL_L2I(delta, ll_delta);
|
|
|
|
delta /= 1000;
|
2002-11-01 05:20:07 +00:00
|
|
|
if (delta > clickDelay) {
|
2003-03-26 02:03:13 +00:00
|
|
|
return PR_TRUE;
|
2002-09-12 01:16:59 +00:00
|
|
|
}
|
2001-08-31 04:06:39 +00:00
|
|
|
}
|
2002-02-09 03:36:55 +00:00
|
|
|
|
2001-08-31 04:06:39 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Open(const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsIDOMWindow **_retval)
|
|
|
|
{
|
|
|
|
return OpenInternal(aUrl, aName, aOptions, PR_FALSE, nsnull, 0, nsnull,
|
|
|
|
_retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Open(nsIDOMWindow **_retval)
|
1999-09-03 22:41:56 +00:00
|
|
|
{
|
2002-07-23 23:22:20 +00:00
|
|
|
*_retval = nsnull;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_STATE(sXPConnect);
|
|
|
|
nsresult rv = NS_OK;
|
2001-08-31 04:06:39 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
|
|
|
|
|
|
|
rv = sXPConnect->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsAutoString url, name, options;
|
|
|
|
|
|
|
|
PRUint32 argc;
|
|
|
|
jsval *argv = nsnull;
|
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
|
|
|
if (argc > 0) {
|
|
|
|
nsJSUtils::ConvertJSValToString(url, cx, argv[0]);
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
nsJSUtils::ConvertJSValToString(name, cx, argv[1]);
|
|
|
|
|
|
|
|
if (argc > 2) {
|
|
|
|
nsJSUtils::ConvertJSValToString(options, cx, argv[2]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-23 23:22:20 +00:00
|
|
|
/*
|
|
|
|
* If we're in a commonly abused state (top level script, running a timeout,
|
|
|
|
* or onload/onunload), and the preference is enabled, prevent window.open().
|
|
|
|
*/
|
2003-03-26 02:03:13 +00:00
|
|
|
PRBool abusedWindow = CheckForAbusePoint();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> topWindow;
|
|
|
|
GetTop(getter_AddRefs(topWindow));
|
|
|
|
nsCOMPtr<nsIDOMDocument> topDoc;
|
|
|
|
topWindow->GetDocument(getter_AddRefs(topDoc));
|
|
|
|
|
|
|
|
if (abusedWindow) {
|
|
|
|
if (IsPopupBlocked(mDocument)) {
|
2003-04-16 00:00:55 +00:00
|
|
|
nsCOMPtr<nsIURI> requestingURI;
|
|
|
|
nsCOMPtr<nsIURI> popupURI;
|
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_GetInterface(topWindow));
|
|
|
|
nsCOMPtr<nsIIOService> ios(do_GetService(NS_IOSERVICE_CONTRACTID));
|
|
|
|
if (webNav)
|
|
|
|
webNav->GetCurrentURI(getter_AddRefs(requestingURI));
|
|
|
|
if (ios)
|
|
|
|
ios->NewURI(NS_ConvertUCS2toUTF8(url), 0, 0,
|
|
|
|
getter_AddRefs(popupURI));
|
2003-03-26 02:03:13 +00:00
|
|
|
if (name.IsEmpty()) {
|
2003-04-16 00:00:55 +00:00
|
|
|
FirePopupBlockedEvent(topDoc, requestingURI, popupURI);
|
2003-03-26 02:03:13 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-07-23 23:22:20 +00:00
|
|
|
|
2003-03-26 02:03:13 +00:00
|
|
|
// Special case items that don't actually open new windows.
|
|
|
|
if (!name.EqualsIgnoreCase("_top") &&
|
|
|
|
!name.EqualsIgnoreCase("_self") &&
|
|
|
|
!name.EqualsIgnoreCase("_content")) {
|
2002-11-06 20:48:58 +00:00
|
|
|
|
2003-03-26 02:03:13 +00:00
|
|
|
nsCOMPtr<nsIWindowWatcher> wwatch =
|
|
|
|
do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv);
|
|
|
|
// If getting a window watcher fails, we'd fail downstream anyway
|
|
|
|
// when trying to open a new window so just bail here.
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-11-06 20:48:58 +00:00
|
|
|
|
2003-03-26 02:03:13 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> namedWindow;
|
|
|
|
wwatch->GetWindowByName(name.get(), this,
|
|
|
|
getter_AddRefs(namedWindow));
|
2002-11-06 20:48:58 +00:00
|
|
|
|
2003-03-26 02:03:13 +00:00
|
|
|
if (!namedWindow) {
|
2003-04-16 00:00:55 +00:00
|
|
|
FirePopupBlockedEvent(topDoc, requestingURI, popupURI);
|
2003-03-26 02:03:13 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-11-06 20:48:58 +00:00
|
|
|
}
|
2002-07-23 23:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-06 22:37:54 +00:00
|
|
|
rv = OpenInternal(url, name, options, PR_FALSE, nsnull, 0, nsnull, _retval);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMChromeWindow> chrome_win(do_QueryInterface(*_retval));
|
|
|
|
|
2003-03-26 02:03:13 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
if (!chrome_win) {
|
2003-01-06 22:37:54 +00:00
|
|
|
// A new non-chrome window was created from a call to
|
|
|
|
// window.open() from JavaScript, make sure there's a document in
|
|
|
|
// the new window. We do this by simply asking the new window for
|
|
|
|
// its document, this will synchronously create an empty document
|
|
|
|
// if there is no document in the window.
|
|
|
|
|
|
|
|
#ifdef DEBUG_jst
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsPIDOMWindow> pidomwin(do_QueryInterface(*_retval));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> temp;
|
|
|
|
pidomwin->GetExtantDocument(getter_AddRefs(temp));
|
|
|
|
|
|
|
|
NS_ASSERTION(temp, "No document in new window!!!");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-03-26 02:03:13 +00:00
|
|
|
nsCOMPtr<nsIDOMDocument> doc;
|
|
|
|
(*_retval)->GetDocument(getter_AddRefs(doc));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (abusedWindow)
|
|
|
|
FirePopupWindowEvent(topDoc);
|
2003-01-06 22:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
1999-09-03 22:41:56 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
// like Open, but attaches to the new window any extra parameters past
|
2000-02-08 13:40:10 +00:00
|
|
|
// [features] as a JS property named "arguments"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::OpenDialog(const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsISupports* aExtraArgument,
|
|
|
|
nsIDOMWindow** _retval)
|
|
|
|
{
|
|
|
|
return OpenInternal(aUrl, aName, aOptions, PR_TRUE, nsnull, 0,
|
|
|
|
aExtraArgument, _retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::OpenDialog(nsIDOMWindow** _retval)
|
|
|
|
{
|
2002-05-17 22:24:06 +00:00
|
|
|
if (!IsCallerChrome()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_STATE(sXPConnect);
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
|
|
|
|
|
|
|
rv = sXPConnect->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsAutoString url, name, options;
|
|
|
|
|
|
|
|
PRUint32 argc;
|
|
|
|
jsval *argv = nsnull;
|
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
|
|
|
if (argc > 0) {
|
|
|
|
nsJSUtils::ConvertJSValToString(url, cx, argv[0]);
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
nsJSUtils::ConvertJSValToString(name, cx, argv[1]);
|
|
|
|
|
|
|
|
if (argc > 2) {
|
|
|
|
nsJSUtils::ConvertJSValToString(options, cx, argv[2]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return OpenInternal(url, name, options, PR_TRUE, argv, argc, nsnull,
|
|
|
|
_retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetFrames(nsIDOMWindow** aFrames)
|
1999-12-17 06:11:45 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
*aFrames = this;
|
|
|
|
NS_ADDREF(*aFrames);
|
|
|
|
|
2002-02-05 05:47:22 +00:00
|
|
|
FlushPendingNotifications(PR_FALSE);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
1999-12-17 06:11:45 +00:00
|
|
|
}
|
|
|
|
|
2003-04-25 22:24:37 +00:00
|
|
|
struct nsCloseEvent : public PLEvent {
|
|
|
|
nsCloseEvent (GlobalWindowImpl *aWindow)
|
|
|
|
: mWindow(aWindow)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void HandleEvent() {
|
|
|
|
if (mWindow)
|
|
|
|
mWindow->ReallyCloseWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult PostCloseEvent();
|
|
|
|
|
|
|
|
nsRefPtr<GlobalWindowImpl> mWindow;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void PR_CALLBACK HandleCloseEvent(nsCloseEvent* aEvent)
|
|
|
|
{
|
|
|
|
aEvent->HandleEvent();
|
|
|
|
}
|
|
|
|
static void PR_CALLBACK DestroyCloseEvent(nsCloseEvent* aEvent)
|
|
|
|
{
|
|
|
|
delete aEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsCloseEvent::PostCloseEvent()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEventQueueService> eventService(do_GetService(kEventQueueServiceCID));
|
|
|
|
if (eventService) {
|
|
|
|
nsCOMPtr<nsIEventQueue> eventQueue;
|
|
|
|
eventService->GetThreadEventQueue(PR_GetCurrentThread(), getter_AddRefs(eventQueue));
|
|
|
|
if (eventQueue) {
|
|
|
|
|
|
|
|
PL_InitEvent(this, nsnull, (PLHandleEventProc) ::HandleCloseEvent, (PLDestroyEventProc) ::DestroyCloseEvent);
|
|
|
|
return eventQueue->PostEvent(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Close()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2001-10-16 21:19:05 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> parent;
|
|
|
|
GetParent(getter_AddRefs(parent));
|
|
|
|
|
|
|
|
if (parent != NS_STATIC_CAST(nsIDOMWindow *, this)) {
|
|
|
|
// window.close() is called on a frame in a frameset, such calls
|
|
|
|
// are ignored.
|
2002-02-26 05:28:26 +00:00
|
|
|
|
2001-10-16 21:19:05 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-10-25 01:08:29 +00:00
|
|
|
// Don't allow scripts from content to close windows
|
|
|
|
// that were not opened by script
|
|
|
|
nsresult rv;
|
2003-06-20 22:44:33 +00:00
|
|
|
if (!mOpener && !mOpenerWasCleared) {
|
2002-12-04 01:55:56 +00:00
|
|
|
nsCOMPtr<nsIScriptSecurityManager> secMan(
|
|
|
|
do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &rv));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
PRBool inChrome = PR_TRUE;
|
|
|
|
rv = secMan->SubjectPrincipalIsSystem(&inChrome);
|
|
|
|
if (NS_SUCCEEDED(rv) && !inChrome) {
|
|
|
|
PRBool allowClose = PR_TRUE;
|
|
|
|
gPrefBranch->GetBoolPref("dom.allow_scripts_to_close_windows",
|
|
|
|
&allowClose);
|
|
|
|
if (!allowClose) {
|
|
|
|
// We're blocking the close operation
|
|
|
|
// report localized error msg in JS console
|
|
|
|
nsCOMPtr<nsIStringBundleService> stringBundleService(
|
|
|
|
do_GetService(kCStringBundleServiceCID));
|
|
|
|
if (stringBundleService) {
|
|
|
|
nsCOMPtr<nsIStringBundle> stringBundle;
|
|
|
|
rv = stringBundleService->CreateBundle(
|
|
|
|
kDOMSecurityWarningsBundleURL,
|
|
|
|
getter_AddRefs(stringBundle));
|
|
|
|
if (NS_SUCCEEDED(rv) && stringBundle) {
|
|
|
|
nsXPIDLString errorMsg;
|
|
|
|
rv = stringBundle->GetStringFromName(
|
|
|
|
NS_LITERAL_STRING("WindowCloseBlockedWarning").get(),
|
|
|
|
getter_Copies(errorMsg));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
nsCOMPtr<nsIConsoleService> console(
|
|
|
|
do_GetService("@mozilla.org/consoleservice;1"));
|
|
|
|
if (console)
|
|
|
|
console->LogStringMessage(errorMsg.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-10-25 01:08:29 +00:00
|
|
|
}
|
2002-12-04 01:55:56 +00:00
|
|
|
}
|
2002-10-25 01:08:29 +00:00
|
|
|
}
|
|
|
|
|
2002-06-05 00:31:45 +00:00
|
|
|
// Fire a DOM event notifying listeners that this window is about to
|
|
|
|
// be closed. The tab UI code may choose to cancel the default
|
|
|
|
// action for this event, if so, we won't actually close the window
|
|
|
|
// (since the tab UI code will close the tab in stead). Sure, this
|
|
|
|
// could be abused by content code, but do we care? I don't think
|
|
|
|
// so...
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocumentEvent> doc(do_QueryInterface(mDocument));
|
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
|
|
|
|
|
|
|
if (doc) {
|
|
|
|
doc->CreateEvent(NS_LITERAL_STRING("Events"), getter_AddRefs(event));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event) {
|
|
|
|
event->InitEvent(NS_LITERAL_STRING("DOMWindowClose"), PR_TRUE, PR_TRUE);
|
|
|
|
|
|
|
|
PRBool executeDefault = PR_TRUE;
|
|
|
|
DispatchEvent(event, &executeDefault);
|
|
|
|
|
|
|
|
if (!executeDefault) {
|
|
|
|
// Someone chose to prevent the default action for this event,
|
|
|
|
// if so, let's not close this window after all...
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-29 00:48:35 +00:00
|
|
|
// Flag that we were closed.
|
|
|
|
mIsClosed = PR_TRUE;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsCOMPtr<nsIJSContextStack> stack =
|
2002-03-20 11:23:13 +00:00
|
|
|
do_GetService(sJSStackContractID);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2001-08-07 05:27:42 +00:00
|
|
|
JSContext *cx = nsnull;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
if (stack) {
|
|
|
|
stack->Peek(&cx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cx) {
|
2002-02-09 03:36:55 +00:00
|
|
|
nsCOMPtr<nsIScriptContext> currentCX =
|
2001-08-07 05:27:42 +00:00
|
|
|
NS_STATIC_CAST(nsIScriptContext *, ::JS_GetContextPrivate(cx));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
if (currentCX && currentCX == mContext) {
|
|
|
|
return currentCX->SetTerminationFunction(CloseWindow,
|
|
|
|
NS_STATIC_CAST(nsIDOMWindow *,
|
|
|
|
this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-25 22:24:37 +00:00
|
|
|
|
|
|
|
// We may have plugins on the page that have issued this close from their
|
|
|
|
// event loop and because we currently destroy the plugin window with
|
|
|
|
// frames, we crash. So, if we are called from Javascript, post an event
|
|
|
|
// to really close the window.
|
|
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
if (!IsCallerChrome()) {
|
|
|
|
nsCloseEvent *ev = new nsCloseEvent(this);
|
|
|
|
|
|
|
|
if (ev) {
|
|
|
|
rv = ev->PostCloseEvent();
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
delete ev;
|
|
|
|
}
|
|
|
|
} else rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
rv = ReallyCloseWindow();
|
|
|
|
|
|
|
|
return rv;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
}
|
|
|
|
|
2003-04-25 22:24:37 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::ReallyCloseWindow()
|
|
|
|
{
|
2000-02-08 13:40:10 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
|
2001-10-16 06:38:04 +00:00
|
|
|
// If there's no treeOwnerAsWin, this window must already be closed.
|
|
|
|
|
|
|
|
if (treeOwnerAsWin) {
|
|
|
|
treeOwnerAsWin->Destroy();
|
|
|
|
CleanUp();
|
|
|
|
}
|
1999-10-06 22:07:42 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
return NS_OK;
|
1999-10-06 22:07:42 +00:00
|
|
|
}
|
|
|
|
|
2002-04-17 04:17:16 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetFrameElement(nsIDOMElement** aFrameElement)
|
|
|
|
{
|
|
|
|
*aFrameElement = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShell> docShell;
|
|
|
|
GetDocShell(getter_AddRefs(docShell));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellTI(do_QueryInterface(docShell));
|
|
|
|
|
|
|
|
if (!docShellTI) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> parent;
|
|
|
|
docShellTI->GetSameTypeParent(getter_AddRefs(parent));
|
|
|
|
|
|
|
|
if (!parent || parent == docShellTI) {
|
|
|
|
// We're at a chrome boundary, don't expose the chrome iframe
|
|
|
|
// element to content code.
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aFrameElement = mFrameElement;
|
|
|
|
NS_IF_ADDREF(*aFrameElement);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetFrameElementInternal(nsIDOMElement** aFrameElement)
|
|
|
|
{
|
|
|
|
*aFrameElement = mFrameElement;
|
|
|
|
NS_IF_ADDREF(*aFrameElement);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetFrameElementInternal(nsIDOMElement* aFrameElement)
|
|
|
|
{
|
|
|
|
mFrameElement = aFrameElement;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-04-12 02:15:43 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::IsLoadingOrRunningTimeout(PRBool* aResult)
|
|
|
|
{
|
|
|
|
*aResult = !mIsDocumentLoaded || mRunningTimeout;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::UpdateCommands(const nsAString& anAction)
|
1999-11-25 00:00:21 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsCOMPtr<nsIDOMWindowInternal> rootWindow;
|
|
|
|
GetPrivateRoot(getter_AddRefs(rootWindow));
|
|
|
|
if (!rootWindow)
|
|
|
|
return NS_OK;
|
2000-02-11 00:57:54 +00:00
|
|
|
|
2000-11-04 08:21:20 +00:00
|
|
|
nsCOMPtr<nsIDOMDocument> document;
|
|
|
|
rootWindow->GetDocument(getter_AddRefs(document));
|
|
|
|
|
|
|
|
if (document) {
|
2000-02-11 00:57:54 +00:00
|
|
|
// See if we contain a XUL document.
|
2000-11-04 08:21:20 +00:00
|
|
|
nsCOMPtr<nsIDOMXULDocument> xulDoc = do_QueryInterface(document);
|
2000-02-11 00:57:54 +00:00
|
|
|
if (xulDoc) {
|
|
|
|
// Retrieve the command dispatcher and call updateCommands on it.
|
|
|
|
nsCOMPtr<nsIDOMXULCommandDispatcher> xulCommandDispatcher;
|
|
|
|
xulDoc->GetCommandDispatcher(getter_AddRefs(xulCommandDispatcher));
|
|
|
|
xulCommandDispatcher->UpdateCommands(anAction);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2003-01-27 22:02:44 +00:00
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::ConvertCharset(const nsAString& aStr,
|
|
|
|
char** aDest)
|
1998-10-01 22:21:59 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult result = NS_OK;
|
|
|
|
nsCOMPtr<nsIUnicodeEncoder> encoder;
|
1999-10-06 22:07:42 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsICharsetConverterManager>
|
|
|
|
ccm(do_GetService(kCharsetConverterManagerCID));
|
|
|
|
NS_ENSURE_TRUE(ccm, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Get the document character set
|
2003-06-17 16:40:34 +00:00
|
|
|
nsCAutoString charset(NS_LITERAL_CSTRING("UTF-8")); // default to utf-8
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mDocument) {
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (doc)
|
|
|
|
result = doc->GetDocumentCharacterSet(charset);
|
|
|
|
}
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
|
|
|
|
// Get an encoder for the character set
|
2003-06-17 16:40:34 +00:00
|
|
|
result = ccm->GetUnicodeEncoderRaw(charset.get(),
|
2003-06-11 18:16:03 +00:00
|
|
|
getter_AddRefs(encoder));
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = encoder->Reset();
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
|
|
|
|
PRInt32 maxByteLen, srcLen;
|
|
|
|
srcLen = aStr.Length();
|
2000-09-13 03:24:57 +00:00
|
|
|
|
2001-04-02 19:40:52 +00:00
|
|
|
const nsPromiseFlatString& flatSrc = PromiseFlatString(aStr);
|
2000-09-13 03:24:57 +00:00
|
|
|
const PRUnichar* src = flatSrc.get();
|
2000-08-22 03:51:17 +00:00
|
|
|
|
|
|
|
// Get the expected length of result string
|
|
|
|
result = encoder->GetMaxLength(src, srcLen, &maxByteLen);
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
|
|
|
|
// Allocate a buffer of the maximum length
|
2003-01-27 22:02:44 +00:00
|
|
|
*aDest = (char *) nsMemory::Alloc(maxByteLen + 1);
|
2000-08-22 03:51:17 +00:00
|
|
|
PRInt32 destLen2, destLen = maxByteLen;
|
2003-01-27 22:02:44 +00:00
|
|
|
if (!*aDest)
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2002-02-09 03:36:55 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Convert from unicode to the character set
|
2003-01-27 22:02:44 +00:00
|
|
|
result = encoder->Convert(src, &srcLen, *aDest, &destLen);
|
|
|
|
if (NS_FAILED(result)) {
|
|
|
|
nsMemory::Free(*aDest);
|
|
|
|
*aDest = nsnull;
|
2000-08-22 03:51:17 +00:00
|
|
|
return result;
|
|
|
|
}
|
1998-10-01 22:21:59 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Allow the encoder to finish the conversion
|
|
|
|
destLen2 = maxByteLen - destLen;
|
2003-01-27 22:02:44 +00:00
|
|
|
encoder->Finish(*aDest + destLen, &destLen2);
|
|
|
|
(*aDest)[destLen + destLen2] = '\0';
|
1999-10-06 22:07:42 +00:00
|
|
|
|
2003-01-27 22:02:44 +00:00
|
|
|
return result;
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2003-02-24 20:15:59 +00:00
|
|
|
PRBool
|
|
|
|
GlobalWindowImpl::GetBlurSuppression()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
PRBool suppress = PR_FALSE;
|
|
|
|
if (treeOwnerAsWin)
|
|
|
|
treeOwnerAsWin->GetBlurSuppression(&suppress);
|
|
|
|
return suppress;
|
|
|
|
}
|
|
|
|
|
2003-01-27 22:02:44 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Escape(const nsAString& aStr,
|
|
|
|
nsAString& aReturn)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsXPIDLCString dest;
|
1999-10-06 22:07:42 +00:00
|
|
|
|
2003-01-27 22:02:44 +00:00
|
|
|
rv = ConvertCharset(aStr, getter_Copies(dest));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// Escape the string
|
|
|
|
char *outBuf =
|
|
|
|
nsEscape(dest.get(), nsEscapeMask(url_XAlphas | url_XPAlphas | url_Path));
|
|
|
|
CopyASCIItoUCS2(nsDependentCString(outBuf), aReturn);
|
|
|
|
nsMemory::Free(outBuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
1999-10-06 22:07:42 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Unescape(const nsAString& aStr,
|
|
|
|
nsAString& aReturn)
|
1999-10-06 22:07:42 +00:00
|
|
|
{
|
2003-06-17 01:09:41 +00:00
|
|
|
// To gracefully deal with encoding issues, we have to do the following:
|
|
|
|
// 1) Convert aStr into the document encoding.
|
|
|
|
// 2) Unescape the byte buffer
|
|
|
|
// 3) Convert the byte buffer back into Unicode.
|
|
|
|
|
2001-08-21 09:02:22 +00:00
|
|
|
aReturn.Truncate();
|
|
|
|
|
2003-06-17 01:09:41 +00:00
|
|
|
// encode
|
|
|
|
nsXPIDLCString encodedString;
|
|
|
|
nsresult rv = ConvertCharset(aStr, getter_Copies(encodedString));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsICharsetConverterManager>
|
|
|
|
ccm(do_GetService(kCharsetConverterManagerCID));
|
2003-06-17 01:09:41 +00:00
|
|
|
NS_ENSURE_TRUE(ccm, NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
|
|
|
// Get the document character set; default to utf-8 if all else fails
|
2003-06-17 16:40:34 +00:00
|
|
|
nsCAutoString charset(NS_LITERAL_CSTRING("UTF-8"));
|
1999-10-06 22:07:42 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mDocument) {
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2003-06-17 01:09:41 +00:00
|
|
|
if (doc) {
|
|
|
|
rv = doc->GetDocumentCharacterSet(charset);
|
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2003-06-17 01:09:41 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2003-06-17 01:09:41 +00:00
|
|
|
// Get a decoder for the character set
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> decoder;
|
2003-06-17 16:40:34 +00:00
|
|
|
rv = ccm->GetUnicodeDecoderRaw(charset.get(),
|
2003-06-17 01:09:41 +00:00
|
|
|
getter_AddRefs(decoder));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2003-06-17 01:09:41 +00:00
|
|
|
// Unescape
|
|
|
|
// We cast away the const here; after this point, do not attempt to
|
|
|
|
// access encodedString directly -- it exists only to properly
|
|
|
|
// release the data buffer!
|
|
|
|
char *encodedData = NS_CONST_CAST(char*, encodedString.get());
|
|
|
|
PRInt32 unescapedByteCount = nsUnescapeCount(encodedData);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2003-06-17 01:09:41 +00:00
|
|
|
// Allocate buffer to decode into
|
|
|
|
PRInt32 maxLength;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
|
|
|
// Get the expected length of the result string
|
2003-06-17 01:09:41 +00:00
|
|
|
rv = decoder->GetMaxLength(encodedData, unescapedByteCount, &maxLength);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Allocate a buffer of the maximum length
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
PRUnichar *dest = (PRUnichar*)nsMemory::Alloc(sizeof(PRUnichar) * maxLength);
|
2003-06-17 01:09:41 +00:00
|
|
|
NS_ENSURE_TRUE(dest, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
PRInt32 destLen = maxLength;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Convert from character set to unicode
|
2003-06-17 01:09:41 +00:00
|
|
|
rv = decoder->Convert(encodedData, &unescapedByteCount, dest, &destLen);
|
|
|
|
if (NS_FAILED(rv)) {
|
2000-08-22 03:51:17 +00:00
|
|
|
nsMemory::Free(dest);
|
2003-06-17 01:09:41 +00:00
|
|
|
return rv;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
aReturn.Assign(dest, destLen);
|
|
|
|
nsMemory::Free(dest);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetSelection(nsISelection** aSelection)
|
2000-04-28 14:02:29 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aSelection);
|
|
|
|
*aSelection = nsnull;
|
|
|
|
|
|
|
|
if (!mDocShell)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mDocShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
|
|
|
|
if (!presShell)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFrameSelection> selection;
|
2000-08-22 03:51:17 +00:00
|
|
|
presShell->GetFrameSelection(getter_AddRefs(selection));
|
2000-04-28 14:02:29 +00:00
|
|
|
|
|
|
|
if (!selection)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
return selection->GetSelection(nsISelectionController::SELECTION_NORMAL,
|
|
|
|
aSelection);
|
|
|
|
}
|
|
|
|
|
2001-09-30 19:56:32 +00:00
|
|
|
// Non-scriptable version of window.find(), part of nsIDOMWindowInternal
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::Find(const nsAString& aStr,
|
2001-09-30 19:56:32 +00:00
|
|
|
PRBool aCaseSensitive,
|
|
|
|
PRBool aBackwards,
|
|
|
|
PRBool aWrapAround,
|
|
|
|
PRBool aWholeWord,
|
|
|
|
PRBool aSearchInFrames,
|
|
|
|
PRBool aShowDialog,
|
|
|
|
PRBool *aDidFind)
|
|
|
|
{
|
|
|
|
return FindInternal(aStr, aCaseSensitive, aBackwards, aWrapAround,
|
|
|
|
aWholeWord, aSearchInFrames, aShowDialog, aDidFind);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scriptable version of window.find() which takes a variable number of
|
|
|
|
// arguments, part of nsIDOMJSWindow.
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Find(PRBool *aDidFind)
|
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(sXPConnect);
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
// We get the arguments passed to the function using the XPConnect native
|
|
|
|
// call context.
|
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
|
|
|
|
|
|
|
rv = sXPConnect->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
NS_ASSERTION(ncc, "No Native Call Context."
|
|
|
|
"Please don't call this method from C++.");
|
|
|
|
if (!ncc) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 argc;
|
|
|
|
jsval *argv = nsnull;
|
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
|
|
|
// Parse the arguments passed to the function
|
|
|
|
nsAutoString searchStr;
|
|
|
|
PRBool caseSensitive = PR_FALSE;
|
|
|
|
PRBool backwards = PR_FALSE;
|
|
|
|
PRBool wrapAround = PR_FALSE;
|
|
|
|
PRBool showDialog = PR_FALSE;
|
|
|
|
PRBool wholeWord = PR_FALSE;
|
|
|
|
PRBool searchInFrames = PR_FALSE;
|
|
|
|
|
|
|
|
if (argc > 0) {
|
|
|
|
// First arg is the search pattern
|
|
|
|
nsJSUtils::ConvertJSValToString(searchStr, cx, argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1 && !JS_ValueToBoolean(cx, argv[1], &caseSensitive)) {
|
|
|
|
// Second arg is the case sensitivity
|
|
|
|
caseSensitive = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 2 && !JS_ValueToBoolean(cx, argv[2], &backwards)) {
|
|
|
|
// Third arg specifies whether to search backwards
|
|
|
|
backwards = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 3 && !JS_ValueToBoolean(cx, argv[3], &wrapAround)) {
|
|
|
|
// Fourth arg specifies whether we should wrap the search
|
|
|
|
wrapAround = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 4 && !JS_ValueToBoolean(cx, argv[4], &wholeWord)) {
|
|
|
|
// Fifth arg specifies whether we should show the Find dialog
|
|
|
|
wholeWord = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 5 && !JS_ValueToBoolean(cx, argv[5], &searchInFrames)) {
|
|
|
|
// Sixth arg specifies whether we should search only for whole words
|
|
|
|
searchInFrames = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 6 && !JS_ValueToBoolean(cx, argv[6], &showDialog)) {
|
|
|
|
// Seventh arg specifies whether we should search in all frames
|
|
|
|
showDialog = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FindInternal(searchStr, caseSensitive, backwards, wrapAround,
|
|
|
|
wholeWord, searchInFrames, showDialog, aDidFind);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::FindInternal(const nsAString& aStr,
|
2001-09-30 19:56:32 +00:00
|
|
|
PRBool caseSensitive,
|
|
|
|
PRBool backwards,
|
|
|
|
PRBool wrapAround,
|
|
|
|
PRBool wholeWord,
|
|
|
|
PRBool searchInFrames,
|
|
|
|
PRBool showDialog,
|
|
|
|
PRBool *aDidFind)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aDidFind);
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
*aDidFind = PR_FALSE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWebBrowserFind> finder(do_GetInterface(mDocShell));
|
|
|
|
|
|
|
|
// Set the options of the search
|
|
|
|
rv = finder->SetSearchString(PromiseFlatString(aStr).get());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
finder->SetMatchCase(caseSensitive);
|
|
|
|
finder->SetFindBackwards(backwards);
|
|
|
|
finder->SetWrapFind(wrapAround);
|
|
|
|
finder->SetEntireWord(wholeWord);
|
|
|
|
finder->SetSearchFrames(searchInFrames);
|
|
|
|
|
2003-04-19 00:49:11 +00:00
|
|
|
// the nsIWebBrowserFind is initialized to use this window
|
|
|
|
// as the search root, but uses focus to set the current search
|
|
|
|
// frame. If we're being called from JS (as here), this window
|
|
|
|
// should be the current search frame.
|
|
|
|
nsCOMPtr<nsIWebBrowserFindInFrames> framesFinder(do_QueryInterface(finder));
|
|
|
|
if (framesFinder) {
|
|
|
|
framesFinder->SetRootSearchFrame(this); // paranoia
|
|
|
|
framesFinder->SetCurrentSearchFrame(this);
|
|
|
|
}
|
|
|
|
|
2001-09-30 19:56:32 +00:00
|
|
|
// The Find API does not accept empty strings. Launch the Find Dialog.
|
|
|
|
if (aStr.IsEmpty() || showDialog) {
|
|
|
|
// See if the find dialog is already up using nsIWindowMediator
|
|
|
|
nsCOMPtr<nsIWindowMediator> windowMediator =
|
|
|
|
do_GetService(kWindowMediatorCID);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> findDialog;
|
|
|
|
|
|
|
|
if (windowMediator) {
|
|
|
|
windowMediator->GetMostRecentWindow(NS_LITERAL_STRING("findInPage").get(),
|
|
|
|
getter_AddRefs(findDialog));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (findDialog) {
|
|
|
|
// The Find dialog is already open, bring it to the top.
|
|
|
|
rv = findDialog->Focus();
|
|
|
|
} else { // Open a Find dialog
|
|
|
|
if (finder) {
|
|
|
|
nsCOMPtr<nsIDOMWindow> dialog;
|
|
|
|
rv = OpenDialog(NS_LITERAL_STRING("chrome://global/content/finddialog.xul"),
|
|
|
|
NS_LITERAL_STRING("_blank"),
|
|
|
|
NS_LITERAL_STRING("chrome, resizable=no, dependent=yes"),
|
|
|
|
finder, getter_AddRefs(dialog));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Launch the search with the passed in search string
|
|
|
|
rv = finder->FindNext(aDidFind);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2002-02-06 04:37:26 +00:00
|
|
|
static PRBool
|
|
|
|
Is8bit(const nsAString& aString)
|
|
|
|
{
|
|
|
|
static const PRUnichar EIGHT_BIT = PRUnichar(~0x00FF);
|
|
|
|
|
|
|
|
nsAString::const_iterator done_reading;
|
|
|
|
aString.EndReading(done_reading);
|
|
|
|
|
|
|
|
// for each chunk of |aString|...
|
|
|
|
PRUint32 fragmentLength = 0;
|
|
|
|
nsAString::const_iterator iter;
|
|
|
|
for (aString.BeginReading(iter); iter != done_reading;
|
|
|
|
iter.advance(PRInt32(fragmentLength))) {
|
|
|
|
fragmentLength = PRUint32(iter.size_forward());
|
|
|
|
const PRUnichar* c = iter.get();
|
|
|
|
const PRUnichar* fragmentEnd = c + fragmentLength;
|
|
|
|
|
|
|
|
// for each character in this chunk...
|
|
|
|
while (c < fragmentEnd)
|
|
|
|
if (*c++ & EIGHT_BIT)
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Atob(const nsAString& aAsciiBase64String,
|
|
|
|
nsAString& aBinaryData)
|
|
|
|
{
|
|
|
|
aBinaryData.Truncate();
|
|
|
|
|
|
|
|
if (!Is8bit(aAsciiBase64String)) {
|
|
|
|
return NS_ERROR_DOM_INVALID_CHARACTER_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *base64 = ToNewCString(aAsciiBase64String);
|
|
|
|
if (!base64) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 dataLen = aAsciiBase64String.Length();
|
|
|
|
|
|
|
|
PRInt32 resultLen = dataLen;
|
|
|
|
if (base64[dataLen - 1] == '=') {
|
|
|
|
if (base64[dataLen - 2] == '=') {
|
|
|
|
resultLen = dataLen - 2;
|
|
|
|
} else {
|
|
|
|
resultLen = dataLen - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resultLen = ((resultLen * 3) / 4);
|
|
|
|
|
|
|
|
char *bin_data = PL_Base64Decode(base64, aAsciiBase64String.Length(),
|
|
|
|
nsnull);
|
|
|
|
if (!bin_data) {
|
|
|
|
nsMemory::Free(base64);
|
|
|
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyASCIItoUCS2(Substring(bin_data, bin_data + resultLen), aBinaryData);
|
|
|
|
|
|
|
|
nsMemory::Free(base64);
|
|
|
|
PR_Free(bin_data);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Btoa(const nsAString& aBinaryData,
|
|
|
|
nsAString& aAsciiBase64String)
|
|
|
|
{
|
|
|
|
aAsciiBase64String.Truncate();
|
|
|
|
|
|
|
|
if (!Is8bit(aBinaryData)) {
|
|
|
|
return NS_ERROR_DOM_INVALID_CHARACTER_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *bin_data = ToNewCString(aBinaryData);
|
|
|
|
if (!bin_data) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 resultLen = ((aBinaryData.Length() + 2) / 3) * 4;
|
|
|
|
|
|
|
|
char *base64 = PL_Base64Encode(bin_data, aBinaryData.Length(), nsnull);
|
|
|
|
if (!base64) {
|
|
|
|
nsMemory::Free(bin_data);
|
|
|
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyASCIItoUCS2(nsDependentCString(base64, resultLen), aAsciiBase64String);
|
|
|
|
|
|
|
|
PR_Free(base64);
|
|
|
|
nsMemory::Free(bin_data);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIDOMEventTarget
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::AddEventListener(const nsAString& aType,
|
2000-08-22 03:51:17 +00:00
|
|
|
nsIDOMEventListener* aListener,
|
|
|
|
PRBool aUseCapture)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-11-09 00:25:25 +00:00
|
|
|
return AddGroupedEventListener(aType, aListener, aUseCapture, nsnull);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1999-09-17 20:13:52 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::RemoveEventListener(const nsAString& aType,
|
2000-08-22 03:51:17 +00:00
|
|
|
nsIDOMEventListener* aListener,
|
|
|
|
PRBool aUseCapture)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-11-09 00:25:25 +00:00
|
|
|
return RemoveGroupedEventListener(aType, aListener, aUseCapture, nsnull);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::DispatchEvent(nsIDOMEvent* aEvent, PRBool* _retval)
|
2000-05-16 11:35:12 +00:00
|
|
|
{
|
|
|
|
if (mDocument) {
|
|
|
|
nsCOMPtr<nsIDocument> idoc(do_QueryInterface(mDocument));
|
|
|
|
if (idoc) {
|
|
|
|
// Obtain a presentation context
|
|
|
|
PRInt32 count = idoc->GetNumberOfShells();
|
|
|
|
if (count == 0)
|
|
|
|
return NS_OK;
|
|
|
|
|
2001-06-20 03:27:48 +00:00
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
|
|
|
idoc->GetShellAt(0, getter_AddRefs(shell));
|
2000-05-16 11:35:12 +00:00
|
|
|
|
|
|
|
// Retrieve the context
|
|
|
|
nsCOMPtr<nsIPresContext> aPresContext;
|
|
|
|
shell->GetPresContext(getter_AddRefs(aPresContext));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEventStateManager> esm;
|
|
|
|
if (NS_SUCCEEDED(aPresContext->GetEventStateManager(getter_AddRefs(esm)))) {
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
return esm->DispatchNewEvent(NS_STATIC_CAST(nsIScriptGlobalObject *,
|
2001-09-27 21:43:00 +00:00
|
|
|
this), aEvent, _retval);
|
2000-05-16 11:35:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2002-11-09 00:25:25 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIDOM3EventTarget
|
|
|
|
//*****************************************************************************
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-11-28 01:04:18 +00:00
|
|
|
GlobalWindowImpl::AddGroupedEventListener(const nsAString & aType,
|
|
|
|
nsIDOMEventListener *aListener,
|
|
|
|
PRBool aUseCapture,
|
|
|
|
nsIDOMEventGroup *aEvtGrp)
|
2002-11-09 00:25:25 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEventListenerManager> manager;
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(GetListenerManager(getter_AddRefs(manager)))) {
|
|
|
|
PRInt32 flags = aUseCapture ? NS_EVENT_FLAG_CAPTURE : NS_EVENT_FLAG_BUBBLE;
|
|
|
|
|
|
|
|
manager->AddEventListenerByType(aListener, aType, flags, aEvtGrp);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-11-28 01:04:18 +00:00
|
|
|
GlobalWindowImpl::RemoveGroupedEventListener(const nsAString & aType,
|
|
|
|
nsIDOMEventListener *aListener,
|
|
|
|
PRBool aUseCapture,
|
|
|
|
nsIDOMEventGroup *aEvtGrp)
|
2002-11-09 00:25:25 +00:00
|
|
|
{
|
|
|
|
if (mListenerManager) {
|
|
|
|
PRInt32 flags = aUseCapture ? NS_EVENT_FLAG_CAPTURE : NS_EVENT_FLAG_BUBBLE;
|
|
|
|
|
|
|
|
mListenerManager->RemoveEventListenerByType(aListener, aType, flags, aEvtGrp);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::CanTrigger(const nsAString & type, PRBool *_retval)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::IsRegisteredHere(const nsAString & type, PRBool *_retval)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIDOMEventReceiver
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::AddEventListenerByIID(nsIDOMEventListener* aListener,
|
|
|
|
const nsIID& aIID)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIEventListenerManager> manager;
|
1999-06-11 21:49:41 +00:00
|
|
|
|
2003-03-12 03:22:11 +00:00
|
|
|
if (NS_SUCCEEDED (GetListenerManager(getter_AddRefs(manager)))) {
|
2000-08-22 03:51:17 +00:00
|
|
|
manager->AddEventListenerByIID(aListener, aIID, NS_EVENT_FLAG_BUBBLE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::RemoveEventListenerByIID(nsIDOMEventListener* aListener,
|
|
|
|
const nsIID& aIID)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mListenerManager) {
|
|
|
|
mListenerManager->RemoveEventListenerByIID(aListener, aIID,
|
|
|
|
NS_EVENT_FLAG_BUBBLE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
GlobalWindowImpl::GetListenerManager(nsIEventListenerManager **aResult)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2001-05-17 06:04:04 +00:00
|
|
|
if (!mListenerManager) {
|
|
|
|
static NS_DEFINE_CID(kEventListenerManagerCID,
|
|
|
|
NS_EVENTLISTENERMANAGER_CID);
|
|
|
|
nsresult rv;
|
1999-07-12 23:40:01 +00:00
|
|
|
|
2001-05-17 06:04:04 +00:00
|
|
|
mListenerManager = do_CreateInstance(kEventListenerManagerCID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2001-05-17 06:04:04 +00:00
|
|
|
|
|
|
|
return CallQueryInterface(mListenerManager, aResult);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1999-07-12 23:40:01 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
2002-11-09 00:25:25 +00:00
|
|
|
GlobalWindowImpl::HandleEvent(nsIDOMEvent *aEvent)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2002-11-09 00:25:25 +00:00
|
|
|
PRBool noDefault;
|
|
|
|
return DispatchEvent(aEvent, &noDefault);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
2002-11-09 00:25:25 +00:00
|
|
|
GlobalWindowImpl::GetSystemEventGroup(nsIDOMEventGroup **aGroup)
|
2000-02-16 06:59:07 +00:00
|
|
|
{
|
2002-11-09 00:25:25 +00:00
|
|
|
nsCOMPtr<nsIEventListenerManager> manager;
|
|
|
|
if (NS_SUCCEEDED(GetListenerManager(getter_AddRefs(manager))) && manager) {
|
|
|
|
return manager->GetSystemEventGroupLM(aGroup);
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
2000-02-16 06:59:07 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsPIDOMWindow
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPrivateParent(nsPIDOMWindow ** aParent)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> parent;
|
|
|
|
*aParent = nsnull; // Set to null so we can bail out later
|
1999-10-15 21:52:37 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
GetParent(getter_AddRefs(parent));
|
(13163, r=alecf, scc, waterson, others; names available on request)
- Fix most of bug 13163 (see TODO for rest). This entails adding a version-string argument to nsIScriptContext::EvaluateString and passing it around lots of places in content sinks.
- Fix leaks and confusion about mSecurityManager and mNameSpaceManager in nsJSEnvironment.cpp. These still need to move from nsJSContext to nsGlobalWindow or thereabouts, jband and vidur are looking at that.
- Added comments and expanded tabs in nsJSEnvironment.cpp, esp. to EvaluateString. Also changed various nsresult vars to be named rv. Also restored brace/style conformity to nsJSProtocolHandler.cpp.
- Factored CompileFunction from AddScriptEventListener to pave the way for brutal sharing of compiled JS event handlers via JS_CloneFunctionObject.
- Lots of nsCOMPtr uses added. I'm using one for mNameSpaceManager. Hold mSecurityManager as a service explicitly, on the other hand (awaiting scc's fix to allow comptrs for services), and release in nsJSContext's dtor (fixing a leak). These two managers should be moved to the window object -- TODO item below.
- Hold JSRuntimeService along with JSRuntime for live of nsJSEnvironment, fix for shaver.
- Fix window.setTimeout etc. so the filename and line number of the timeout expr is propagated. This meant factoring nsJSUtils.cpp code.
- Fix all content sinks to use the same, and up-to-date JavaScript version parsing (whether for script type or for old language attribute); also fix SplitMimeType clones to strip whitespace.
- With waterson, fix bug in brutal-sharing version of XUL content sink: script src= should not evaluate the inline content of its tag.
1999-10-31 00:43:30 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_STATIC_CAST(nsIDOMWindow *, this) == parent.get()) {
|
|
|
|
nsCOMPtr<nsIContent> chromeElement(do_QueryInterface(mChromeEventHandler));
|
|
|
|
if (!chromeElement)
|
|
|
|
return NS_OK; // This is ok, just means a null parent.
|
1999-07-12 23:40:01 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc;
|
2003-06-13 20:10:01 +00:00
|
|
|
chromeElement->GetDocument(getter_AddRefs(doc));
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!doc)
|
|
|
|
return NS_OK; // This is ok, just means a null parent.
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject;
|
|
|
|
doc->GetScriptGlobalObject(getter_AddRefs(globalObject));
|
|
|
|
if (!globalObject)
|
|
|
|
return NS_OK; // This is ok, just means a null parent.
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
parent = do_QueryInterface(globalObject);
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (parent)
|
|
|
|
CallQueryInterface(parent.get(), aParent);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetPrivateRoot(nsIDOMWindowInternal ** aParent)
|
2000-02-11 00:57:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
*aParent = nsnull; // Set to null so we can bail out later
|
2000-02-11 00:57:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> parent;
|
|
|
|
GetTop(getter_AddRefs(parent));
|
2000-02-11 00:57:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIScriptGlobalObject> parentTop = do_QueryInterface(parent);
|
|
|
|
nsCOMPtr<nsIDocShell> docShell;
|
2000-10-30 23:47:11 +00:00
|
|
|
NS_ASSERTION(parentTop, "cannot get parentTop");
|
|
|
|
if(parentTop == nsnull)
|
|
|
|
return NS_ERROR_FAILURE;
|
2000-08-22 03:51:17 +00:00
|
|
|
parentTop->GetDocShell(getter_AddRefs(docShell));
|
2000-11-04 08:21:20 +00:00
|
|
|
|
|
|
|
// Get the chrome event handler from the doc shell, since we only
|
|
|
|
// want to deal with XUL chrome handlers and not the new kind of
|
|
|
|
// window root handler.
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIChromeEventHandler> chromeEventHandler;
|
|
|
|
docShell->GetChromeEventHandler(getter_AddRefs(chromeEventHandler));
|
2000-02-11 00:57:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIContent> chromeElement(do_QueryInterface(mChromeEventHandler));
|
|
|
|
if (chromeElement) {
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
2003-06-13 20:10:01 +00:00
|
|
|
chromeElement->GetDocument(getter_AddRefs(doc));
|
2000-08-22 03:51:17 +00:00
|
|
|
if (doc) {
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject;
|
|
|
|
doc->GetScriptGlobalObject(getter_AddRefs(globalObject));
|
|
|
|
|
|
|
|
parent = do_QueryInterface(globalObject);
|
2000-09-01 01:54:35 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> tempParent;
|
|
|
|
parent->GetTop(getter_AddRefs(tempParent));
|
|
|
|
CallQueryInterface(tempParent, aParent);
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
2000-02-11 00:57:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (parent) {
|
2000-09-01 01:54:35 +00:00
|
|
|
CallQueryInterface(parent, aParent);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-11 00:57:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-02-11 00:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetLocation(nsIDOMLocation ** aLocation)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mLocation && mDocShell) {
|
|
|
|
mLocation = new LocationImpl(mDocShell);
|
|
|
|
NS_IF_ADDREF(mLocation);
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aLocation = mLocation;
|
|
|
|
NS_IF_ADDREF(mLocation);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetObjectProperty(const PRUnichar *aProperty,
|
|
|
|
nsISupports ** aObject)
|
2000-03-31 03:33:49 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_TRUE(mJSObject, NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Get JSContext from stack.
|
2001-06-20 01:25:09 +00:00
|
|
|
nsCOMPtr<nsIThreadJSContextStack> stack(do_GetService(sJSStackContractID));
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_TRUE(stack, NS_ERROR_FAILURE);
|
2000-03-31 03:33:49 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
JSContext *cx;
|
|
|
|
NS_ENSURE_SUCCESS(stack->Peek(&cx), NS_ERROR_FAILURE);
|
2000-03-31 03:33:49 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!cx) {
|
|
|
|
stack->GetSafeJSContext(&cx);
|
|
|
|
NS_ENSURE_TRUE(cx, NS_ERROR_FAILURE);
|
|
|
|
}
|
2000-03-31 03:33:49 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
jsval propertyVal;
|
2000-03-31 03:33:49 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (!::JS_LookupUCProperty(cx, mJSObject,
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_REINTERPRET_CAST(const jschar *, aProperty),
|
|
|
|
nsCRT::strlen(aProperty), &propertyVal)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2000-03-31 03:33:49 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (!nsJSUtils::ConvertJSValToXPCObject(aObject, NS_GET_IID(nsISupports),
|
|
|
|
cx, propertyVal)) {
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2000-03-31 03:33:49 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-03-31 03:33:49 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Activate()
|
1998-08-07 04:45:03 +00:00
|
|
|
{
|
2000-02-11 23:42:11 +00:00
|
|
|
/*
|
2000-02-08 13:40:10 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
if(treeOwnerAsWin)
|
|
|
|
treeOwnerAsWin->SetVisibility(PR_TRUE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mDocShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
NS_ENSURE_TRUE(presShell, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIViewManager> vm;
|
|
|
|
presShell->GetViewManager(getter_AddRefs(vm));
|
|
|
|
NS_ENSURE_TRUE(vm, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsIView* rootView;
|
|
|
|
vm->GetRootView(rootView);
|
|
|
|
NS_ENSURE_TRUE(rootView, NS_ERROR_FAILURE);
|
2002-02-09 03:36:55 +00:00
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
rootView->GetWidget(*getter_AddRefs(widget));
|
|
|
|
NS_ENSURE_TRUE(widget, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return widget->SetFocus();
|
2002-02-09 03:36:55 +00:00
|
|
|
|
2000-02-11 23:42:11 +00:00
|
|
|
*/
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
2002-03-04 22:50:11 +00:00
|
|
|
if (treeOwnerAsWin) {
|
|
|
|
PRBool isEnabled = PR_TRUE;
|
|
|
|
if (NS_SUCCEEDED(treeOwnerAsWin->GetEnabled(&isEnabled)) && !isEnabled) {
|
|
|
|
NS_WARNING( "Should not try to activate a disabled window" );
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
treeOwnerAsWin->SetVisibility(PR_TRUE);
|
2002-03-04 22:50:11 +00:00
|
|
|
}
|
2000-02-11 23:42:11 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mDocShell->GetPresShell(getter_AddRefs(presShell));
|
2002-01-16 06:43:45 +00:00
|
|
|
if (!presShell) {
|
|
|
|
NS_WARNING( "no preshell for window" );
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2000-02-11 23:42:11 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIViewManager> vm;
|
|
|
|
presShell->GetViewManager(getter_AddRefs(vm));
|
|
|
|
NS_ENSURE_TRUE(vm, NS_ERROR_FAILURE);
|
2000-02-11 23:42:11 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsIView *rootView;
|
|
|
|
vm->GetRootView(rootView);
|
|
|
|
NS_ENSURE_TRUE(rootView, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
rootView->GetWidget(*getter_AddRefs(widget));
|
|
|
|
NS_ENSURE_TRUE(widget, NS_ERROR_FAILURE);
|
2000-02-11 23:42:11 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsEventStatus status;
|
|
|
|
nsGUIEvent guiEvent;
|
2000-02-11 23:42:11 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
guiEvent.eventStructType = NS_GUI_EVENT;
|
|
|
|
guiEvent.point.x = 0;
|
|
|
|
guiEvent.point.y = 0;
|
|
|
|
guiEvent.time = PR_IntervalNow();
|
|
|
|
guiEvent.nativeMsg = nsnull;
|
2000-09-19 03:14:31 +00:00
|
|
|
guiEvent.message = NS_ACTIVATE;
|
2000-08-22 03:51:17 +00:00
|
|
|
guiEvent.widget = widget;
|
2000-02-11 23:42:11 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
vm->DispatchEvent(&guiEvent, &status);
|
2000-02-11 23:42:11 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1999-05-17 18:52:21 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::Deactivate()
|
1999-05-17 18:52:21 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mDocShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
NS_ENSURE_TRUE(presShell, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIViewManager> vm;
|
|
|
|
presShell->GetViewManager(getter_AddRefs(vm));
|
|
|
|
NS_ENSURE_TRUE(vm, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsIView *rootView;
|
|
|
|
vm->GetRootView(rootView);
|
|
|
|
NS_ENSURE_TRUE(rootView, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
rootView->GetWidget(*getter_AddRefs(widget));
|
|
|
|
NS_ENSURE_TRUE(widget, NS_ERROR_FAILURE);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsEventStatus status;
|
|
|
|
nsGUIEvent guiEvent;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
guiEvent.eventStructType = NS_GUI_EVENT;
|
|
|
|
guiEvent.point.x = 0;
|
|
|
|
guiEvent.point.y = 0;
|
|
|
|
guiEvent.time = PR_IntervalNow();
|
|
|
|
guiEvent.nativeMsg = nsnull;
|
|
|
|
guiEvent.message = NS_DEACTIVATE;
|
|
|
|
guiEvent.widget = widget;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
vm->DispatchEvent(&guiEvent, &status);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1999-05-17 18:52:21 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IMETHODIMP
|
2000-11-04 08:21:20 +00:00
|
|
|
GlobalWindowImpl::GetChromeEventHandler(nsIChromeEventHandler** aHandler)
|
2000-06-23 00:42:21 +00:00
|
|
|
{
|
2000-11-04 08:21:20 +00:00
|
|
|
*aHandler = mChromeEventHandler;
|
|
|
|
NS_IF_ADDREF(*aHandler);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-06-23 00:42:21 +00:00
|
|
|
|
2000-11-04 08:21:20 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetRootFocusController(nsIFocusController** aController)
|
|
|
|
{
|
|
|
|
*aController = nsnull;
|
2000-06-23 00:42:21 +00:00
|
|
|
|
2000-09-01 01:54:35 +00:00
|
|
|
nsCOMPtr<nsIDOMWindowInternal> rootWindow;
|
2000-09-22 05:02:20 +00:00
|
|
|
GetPrivateRoot(getter_AddRefs(rootWindow));
|
|
|
|
if (rootWindow) {
|
2000-11-04 08:21:20 +00:00
|
|
|
// Obtain the chrome event handler.
|
|
|
|
nsCOMPtr<nsIChromeEventHandler> chromeHandler;
|
|
|
|
nsCOMPtr<nsPIDOMWindow> piWin(do_QueryInterface(rootWindow));
|
|
|
|
piWin->GetChromeEventHandler(getter_AddRefs(chromeHandler));
|
|
|
|
if (chromeHandler) {
|
|
|
|
nsCOMPtr<nsPIWindowRoot> windowRoot(do_QueryInterface(chromeHandler));
|
|
|
|
if (windowRoot) {
|
2001-05-03 10:09:59 +00:00
|
|
|
windowRoot->GetFocusController(aController);
|
2000-11-04 08:21:20 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2000-11-27 07:55:20 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
GlobalWindowImpl::HasMutationListeners(PRUint32 aMutationEventType,
|
|
|
|
PRBool* aResult)
|
2000-11-27 07:55:20 +00:00
|
|
|
{
|
|
|
|
*aResult = (mMutationBits & aMutationEventType) != 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-11-04 08:21:20 +00:00
|
|
|
|
2000-11-27 07:55:20 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::SetMutationListeners(PRUint32 aType)
|
|
|
|
{
|
|
|
|
mMutationBits |= aType;
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
2000-06-23 00:42:21 +00:00
|
|
|
}
|
|
|
|
|
2000-05-03 13:03:17 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIDOMViewCSS
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
2000-05-03 13:03:17 +00:00
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetComputedStyle(nsIDOMElement* aElt,
|
2002-03-24 00:16:18 +00:00
|
|
|
const nsAString& aPseudoElt,
|
2000-08-23 17:27:06 +00:00
|
|
|
nsIDOMCSSStyleDeclaration** aReturn)
|
2000-05-03 13:03:17 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
*aReturn = nsnull;
|
|
|
|
|
2002-08-31 19:57:10 +00:00
|
|
|
if (!aElt) {
|
|
|
|
NS_ERROR("Don't call getComputedStyle with a null DOMElement reference!");
|
|
|
|
return NS_ERROR_DOM_NOT_SUPPORTED_ERR;
|
|
|
|
}
|
|
|
|
|
2002-07-08 07:11:59 +00:00
|
|
|
if (!mDocShell) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-05-03 13:03:17 +00:00
|
|
|
|
2000-05-17 06:38:43 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mDocShell->GetPresShell(getter_AddRefs(presShell));
|
2002-07-08 07:11:59 +00:00
|
|
|
|
|
|
|
if (!presShell) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-05-17 06:38:43 +00:00
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsIComputedDOMStyle> compStyle;
|
|
|
|
|
2002-07-08 07:11:59 +00:00
|
|
|
if (!sComputedDOMStyleFactory) {
|
|
|
|
nsCID cid;
|
|
|
|
rv = nsComponentManager::
|
|
|
|
ContractIDToClassID("@mozilla.org/DOM/Level2/CSS/computedStyleDeclaration;1",
|
|
|
|
&cid);
|
|
|
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = nsComponentManager::
|
|
|
|
GetClassObject(cid, NS_GET_IID(nsIFactory),
|
|
|
|
(void **)&sComputedDOMStyleFactory);
|
|
|
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv =
|
|
|
|
sComputedDOMStyleFactory->CreateInstance(nsnull,
|
|
|
|
NS_GET_IID(nsIComputedDOMStyle),
|
|
|
|
getter_AddRefs(compStyle));
|
|
|
|
|
2000-05-17 06:38:43 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = compStyle->Init(aElt, aPseudoElt, presShell);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return compStyle->QueryInterface(NS_GET_IID(nsIDOMCSSStyleDeclaration),
|
2000-08-22 03:51:17 +00:00
|
|
|
(void **) aReturn);
|
2000-05-03 13:03:17 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIDOMAbstractView
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
1998-08-07 04:45:03 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetDocument(nsIDOMDocumentView ** aDocumentView)
|
2000-04-26 13:58:56 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aDocumentView);
|
2000-04-26 13:58:56 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult rv = NS_OK;
|
2000-04-26 13:58:56 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mDocument) {
|
|
|
|
rv = mDocument->QueryInterface(NS_GET_IID(nsIDOMDocumentView),
|
|
|
|
(void **) aDocumentView);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*aDocumentView = nsnull;
|
|
|
|
}
|
2000-04-26 13:58:56 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return rv;
|
2000-04-26 13:58:56 +00:00
|
|
|
}
|
1998-09-03 01:19:58 +00:00
|
|
|
|
2001-05-17 02:15:27 +00:00
|
|
|
///*****************************************************************************
|
|
|
|
// GlobalWindowImpl::nsIInterfaceRequestor
|
2002-02-09 03:36:55 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GlobalWindowImpl::GetInterface(const nsIID & aIID, void **aSink)
|
2001-05-17 02:15:27 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aSink);
|
|
|
|
*aSink = nsnull;
|
|
|
|
|
|
|
|
if (aIID.Equals(NS_GET_IID(nsIDocCharset))) {
|
|
|
|
if (mDocShell) {
|
|
|
|
nsCOMPtr<nsIDocCharset> docCharset(do_QueryInterface(mDocShell));
|
2002-02-01 20:12:35 +00:00
|
|
|
*aSink = docCharset;
|
2001-05-17 02:15:27 +00:00
|
|
|
}
|
|
|
|
}
|
2001-07-24 22:39:11 +00:00
|
|
|
else if (aIID.Equals(NS_GET_IID(nsIWebNavigation))) {
|
|
|
|
if (mDocShell) {
|
2002-02-01 20:12:35 +00:00
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(mDocShell));
|
2001-07-24 22:39:11 +00:00
|
|
|
*aSink = webNav;
|
|
|
|
}
|
|
|
|
}
|
2002-02-01 14:52:11 +00:00
|
|
|
else if (aIID.Equals(NS_GET_IID(nsIWebBrowserPrint))) {
|
|
|
|
if (mDocShell) {
|
|
|
|
nsCOMPtr<nsIContentViewer> viewer;
|
|
|
|
mDocShell->GetContentViewer(getter_AddRefs(viewer));
|
|
|
|
if (viewer) {
|
|
|
|
nsCOMPtr<nsIWebBrowserPrint> webBrowserPrint(do_QueryInterface(viewer));
|
2002-02-01 20:12:35 +00:00
|
|
|
*aSink = webBrowserPrint;
|
2002-02-01 14:52:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-09 00:15:42 +00:00
|
|
|
else if (aIID.Equals(NS_GET_IID(nsIScriptEventManager))) {
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
|
|
|
if (doc) {
|
|
|
|
nsCOMPtr<nsIScriptEventManager> mgr;
|
|
|
|
|
|
|
|
doc->GetScriptEventManager(getter_AddRefs(mgr));
|
|
|
|
if (mgr) {
|
|
|
|
*aSink = mgr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-05-17 02:15:27 +00:00
|
|
|
else {
|
|
|
|
return QueryInterface(aIID, aSink);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IF_ADDREF(((nsISupports *) * aSink));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl: Window Control Functions
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
|
2001-10-31 23:52:52 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::GetParentInternal(nsIDOMWindowInternal **aParent)
|
|
|
|
{
|
|
|
|
*aParent = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> parent;
|
|
|
|
|
|
|
|
GetParent(getter_AddRefs(parent));
|
|
|
|
|
|
|
|
if (parent && parent != NS_STATIC_CAST(nsIDOMWindow *, this)) {
|
|
|
|
CallQueryInterface(parent, aParent);
|
|
|
|
NS_ASSERTION(*aParent, "Huh, parent not an nsIDOMWindowInternal?");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
GlobalWindowImpl::OpenInternal(const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
PRBool aDialog, jsval *argv, PRUint32 argc,
|
|
|
|
nsISupports *aExtraArgument,
|
|
|
|
nsIDOMWindow **aReturn)
|
2000-08-22 03:51:17 +00:00
|
|
|
{
|
2003-02-01 00:39:31 +00:00
|
|
|
nsXPIDLCString url;
|
2003-01-27 22:02:44 +00:00
|
|
|
nsresult rv = NS_OK;
|
2001-02-17 02:46:48 +00:00
|
|
|
|
|
|
|
*aReturn = nsnull;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (!aUrl.IsEmpty()) {
|
|
|
|
// fix bug 35076
|
2003-01-27 22:02:44 +00:00
|
|
|
// Escape all non ASCII characters in the url.
|
|
|
|
// Earlier, this code used to call Escape() and would escape characters like
|
|
|
|
// '?', '&', and '=' in the url. This caused bug 174628.
|
|
|
|
if (IsASCII(aUrl)) {
|
|
|
|
url.Append(NS_ConvertUCS2toUTF8(aUrl));
|
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
else {
|
2003-01-27 22:02:44 +00:00
|
|
|
nsXPIDLCString dest;
|
|
|
|
rv = ConvertCharset(aUrl, getter_Copies(dest));
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
NS_EscapeURL(dest, esc_AlwaysCopy | esc_OnlyNonASCII, url);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
else
|
2003-01-27 22:02:44 +00:00
|
|
|
url.Append(NS_ConvertUCS2toUTF8(aUrl));
|
2003-01-06 22:37:54 +00:00
|
|
|
}
|
2001-06-20 01:25:09 +00:00
|
|
|
|
|
|
|
/* Check whether the URI is allowed, but not for dialogs --
|
|
|
|
see bug 56851. The security of this function depends on
|
|
|
|
window.openDialog being inaccessible from web scripts */
|
2003-01-06 22:37:54 +00:00
|
|
|
if (url.get() && !aDialog)
|
|
|
|
rv = SecurityCheckURL(url.get());
|
2001-02-17 02:46:48 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2003-01-06 22:37:54 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> domReturn;
|
2001-02-17 02:46:48 +00:00
|
|
|
|
2001-06-20 01:25:09 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2003-01-06 22:37:54 +00:00
|
|
|
nsCOMPtr<nsIWindowWatcher> wwatch =
|
|
|
|
do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv);
|
|
|
|
|
2001-06-20 01:25:09 +00:00
|
|
|
if (wwatch) {
|
2003-01-06 22:37:54 +00:00
|
|
|
NS_ConvertUCS2toUTF8 options(aOptions);
|
|
|
|
NS_ConvertUCS2toUTF8 name(aName);
|
|
|
|
|
|
|
|
const char *options_ptr = aOptions.IsEmpty() ? nsnull : options.get();
|
|
|
|
const char *name_ptr = aName.IsEmpty() ? nsnull : name.get();
|
|
|
|
|
2001-06-20 01:25:09 +00:00
|
|
|
if (argc) {
|
|
|
|
nsCOMPtr<nsPIWindowWatcher> pwwatch(do_QueryInterface(wwatch));
|
|
|
|
NS_ENSURE_TRUE(pwwatch, NS_ERROR_UNEXPECTED);
|
|
|
|
|
2003-01-06 22:37:54 +00:00
|
|
|
PRUint32 extraArgc = argc >= 3 ? argc - 3 : 0;
|
|
|
|
rv = pwwatch->OpenWindowJS(this, url.get(), name_ptr, options_ptr,
|
|
|
|
aDialog, extraArgc, argv + 3,
|
2001-06-20 01:25:09 +00:00
|
|
|
getter_AddRefs(domReturn));
|
|
|
|
} else {
|
2003-01-06 22:37:54 +00:00
|
|
|
rv = wwatch->OpenWindow(this, url.get(), name_ptr, options_ptr,
|
|
|
|
aExtraArgument, getter_AddRefs(domReturn));
|
2001-06-20 01:25:09 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2003-05-05 20:55:37 +00:00
|
|
|
if (domReturn) {
|
2001-06-20 01:25:09 +00:00
|
|
|
CallQueryInterface(domReturn, aReturn);
|
2003-05-05 20:55:37 +00:00
|
|
|
|
|
|
|
// Save the prinicpal of the calling script
|
|
|
|
// We need it to decide whether to clear the scope in SetNewDocument
|
|
|
|
NS_ASSERTION(sSecMan, "No Security Manager Found!");
|
|
|
|
if (sSecMan) {
|
|
|
|
nsCOMPtr<nsIPrincipal> principal;
|
|
|
|
sSecMan->GetSubjectPrincipal(getter_AddRefs(principal));
|
|
|
|
nsCOMPtr<nsICodebasePrincipal> codebasePrin(do_QueryInterface(principal));
|
|
|
|
if (codebasePrin) {
|
|
|
|
nsCOMPtr<nsIURI> subjectURI;
|
|
|
|
codebasePrin->GetURI(getter_AddRefs(subjectURI));
|
|
|
|
nsCOMPtr<nsPIDOMWindow> domReturnPrivate(do_QueryInterface(domReturn));
|
|
|
|
domReturnPrivate->SetOpenerScriptURL(subjectURI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
}
|
2001-02-17 02:46:48 +00:00
|
|
|
}
|
2001-03-23 03:16:51 +00:00
|
|
|
|
2001-07-13 01:30:44 +00:00
|
|
|
return rv;
|
1998-08-07 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::CloseWindow(nsISupports *aWindow)
|
1998-08-07 04:45:03 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindow> win(do_QueryInterface(aWindow));
|
1998-08-07 04:45:03 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
win->ReallyCloseWindow();
|
1998-08-07 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl: Timeout Functions
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
1999-11-17 23:05:29 +00:00
|
|
|
|
2003-04-09 00:52:48 +00:00
|
|
|
static const char kSetIntervalStr[] = "setInterval";
|
|
|
|
static const char kSetTimeoutStr[] = "setTimeout";
|
1998-08-07 04:45:03 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::SetTimeoutOrInterval(PRBool aIsInterval, PRInt32 *aReturn)
|
1998-08-13 23:37:54 +00:00
|
|
|
{
|
2002-11-28 01:04:18 +00:00
|
|
|
if (!mContext) {
|
|
|
|
// This window was already closed, or never properly initialized,
|
|
|
|
// don't let a timer be scheduled on such a window.
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_STATE(sXPConnect);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
2002-11-28 01:04:18 +00:00
|
|
|
nsresult rv = sXPConnect->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 argc;
|
|
|
|
jsval *argv = nsnull;
|
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
JSString *expr = nsnull;
|
|
|
|
JSObject *funobj = nsnull;
|
2000-09-15 19:22:03 +00:00
|
|
|
nsTimeoutImpl *timeout;
|
2001-08-10 01:45:54 +00:00
|
|
|
jsdouble interval = 0.0;
|
2000-08-22 03:51:17 +00:00
|
|
|
PRInt64 now, delta;
|
1998-08-13 23:37:54 +00:00
|
|
|
|
2001-08-10 01:45:54 +00:00
|
|
|
if (argc < 1) {
|
2001-08-14 08:05:28 +00:00
|
|
|
::JS_ReportError(cx, "Function %s requires at least 1 parameter",
|
2000-08-22 03:51:17 +00:00
|
|
|
aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2001-08-16 04:05:10 +00:00
|
|
|
|
|
|
|
return ncc->SetExceptionWasThrown(PR_TRUE);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2001-08-10 01:45:54 +00:00
|
|
|
if (argc > 1 && !::JS_ValueToNumber(cx, argv[1], &interval)) {
|
2000-08-22 03:51:17 +00:00
|
|
|
::JS_ReportError(cx,
|
|
|
|
"Second argument to %s must be a millisecond interval",
|
|
|
|
aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2001-08-16 04:05:10 +00:00
|
|
|
|
|
|
|
return ncc->SetExceptionWasThrown(PR_TRUE);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
switch (::JS_TypeOfValue(cx, argv[0])) {
|
|
|
|
case JSTYPE_FUNCTION:
|
|
|
|
funobj = JSVAL_TO_OBJECT(argv[0]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case JSTYPE_STRING:
|
|
|
|
case JSTYPE_OBJECT:
|
|
|
|
if (!(expr = ::JS_ValueToString(cx, argv[0])))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
if (!expr)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
argv[0] = STRING_TO_JSVAL(expr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
::JS_ReportError(cx, "useless %s call (missing quotes around argument?)",
|
2000-02-08 13:40:10 +00:00
|
|
|
aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2001-08-16 04:05:10 +00:00
|
|
|
|
|
|
|
return ncc->SetExceptionWasThrown(PR_TRUE);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-06-19 00:42:23 +00:00
|
|
|
if (interval < DOM_MIN_TIMEOUT_VALUE) {
|
|
|
|
// Don't allow timeouts less than DOM_MIN_TIMEOUT_VALUE from
|
|
|
|
// now...
|
|
|
|
|
|
|
|
interval = DOM_MIN_TIMEOUT_VALUE;
|
|
|
|
}
|
|
|
|
|
2001-08-15 05:35:02 +00:00
|
|
|
timeout = new nsTimeoutImpl();
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!timeout)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// Increment the timeout's reference count to indicate that this
|
|
|
|
// timeout struct will be held as the closure of a timer.
|
|
|
|
timeout->AddRef();
|
|
|
|
if (aIsInterval) {
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mInterval = (PRInt32)interval;
|
2002-11-28 01:04:18 +00:00
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (expr) {
|
2002-11-28 01:35:45 +00:00
|
|
|
if (!::JS_AddNamedRoot(cx, &timeout->mExpr, "timeout.mExpr")) {
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mExpr = expr;
|
2002-11-28 01:04:18 +00:00
|
|
|
} else if (funobj) {
|
2000-08-22 03:51:17 +00:00
|
|
|
/* Leave an extra slot for a secret final argument that
|
|
|
|
indicates to the called function how "late" the timeout is. */
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mArgv = (jsval *) PR_MALLOC((argc - 1) * sizeof(jsval));
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (!timeout->mArgv) {
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (!::JS_AddNamedRoot(cx, &timeout->mFunObj, "timeout.mFunObj")) {
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mFunObj = funobj;
|
|
|
|
timeout->mArgc = 0;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
for (PRInt32 i = 2; (PRUint32)i < argc; ++i) {
|
|
|
|
timeout->mArgv[i - 2] = argv[i];
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (!::JS_AddNamedRoot(cx, &timeout->mArgv[i - 2], "timeout.mArgv[i]")) {
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
1998-10-06 20:59:39 +00:00
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mArgc++;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *filename;
|
2002-11-28 01:35:45 +00:00
|
|
|
if (nsJSUtils::GetCallingLocation(cx, &filename, &timeout->mLineNo)) {
|
|
|
|
timeout->mFileName = PL_strdup(filename);
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (!timeout->mFileName) {
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mVersion = ::JS_VersionToString(::JS_GetVersion(cx));
|
2000-08-22 03:51:17 +00:00
|
|
|
|
|
|
|
// Get principal of currently executing code, save for execution of timeout
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
rv = sSecMan->GetSubjectPrincipal(getter_AddRefs(timeout->mPrincipal));
|
2001-08-15 05:35:02 +00:00
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2001-08-15 05:35:02 +00:00
|
|
|
}
|
1998-08-13 23:37:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
LL_I2L(now, PR_IntervalNow());
|
2002-11-28 01:35:45 +00:00
|
|
|
LL_D2L(delta, PR_MillisecondsToInterval((PRUint32)interval));
|
|
|
|
LL_ADD(timeout->mWhen, now, delta);
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mTimer = do_CreateInstance("@mozilla.org/timer;1", &rv);
|
2002-11-28 01:04:18 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
timeout->Release(mContext);
|
|
|
|
|
|
|
|
return rv;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1998-08-13 23:37:54 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
rv = timeout->mTimer->InitWithFuncCallback(TimerCallback, timeout,
|
|
|
|
(PRInt32)interval,
|
|
|
|
nsITimer::TYPE_ONE_SHOT);
|
2002-11-28 01:04:18 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
timeout->Release(mContext);
|
|
|
|
|
|
|
|
return rv;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mWindow = this;
|
|
|
|
NS_ADDREF(timeout->mWindow);
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2000-09-15 19:22:03 +00:00
|
|
|
InsertTimeoutIntoList(mTimeoutInsertionPoint, timeout);
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mPublicId = ++mTimeoutPublicIdCounter;
|
|
|
|
*aReturn = timeout->mPublicId;
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// static
|
2002-02-09 03:36:55 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::RunTimeout(nsTimeoutImpl *aTimeout)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2001-12-12 01:01:38 +00:00
|
|
|
if (!mContext) {
|
2002-11-28 01:04:18 +00:00
|
|
|
// No context means this window was closed or never properly
|
|
|
|
// initialized.
|
|
|
|
|
2001-12-12 01:01:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
PRBool scripts_enabled = PR_TRUE;
|
2001-11-27 09:18:28 +00:00
|
|
|
mContext->GetScriptsEnabled(&scripts_enabled);
|
|
|
|
|
|
|
|
if (!scripts_enabled) {
|
|
|
|
// Scripts were enabled once in this window (unless aTimeout ==
|
|
|
|
// nsnull) but now scripts are disabled (we might be in
|
|
|
|
// print-preview, for instance), this means we shouldn't run any
|
|
|
|
// timeouts at this point.
|
|
|
|
//
|
|
|
|
// If scrips are enabled in this window again we'll fire the
|
|
|
|
// timeouts that are due at that point.
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-02-15 01:32:19 +00:00
|
|
|
nsTimeoutImpl *next, *prev, *timeout;
|
|
|
|
nsTimeoutImpl *last_expired_timeout, **last_insertion_point;
|
|
|
|
nsTimeoutImpl dummy_timeout;
|
|
|
|
JSContext *cx;
|
2001-10-24 06:58:11 +00:00
|
|
|
PRInt64 now, deadline;
|
2000-02-15 01:32:19 +00:00
|
|
|
nsresult rv;
|
2000-08-22 03:51:17 +00:00
|
|
|
PRUint32 firingDepth = mTimeoutFiringDepth + 1;
|
2000-02-15 01:32:19 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// Make sure that the window and the script context don't go away as
|
2001-10-24 06:58:11 +00:00
|
|
|
// a result of running timeouts
|
2001-08-15 05:35:02 +00:00
|
|
|
nsCOMPtr<nsIScriptGlobalObject> windowKungFuDeathGrip(this);
|
|
|
|
nsCOMPtr<nsIScriptContext> contextKungFuDeathGrip(mContext);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2001-08-15 05:35:02 +00:00
|
|
|
cx = (JSContext *)mContext->GetNativeContext();
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// A native timer has gone off. See which of our timeouts need
|
2001-10-24 06:58:11 +00:00
|
|
|
// servicing
|
2000-02-15 01:32:19 +00:00
|
|
|
LL_I2L(now, PR_IntervalNow());
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (aTimeout && LL_CMP(aTimeout->mWhen, >, now)) {
|
2001-10-24 06:58:11 +00:00
|
|
|
// The OS timer fired early (yikes!), and possibly out of order
|
|
|
|
// too. Set |deadline| to be the time when the OS timer *should*
|
|
|
|
// have fired so that any timers that *should* have fired before
|
|
|
|
// aTimeout *will* be fired now. This happens most of the time on
|
|
|
|
// Win2k.
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
deadline = aTimeout->mWhen;
|
2001-10-24 06:58:11 +00:00
|
|
|
} else {
|
|
|
|
deadline = now;
|
|
|
|
}
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// The timeout list is kept in deadline order. Discover the latest
|
|
|
|
// timeout whose deadline has expired. On some platforms, native
|
|
|
|
// timeout events fire "early", so we need to test the timer as well
|
|
|
|
// as the deadline.
|
2000-02-15 01:32:19 +00:00
|
|
|
last_expired_timeout = nsnull;
|
2002-11-28 01:35:45 +00:00
|
|
|
for (timeout = mTimeouts; timeout; timeout = timeout->mNext) {
|
|
|
|
if (((timeout == aTimeout) || !LL_CMP(timeout->mWhen, >, deadline)) &&
|
|
|
|
(timeout->mFiringDepth == 0)) {
|
2002-11-28 01:04:18 +00:00
|
|
|
// Mark any timeouts that are on the list to be fired with the
|
|
|
|
// firing depth so that we can reentrantly run timeouts
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mFiringDepth = firingDepth;
|
2000-02-15 01:32:19 +00:00
|
|
|
last_expired_timeout = timeout;
|
|
|
|
}
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// Maybe the timeout that the event was fired for has been deleted
|
|
|
|
// and there are no others timeouts with deadlines that make them
|
|
|
|
// eligible for execution yet. Go away.
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!last_expired_timeout) {
|
2001-08-15 05:35:02 +00:00
|
|
|
return;
|
2000-02-15 01:32:19 +00:00
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// Insert a dummy timeout into the list of timeouts between the
|
|
|
|
// portion of the list that we are about to process now and those
|
|
|
|
// timeouts that will be processed in a future call to
|
|
|
|
// win_run_timeout(). This dummy timeout serves as the head of the
|
|
|
|
// list for any timeouts inserted as a result of running a timeout.
|
2002-11-28 01:35:45 +00:00
|
|
|
dummy_timeout.mFiringDepth = firingDepth;
|
|
|
|
dummy_timeout.mNext = last_expired_timeout->mNext;
|
|
|
|
last_expired_timeout->mNext = &dummy_timeout;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// Don't let ClearWindowTimeouts throw away our stack-allocated
|
|
|
|
// dummy timeout.
|
|
|
|
dummy_timeout.AddRef();
|
|
|
|
dummy_timeout.AddRef();
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2000-02-15 01:32:19 +00:00
|
|
|
last_insertion_point = mTimeoutInsertionPoint;
|
2002-11-28 01:35:45 +00:00
|
|
|
mTimeoutInsertionPoint = &dummy_timeout.mNext;
|
1998-08-13 04:34:53 +00:00
|
|
|
|
2000-02-15 01:32:19 +00:00
|
|
|
prev = nsnull;
|
2000-08-22 03:51:17 +00:00
|
|
|
for (timeout = mTimeouts; timeout != &dummy_timeout; timeout = next) {
|
2002-11-28 01:35:45 +00:00
|
|
|
next = timeout->mNext;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (timeout->mFiringDepth != firingDepth) {
|
2002-11-28 01:04:18 +00:00
|
|
|
// We skip the timeout since it's on the list to run at another
|
|
|
|
// depth.
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
prev = timeout;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
continue;
|
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// The timeout is on the list to run at this depth, go ahead and
|
|
|
|
// process it.
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
nsTimeoutImpl *last_running_timeout = mRunningTimeout;
|
|
|
|
mRunningTimeout = timeout;
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
// Hold on to the timeout in case mExpr or mFunObj releases its
|
|
|
|
// doc.
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->AddRef();
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
++mTimeoutFiringDepth;
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (timeout->mExpr) {
|
2002-11-28 01:04:18 +00:00
|
|
|
// Evaluate the timeout expression.
|
|
|
|
const PRUnichar *script =
|
|
|
|
NS_REINTERPRET_CAST(const PRUnichar *,
|
2002-11-28 01:35:45 +00:00
|
|
|
::JS_GetStringChars(timeout->mExpr));
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
nsAutoString retval;
|
|
|
|
PRBool is_undefined;
|
|
|
|
rv = mContext->EvaluateString(nsDependentString(script), mJSObject,
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mPrincipal, timeout->mFileName,
|
|
|
|
timeout->mLineNo, timeout->mVersion,
|
2002-11-28 01:04:18 +00:00
|
|
|
retval, &is_undefined);
|
|
|
|
} else {
|
|
|
|
PRInt64 lateness64;
|
|
|
|
PRInt32 lateness;
|
|
|
|
|
|
|
|
// Add a "secret" final argument that indicates timeout lateness
|
|
|
|
// in milliseconds
|
2002-11-28 01:35:45 +00:00
|
|
|
LL_SUB(lateness64, now, timeout->mWhen);
|
2002-11-28 01:04:18 +00:00
|
|
|
LL_L2I(lateness, lateness64);
|
|
|
|
lateness = PR_IntervalToMilliseconds(lateness);
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mArgv[timeout->mArgc] = INT_TO_JSVAL((jsint) lateness);
|
2002-11-28 01:04:18 +00:00
|
|
|
|
|
|
|
PRBool bool_result;
|
2002-11-28 01:35:45 +00:00
|
|
|
rv = mContext->CallEventHandler(mJSObject, timeout->mFunObj,
|
|
|
|
timeout->mArgc + 1, timeout->mArgv,
|
2002-11-28 01:04:18 +00:00
|
|
|
&bool_result, PR_FALSE);
|
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
--mTimeoutFiringDepth;
|
|
|
|
mRunningTimeout = last_running_timeout;
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// We ignore any failures from calling EvaluateString() or
|
|
|
|
// CallEventHandler() on the context here since we're in a loop
|
|
|
|
// where we're likely to be running timeouts whose OS timers
|
|
|
|
// didn't fire in time and we don't want to not fire those timers
|
|
|
|
// now just because execution of one timer failed. We can't
|
|
|
|
// propagate the error to anyone who cares about it from this
|
|
|
|
// point anyway so we just drop it.
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2002-12-11 00:03:34 +00:00
|
|
|
// If all timeouts were cleared and |timeout != aTimeout| then
|
|
|
|
// |timeout| may be the last reference to the timeout so check if
|
|
|
|
// it was cleared before releasing it.
|
|
|
|
PRBool timeout_was_cleared = timeout->mCleared;
|
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(contextKungFuDeathGrip);
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-12-11 00:03:34 +00:00
|
|
|
if (timeout_was_cleared) {
|
2002-11-28 01:04:18 +00:00
|
|
|
// The running timeout's window was cleared, this means that
|
|
|
|
// ClearAllTimeouts() was called from a *nested* call, possibly
|
|
|
|
// through a timeout that fired while a modal (to this window)
|
|
|
|
// dialog was open or through other non-obvious paths.
|
|
|
|
|
|
|
|
mTimeoutInsertionPoint = last_insertion_point;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a regular interval timer, we re-schedule the
|
|
|
|
// timeout, accounting for clock drift.
|
2002-11-28 01:35:45 +00:00
|
|
|
if (timeout->mInterval) {
|
2002-11-28 01:04:18 +00:00
|
|
|
// Compute time to next timeout for interval timer.
|
|
|
|
PRInt32 delay32;
|
2002-12-12 22:37:07 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
PRInt64 interval, delay;
|
|
|
|
|
|
|
|
LL_I2L(interval, PR_MillisecondsToInterval(timeout->mInterval));
|
|
|
|
LL_ADD(timeout->mWhen, timeout->mWhen, interval);
|
|
|
|
LL_I2L(now, PR_IntervalNow());
|
|
|
|
LL_SUB(delay, timeout->mWhen, now);
|
|
|
|
LL_L2I(delay32, delay);
|
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
|
|
|
|
// If the next interval timeout is already supposed to have
|
|
|
|
// happened then run the timeout immediately.
|
2002-12-12 22:37:07 +00:00
|
|
|
if (delay32 < 0) {
|
2002-11-28 01:04:18 +00:00
|
|
|
delay32 = 0;
|
2002-12-12 22:37:07 +00:00
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
|
|
|
|
delay32 = PR_IntervalToMilliseconds(delay32);
|
|
|
|
|
|
|
|
if (delay32 < DOM_MIN_TIMEOUT_VALUE) {
|
|
|
|
// Don't let intervals starve the message pump, no matter
|
|
|
|
// what. Just like we do for non-interval timeouts.
|
|
|
|
|
|
|
|
delay32 = DOM_MIN_TIMEOUT_VALUE;
|
2000-02-15 01:32:19 +00:00
|
|
|
}
|
2000-02-26 02:28:27 +00:00
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
// Reschedule the OS timer. Don't bother returning any error
|
|
|
|
// codes if this fails since nobody who cares about them is
|
|
|
|
// listening anyways.
|
|
|
|
rv = timeout->mTimer->InitWithFuncCallback(TimerCallback, timeout,
|
|
|
|
delay32,
|
|
|
|
nsITimer::TYPE_ONE_SHOT);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Error initializing timer for DOM timeout!");
|
|
|
|
|
|
|
|
// We failed to initialize the new OS timer, this timer does
|
|
|
|
// us no good here so we just cancel it (just in case) and
|
|
|
|
// null out the pointer to the OS timer, this will release the
|
|
|
|
// OS timer. As we continue executing the code below we'll end
|
|
|
|
// up deleting the timeout since it's not an interval timeout
|
|
|
|
// any more (since timeout->mTimer == nsnull).
|
|
|
|
timeout->mTimer->Cancel();
|
|
|
|
timeout->mTimer = nsnull;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
// Now that the OS timer no longer has a reference to the
|
|
|
|
// timeout we need to drop that reference.
|
|
|
|
timeout->Release(contextKungFuDeathGrip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool isInterval = PR_FALSE;
|
|
|
|
|
|
|
|
if (timeout->mTimer) {
|
|
|
|
if (timeout->mInterval) {
|
|
|
|
isInterval = PR_TRUE;
|
2002-11-28 01:04:18 +00:00
|
|
|
} else {
|
2002-12-12 22:37:07 +00:00
|
|
|
// The timeout still has an OS timer, and it's not an
|
|
|
|
// interval, that means that the OS timer could still fire (if
|
|
|
|
// it didn't already, i.e. aTimeout == timeout), cancel the OS
|
|
|
|
// timer and release it's reference to the timeout.
|
|
|
|
timeout->mTimer->Cancel();
|
|
|
|
timeout->mTimer = nsnull;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
timeout->Release(mContext);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Running a timeout can cause another timeout to be deleted, so
|
|
|
|
// we need to reset the pointer to the following timeout.
|
2002-11-28 01:35:45 +00:00
|
|
|
next = timeout->mNext;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
|
|
|
if (!prev) {
|
|
|
|
mTimeouts = next;
|
2001-08-15 05:35:02 +00:00
|
|
|
} else {
|
2002-11-28 01:35:45 +00:00
|
|
|
prev->mNext = next;
|
2002-11-28 01:04:18 +00:00
|
|
|
}
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
// Release the timeout struct since it's out of the list
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(contextKungFuDeathGrip);
|
|
|
|
|
|
|
|
if (isInterval) {
|
|
|
|
// Reschedule an interval timeout. Insert interval timeout
|
|
|
|
// onto list sorted in deadline order.
|
|
|
|
|
|
|
|
InsertTimeoutIntoList(mTimeoutInsertionPoint, timeout);
|
2000-02-15 01:32:19 +00:00
|
|
|
}
|
|
|
|
}
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// Take the dummy timeout off the head of the list
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (!prev) {
|
2002-11-28 01:35:45 +00:00
|
|
|
mTimeouts = dummy_timeout.mNext;
|
2001-08-15 05:35:02 +00:00
|
|
|
} else {
|
2002-11-28 01:35:45 +00:00
|
|
|
prev->mNext = dummy_timeout.mNext;
|
2000-02-15 01:32:19 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2000-02-15 01:32:19 +00:00
|
|
|
mTimeoutInsertionPoint = last_insertion_point;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
void
|
2002-11-28 01:04:18 +00:00
|
|
|
nsTimeoutImpl::Release(nsIScriptContext *aContext)
|
2000-08-22 03:51:17 +00:00
|
|
|
{
|
2002-11-28 01:04:18 +00:00
|
|
|
if (--mRefCnt > 0)
|
2000-08-22 03:51:17 +00:00
|
|
|
return;
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (mExpr || mFunObj) {
|
2002-11-28 01:04:18 +00:00
|
|
|
nsCOMPtr<nsIScriptContext> scx(aContext);
|
|
|
|
JSRuntime *rt = nsnull;
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (!scx && mWindow) {
|
|
|
|
mWindow->GetContext(getter_AddRefs(scx));
|
2002-11-28 01:04:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (scx) {
|
|
|
|
JSContext *cx;
|
|
|
|
cx = (JSContext *)scx->GetNativeContext();
|
|
|
|
rt = ::JS_GetRuntime(cx);
|
|
|
|
} else {
|
|
|
|
// XXX The timeout *must* be unrooted, even if !scx. This can be
|
|
|
|
// done without a JS context using the JSRuntime. This is safe
|
|
|
|
// enough, but it would be better to drop all a window's
|
|
|
|
// timeouts before its context is cleared. Bug 50705 describes a
|
|
|
|
// situation where we're not. In that case, at the time the
|
|
|
|
// context is cleared, a timeout (actually an Interval) is still
|
|
|
|
// active, but temporarily removed from the window's list of
|
|
|
|
// timers (placed instead on the timer manager's list). This
|
|
|
|
// makes the nearly handy ClearAllTimeouts routine useless, so
|
|
|
|
// we settled on using the JSRuntime rather than relying on the
|
|
|
|
// window having a context. It would be good to remedy this
|
|
|
|
// workable but clumsy situation someday.
|
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
NS_WARNING("nsTimeoutImpl::Release() proceeding without context.");
|
2002-11-28 01:04:18 +00:00
|
|
|
nsCOMPtr<nsIJSRuntimeService> rtsvc =
|
|
|
|
do_GetService("@mozilla.org/js/xpc/RuntimeService;1");
|
|
|
|
|
|
|
|
if (rtsvc)
|
|
|
|
rtsvc->GetRuntime(&rt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rt) {
|
|
|
|
// most unexpected. not much choice but to bail.
|
2000-10-15 23:23:12 +00:00
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
NS_ERROR("nsTimeoutImpl::Release() with no JSRuntime. eek!");
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (mExpr) {
|
|
|
|
::JS_RemoveRootRT(rt, &mExpr);
|
2002-11-28 01:04:18 +00:00
|
|
|
} else {
|
2002-11-28 01:35:45 +00:00
|
|
|
::JS_RemoveRootRT(rt, &mFunObj);
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (mArgv) {
|
|
|
|
for (PRInt32 i = 0; i < mArgc; ++i) {
|
|
|
|
::JS_RemoveRootRT(rt, &mArgv[i]);
|
2002-11-28 01:04:18 +00:00
|
|
|
}
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
PR_FREEIF(mArgv);
|
2002-11-28 01:04:18 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
}
|
2000-10-15 23:23:12 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (mTimer) {
|
|
|
|
mTimer->Cancel();
|
|
|
|
mTimer = nsnull;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
PR_FREEIF(mFileName);
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
NS_IF_RELEASE(mWindow);
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
delete this;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
void
|
2002-11-28 01:04:18 +00:00
|
|
|
nsTimeoutImpl::AddRef()
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
2002-11-28 01:04:18 +00:00
|
|
|
++mRefCnt;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult
|
2002-03-27 00:55:57 +00:00
|
|
|
GlobalWindowImpl::ClearTimeoutOrInterval()
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
2002-03-27 00:55:57 +00:00
|
|
|
NS_ENSURE_STATE(sXPConnect);
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
|
|
|
|
|
|
|
rv = sXPConnect->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 argc;
|
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
|
|
|
|
if (argc < 1) {
|
|
|
|
// No arguments, return early.
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-03-27 00:55:57 +00:00
|
|
|
|
|
|
|
jsval *argv = nsnull;
|
|
|
|
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
|
|
|
int32 timer_id;
|
|
|
|
|
|
|
|
if (argv[0] == JSVAL_VOID || !::JS_ValueToInt32(cx, argv[0], &timer_id) ||
|
|
|
|
timer_id <= 0) {
|
|
|
|
// Undefined or non-positive number passed as argument, return
|
|
|
|
// early.
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 public_id = (PRUint32)timer_id;
|
|
|
|
nsTimeoutImpl **top, *timeout;
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
for (top = &mTimeouts; (timeout = *top) != NULL; top = &timeout->mNext) {
|
|
|
|
if (timeout->mPublicId == public_id) {
|
2000-08-22 03:51:17 +00:00
|
|
|
if (mRunningTimeout == timeout) {
|
2002-11-28 01:04:18 +00:00
|
|
|
/* We're running from inside the timeout. Mark this
|
2000-08-22 03:51:17 +00:00
|
|
|
timeout for deferred deletion by the code in
|
|
|
|
win_run_timeout() */
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mInterval = 0;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Delete the timeout from the pending timeout list */
|
2002-11-28 01:35:45 +00:00
|
|
|
*top = timeout->mNext;
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (timeout->mTimer) {
|
|
|
|
timeout->mTimer->Cancel();
|
|
|
|
timeout->mTimer = nsnull;
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
2000-02-08 13:40:10 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::ClearAllTimeouts()
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsTimeoutImpl *timeout, *next;
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
for (timeout = mTimeouts; timeout; timeout = next) {
|
|
|
|
/* If RunTimeout() is higher up on the stack for this
|
|
|
|
window, e.g. as a result of document.write from a timeout,
|
|
|
|
then we need to reset the list insertion point for
|
|
|
|
newly-created timeouts in case the user adds a timeout,
|
|
|
|
before we pop the stack back to RunTimeout. */
|
|
|
|
if (mRunningTimeout == timeout)
|
2000-09-15 19:22:03 +00:00
|
|
|
mTimeoutInsertionPoint = &mTimeouts;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
next = timeout->mNext;
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
if (timeout->mTimer) {
|
|
|
|
timeout->mTimer->Cancel();
|
|
|
|
timeout->mTimer = nsnull;
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Drop the count since the timer isn't going to hold on
|
|
|
|
// anymore.
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
// Set timeout->mCleared to true to indicate that the timeout was
|
2002-11-28 01:04:18 +00:00
|
|
|
// cleared and taken out of the list of timeouts
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mCleared = PR_TRUE;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// Drop the count since we're removing it from the list.
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(mContext);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
mTimeouts = NULL;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::InsertTimeoutIntoList(nsTimeoutImpl **aList,
|
|
|
|
nsTimeoutImpl *aTimeout)
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsTimeoutImpl *to;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ASSERTION(aList,
|
|
|
|
"GlobalWindowImpl::InsertTimeoutIntoList null timeoutList");
|
2000-08-22 03:51:17 +00:00
|
|
|
while ((to = *aList) != nsnull) {
|
2002-11-28 01:35:45 +00:00
|
|
|
if (LL_CMP(to->mWhen, >, aTimeout->mWhen))
|
2000-08-22 03:51:17 +00:00
|
|
|
break;
|
2002-11-28 01:35:45 +00:00
|
|
|
aList = &to->mNext;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2002-11-28 01:35:45 +00:00
|
|
|
aTimeout->mFiringDepth = 0;
|
|
|
|
aTimeout->mNext = to;
|
2000-08-22 03:51:17 +00:00
|
|
|
*aList = aTimeout;
|
2001-10-24 06:58:11 +00:00
|
|
|
|
2002-11-28 01:04:18 +00:00
|
|
|
// Increment the timeout's reference count since it's now held on to
|
|
|
|
// by the list
|
|
|
|
aTimeout->AddRef();
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2001-10-24 06:58:11 +00:00
|
|
|
// static
|
|
|
|
void
|
|
|
|
GlobalWindowImpl::TimerCallback(nsITimer *aTimer, void *aClosure)
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
2001-08-15 05:35:02 +00:00
|
|
|
nsTimeoutImpl *timeout = (nsTimeoutImpl *)aClosure;
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
// Hold on to the timeout to ensure it doesn't go away while it's
|
|
|
|
// being handled (aka kungFuDeathGrip).
|
|
|
|
timeout->AddRef();
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
timeout->mWindow->RunTimeout(timeout);
|
2001-08-15 05:35:02 +00:00
|
|
|
|
2002-12-12 22:37:07 +00:00
|
|
|
// Drop our reference to the timeout now that we're done with it.
|
2002-11-28 01:04:18 +00:00
|
|
|
timeout->Release(nsnull);
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl: Helper Functions
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
1999-03-28 22:19:42 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::GetTreeOwner(nsIDocShellTreeOwner **aTreeOwner)
|
1999-03-28 22:19:42 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
2001-10-16 06:38:04 +00:00
|
|
|
|
|
|
|
// If there's no docShellAsItem, this window must have been closed,
|
|
|
|
// in that case there is no tree owner.
|
|
|
|
|
|
|
|
if (!docShellAsItem) {
|
|
|
|
*aTreeOwner = nsnull;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-03-28 22:19:42 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return docShellAsItem->GetTreeOwner(aTreeOwner);
|
1999-03-28 22:19:42 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::GetTreeOwner(nsIBaseWindow **aTreeOwner)
|
1999-03-28 22:19:42 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellAsItem(do_QueryInterface(mDocShell));
|
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
2001-10-16 06:38:04 +00:00
|
|
|
|
|
|
|
// If there's no docShellAsItem, this window must have been closed,
|
|
|
|
// in that case there is no tree owner.
|
|
|
|
|
|
|
|
if (docShellAsItem) {
|
|
|
|
docShellAsItem->GetTreeOwner(getter_AddRefs(treeOwner));
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!treeOwner) {
|
|
|
|
*aTreeOwner = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return CallQueryInterface(treeOwner, aTreeOwner);
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult
|
2000-08-22 03:51:17 +00:00
|
|
|
GlobalWindowImpl::GetWebBrowserChrome(nsIWebBrowserChrome **aBrowserChrome)
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> treeOwner;
|
|
|
|
GetTreeOwner(getter_AddRefs(treeOwner));
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome(do_GetInterface(treeOwner));
|
|
|
|
*aBrowserChrome = browserChrome;
|
|
|
|
NS_IF_ADDREF(*aBrowserChrome);
|
|
|
|
return NS_OK;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult
|
2000-08-22 03:51:17 +00:00
|
|
|
GlobalWindowImpl::GetScrollInfo(nsIScrollableView **aScrollableView,
|
|
|
|
float *aP2T, float *aT2P)
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
2001-06-18 07:37:11 +00:00
|
|
|
*aScrollableView = nsnull;
|
2002-09-04 02:22:35 +00:00
|
|
|
*aP2T = 0.0f;
|
|
|
|
*aT2P = 0.0f;
|
|
|
|
|
|
|
|
if (!mDocShell) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2001-06-18 07:37:11 +00:00
|
|
|
|
2001-01-13 01:51:45 +00:00
|
|
|
// Flush pending notifications so that the presentation is up to
|
|
|
|
// date.
|
2002-02-05 05:47:22 +00:00
|
|
|
FlushPendingNotifications(PR_TRUE);
|
2001-01-13 01:51:45 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIPresContext> presContext;
|
|
|
|
mDocShell->GetPresContext(getter_AddRefs(presContext));
|
|
|
|
if (presContext) {
|
|
|
|
presContext->GetPixelsToTwips(aP2T);
|
|
|
|
presContext->GetTwipsToPixels(aT2P);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
presContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
if (presShell) {
|
|
|
|
nsCOMPtr<nsIViewManager> vm;
|
|
|
|
presShell->GetViewManager(getter_AddRefs(vm));
|
|
|
|
if (vm)
|
|
|
|
return vm->GetRootScrollableView(aScrollableView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
1998-07-24 05:05:42 +00:00
|
|
|
}
|
|
|
|
|
2001-06-20 01:25:09 +00:00
|
|
|
nsresult
|
|
|
|
GlobalWindowImpl::SecurityCheckURL(const char *aURL)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
2001-08-07 05:27:42 +00:00
|
|
|
JSContext *cx = nsnull;
|
2001-06-20 01:25:09 +00:00
|
|
|
|
|
|
|
// get JSContext
|
|
|
|
NS_ASSERTION(mContext, "opening window missing its context");
|
|
|
|
NS_ASSERTION(mDocument, "opening window missing its document");
|
2002-05-17 22:24:06 +00:00
|
|
|
if (!mContext || !mDocument || !sSecMan)
|
2001-06-20 01:25:09 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// get the JSContext from the call stack
|
|
|
|
nsCOMPtr<nsIThreadJSContextStack> stack(do_GetService(sJSStackContractID));
|
|
|
|
if (stack)
|
|
|
|
stack->Peek(&cx);
|
|
|
|
if (!cx) // not bloody likely. but if there's no JS on the call stack,
|
|
|
|
return NS_OK; // then we should pass the security check.
|
|
|
|
|
|
|
|
/* resolve the URI, which could be relative to the calling window
|
|
|
|
(note the algorithm to get the base URI should match the one
|
|
|
|
used to actually kick off the load in nsWindowWatcher.cpp). */
|
|
|
|
nsCOMPtr<nsIURI> baseURI;
|
|
|
|
nsCOMPtr<nsIURI> uriToLoad;
|
|
|
|
|
2001-08-07 05:27:42 +00:00
|
|
|
nsCOMPtr<nsIScriptContext> scriptcx =
|
|
|
|
NS_STATIC_CAST(nsIScriptContext *, ::JS_GetContextPrivate(cx));
|
2001-06-20 01:25:09 +00:00
|
|
|
if (scriptcx) {
|
2001-06-20 03:27:48 +00:00
|
|
|
nsCOMPtr<nsIScriptGlobalObject> gobj;
|
|
|
|
scriptcx->GetGlobalObject(getter_AddRefs(gobj));
|
2001-06-20 01:25:09 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> caller(do_QueryInterface(gobj));
|
|
|
|
if (caller) {
|
|
|
|
nsCOMPtr<nsIDOMDocument> callerDOMdoc;
|
|
|
|
caller->GetDocument(getter_AddRefs(callerDOMdoc));
|
|
|
|
nsCOMPtr<nsIDocument> callerDoc(do_QueryInterface(callerDOMdoc));
|
|
|
|
if (callerDoc)
|
2001-06-20 03:27:48 +00:00
|
|
|
callerDoc->GetDocumentURL(getter_AddRefs(baseURI));
|
2001-06-20 01:25:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-17 22:24:06 +00:00
|
|
|
rv = NS_NewURI(getter_AddRefs(uriToLoad), nsDependentCString(aURL), nsnull,
|
|
|
|
baseURI);
|
2001-06-20 01:25:09 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2002-05-17 22:24:06 +00:00
|
|
|
if (NS_FAILED(sSecMan->CheckLoadURIFromScript(cx, uriToLoad))) {
|
2001-06-20 01:25:09 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2002-05-17 22:24:06 +00:00
|
|
|
}
|
2001-06-20 01:25:09 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
void
|
|
|
|
GlobalWindowImpl::FlushPendingNotifications(PRBool aFlushReflows)
|
1999-09-21 14:18:52 +00:00
|
|
|
{
|
2002-02-05 05:47:22 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mDocument));
|
|
|
|
if (doc) {
|
|
|
|
doc->FlushPendingNotifications(aFlushReflows);
|
2000-08-29 00:14:23 +00:00
|
|
|
}
|
|
|
|
}
|
1999-09-21 14:18:52 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
// QueryInterface implementation for nsGlobalChromeWindow
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsGlobalChromeWindow)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMChromeWindow)
|
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(ChromeWindow)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(GlobalWindowImpl)
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF_INHERITED(nsGlobalChromeWindow, GlobalWindowImpl)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsGlobalChromeWindow, GlobalWindowImpl)
|
|
|
|
|
|
|
|
// nsGlobalChromeWindow implementation
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
nsGlobalChromeWindow::GetTitle(nsAString& aTitle)
|
2002-02-09 03:36:55 +00:00
|
|
|
{
|
|
|
|
aTitle = mTitle;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
nsGlobalChromeWindow::SetTitle(const nsAString& aTitle)
|
2002-02-09 03:36:55 +00:00
|
|
|
{
|
|
|
|
mTitle = aTitle;
|
|
|
|
if(mDocShell) {
|
|
|
|
nsCOMPtr<nsIBaseWindow> docShellAsWin(do_QueryInterface(mDocShell));
|
|
|
|
if(docShellAsWin) {
|
|
|
|
docShellAsWin->SetTitle(PromiseFlatString(mTitle).get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGlobalChromeWindow::GetWindowState(PRUint16* aWindowState)
|
|
|
|
{
|
|
|
|
*aWindowState = nsIDOMChromeWindow::STATE_NORMAL;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
nsresult rv = GetMainWidget(getter_AddRefs(widget));
|
|
|
|
|
|
|
|
PRInt32 aMode = 0;
|
|
|
|
|
|
|
|
if (widget) {
|
|
|
|
rv = widget->GetSizeMode(&aMode);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (aMode) {
|
|
|
|
case nsSizeMode_Minimized:
|
|
|
|
*aWindowState = nsIDOMChromeWindow::STATE_MINIMIZED;
|
|
|
|
break;
|
|
|
|
case nsSizeMode_Maximized:
|
|
|
|
*aWindowState = nsIDOMChromeWindow::STATE_MAXIMIZED;
|
|
|
|
break;
|
|
|
|
case nsSizeMode_Normal:
|
|
|
|
*aWindowState = nsIDOMChromeWindow::STATE_NORMAL;
|
2002-04-17 04:17:16 +00:00
|
|
|
break;
|
2002-02-09 03:36:55 +00:00
|
|
|
default:
|
|
|
|
NS_WARNING("Illegal window state for this chrome window");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGlobalChromeWindow::Maximize()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
nsresult rv = GetMainWidget(getter_AddRefs(widget));
|
|
|
|
|
|
|
|
if (widget) {
|
|
|
|
rv = widget->SetSizeMode(nsSizeMode_Maximized);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGlobalChromeWindow::Minimize()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
nsresult rv = GetMainWidget(getter_AddRefs(widget));
|
|
|
|
|
|
|
|
if (widget) {
|
2002-02-20 03:33:52 +00:00
|
|
|
// minimize doesn't send deactivate events on windows,
|
|
|
|
// so we need to forcefully restore the os chrome
|
|
|
|
nsCOMPtr<nsIFullScreen> fullScreen =
|
|
|
|
do_GetService("@mozilla.org/browser/fullscreen;1");
|
|
|
|
if (fullScreen)
|
|
|
|
fullScreen->ShowAllOSChrome();
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
rv = widget->SetSizeMode(nsSizeMode_Minimized);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGlobalChromeWindow::Restore()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
nsresult rv = GetMainWidget(getter_AddRefs(widget));
|
|
|
|
|
|
|
|
if (widget) {
|
|
|
|
rv = widget->SetSizeMode(nsSizeMode_Normal);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGlobalChromeWindow::GetAttention()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
nsresult rv = GetMainWidget(getter_AddRefs(widget));
|
|
|
|
|
|
|
|
if (widget) {
|
|
|
|
rv = widget->GetAttention();
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Note: This call will lock the cursor, it will not change as it moves.
|
|
|
|
//To unlock, the cursor must be set back to CURSOR_AUTO.
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
nsGlobalChromeWindow::SetCursor(const nsAString& aCursor)
|
2002-02-09 03:36:55 +00:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
PRInt32 cursor;
|
|
|
|
|
2003-04-12 03:08:23 +00:00
|
|
|
// use C strings to keep the code/data size down
|
|
|
|
NS_ConvertUCS2toUTF8 cursorString(aCursor);
|
|
|
|
|
|
|
|
if (cursorString.Equals("auto"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_AUTO;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("default"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_DEFAULT;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("pointer"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_POINTER;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("crosshair"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_CROSSHAIR;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("move"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_MOVE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("text"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_TEXT;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("wait"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_WAIT;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("help"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_HELP;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("n-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_N_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("s-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_S_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("w-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_W_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("e-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_E_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("ne-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_NE_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("nw-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_NW_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("se-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_SE_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("sw-resize"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_SW_RESIZE;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("copy"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_COPY; // CSS3
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("alias"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_ALIAS;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("context-menu"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_CONTEXT_MENU;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("cell"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_CELL;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("grab"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_GRAB;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("grabbing"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_GRABBING;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("spinning"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_SPINNING;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("count-up"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_COUNT_UP;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("count-down"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_COUNT_DOWN;
|
2003-04-12 03:08:23 +00:00
|
|
|
else if (cursorString.Equals("count-up-down"))
|
2002-02-09 03:36:55 +00:00
|
|
|
cursor = NS_STYLE_CURSOR_COUNT_UP_DOWN;
|
2003-05-02 22:23:55 +00:00
|
|
|
else if (cursorString.Equals("-moz-zoom-in"))
|
|
|
|
cursor = NS_STYLE_CURSOR_MOZ_ZOOM_IN;
|
|
|
|
else if (cursorString.Equals("-moz-zoom-out"))
|
|
|
|
cursor = NS_STYLE_CURSOR_MOZ_ZOOM_OUT;
|
2002-02-09 03:36:55 +00:00
|
|
|
else
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresContext> presContext;
|
|
|
|
mDocShell->GetPresContext(getter_AddRefs(presContext));
|
|
|
|
if (presContext) {
|
|
|
|
nsCOMPtr<nsIEventStateManager> esm;
|
|
|
|
if (NS_SUCCEEDED(presContext->GetEventStateManager(getter_AddRefs(esm)))) {
|
|
|
|
// Need root widget.
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mDocShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
NS_ENSURE_TRUE(presShell, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIViewManager> vm;
|
|
|
|
presShell->GetViewManager(getter_AddRefs(vm));
|
|
|
|
NS_ENSURE_TRUE(vm, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsIView *rootView;
|
|
|
|
vm->GetRootView(rootView);
|
|
|
|
NS_ENSURE_TRUE(rootView, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
rootView->GetWidget(*getter_AddRefs(widget));
|
|
|
|
NS_ENSURE_TRUE(widget, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// Call esm and set cursor.
|
|
|
|
rv = esm->SetCursor(cursor, widget, PR_TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGlobalChromeWindow::GetMainWidget(nsIWidget** aMainWidget)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIBaseWindow> treeOwnerAsWin;
|
|
|
|
nsresult rv = GetTreeOwner(getter_AddRefs(treeOwnerAsWin));
|
|
|
|
|
|
|
|
if (treeOwnerAsWin) {
|
|
|
|
rv = treeOwnerAsWin->GetMainWidget(aMainWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// GlobalWindowImpl: Creator Function (This should go away)
|
2000-08-22 03:51:17 +00:00
|
|
|
//*****************************************************************************
|
1999-07-07 07:50:03 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
nsresult
|
|
|
|
NS_NewScriptGlobalObject(PRBool aIsChrome, nsIScriptGlobalObject **aResult)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
*aResult = nsnull;
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
GlobalWindowImpl *global;
|
|
|
|
|
|
|
|
if (aIsChrome) {
|
|
|
|
global = new nsGlobalChromeWindow();
|
|
|
|
} else {
|
|
|
|
global = new GlobalWindowImpl();
|
|
|
|
}
|
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_ENSURE_TRUE(global, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
return CallQueryInterface(NS_STATIC_CAST(nsIScriptGlobalObject *, global),
|
|
|
|
aResult);
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
//*** NavigatorImpl: Object Management
|
|
|
|
//*****************************************************************************
|
1999-07-07 07:50:03 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
NavigatorImpl::NavigatorImpl(nsIDocShell *aDocShell) :
|
|
|
|
mMimeTypes(nsnull),
|
|
|
|
mPlugins(nsnull),
|
2001-01-23 22:29:41 +00:00
|
|
|
mDocShell(aDocShell)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NavigatorImpl::~NavigatorImpl()
|
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_IF_RELEASE(mMimeTypes);
|
|
|
|
NS_IF_RELEASE(mPlugins);
|
2002-02-13 04:20:46 +00:00
|
|
|
sPrefInternal_id = JSVAL_VOID;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// NavigatorImpl::nsISupports
|
|
|
|
//*****************************************************************************
|
|
|
|
|
1998-07-16 01:16:47 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// QueryInterface implementation for NavigatorImpl
|
2000-02-08 13:40:10 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN(NavigatorImpl)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMNavigator)
|
2000-08-22 03:51:17 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMNavigator)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMJSNavigator)
|
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(Navigator)
|
2000-02-08 13:40:10 +00:00
|
|
|
NS_INTERFACE_MAP_END
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMPL_ADDREF(NavigatorImpl)
|
|
|
|
NS_IMPL_RELEASE(NavigatorImpl)
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2001-01-23 22:29:41 +00:00
|
|
|
|
|
|
|
void NavigatorImpl::SetDocShell(nsIDocShell *aDocShell)
|
|
|
|
{
|
|
|
|
mDocShell = aDocShell;
|
|
|
|
if (mPlugins)
|
|
|
|
mPlugins->SetDocShell(aDocShell);
|
|
|
|
}
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
|
|
|
// NavigatorImpl::nsIDOMNavigator
|
|
|
|
//*****************************************************************************
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetUserAgent(nsAString& aUserAgent)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString ua;
|
|
|
|
res = service->GetUserAgent(ua);
|
|
|
|
CopyASCIItoUCS2(ua, aUserAgent);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1999-08-03 19:00:51 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetAppCodeName(nsAString& aAppCodeName)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString appName;
|
|
|
|
res = service->GetAppName(appName);
|
|
|
|
CopyASCIItoUCS2(appName, aAppCodeName);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1998-09-17 00:55:35 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetAppVersion(nsAString& aAppVersion)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString str;
|
|
|
|
res = service->GetAppVersion(str);
|
|
|
|
CopyASCIItoUCS2(str, aAppVersion);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
aAppVersion.Append(NS_LITERAL_STRING(" ("));
|
2002-03-20 22:50:33 +00:00
|
|
|
res = service->GetPlatform(str);
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_FAILED(res))
|
|
|
|
return res;
|
|
|
|
|
2001-05-11 21:05:08 +00:00
|
|
|
aAppVersion += NS_ConvertASCIItoUCS2(str);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
aAppVersion.Append(NS_LITERAL_STRING("; "));
|
2002-03-20 22:50:33 +00:00
|
|
|
res = service->GetLanguage(str);
|
2000-08-22 03:51:17 +00:00
|
|
|
if (NS_FAILED(res))
|
|
|
|
return res;
|
|
|
|
|
2001-05-11 21:05:08 +00:00
|
|
|
aAppVersion += NS_ConvertASCIItoUCS2(str);
|
2000-08-22 03:51:17 +00:00
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
aAppVersion.Append(PRUnichar(')'));
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1998-09-17 00:55:35 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetAppName(nsAString& aAppName)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-23 17:27:06 +00:00
|
|
|
aAppName.Assign(NS_LITERAL_STRING("Netscape"));
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetLanguage(nsAString& aLanguage)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString lang;
|
|
|
|
res = service->GetLanguage(lang);
|
|
|
|
CopyASCIItoUCS2(lang, aLanguage);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1998-09-17 00:55:35 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetPlatform(nsAString& aPlatform)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
|
|
|
// sorry for the #if platform ugliness, but Communicator is
|
|
|
|
// likewise hardcoded and we're seeking backward compatibility
|
|
|
|
// here (bug 47080)
|
2000-09-22 04:52:22 +00:00
|
|
|
#if defined(WIN32)
|
|
|
|
aPlatform = NS_LITERAL_STRING("Win32");
|
2002-04-24 00:55:53 +00:00
|
|
|
#elif defined(XP_MAC) || defined(XP_MACOSX)
|
2000-09-22 04:52:22 +00:00
|
|
|
// XXX not sure what to do about Mac OS X on non-PPC, but since Comm 4.x
|
|
|
|
// doesn't know about it this will actually be backward compatible
|
|
|
|
aPlatform = NS_LITERAL_STRING("MacPPC");
|
2003-01-15 23:10:56 +00:00
|
|
|
#elif defined(XP_OS2)
|
|
|
|
aPlatform = NS_LITERAL_STRING("OS/2");
|
2000-09-22 04:52:22 +00:00
|
|
|
#else
|
|
|
|
// XXX Communicator uses compiled-in build-time string defines
|
|
|
|
// to indicate the platform it was compiled *for*, not what it is
|
|
|
|
// currently running *on* which is what this does.
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString plat;
|
|
|
|
res = service->GetOscpu(plat);
|
|
|
|
CopyASCIItoUCS2(plat, aPlatform);
|
2000-09-22 04:52:22 +00:00
|
|
|
#endif
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1998-09-17 00:55:35 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetOscpu(nsAString& aOSCPU)
|
2000-03-21 22:39:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString oscpu;
|
|
|
|
res = service->GetOscpu(oscpu);
|
|
|
|
CopyASCIItoUCS2(oscpu, aOSCPU);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-03-21 22:39:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
2000-03-21 22:39:54 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetVendor(nsAString& aVendor)
|
2000-03-21 22:39:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString vendor;
|
|
|
|
res = service->GetVendor(vendor);
|
|
|
|
CopyASCIItoUCS2(vendor, aVendor);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-03-21 22:39:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
2000-03-21 22:39:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetVendorSub(nsAString& aVendorSub)
|
2000-03-21 22:39:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString vendor;
|
|
|
|
res = service->GetVendorSub(vendor);
|
|
|
|
CopyASCIItoUCS2(vendor, aVendorSub);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-03-21 22:39:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
2000-03-21 22:39:54 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetProduct(nsAString& aProduct)
|
2000-03-21 22:39:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString product;
|
|
|
|
res = service->GetProduct(product);
|
|
|
|
CopyASCIItoUCS2(product, aProduct);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-03-21 22:39:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
2000-03-21 22:39:54 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetProductSub(nsAString& aProductSub)
|
2000-03-21 22:39:54 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult res;
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr<nsIHttpProtocolHandler>
|
2000-08-22 03:51:17 +00:00
|
|
|
service(do_GetService(kHTTPHandlerCID, &res));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (NS_SUCCEEDED(res) && service) {
|
2002-03-20 22:50:33 +00:00
|
|
|
nsCAutoString productSub;
|
|
|
|
res = service->GetProductSub(productSub);
|
|
|
|
CopyASCIItoUCS2(productSub, aProductSub);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
2000-03-21 22:39:54 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return res;
|
2000-03-21 22:39:54 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 00:16:18 +00:00
|
|
|
NavigatorImpl::GetSecurityPolicy(nsAString& aSecurityPolicy)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
NavigatorImpl::GetMimeTypes(nsIDOMMimeTypeArray **aMimeTypes)
|
1999-04-15 21:44:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mMimeTypes) {
|
|
|
|
mMimeTypes = new MimeTypeArrayImpl(this);
|
|
|
|
NS_IF_ADDREF(mMimeTypes);
|
|
|
|
}
|
1999-04-20 19:41:17 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aMimeTypes = mMimeTypes;
|
|
|
|
NS_IF_ADDREF(mMimeTypes);
|
1999-04-20 19:41:17 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1999-04-15 21:44:18 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
NavigatorImpl::GetPlugins(nsIDOMPluginArray **aPlugins)
|
1999-04-15 21:44:18 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
if (!mPlugins) {
|
2001-01-23 22:29:41 +00:00
|
|
|
mPlugins = new PluginArrayImpl(this, mDocShell);
|
2001-04-04 22:09:56 +00:00
|
|
|
if (!mPlugins)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
NS_ADDREF(mPlugins);
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1999-04-20 19:41:17 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
*aPlugins = mPlugins;
|
2001-04-04 22:09:56 +00:00
|
|
|
NS_ADDREF(mPlugins);
|
1999-04-20 19:41:17 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
return NS_OK;
|
1999-04-15 21:44:18 +00:00
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
NavigatorImpl::GetCookieEnabled(PRBool *aCookieEnabled)
|
1999-12-22 22:42:06 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult rv = NS_OK;
|
|
|
|
*aCookieEnabled = PR_FALSE;
|
1999-12-22 22:42:06 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
nsCOMPtr<nsIPrefBranch> prefBranch(gPrefBranch);
|
|
|
|
if (!prefBranch) {
|
|
|
|
prefBranch = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
|
|
|
NS_ENSURE_STATE(prefBranch);
|
|
|
|
}
|
1999-12-22 22:42:06 +00:00
|
|
|
|
2002-11-06 20:53:52 +00:00
|
|
|
#ifdef MOZ_PHOENIX
|
|
|
|
PRBool cookiesEnabled;
|
2002-11-25 23:21:25 +00:00
|
|
|
rv = prefBranch->GetBoolPref("network.cookie.enable", &cookiesEnabled);
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-06 20:53:52 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2002-11-28 01:04:18 +00:00
|
|
|
|
2002-11-06 20:53:52 +00:00
|
|
|
*aCookieEnabled = cookiesEnabled;
|
|
|
|
#else
|
2001-03-29 02:11:48 +00:00
|
|
|
PRInt32 cookieBehaviorPref;
|
2002-11-25 23:21:25 +00:00
|
|
|
rv = prefBranch->GetIntPref("network.cookie.cookieBehavior",
|
|
|
|
&cookieBehaviorPref);
|
2001-03-29 02:11:48 +00:00
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
1999-12-22 22:42:06 +00:00
|
|
|
|
2001-03-29 02:11:48 +00:00
|
|
|
const PRInt32 DONT_USE = 2;
|
|
|
|
*aCookieEnabled = (cookieBehaviorPref != DONT_USE);
|
2002-11-06 20:53:52 +00:00
|
|
|
#endif
|
|
|
|
|
2001-03-29 02:11:48 +00:00
|
|
|
return rv;
|
|
|
|
}
|
1999-12-22 22:42:06 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
NavigatorImpl::JavaEnabled(PRBool *aReturn)
|
1998-07-16 01:16:47 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
nsresult rv = NS_OK;
|
|
|
|
*aReturn = PR_FALSE;
|
|
|
|
|
2003-03-25 06:54:52 +00:00
|
|
|
#ifdef OJI
|
2000-08-22 03:51:17 +00:00
|
|
|
// determine whether user has enabled java.
|
2002-11-25 23:21:25 +00:00
|
|
|
nsCOMPtr<nsIPrefBranch> prefBranch(gPrefBranch);
|
|
|
|
if (!prefBranch) {
|
|
|
|
prefBranch = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
|
|
|
NS_ENSURE_STATE(prefBranch);
|
|
|
|
}
|
1999-05-08 16:37:53 +00:00
|
|
|
|
2000-08-22 03:51:17 +00:00
|
|
|
// if pref doesn't exist, map result to false.
|
2002-11-25 23:21:25 +00:00
|
|
|
if (NS_FAILED(prefBranch->GetBoolPref("security.enable_java", aReturn))) {
|
2000-08-22 03:51:17 +00:00
|
|
|
*aReturn = PR_FALSE;
|
2001-04-04 22:09:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if Java is not enabled, result is false and return reight away
|
|
|
|
if (!*aReturn)
|
|
|
|
return NS_OK;
|
|
|
|
|
2001-05-02 22:04:10 +00:00
|
|
|
// Ask the nsIJVMManager if Java is enabled
|
|
|
|
nsCOMPtr<nsIJVMManager> jvmService = do_GetService(kJVMServiceCID);
|
|
|
|
if (jvmService) {
|
|
|
|
jvmService->GetJavaEnabled(aReturn);
|
2001-04-04 22:09:56 +00:00
|
|
|
}
|
2001-05-02 22:04:10 +00:00
|
|
|
else {
|
|
|
|
*aReturn = PR_FALSE;
|
2001-04-04 22:09:56 +00:00
|
|
|
}
|
2003-03-25 06:54:52 +00:00
|
|
|
#endif
|
2000-08-22 03:51:17 +00:00
|
|
|
return rv;
|
1998-07-16 01:16:47 +00:00
|
|
|
}
|
1999-08-12 22:08:17 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
NavigatorImpl::TaintEnabled(PRBool *aReturn)
|
1999-08-27 06:05:42 +00:00
|
|
|
{
|
2000-08-22 03:51:17 +00:00
|
|
|
*aReturn = PR_FALSE;
|
|
|
|
return NS_OK;
|
1999-08-27 06:05:42 +00:00
|
|
|
}
|
|
|
|
|
2002-02-13 04:20:46 +00:00
|
|
|
jsval
|
|
|
|
NavigatorImpl::sPrefInternal_id = JSVAL_VOID;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
NavigatorImpl::Preference()
|
1999-08-27 06:05:42 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIXPConnect> xpc(do_GetService(nsIXPConnect::GetCID(), &rv));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
1999-08-27 06:05:42 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsCOMPtr<nsIXPCNativeCallContext> ncc;
|
1999-08-27 06:05:42 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
rv = xpc->GetCurrentNativeCallContext(getter_AddRefs(ncc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
1999-12-18 20:29:29 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
PRUint32 argc;
|
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
// No arguments means there's nothing to be done here.
|
|
|
|
|
|
|
|
return NS_OK;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1999-12-17 22:25:22 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
jsval *argv = nsnull;
|
2000-08-22 03:51:17 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
NS_ENSURE_TRUE(argv, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
//--Check to see if the caller is allowed to access prefs
|
2002-05-17 22:24:06 +00:00
|
|
|
if (sPrefInternal_id == JSVAL_VOID) {
|
|
|
|
sPrefInternal_id =
|
|
|
|
STRING_TO_JSVAL(::JS_InternString(cx, "preferenceinternal"));
|
|
|
|
}
|
2002-02-13 04:20:46 +00:00
|
|
|
|
2001-05-08 19:43:47 +00:00
|
|
|
PRUint32 action;
|
2002-05-17 22:24:06 +00:00
|
|
|
if (argc == 1) {
|
2001-05-08 19:43:47 +00:00
|
|
|
action = nsIXPCSecurityManager::ACCESS_GET_PROPERTY;
|
2002-05-17 22:24:06 +00:00
|
|
|
} else {
|
2001-05-08 19:43:47 +00:00
|
|
|
action = nsIXPCSecurityManager::ACCESS_SET_PROPERTY;
|
2002-05-17 22:24:06 +00:00
|
|
|
}
|
2002-02-13 04:20:46 +00:00
|
|
|
|
2002-05-17 22:24:06 +00:00
|
|
|
nsCOMPtr<nsIScriptSecurityManager> secMan =
|
|
|
|
do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = secMan->CheckPropertyAccess(cx, nsnull, "Navigator", sPrefInternal_id,
|
|
|
|
action);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return NS_OK;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
}
|
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
nsCOMPtr<nsIPrefBranch> prefBranch(gPrefBranch);
|
|
|
|
if (!prefBranch) {
|
|
|
|
prefBranch = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
|
|
|
NS_ENSURE_STATE(prefBranch);
|
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
JSString *str = ::JS_ValueToString(cx, argv[0]);
|
|
|
|
NS_ENSURE_TRUE(str, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
jsval *retval = nsnull;
|
|
|
|
|
|
|
|
rv = ncc->GetRetValPtr(&retval);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
char *prefStr = ::JS_GetStringBytes(str);
|
|
|
|
if (argc == 1) {
|
|
|
|
PRInt32 prefType;
|
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
prefBranch->GetPrefType(prefStr, &prefType);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
switch (prefType) {
|
|
|
|
case nsIPrefBranch::PREF_STRING:
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
{
|
|
|
|
nsXPIDLCString prefCharVal;
|
2002-11-25 23:21:25 +00:00
|
|
|
rv = prefBranch->GetCharPref(prefStr, getter_Copies(prefCharVal));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
JSString *retStr = ::JS_NewStringCopyZ(cx, prefCharVal);
|
|
|
|
NS_ENSURE_TRUE(retStr, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
*retval = STRING_TO_JSVAL(retStr);
|
|
|
|
|
|
|
|
break;
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
case nsIPrefBranch::PREF_INT:
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
{
|
|
|
|
PRInt32 prefIntVal;
|
2002-11-25 23:21:25 +00:00
|
|
|
rv = prefBranch->GetIntPref(prefStr, &prefIntVal);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*retval = INT_TO_JSVAL(prefIntVal);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
case nsIPrefBranch::PREF_BOOL:
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
{
|
|
|
|
PRBool prefBoolVal;
|
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
rv = prefBranch->GetBoolPref(prefStr, &prefBoolVal);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*retval = BOOLEAN_TO_JSVAL(prefBoolVal);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
// Nothing we can do here...
|
|
|
|
|
|
|
|
return ncc->SetReturnValueWasSet(PR_FALSE);
|
1999-11-17 00:43:19 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
|
|
|
ncc->SetReturnValueWasSet(PR_TRUE);
|
|
|
|
} else {
|
|
|
|
if (JSVAL_IS_STRING(argv[1])) {
|
|
|
|
JSString *valueJSStr = ::JS_ValueToString(cx, argv[1]);
|
|
|
|
NS_ENSURE_TRUE(valueJSStr, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
2002-11-25 23:21:25 +00:00
|
|
|
rv = prefBranch->SetCharPref(prefStr, ::JS_GetStringBytes(valueJSStr));
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
} else if (JSVAL_IS_INT(argv[1])) {
|
|
|
|
jsint valueInt = JSVAL_TO_INT(argv[1]);
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
rv = prefBranch->SetIntPref(prefStr, (PRInt32)valueInt);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
} else if (JSVAL_IS_BOOLEAN(argv[1])) {
|
|
|
|
JSBool valueBool = JSVAL_TO_BOOLEAN(argv[1]);
|
|
|
|
|
2002-11-28 01:35:45 +00:00
|
|
|
rv = prefBranch->SetBoolPref(prefStr, (PRBool)valueBool);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
} else if (JSVAL_IS_NULL(argv[1])) {
|
2002-11-25 23:21:25 +00:00
|
|
|
rv = prefBranch->DeleteBranch(prefStr);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
}
|
2000-08-22 03:51:17 +00:00
|
|
|
}
|
1999-11-17 00:43:19 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
return rv;
|
1999-10-14 23:28:17 +00:00
|
|
|
}
|
|
|
|
|
2003-06-18 23:48:57 +00:00
|
|
|
void
|
|
|
|
NavigatorImpl::LoadingNewDocument()
|
|
|
|
{
|
|
|
|
// Release these so that they will be recreated for the
|
|
|
|
// new document (if requested). The plugins or mime types
|
|
|
|
// arrays may have changed. See bug 150087.
|
|
|
|
NS_IF_RELEASE(mMimeTypes);
|
|
|
|
NS_IF_RELEASE(mPlugins);
|
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2001-07-23 05:36:52 +00:00
|
|
|
nsresult
|
|
|
|
NavigatorImpl::RefreshMIMEArray()
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
if (mMimeTypes)
|
|
|
|
rv = mMimeTypes->Refresh();
|
|
|
|
return rv;
|
|
|
|
}
|