aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/XML/src/MutationEvent.cpp
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/libs/poco/XML/src/MutationEvent.cpp
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/libs/poco/XML/src/MutationEvent.cpp')
-rw-r--r--contrib/libs/poco/XML/src/MutationEvent.cpp76
1 files changed, 76 insertions, 0 deletions
diff --git a/contrib/libs/poco/XML/src/MutationEvent.cpp b/contrib/libs/poco/XML/src/MutationEvent.cpp
new file mode 100644
index 0000000000..485836e6b7
--- /dev/null
+++ b/contrib/libs/poco/XML/src/MutationEvent.cpp
@@ -0,0 +1,76 @@
+//
+// MutationEvent.cpp
+//
+// Library: XML
+// Package: DOM
+// Module: DOMEvents
+//
+// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#include "Poco/DOM/MutationEvent.h"
+
+
+namespace Poco {
+namespace XML {
+
+
+const XMLString MutationEvent::DOMSubtreeModified = toXMLString("DOMSubtreeModified");
+const XMLString MutationEvent::DOMNodeInserted = toXMLString("DOMNodeInserted");
+const XMLString MutationEvent::DOMNodeRemoved = toXMLString("DOMNodeRemoved");
+const XMLString MutationEvent::DOMNodeRemovedFromDocument = toXMLString("DOMNodeRemovedFromDocument");
+const XMLString MutationEvent::DOMNodeInsertedIntoDocument = toXMLString("DOMNodeInsertedIntoDocument");
+const XMLString MutationEvent::DOMAttrModified = toXMLString("DOMAttrModified");
+const XMLString MutationEvent::DOMCharacterDataModified = toXMLString("DOMCharacterDataModified");
+
+
+MutationEvent::MutationEvent(Document* pOwnerDocument, const XMLString& type):
+ Event(pOwnerDocument, type, 0, true, false),
+ _change(MODIFICATION),
+ _pRelatedNode(0)
+{
+}
+
+
+MutationEvent::MutationEvent(Document* pOwnerDocument, const XMLString& type, EventTarget* pTarget, bool canBubble, bool cancelable, Node* relatedNode):
+ Event(pOwnerDocument, type, pTarget, canBubble, cancelable),
+ _change(MODIFICATION),
+ _pRelatedNode(relatedNode)
+{
+}
+
+
+MutationEvent::MutationEvent(Document* pOwnerDocument, const XMLString& type, EventTarget* pTarget, bool canBubble, bool cancelable, Node* relatedNode,
+ const XMLString& prevValue, const XMLString& newValue, const XMLString& attrName, AttrChangeType change):
+ Event(pOwnerDocument, type, pTarget, canBubble, cancelable),
+ _prevValue(prevValue),
+ _newValue(newValue),
+ _attrName(attrName),
+ _change(change),
+ _pRelatedNode(relatedNode)
+{
+}
+
+
+MutationEvent::~MutationEvent()
+{
+}
+
+
+void MutationEvent::initMutationEvent(const XMLString& type, bool canBubble, bool cancelable, Node* relatedNode,
+ const XMLString& prevValue, const XMLString& newValue, const XMLString& attrName, AttrChangeType change)
+{
+ initEvent(type, canBubble, cancelable);
+ _pRelatedNode = relatedNode;
+ _prevValue = prevValue;
+ _newValue = newValue;
+ _attrName = attrName;
+ _change = change;
+}
+
+
+} } // namespace Poco::XML