summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/TextEditUtils.cpp
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 /editor/libeditor/TextEditUtils.cpp
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 'editor/libeditor/TextEditUtils.cpp')
-rw-r--r--editor/libeditor/TextEditUtils.cpp113
1 files changed, 113 insertions, 0 deletions
diff --git a/editor/libeditor/TextEditUtils.cpp b/editor/libeditor/TextEditUtils.cpp
new file mode 100644
index 000000000..7c4f2ec12
--- /dev/null
+++ b/editor/libeditor/TextEditUtils.cpp
@@ -0,0 +1,113 @@
+/* -*- 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/. */
+
+#include "TextEditUtils.h"
+
+#include "mozilla/Assertions.h"
+#include "mozilla/TextEditor.h"
+#include "mozilla/dom/Element.h"
+#include "nsAString.h"
+#include "nsCOMPtr.h"
+#include "nsCaseTreatment.h"
+#include "nsDebug.h"
+#include "nsError.h"
+#include "nsGkAtoms.h"
+#include "nsIDOMElement.h"
+#include "nsIDOMNode.h"
+#include "nsNameSpaceManager.h"
+#include "nsLiteralString.h"
+#include "nsString.h"
+
+namespace mozilla {
+
+/******************************************************************************
+ * TextEditUtils
+ ******************************************************************************/
+
+/**
+ * IsBody() returns true if aNode is an html body node.
+ */
+bool
+TextEditUtils::IsBody(nsIDOMNode* aNode)
+{
+ return EditorBase::NodeIsType(aNode, nsGkAtoms::body);
+}
+
+/**
+ * IsBreak() returns true if aNode is an html break node.
+ */
+bool
+TextEditUtils::IsBreak(nsIDOMNode* aNode)
+{
+ return EditorBase::NodeIsType(aNode, nsGkAtoms::br);
+}
+
+bool
+TextEditUtils::IsBreak(nsINode* aNode)
+{
+ MOZ_ASSERT(aNode);
+ return aNode->IsHTMLElement(nsGkAtoms::br);
+}
+
+
+/**
+ * IsMozBR() returns true if aNode is an html br node with |type = _moz|.
+ */
+bool
+TextEditUtils::IsMozBR(nsIDOMNode* aNode)
+{
+ MOZ_ASSERT(aNode);
+ return IsBreak(aNode) && HasMozAttr(aNode);
+}
+
+bool
+TextEditUtils::IsMozBR(nsINode* aNode)
+{
+ MOZ_ASSERT(aNode);
+ return aNode->IsHTMLElement(nsGkAtoms::br) &&
+ aNode->AsElement()->AttrValueIs(kNameSpaceID_None, nsGkAtoms::type,
+ NS_LITERAL_STRING("_moz"),
+ eIgnoreCase);
+}
+
+/**
+ * HasMozAttr() returns true if aNode has type attribute and its value is
+ * |_moz|. (Used to indicate div's and br's we use in mail compose rules)
+ */
+bool
+TextEditUtils::HasMozAttr(nsIDOMNode* aNode)
+{
+ MOZ_ASSERT(aNode);
+ nsCOMPtr<nsIDOMElement> element = do_QueryInterface(aNode);
+ if (!element) {
+ return false;
+ }
+ nsAutoString typeAttrVal;
+ nsresult rv = element->GetAttribute(NS_LITERAL_STRING("type"), typeAttrVal);
+ return NS_SUCCEEDED(rv) && typeAttrVal.LowerCaseEqualsLiteral("_moz");
+}
+
+/******************************************************************************
+ * AutoEditInitRulesTrigger
+ ******************************************************************************/
+
+AutoEditInitRulesTrigger::AutoEditInitRulesTrigger(TextEditor* aTextEditor,
+ nsresult& aResult)
+ : mTextEditor(aTextEditor)
+ , mResult(aResult)
+{
+ if (mTextEditor) {
+ mTextEditor->BeginEditorInit();
+ }
+}
+
+AutoEditInitRulesTrigger::~AutoEditInitRulesTrigger()
+{
+ if (mTextEditor) {
+ mResult = mTextEditor->EndEditorInit();
+ }
+}
+
+} // namespace mozilla