gecko-dev/dom/events/MutationEvent.cpp

129 строки
3.7 KiB
C++
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
2012-05-21 15:12:37 +04:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2000-11-27 10:55:20 +03:00
#include "nsCOMPtr.h"
#include "mozilla/dom/MutationEvent.h"
#include "mozilla/InternalMutationEvent.h"
class nsPresContext;
2000-11-27 10:55:20 +03:00
namespace mozilla {
namespace dom {
MutationEvent::MutationEvent(EventTarget* aOwner,
nsPresContext* aPresContext,
InternalMutationEvent* aEvent)
: Event(aOwner, aPresContext,
aEvent ? aEvent : new InternalMutationEvent(false, eVoidEvent))
{
mEventIsInternal = (aEvent == nullptr);
2000-11-27 10:55:20 +03:00
}
NS_INTERFACE_MAP_BEGIN(MutationEvent)
2000-11-27 10:55:20 +03:00
NS_INTERFACE_MAP_ENTRY(nsIDOMMutationEvent)
NS_INTERFACE_MAP_END_INHERITING(Event)
2000-11-27 10:55:20 +03:00
NS_IMPL_ADDREF_INHERITED(MutationEvent, Event)
NS_IMPL_RELEASE_INHERITED(MutationEvent, Event)
already_AddRefed<nsINode>
MutationEvent::GetRelatedNode()
{
nsCOMPtr<nsINode> n =
do_QueryInterface(mEvent->AsMutationEvent()->mRelatedNode);
return n.forget();
}
2000-11-27 10:55:20 +03:00
NS_IMETHODIMP
MutationEvent::GetRelatedNode(nsIDOMNode** aRelatedNode)
2000-11-27 10:55:20 +03:00
{
nsCOMPtr<nsINode> relatedNode = GetRelatedNode();
nsCOMPtr<nsIDOMNode> relatedDOMNode = relatedNode ? relatedNode->AsDOMNode() : nullptr;
relatedDOMNode.forget(aRelatedNode);
2000-11-27 10:55:20 +03:00
return NS_OK;
}
NS_IMETHODIMP
MutationEvent::GetPrevValue(nsAString& aPrevValue)
2000-11-27 10:55:20 +03:00
{
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
if (mutation->mPrevAttrValue)
mutation->mPrevAttrValue->ToString(aPrevValue);
2000-11-27 10:55:20 +03:00
return NS_OK;
}
NS_IMETHODIMP
MutationEvent::GetNewValue(nsAString& aNewValue)
2000-11-27 10:55:20 +03:00
{
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
if (mutation->mNewAttrValue)
2000-11-27 10:55:20 +03:00
mutation->mNewAttrValue->ToString(aNewValue);
return NS_OK;
}
NS_IMETHODIMP
MutationEvent::GetAttrName(nsAString& aAttrName)
2000-11-27 10:55:20 +03:00
{
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
if (mutation->mAttrName)
2000-11-27 10:55:20 +03:00
mutation->mAttrName->ToString(aAttrName);
return NS_OK;
}
uint16_t
MutationEvent::AttrChange()
{
return mEvent->AsMutationEvent()->mAttrChange;
}
2000-11-27 10:55:20 +03:00
NS_IMETHODIMP
MutationEvent::GetAttrChange(uint16_t* aAttrChange)
2000-11-27 10:55:20 +03:00
{
*aAttrChange = AttrChange();
2000-11-27 10:55:20 +03:00
return NS_OK;
}
NS_IMETHODIMP
MutationEvent::InitMutationEvent(const nsAString& aTypeArg,
bool aCanBubbleArg,
bool aCancelableArg,
nsIDOMNode* aRelatedNodeArg,
const nsAString& aPrevValueArg,
const nsAString& aNewValueArg,
const nsAString& aAttrNameArg,
uint16_t aAttrChangeArg)
2000-11-27 10:55:20 +03:00
{
Event::InitEvent(aTypeArg, aCanBubbleArg, aCancelableArg);
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
mutation->mRelatedNode = aRelatedNodeArg;
if (!aPrevValueArg.IsEmpty())
mutation->mPrevAttrValue = do_GetAtom(aPrevValueArg);
if (!aNewValueArg.IsEmpty())
mutation->mNewAttrValue = do_GetAtom(aNewValueArg);
if (!aAttrNameArg.IsEmpty()) {
mutation->mAttrName = do_GetAtom(aAttrNameArg);
2000-11-27 10:55:20 +03:00
}
mutation->mAttrChange = aAttrChangeArg;
2000-11-27 10:55:20 +03:00
return NS_OK;
}
2000-11-27 10:55:20 +03:00
} // namespace dom
} // namespace mozilla
using namespace mozilla;
using namespace mozilla::dom;
already_AddRefed<MutationEvent>
NS_NewDOMMutationEvent(EventTarget* aOwner,
nsPresContext* aPresContext,
InternalMutationEvent* aEvent)
{
Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
2015-10-18 08:24:48 +03:00
RefPtr<MutationEvent> it = new MutationEvent(aOwner, aPresContext, aEvent);
return it.forget();
2000-11-27 10:55:20 +03:00
}