2004-08-20 18:09:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2004-08-20 18:09:19 +00:00
|
|
|
|
|
|
|
#ifndef nsDOMMutationEvent_h__
|
|
|
|
#define nsDOMMutationEvent_h__
|
|
|
|
|
|
|
|
#include "nsIDOMMutationEvent.h"
|
2013-04-22 01:25:28 +00:00
|
|
|
#include "nsINode.h"
|
2004-08-20 18:09:19 +00:00
|
|
|
#include "nsDOMEvent.h"
|
2013-03-14 21:18:20 +00:00
|
|
|
#include "mozilla/dom/MutationEventBinding.h"
|
2013-09-24 10:04:16 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2009-10-21 09:38:39 +00:00
|
|
|
class nsDOMMutationEvent : public nsDOMEvent,
|
|
|
|
public nsIDOMMutationEvent
|
2004-08-20 18:09:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-03-09 11:34:29 +00:00
|
|
|
nsDOMMutationEvent(mozilla::dom::EventTarget* aOwner,
|
2013-09-27 06:20:53 +00:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::InternalMutationEvent* aEvent);
|
2006-06-05 18:38:54 +00:00
|
|
|
|
2004-08-20 18:09:19 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMMUTATIONEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
|
|
|
NS_FORWARD_TO_NSDOMEVENT
|
2013-03-14 21:18:20 +00:00
|
|
|
|
2013-04-25 16:29:54 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-14 21:18:20 +00:00
|
|
|
{
|
|
|
|
return mozilla::dom::MutationEventBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// xpidl implementation
|
|
|
|
// GetPrevValue(nsAString& aPrevValue);
|
|
|
|
// GetNewValue(nsAString& aNewValue);
|
|
|
|
// GetAttrName(nsAString& aAttrName);
|
|
|
|
|
2013-09-24 10:04:16 +00:00
|
|
|
already_AddRefed<nsINode> GetRelatedNode();
|
2013-03-14 21:18:20 +00:00
|
|
|
|
2013-09-24 10:04:16 +00:00
|
|
|
uint16_t AttrChange();
|
2013-03-14 21:18:20 +00:00
|
|
|
|
|
|
|
void InitMutationEvent(const nsAString& aType,
|
|
|
|
bool& aCanBubble, bool& aCancelable,
|
|
|
|
nsINode* aRelatedNode,
|
|
|
|
const nsAString& aPrevValue,
|
|
|
|
const nsAString& aNewValue,
|
|
|
|
const nsAString& aAttrName,
|
|
|
|
uint16_t& aAttrChange, mozilla::ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = InitMutationEvent(aType, aCanBubble, aCancelable,
|
|
|
|
aRelatedNode ? aRelatedNode->AsDOMNode() : nullptr,
|
|
|
|
aPrevValue, aNewValue, aAttrName, aAttrChange);
|
|
|
|
}
|
2004-08-20 18:09:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMMutationEvent_h__
|