2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla browser.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications, Inc.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* David W. Hyatt <hyatt@netscape.com> (Original Author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of 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 MPL, 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 MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsWindowRoot.h"
|
2010-02-20 08:07:03 -08:00
|
|
|
#include "nsPIDOMWindow.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMWindow.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIEventListenerManager.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsLayoutCID.h"
|
|
|
|
#include "nsContentCID.h"
|
|
|
|
#include "nsIEventStateManager.h"
|
|
|
|
#include "nsIPrivateDOMEvent.h"
|
|
|
|
#include "nsIDOMWindowInternal.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsEventDispatcher.h"
|
|
|
|
#include "nsIProgrammingLanguage.h"
|
2009-04-01 14:59:02 -07:00
|
|
|
#include "nsGUIEvent.h"
|
2010-02-20 08:07:03 -08:00
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsFocusManager.h"
|
2010-08-04 19:40:18 -07:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
2010-02-20 08:07:03 -08:00
|
|
|
#include "nsIDOMNSHTMLTextAreaElement.h"
|
|
|
|
#include "nsIControllers.h"
|
2007-09-21 01:54:36 -07:00
|
|
|
|
2007-09-23 09:10:12 -07:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2007-09-23 07:05:27 -07:00
|
|
|
|
2010-02-20 08:07:03 -08:00
|
|
|
#ifdef MOZ_XUL
|
|
|
|
#include "nsIDOMXULElement.h"
|
|
|
|
#endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
static NS_DEFINE_CID(kEventListenerManagerCID, NS_EVENTLISTENERMANAGER_CID);
|
|
|
|
|
2010-02-20 08:07:03 -08:00
|
|
|
nsWindowRoot::nsWindowRoot(nsPIDOMWindow* aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mWindow = aWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsWindowRoot::~nsWindowRoot()
|
|
|
|
{
|
|
|
|
if (mListenerManager) {
|
|
|
|
mListenerManager->Disconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-22 22:08:29 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_3(nsWindowRoot, mListenerManager, mPopupNode,
|
2010-02-20 09:05:20 -08:00
|
|
|
mParent)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-25 09:35:27 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsWindowRoot)
|
2007-05-14 02:11:38 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMEventTarget)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsPIDOMEventTarget)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsPIWindowRoot)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMEventTarget)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOM3EventTarget)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMNSEventTarget)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2007-05-15 01:50:33 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF_AMBIGUOUS(nsWindowRoot, nsIDOMEventTarget)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE_AMBIGUOUS(nsWindowRoot, nsIDOMEventTarget)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::AddEventListener(const nsAString& aType, nsIDOMEventListener* aListener, PRBool aUseCapture)
|
|
|
|
{
|
2010-01-13 05:50:01 -08:00
|
|
|
return AddEventListener(aType, aListener, aUseCapture, PR_FALSE, 0);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::RemoveEventListener(const nsAString& aType, nsIDOMEventListener* aListener, PRBool aUseCapture)
|
|
|
|
{
|
|
|
|
return RemoveGroupedEventListener(aType, aListener, aUseCapture, nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::DispatchEvent(nsIDOMEvent* aEvt, PRBool *_retval)
|
|
|
|
{
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsresult rv = nsEventDispatcher::DispatchDOMEvent(
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsPIDOMEventTarget*>(this), nsnull, aEvt, nsnull, &status);
|
2007-03-22 10:30:00 -07:00
|
|
|
*_retval = (status != nsEventStatus_eConsumeNoDefault);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsWindowRoot::DispatchDOMEvent(nsEvent* aEvent,
|
|
|
|
nsIDOMEvent* aDOMEvent,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsEventStatus* aEventStatus)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
return nsEventDispatcher::DispatchDOMEvent(static_cast<nsPIDOMEventTarget*>(this),
|
2007-03-22 10:30:00 -07:00
|
|
|
aEvent, aDOMEvent,
|
|
|
|
aPresContext, aEventStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::AddGroupedEventListener(const nsAString & aType, nsIDOMEventListener *aListener,
|
|
|
|
PRBool aUseCapture, nsIDOMEventGroup *aEvtGrp)
|
|
|
|
{
|
2009-06-23 04:23:52 -07:00
|
|
|
nsCOMPtr<nsIEventListenerManager> manager = GetListenerManager(PR_TRUE);
|
|
|
|
NS_ENSURE_STATE(manager);
|
|
|
|
PRInt32 flags = aUseCapture ? NS_EVENT_FLAG_CAPTURE : NS_EVENT_FLAG_BUBBLE;
|
|
|
|
return manager->AddEventListenerByType(aListener, aType, flags, aEvtGrp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::RemoveGroupedEventListener(const nsAString & aType, nsIDOMEventListener *aListener,
|
|
|
|
PRBool aUseCapture, nsIDOMEventGroup *aEvtGrp)
|
|
|
|
{
|
|
|
|
if (mListenerManager) {
|
|
|
|
PRInt32 flags = aUseCapture ? NS_EVENT_FLAG_CAPTURE : NS_EVENT_FLAG_BUBBLE;
|
2009-06-23 04:23:52 -07:00
|
|
|
return mListenerManager->RemoveEventListenerByType(aListener, aType, flags,
|
|
|
|
aEvtGrp);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-23 04:23:52 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::CanTrigger(const nsAString & type, PRBool *_retval)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::IsRegisteredHere(const nsAString & type, PRBool *_retval)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::AddEventListener(const nsAString& aType,
|
|
|
|
nsIDOMEventListener *aListener,
|
2010-01-13 05:50:01 -08:00
|
|
|
PRBool aUseCapture, PRBool aWantsUntrusted,
|
|
|
|
PRUint8 optional_argc)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-01-13 05:50:01 -08:00
|
|
|
NS_ASSERTION(!aWantsUntrusted || optional_argc > 0,
|
|
|
|
"Won't check if this is chrome, you want to set "
|
|
|
|
"aWantsUntrusted to PR_FALSE or make the aWantsUntrusted "
|
|
|
|
"explicit by making optional_argc non-zero.");
|
|
|
|
|
2009-06-23 04:23:52 -07:00
|
|
|
nsIEventListenerManager* manager = GetListenerManager(PR_TRUE);
|
|
|
|
NS_ENSURE_STATE(manager);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 flags = aUseCapture ? NS_EVENT_FLAG_CAPTURE : NS_EVENT_FLAG_BUBBLE;
|
|
|
|
|
|
|
|
if (aWantsUntrusted) {
|
|
|
|
flags |= NS_PRIV_EVENT_UNTRUSTED_PERMITTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return manager->AddEventListenerByType(aListener, aType, flags, nsnull);
|
|
|
|
}
|
|
|
|
|
2007-05-14 02:11:38 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsWindowRoot::AddEventListenerByIID(nsIDOMEventListener *aListener, const nsIID& aIID)
|
|
|
|
{
|
2009-06-23 04:23:52 -07:00
|
|
|
nsIEventListenerManager* manager = GetListenerManager(PR_TRUE);
|
|
|
|
NS_ENSURE_STATE(manager);
|
|
|
|
return manager->AddEventListenerByIID(aListener, aIID, NS_EVENT_FLAG_BUBBLE);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-05-14 02:11:38 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsWindowRoot::RemoveEventListenerByIID(nsIDOMEventListener *aListener, const nsIID& aIID)
|
|
|
|
{
|
2009-06-23 04:23:52 -07:00
|
|
|
nsIEventListenerManager* manager = GetListenerManager(PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (manager) {
|
2009-06-23 04:23:52 -07:00
|
|
|
return manager->RemoveEventListenerByIID(aListener, aIID,
|
|
|
|
NS_EVENT_FLAG_BUBBLE);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-23 04:23:52 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-06-23 04:23:52 -07:00
|
|
|
nsIEventListenerManager*
|
|
|
|
nsWindowRoot::GetListenerManager(PRBool aCreateIfNotFound)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!mListenerManager) {
|
|
|
|
if (!aCreateIfNotFound) {
|
2009-06-23 04:23:52 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
mListenerManager = do_CreateInstance(kEventListenerManagerCID);
|
|
|
|
if (mListenerManager) {
|
|
|
|
mListenerManager->SetListenerTarget(
|
|
|
|
static_cast<nsPIDOMEventTarget*>(this));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-23 04:23:52 -07:00
|
|
|
return mListenerManager;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-05-14 02:11:38 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsWindowRoot::GetSystemEventGroup(nsIDOMEventGroup **aGroup)
|
|
|
|
{
|
2009-06-23 04:23:52 -07:00
|
|
|
nsIEventListenerManager* manager = GetListenerManager(PR_TRUE);
|
|
|
|
NS_ENSURE_STATE(manager);
|
|
|
|
return manager->GetSystemEventGroupLM(aGroup);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsWindowRoot::PreHandleEvent(nsEventChainPreVisitor& aVisitor)
|
|
|
|
{
|
|
|
|
aVisitor.mCanHandle = PR_TRUE;
|
|
|
|
aVisitor.mForceContentDispatch = PR_TRUE; //FIXME! Bug 329119
|
|
|
|
// To keep mWindow alive
|
2010-02-20 08:07:03 -08:00
|
|
|
aVisitor.mItemData = static_cast<nsISupports *>(mWindow);
|
2010-02-20 09:05:20 -08:00
|
|
|
aVisitor.mParentTarget = mParent;
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsWindowRoot::PostHandleEvent(nsEventChainPostVisitor& aVisitor)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-02-20 08:07:03 -08:00
|
|
|
nsPIDOMWindow*
|
2007-07-06 06:47:50 -07:00
|
|
|
nsWindowRoot::GetWindow()
|
|
|
|
{
|
|
|
|
return mWindow;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::GetScriptTypeID(PRUint32 *aScriptType)
|
|
|
|
{
|
|
|
|
NS_ERROR("No default script type here - ask some element");
|
|
|
|
return nsIProgrammingLanguage::UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsWindowRoot::SetScriptTypeID(PRUint32 aScriptType)
|
|
|
|
{
|
|
|
|
NS_ERROR("Can't change default script type for a document");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2010-02-20 08:07:03 -08:00
|
|
|
nsresult
|
|
|
|
nsWindowRoot::GetControllers(nsIControllers** aResult)
|
|
|
|
{
|
|
|
|
*aResult = nsnull;
|
|
|
|
|
|
|
|
// XXX: we should fix this so there's a generic interface that
|
|
|
|
// describes controllers, so this code would have no special
|
|
|
|
// knowledge of what object might have controllers.
|
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindow> focusedWindow;
|
|
|
|
nsIContent* focusedContent =
|
|
|
|
nsFocusManager::GetFocusedDescendant(mWindow, PR_TRUE, getter_AddRefs(focusedWindow));
|
|
|
|
if (focusedContent) {
|
|
|
|
#ifdef MOZ_XUL
|
|
|
|
nsCOMPtr<nsIDOMXULElement> xulElement(do_QueryInterface(focusedContent));
|
|
|
|
if (xulElement)
|
|
|
|
return xulElement->GetControllers(aResult);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNSHTMLTextAreaElement> htmlTextArea =
|
|
|
|
do_QueryInterface(focusedContent);
|
|
|
|
if (htmlTextArea)
|
|
|
|
return htmlTextArea->GetControllers(aResult);
|
|
|
|
|
2010-08-04 19:40:18 -07:00
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> htmlInputElement =
|
2010-02-20 08:07:03 -08:00
|
|
|
do_QueryInterface(focusedContent);
|
|
|
|
if (htmlInputElement)
|
|
|
|
return htmlInputElement->GetControllers(aResult);
|
|
|
|
|
|
|
|
if (focusedContent->IsEditable() && focusedWindow)
|
|
|
|
return focusedWindow->GetControllers(aResult);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> domWindow = do_QueryInterface(focusedWindow);
|
|
|
|
if (domWindow)
|
|
|
|
return domWindow->GetControllers(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsWindowRoot::GetControllerForCommand(const char * aCommand,
|
|
|
|
nsIController** _retval)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(_retval);
|
|
|
|
*_retval = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIControllers> controllers;
|
|
|
|
nsCOMPtr<nsIController> controller;
|
|
|
|
|
|
|
|
GetControllers(getter_AddRefs(controllers));
|
|
|
|
if (controllers) {
|
|
|
|
controllers->GetControllerForCommand(aCommand, getter_AddRefs(controller));
|
|
|
|
if (controller) {
|
|
|
|
controller.swap(*_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindow> focusedWindow;
|
|
|
|
nsFocusManager::GetFocusedDescendant(mWindow, PR_TRUE, getter_AddRefs(focusedWindow));
|
|
|
|
while (focusedWindow) {
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> domWindow(do_QueryInterface(focusedWindow));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIControllers> controllers2;
|
|
|
|
domWindow->GetControllers(getter_AddRefs(controllers2));
|
|
|
|
if (controllers2) {
|
|
|
|
controllers2->GetControllerForCommand(aCommand,
|
|
|
|
getter_AddRefs(controller));
|
|
|
|
if (controller) {
|
|
|
|
controller.swap(*_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXXndeakin P3 is this casting safe?
|
|
|
|
nsCOMPtr<nsPIDOMWindow> piWindow = do_QueryInterface(focusedWindow);
|
|
|
|
nsGlobalWindow *win =
|
|
|
|
static_cast<nsGlobalWindow *>
|
|
|
|
(static_cast<nsIDOMWindowInternal *>(piWindow));
|
|
|
|
focusedWindow = win->GetPrivateParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-08-09 09:17:19 -07:00
|
|
|
nsIDOMNode*
|
|
|
|
nsWindowRoot::GetPopupNode()
|
2010-02-20 08:07:03 -08:00
|
|
|
{
|
2010-08-09 09:17:19 -07:00
|
|
|
return mPopupNode;
|
2010-02-20 08:07:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsWindowRoot::SetPopupNode(nsIDOMNode* aNode)
|
|
|
|
{
|
|
|
|
mPopupNode = aNode;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
nsresult
|
2010-02-20 08:07:03 -08:00
|
|
|
NS_NewWindowRoot(nsPIDOMWindow* aWindow, nsPIDOMEventTarget** aResult)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aResult = new nsWindowRoot(aWindow);
|
|
|
|
if (!*aResult)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|