mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
418f0f69c3
This patch was generated with the following command: find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 's/NS_ENSURE_SUCCESS\(([a-zA-Z0-9]+)\.ErrorCode\(\), \1.ErrorCode\(\)\);/NS_ENSURE_TRUE(!\1.Failed(), \1.StealNSResult());/'
93 lines
2.7 KiB
C++
93 lines
2.7 KiB
C++
/* -*- 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 "InsertNodeTxn.h"
|
|
|
|
#include "mozilla/dom/Selection.h" // for Selection
|
|
|
|
#include "nsAString.h"
|
|
#include "nsDebug.h" // for NS_ENSURE_TRUE, etc
|
|
#include "nsEditor.h" // for nsEditor
|
|
#include "nsError.h" // for NS_ERROR_NULL_POINTER, etc
|
|
#include "nsIContent.h" // for nsIContent
|
|
#include "nsMemory.h" // for nsMemory
|
|
#include "nsReadableUtils.h" // for ToNewCString
|
|
#include "nsString.h" // for nsString
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
|
|
InsertNodeTxn::InsertNodeTxn(nsIContent& aNode, nsINode& aParent,
|
|
int32_t aOffset, nsEditor& aEditor)
|
|
: EditTxn()
|
|
, mNode(&aNode)
|
|
, mParent(&aParent)
|
|
, mOffset(aOffset)
|
|
, mEditor(aEditor)
|
|
{
|
|
}
|
|
|
|
InsertNodeTxn::~InsertNodeTxn()
|
|
{
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED(InsertNodeTxn, EditTxn,
|
|
mNode,
|
|
mParent)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(InsertNodeTxn, EditTxn)
|
|
NS_IMPL_RELEASE_INHERITED(InsertNodeTxn, EditTxn)
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(InsertNodeTxn)
|
|
NS_INTERFACE_MAP_END_INHERITING(EditTxn)
|
|
|
|
NS_IMETHODIMP
|
|
InsertNodeTxn::DoTransaction()
|
|
{
|
|
MOZ_ASSERT(mNode && mParent);
|
|
|
|
uint32_t count = mParent->GetChildCount();
|
|
if (mOffset > static_cast<int32_t>(count) || mOffset == -1) {
|
|
// -1 is sentinel value meaning "append at end"
|
|
mOffset = count;
|
|
}
|
|
|
|
// Note, it's ok for ref to be null. That means append.
|
|
nsCOMPtr<nsIContent> ref = mParent->GetChildAt(mOffset);
|
|
|
|
mEditor.MarkNodeDirty(GetAsDOMNode(mNode));
|
|
|
|
ErrorResult rv;
|
|
mParent->InsertBefore(*mNode, ref, rv);
|
|
NS_ENSURE_TRUE(!rv.Failed(), rv.StealNSResult());
|
|
|
|
// Only set selection to insertion point if editor gives permission
|
|
if (mEditor.GetShouldTxnSetSelection()) {
|
|
nsRefPtr<Selection> selection = mEditor.GetSelection();
|
|
NS_ENSURE_TRUE(selection, NS_ERROR_NULL_POINTER);
|
|
// Place the selection just after the inserted element
|
|
selection->Collapse(mParent, mOffset + 1);
|
|
} else {
|
|
// Do nothing - DOM Range gravity will adjust selection
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
InsertNodeTxn::UndoTransaction()
|
|
{
|
|
MOZ_ASSERT(mNode && mParent);
|
|
|
|
ErrorResult rv;
|
|
mParent->RemoveChild(*mNode, rv);
|
|
return rv.StealNSResult();
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
InsertNodeTxn::GetTxnDescription(nsAString& aString)
|
|
{
|
|
aString.AssignLiteral("InsertNodeTxn");
|
|
return NS_OK;
|
|
}
|