/* -*- Mode: C++; tab-width: 2; 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 (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" #include "nsPIDOMWindow.h" #include "nsIDOMDocument.h" #include "nsIDocument.h" #include "nsEventListenerManager.h" #include "nsPresContext.h" #include "nsLayoutCID.h" #include "nsContentCID.h" #include "nsIPrivateDOMEvent.h" #include "nsString.h" #include "nsEventDispatcher.h" #include "nsGUIEvent.h" #include "nsGlobalWindow.h" #include "nsFocusManager.h" #include "nsIDOMHTMLInputElement.h" #include "nsIDOMHTMLTextAreaElement.h" #include "nsIControllers.h" #include "nsCycleCollectionParticipant.h" #ifdef MOZ_XUL #include "nsIDOMXULElement.h" #endif static NS_DEFINE_CID(kEventListenerManagerCID, NS_EVENTLISTENERMANAGER_CID); nsWindowRoot::nsWindowRoot(nsPIDOMWindow* aWindow) { mWindow = aWindow; } nsWindowRoot::~nsWindowRoot() { if (mListenerManager) { mListenerManager->Disconnect(); } } NS_IMPL_CYCLE_COLLECTION_CLASS(nsWindowRoot) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsWindowRoot) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NATIVE_MEMBER(mListenerManager, nsEventListenerManager) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mPopupNode) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mParent) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsWindowRoot) NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mListenerManager) NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mPopupNode) NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mParent) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsWindowRoot) NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMEventTarget) NS_INTERFACE_MAP_ENTRY(nsPIWindowRoot) NS_INTERFACE_MAP_ENTRY(nsIDOMEventTarget) NS_INTERFACE_MAP_END NS_IMPL_CYCLE_COLLECTING_ADDREF(nsWindowRoot) NS_IMPL_CYCLE_COLLECTING_RELEASE(nsWindowRoot) NS_IMPL_DOMTARGET_DEFAULTS(nsWindowRoot) NS_IMETHODIMP nsWindowRoot::RemoveEventListener(const nsAString& aType, nsIDOMEventListener* aListener, bool aUseCapture) { nsRefPtr elm = GetListenerManager(false); if (elm) { elm->RemoveEventListener(aType, aListener, aUseCapture); } return NS_OK; } NS_IMPL_REMOVE_SYSTEM_EVENT_LISTENER(nsWindowRoot) NS_IMETHODIMP nsWindowRoot::DispatchEvent(nsIDOMEvent* aEvt, bool *aRetVal) { nsEventStatus status = nsEventStatus_eIgnore; nsresult rv = nsEventDispatcher::DispatchDOMEvent( static_cast(this), nsnull, aEvt, nsnull, &status); *aRetVal = (status != nsEventStatus_eConsumeNoDefault); return rv; } nsresult nsWindowRoot::DispatchDOMEvent(nsEvent* aEvent, nsIDOMEvent* aDOMEvent, nsPresContext* aPresContext, nsEventStatus* aEventStatus) { return nsEventDispatcher::DispatchDOMEvent(static_cast(this), aEvent, aDOMEvent, aPresContext, aEventStatus); } NS_IMETHODIMP nsWindowRoot::AddEventListener(const nsAString& aType, nsIDOMEventListener *aListener, bool aUseCapture, bool aWantsUntrusted, PRUint8 aOptionalArgc) { NS_ASSERTION(!aWantsUntrusted || aOptionalArgc > 1, "Won't check if this is chrome, you want to set " "aWantsUntrusted to false or make the aWantsUntrusted " "explicit by making optional_argc non-zero."); nsEventListenerManager* elm = GetListenerManager(true); NS_ENSURE_STATE(elm); elm->AddEventListener(aType, aListener, aUseCapture, aWantsUntrusted); return NS_OK; } NS_IMETHODIMP nsWindowRoot::AddSystemEventListener(const nsAString& aType, nsIDOMEventListener *aListener, bool aUseCapture, bool aWantsUntrusted, PRUint8 aOptionalArgc) { NS_ASSERTION(!aWantsUntrusted || aOptionalArgc > 1, "Won't check if this is chrome, you want to set " "aWantsUntrusted to false or make the aWantsUntrusted " "explicit by making optional_argc non-zero."); return NS_AddSystemEventListener(this, aType, aListener, aUseCapture, aWantsUntrusted); } nsEventListenerManager* nsWindowRoot::GetListenerManager(bool aCreateIfNotFound) { if (!mListenerManager && aCreateIfNotFound) { mListenerManager = new nsEventListenerManager(static_cast(this)); } return mListenerManager; } nsIScriptContext* nsWindowRoot::GetContextForEventHandlers(nsresult* aRv) { *aRv = NS_OK; return nsnull; } nsresult nsWindowRoot::PreHandleEvent(nsEventChainPreVisitor& aVisitor) { aVisitor.mCanHandle = true; aVisitor.mForceContentDispatch = true; //FIXME! Bug 329119 // To keep mWindow alive aVisitor.mItemData = static_cast(mWindow); aVisitor.mParentTarget = mParent; return NS_OK; } nsresult nsWindowRoot::PostHandleEvent(nsEventChainPostVisitor& aVisitor) { return NS_OK; } nsPIDOMWindow* nsWindowRoot::GetWindow() { return mWindow; } 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 focusedWindow; nsIContent* focusedContent = nsFocusManager::GetFocusedDescendant(mWindow, true, getter_AddRefs(focusedWindow)); if (focusedContent) { #ifdef MOZ_XUL nsCOMPtr xulElement(do_QueryInterface(focusedContent)); if (xulElement) return xulElement->GetControllers(aResult); #endif nsCOMPtr htmlTextArea = do_QueryInterface(focusedContent); if (htmlTextArea) return htmlTextArea->GetControllers(aResult); nsCOMPtr htmlInputElement = do_QueryInterface(focusedContent); if (htmlInputElement) return htmlInputElement->GetControllers(aResult); if (focusedContent->IsEditable() && focusedWindow) return focusedWindow->GetControllers(aResult); } else { nsCOMPtr 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 controllers; GetControllers(getter_AddRefs(controllers)); if (controllers) { nsCOMPtr controller; controllers->GetControllerForCommand(aCommand, getter_AddRefs(controller)); if (controller) { controller.forget(_retval); return NS_OK; } } } nsCOMPtr focusedWindow; nsFocusManager::GetFocusedDescendant(mWindow, true, getter_AddRefs(focusedWindow)); while (focusedWindow) { nsCOMPtr controllers; focusedWindow->GetControllers(getter_AddRefs(controllers)); if (controllers) { nsCOMPtr controller; controllers->GetControllerForCommand(aCommand, getter_AddRefs(controller)); if (controller) { controller.forget(_retval); return NS_OK; } } // XXXndeakin P3 is this casting safe? nsGlobalWindow *win = static_cast(focusedWindow.get()); focusedWindow = win->GetPrivateParent(); } return NS_OK; } nsIDOMNode* nsWindowRoot::GetPopupNode() { return mPopupNode; } void nsWindowRoot::SetPopupNode(nsIDOMNode* aNode) { mPopupNode = aNode; } /////////////////////////////////////////////////////////////////////////////////// nsresult NS_NewWindowRoot(nsPIDOMWindow* aWindow, nsIDOMEventTarget** aResult) { *aResult = new nsWindowRoot(aWindow); NS_ADDREF(*aResult); return NS_OK; }