gecko-dev/dom/events/MutationEvent.cpp

101 lines
2.9 KiB
C++
Raw Normal View History

/* -*- 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 11:12:37 +00: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 07:55:20 +00:00
#include "nsCOMPtr.h"
#include "mozilla/dom/MutationEvent.h"
#include "mozilla/InternalMutationEvent.h"
class nsPresContext;
2000-11-27 07:55:20 +00: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 07:55:20 +00:00
}
nsINode*
MutationEvent::GetRelatedNode()
{
return mEvent->AsMutationEvent()->mRelatedNode;
}
void
MutationEvent::GetPrevValue(nsAString& aPrevValue) const
2000-11-27 07:55:20 +00:00
{
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
if (mutation->mPrevAttrValue)
mutation->mPrevAttrValue->ToString(aPrevValue);
2000-11-27 07:55:20 +00:00
}
void
MutationEvent::GetNewValue(nsAString& aNewValue) const
2000-11-27 07:55:20 +00:00
{
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
if (mutation->mNewAttrValue)
2000-11-27 07:55:20 +00:00
mutation->mNewAttrValue->ToString(aNewValue);
}
void
MutationEvent::GetAttrName(nsAString& aAttrName) const
2000-11-27 07:55:20 +00:00
{
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
if (mutation->mAttrName)
2000-11-27 07:55:20 +00:00
mutation->mAttrName->ToString(aAttrName);
}
uint16_t
MutationEvent::AttrChange()
{
return mEvent->AsMutationEvent()->mAttrChange;
}
void
MutationEvent::InitMutationEvent(const nsAString& aType,
bool aCanBubble, bool aCancelable,
nsINode* aRelatedNode,
const nsAString& aPrevValue,
const nsAString& aNewValue,
const nsAString& aAttrName,
uint16_t& aAttrChange,
ErrorResult& aRv)
2000-11-27 07:55:20 +00:00
{
NS_ENSURE_TRUE_VOID(!mEvent->mFlags.mIsBeingDispatched);
2000-11-27 07:55:20 +00:00
Event::InitEvent(aType, aCanBubble, aCancelable);
InternalMutationEvent* mutation = mEvent->AsMutationEvent();
mutation->mRelatedNode = aRelatedNode;
if (!aPrevValue.IsEmpty())
mutation->mPrevAttrValue = NS_Atomize(aPrevValue);
if (!aNewValue.IsEmpty())
mutation->mNewAttrValue = NS_Atomize(aNewValue);
if (!aAttrName.IsEmpty()) {
mutation->mAttrName = NS_Atomize(aAttrName);
2000-11-27 07:55:20 +00:00
}
mutation->mAttrChange = aAttrChange;
}
2000-11-27 07:55:20 +00: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 05:24:48 +00:00
RefPtr<MutationEvent> it = new MutationEvent(aOwner, aPresContext, aEvent);
return it.forget();
2000-11-27 07:55:20 +00:00
}