2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "InsertTextTxn.h"
|
|
|
|
#include "nsIDOMCharacterData.h"
|
|
|
|
#include "nsISelection.h"
|
|
|
|
#include "EditAggregateTxn.h"
|
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
static PRBool gNoisy = PR_FALSE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
InsertTextTxn::InsertTextTxn()
|
|
|
|
: EditTxn()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-05-08 21:59:25 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(InsertTextTxn)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(InsertTextTxn, EditTxn)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mElement)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(InsertTextTxn, EditTxn)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mElement)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(InsertTextTxn)
|
|
|
|
if (aIID.Equals(InsertTextTxn::GetCID())) {
|
|
|
|
*aInstancePtr = (void*)(InsertTextTxn*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
2009-07-22 15:31:02 -07:00
|
|
|
} else
|
2009-05-08 21:59:25 -07:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(EditTxn)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP InsertTextTxn::Init(nsIDOMCharacterData *aElement,
|
|
|
|
PRUint32 aOffset,
|
|
|
|
const nsAString &aStringToInsert,
|
|
|
|
nsIEditor *aEditor)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
nsAutoString text;
|
|
|
|
aElement->GetData(text);
|
|
|
|
printf("InsertTextTxn: Offset to insert at = %d. Text of the node to insert into:\n", aOffset);
|
|
|
|
wprintf(text.get());
|
|
|
|
printf("\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_ASSERTION(aElement && aEditor, "bad args");
|
2010-06-17 12:41:16 -07:00
|
|
|
NS_ENSURE_TRUE(aElement && aEditor, NS_ERROR_NULL_POINTER);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
mElement = do_QueryInterface(aElement);
|
|
|
|
mOffset = aOffset;
|
|
|
|
mStringToInsert = aStringToInsert;
|
|
|
|
mEditor = aEditor;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP InsertTextTxn::DoTransaction(void)
|
|
|
|
{
|
|
|
|
#ifdef NS_DEBUG
|
2010-01-17 15:11:04 -08:00
|
|
|
if (gNoisy)
|
|
|
|
{
|
|
|
|
printf("Do Insert Text element = %p\n",
|
|
|
|
static_cast<void*>(mElement.get()));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_ASSERTION(mElement && mEditor, "bad state");
|
|
|
|
if (!mElement || !mEditor) { return NS_ERROR_NOT_INITIALIZED; }
|
|
|
|
|
|
|
|
nsresult result = mElement->InsertData(mOffset, mStringToInsert);
|
2010-06-17 12:27:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// only set selection to insertion point if editor gives permission
|
|
|
|
PRBool bAdjustSelection;
|
|
|
|
mEditor->ShouldTxnSetSelection(&bAdjustSelection);
|
|
|
|
if (bAdjustSelection)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsISelection> selection;
|
|
|
|
result = mEditor->GetSelection(getter_AddRefs(selection));
|
2010-06-17 12:27:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
2010-06-17 12:41:16 -07:00
|
|
|
NS_ENSURE_TRUE(selection, NS_ERROR_NULL_POINTER);
|
2007-03-22 10:30:00 -07:00
|
|
|
result = selection->Collapse(mElement, mOffset+mStringToInsert.Length());
|
|
|
|
NS_ASSERTION((NS_SUCCEEDED(result)), "selection could not be collapsed after insert.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// do nothing - dom range gravity will adjust selection
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP InsertTextTxn::UndoTransaction(void)
|
|
|
|
{
|
|
|
|
#ifdef NS_DEBUG
|
2010-01-17 15:11:04 -08:00
|
|
|
if (gNoisy)
|
|
|
|
{
|
|
|
|
printf("Undo Insert Text element = %p\n",
|
|
|
|
static_cast<void*>(mElement.get()));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_ASSERTION(mElement && mEditor, "bad state");
|
|
|
|
if (!mElement || !mEditor) { return NS_ERROR_NOT_INITIALIZED; }
|
|
|
|
|
|
|
|
PRUint32 length = mStringToInsert.Length();
|
|
|
|
return mElement->DeleteData(mOffset, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP InsertTextTxn::Merge(nsITransaction *aTransaction, PRBool *aDidMerge)
|
|
|
|
{
|
|
|
|
// set out param default value
|
|
|
|
if (aDidMerge)
|
|
|
|
*aDidMerge = PR_FALSE;
|
|
|
|
nsresult result = NS_OK;
|
|
|
|
if (aDidMerge && aTransaction)
|
|
|
|
{
|
|
|
|
// if aTransaction is a InsertTextTxn, and if the selection hasn't changed,
|
|
|
|
// then absorb it
|
|
|
|
InsertTextTxn *otherInsTxn = nsnull;
|
|
|
|
aTransaction->QueryInterface(InsertTextTxn::GetCID(), (void **)&otherInsTxn);
|
|
|
|
if (otherInsTxn)
|
|
|
|
{
|
|
|
|
if (IsSequentialInsert(otherInsTxn))
|
|
|
|
{
|
|
|
|
nsAutoString otherData;
|
|
|
|
otherInsTxn->GetData(otherData);
|
|
|
|
mStringToInsert += otherData;
|
|
|
|
*aDidMerge = PR_TRUE;
|
|
|
|
#ifdef NS_DEBUG
|
2010-01-17 15:11:04 -08:00
|
|
|
if (gNoisy)
|
|
|
|
{
|
|
|
|
printf("InsertTextTxn assimilated %p\n",
|
|
|
|
static_cast<void*>(aTransaction));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
NS_RELEASE(otherInsTxn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP InsertTextTxn::GetTxnDescription(nsAString& aString)
|
|
|
|
{
|
|
|
|
aString.AssignLiteral("InsertTextTxn: ");
|
|
|
|
aString += mStringToInsert;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============ protected methods ================== */
|
|
|
|
|
|
|
|
NS_IMETHODIMP InsertTextTxn::GetData(nsString& aResult)
|
|
|
|
{
|
|
|
|
aResult = mStringToInsert;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool InsertTextTxn::IsSequentialInsert(InsertTextTxn *aOtherTxn)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aOtherTxn, "null param");
|
|
|
|
if (aOtherTxn && aOtherTxn->mElement == mElement)
|
|
|
|
{
|
|
|
|
// here, we need to compare offsets.
|
|
|
|
PRInt32 length = mStringToInsert.Length();
|
|
|
|
if (aOtherTxn->mOffset == (mOffset + length))
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|