summaryrefslogtreecommitdiffstats
path: root/layout/generic/SelectionChangeListener.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/generic/SelectionChangeListener.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/generic/SelectionChangeListener.h')
-rw-r--r--layout/generic/SelectionChangeListener.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/layout/generic/SelectionChangeListener.h b/layout/generic/SelectionChangeListener.h
new file mode 100644
index 000000000..81d66aeb4
--- /dev/null
+++ b/layout/generic/SelectionChangeListener.h
@@ -0,0 +1,57 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* 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/. */
+
+#ifndef mozilla_SelectionChangeListener_h_
+#define mozilla_SelectionChangeListener_h_
+
+#include "nsISelectionListener.h"
+#include "nsISelectionPrivate.h"
+#include "mozilla/Attributes.h"
+
+namespace mozilla {
+namespace dom {
+
+class SelectionChangeListener final : public nsISelectionListener
+{
+public:
+ // SelectionChangeListener has to participate in cycle collection because
+ // it holds strong references to nsINodes in its mOldRanges array.
+ NS_DECL_CYCLE_COLLECTING_ISUPPORTS
+ NS_DECL_CYCLE_COLLECTION_CLASS(SelectionChangeListener)
+ NS_DECL_NSISELECTIONLISTENER
+
+ // This field is used to keep track of the ranges which were present in the
+ // selection when the selectionchange event was previously fired. This allows
+ // for the selectionchange event to only be fired when a selection is actually
+ // changed.
+ struct RawRangeData
+ {
+ // These properties are not void*s to avoid the potential situation where the
+ // nsINode is freed, and a new nsINode is allocated with the same address, which
+ // could potentially break the comparison logic. In reality, this is extremely
+ // unlikely to occur (potentially impossible), but these nsCOMPtrs are safer.
+ // They are never dereferenced.
+ nsCOMPtr<nsINode> mStartParent;
+ nsCOMPtr<nsINode> mEndParent;
+
+ // XXX These are int32_ts on nsRange, but uint32_ts in the return value
+ // of GetStart_, so I use uint32_ts here. See bug 1194256.
+ uint32_t mStartOffset;
+ uint32_t mEndOffset;
+
+ explicit RawRangeData(const nsRange* aRange);
+ bool Equals(const nsRange* aRange);
+ };
+
+private:
+ nsTArray<RawRangeData> mOldRanges;
+
+ ~SelectionChangeListener() {}
+};
+
+} // namespace dom
+} // namespace mozilla
+
+#endif // mozilla_SelectionChangeListener_h_