2009-06-15 08:27:29 +00:00
|
|
|
/* -*- 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 mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Mozilla Corporation
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Olli Pettay <Olli.Pettay@helsinki.fi>
|
|
|
|
*
|
|
|
|
* 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 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 "nsDOMEventTargetHelper.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsEventDispatcher.h"
|
|
|
|
#include "nsGUIEvent.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMEventListenerWrapper)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsDOMEventListenerWrapper)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMEventListener)
|
|
|
|
NS_INTERFACE_MAP_END_AGGREGATED(mListener)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMEventListenerWrapper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMEventListenerWrapper)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsDOMEventListenerWrapper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mListener)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsDOMEventListenerWrapper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mListener)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMEventListenerWrapper::HandleEvent(nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
return mListener->HandleEvent(aEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMEventTargetHelper)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsDOMEventTargetHelper)
|
2011-06-24 02:18:01 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NATIVE_MEMBER(mListenerManager,
|
|
|
|
nsEventListenerManager)
|
2009-06-15 08:27:29 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mScriptContext)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mOwner)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsDOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mListenerManager)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mScriptContext)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mOwner)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsDOMEventTargetHelper)
|
2011-06-24 02:18:01 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
2009-06-15 08:27:29 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMEventTarget)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2011-03-06 11:11:31 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMEventTargetHelper)
|
2009-06-15 08:27:29 +00:00
|
|
|
|
2011-06-24 02:17:58 +00:00
|
|
|
NS_IMPL_DOMTARGET_DEFAULTS(nsDOMEventTargetHelper);
|
2009-06-15 08:27:29 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMEventTargetHelper::RemoveEventListener(const nsAString& aType,
|
|
|
|
nsIDOMEventListener* aListener,
|
|
|
|
PRBool aUseCapture)
|
|
|
|
{
|
2011-06-24 02:18:01 +00:00
|
|
|
nsEventListenerManager* elm = GetListenerManager(PR_FALSE);
|
2009-06-15 08:27:29 +00:00
|
|
|
if (elm) {
|
2011-06-24 02:18:02 +00:00
|
|
|
elm->RemoveEventListener(aType, aListener, aUseCapture);
|
2009-06-15 08:27:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMEventTargetHelper::AddEventListener(const nsAString& aType,
|
|
|
|
nsIDOMEventListener *aListener,
|
|
|
|
PRBool aUseCapture,
|
2010-01-13 13:50:01 +00:00
|
|
|
PRBool aWantsUntrusted,
|
2011-06-24 02:17:59 +00:00
|
|
|
PRUint8 aOptionalArgc)
|
2009-06-15 08:27:29 +00:00
|
|
|
{
|
2011-06-24 02:17:59 +00:00
|
|
|
NS_ASSERTION(!aWantsUntrusted || aOptionalArgc > 1,
|
2010-01-13 13:50:01 +00:00
|
|
|
"Won't check if this is chrome, you want to set "
|
|
|
|
"aWantsUntrusted to PR_FALSE or make the aWantsUntrusted "
|
2011-06-24 02:17:59 +00:00
|
|
|
"explicit by making aOptionalArgc non-zero.");
|
2010-01-13 13:50:01 +00:00
|
|
|
|
2011-06-24 02:17:59 +00:00
|
|
|
if (aOptionalArgc < 2) {
|
2010-01-13 13:50:01 +00:00
|
|
|
nsresult rv;
|
|
|
|
nsIScriptContext* context = GetContextForEventHandlers(&rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIDocument> doc =
|
|
|
|
nsContentUtils::GetDocumentFromScriptContext(context);
|
|
|
|
aWantsUntrusted = doc && !nsContentUtils::IsChromeDoc(doc);
|
|
|
|
}
|
|
|
|
|
2011-06-24 02:18:02 +00:00
|
|
|
nsEventListenerManager* elm = GetListenerManager(PR_TRUE);
|
|
|
|
NS_ENSURE_STATE(elm);
|
|
|
|
return elm->AddEventListener(aType, aListener, aUseCapture, aWantsUntrusted);
|
2009-06-15 08:27:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMEventTargetHelper::DispatchEvent(nsIDOMEvent* aEvent, PRBool* aRetVal)
|
|
|
|
{
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsresult rv =
|
2011-06-24 02:18:01 +00:00
|
|
|
nsEventDispatcher::DispatchDOMEvent(this, nsnull, aEvent, nsnull, &status);
|
2009-06-15 08:27:29 +00:00
|
|
|
|
|
|
|
*aRetVal = (status != nsEventStatus_eConsumeNoDefault);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMEventTargetHelper::RemoveAddEventListener(const nsAString& aType,
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper>& aCurrent,
|
|
|
|
nsIDOMEventListener* aNew)
|
|
|
|
{
|
|
|
|
if (aCurrent) {
|
|
|
|
RemoveEventListener(aType, aCurrent, PR_FALSE);
|
|
|
|
aCurrent = nsnull;
|
|
|
|
}
|
|
|
|
if (aNew) {
|
|
|
|
aCurrent = new nsDOMEventListenerWrapper(aNew);
|
|
|
|
NS_ENSURE_TRUE(aCurrent, NS_ERROR_OUT_OF_MEMORY);
|
2011-06-24 02:17:59 +00:00
|
|
|
nsIDOMEventTarget::AddEventListener(aType, aCurrent, PR_FALSE);
|
2009-06-15 08:27:29 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMEventTargetHelper::GetInnerEventListener(nsRefPtr<nsDOMEventListenerWrapper>& aWrapper,
|
|
|
|
nsIDOMEventListener** aListener)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aListener);
|
|
|
|
if (aWrapper) {
|
|
|
|
NS_ADDREF(*aListener = aWrapper->GetInner());
|
|
|
|
} else {
|
|
|
|
*aListener = nsnull;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMEventTargetHelper::PreHandleEvent(nsEventChainPreVisitor& aVisitor)
|
|
|
|
{
|
|
|
|
aVisitor.mCanHandle = PR_TRUE;
|
|
|
|
aVisitor.mParentTarget = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMEventTargetHelper::PostHandleEvent(nsEventChainPostVisitor& aVisitor)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMEventTargetHelper::DispatchDOMEvent(nsEvent* aEvent,
|
|
|
|
nsIDOMEvent* aDOMEvent,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsEventStatus* aEventStatus)
|
|
|
|
{
|
|
|
|
return
|
2011-06-24 02:18:01 +00:00
|
|
|
nsEventDispatcher::DispatchDOMEvent(this, aEvent, aDOMEvent, aPresContext,
|
2009-06-15 08:27:29 +00:00
|
|
|
aEventStatus);
|
|
|
|
}
|
|
|
|
|
2011-06-24 02:18:01 +00:00
|
|
|
nsEventListenerManager*
|
2009-06-23 11:23:52 +00:00
|
|
|
nsDOMEventTargetHelper::GetListenerManager(PRBool aCreateIfNotFound)
|
2009-06-15 08:27:29 +00:00
|
|
|
{
|
2011-06-24 02:18:01 +00:00
|
|
|
if (!mListenerManager && aCreateIfNotFound) {
|
|
|
|
mListenerManager = new nsEventListenerManager(this);
|
2009-06-15 08:27:29 +00:00
|
|
|
}
|
|
|
|
|
2009-06-23 11:23:52 +00:00
|
|
|
return mListenerManager;
|
2009-06-15 08:27:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIScriptContext*
|
|
|
|
nsDOMEventTargetHelper::GetContextForEventHandlers(nsresult* aRv)
|
|
|
|
{
|
|
|
|
*aRv = CheckInnerWindowCorrectness();
|
|
|
|
if (NS_FAILED(*aRv)) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
return mScriptContext;
|
|
|
|
}
|
|
|
|
|