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
|
|
|
|
2014-02-27 10:51:16 +00:00
|
|
|
#ifndef mozilla_dom_MutationEvent_h_
|
|
|
|
#define mozilla_dom_MutationEvent_h_
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "mozilla/dom/MutationEventBinding.h"
|
2004-08-20 18:09:19 +00:00
|
|
|
#include "nsIDOMMutationEvent.h"
|
2013-04-22 01:25:28 +00:00
|
|
|
#include "nsINode.h"
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-02-27 10:51:16 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
class MutationEvent : public Event,
|
2014-02-27 10:51:16 +00:00
|
|
|
public nsIDOMMutationEvent
|
2004-08-20 18:09:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 10:51:16 +00:00
|
|
|
MutationEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
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
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_FORWARD_TO_EVENT
|
2013-03-14 21:18:20 +00:00
|
|
|
|
2014-10-17 23:16:58 +00:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx) MOZ_OVERRIDE
|
2013-03-14 21:18:20 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return MutationEventBinding::Wrap(aCx, this);
|
2013-03-14 21:18:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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,
|
2014-02-27 10:51:16 +00:00
|
|
|
uint16_t& aAttrChange, ErrorResult& aRv)
|
2013-03-14 21:18:20 +00:00
|
|
|
{
|
|
|
|
aRv = InitMutationEvent(aType, aCanBubble, aCancelable,
|
|
|
|
aRelatedNode ? aRelatedNode->AsDOMNode() : nullptr,
|
|
|
|
aPrevValue, aNewValue, aAttrName, aAttrChange);
|
|
|
|
}
|
2014-07-08 21:23:17 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~MutationEvent() {}
|
2004-08-20 18:09:19 +00:00
|
|
|
};
|
|
|
|
|
2014-02-27 10:51:16 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_MutationEvent_h_
|