mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
197 lines
5.9 KiB
C++
197 lines
5.9 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#include "PlaceholderTxn.h"
|
|
#include "nsVoidArray.h"
|
|
#include "nsHTMLEditor.h"
|
|
#include "nsIPresShell.h"
|
|
|
|
#if defined(NS_DEBUG) && defined(DEBUG_buster)
|
|
static PRBool gNoisy = PR_TRUE;
|
|
#else
|
|
static const PRBool gNoisy = PR_FALSE;
|
|
#endif
|
|
|
|
|
|
PlaceholderTxn::PlaceholderTxn() : EditAggregateTxn(),
|
|
mPresShellWeak(nsnull),
|
|
mAbsorb(PR_TRUE),
|
|
mForwarding(nsnull)
|
|
{
|
|
SetTransactionDescriptionID( kTransactionID );
|
|
/* log description initialized in parent constructor */
|
|
}
|
|
|
|
|
|
PlaceholderTxn::~PlaceholderTxn()
|
|
{
|
|
}
|
|
|
|
NS_IMPL_ADDREF_INHERITED(PlaceholderTxn, EditAggregateTxn)
|
|
NS_IMPL_RELEASE_INHERITED(PlaceholderTxn, EditAggregateTxn)
|
|
|
|
//NS_IMPL_QUERY_INTERFACE_INHERITED(Class, Super, AdditionalInterface)
|
|
NS_IMETHODIMP PlaceholderTxn::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
|
{
|
|
if (!aInstancePtr) return NS_ERROR_NULL_POINTER;
|
|
|
|
if (aIID.Equals(nsIAbsorbingTransaction::GetIID())) {
|
|
*aInstancePtr = (nsISupports*)(nsIAbsorbingTransaction*)(this);
|
|
NS_ADDREF_THIS();
|
|
return NS_OK;
|
|
}
|
|
if (aIID.Equals(nsCOMTypeInfo<nsISupportsWeakReference>::GetIID())) {
|
|
*aInstancePtr = (nsISupports*)(nsISupportsWeakReference*) this;
|
|
NS_ADDREF_THIS();
|
|
return NS_OK;
|
|
}
|
|
return EditAggregateTxn::QueryInterface(aIID, aInstancePtr);
|
|
}
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::Init(nsWeakPtr aPresShellWeak, nsIAtom *aName,
|
|
nsIDOMNode *aStartNode, PRInt32 aStartOffset)
|
|
{
|
|
NS_ASSERTION(aPresShellWeak, "bad args");
|
|
if (!aPresShellWeak) return NS_ERROR_NULL_POINTER;
|
|
|
|
mPresShellWeak = aPresShellWeak;
|
|
mName = aName;
|
|
mStartNode = do_QueryInterface(aStartNode);
|
|
mStartOffset = aStartOffset;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::Do(void)
|
|
{
|
|
if (gNoisy) { printf("PlaceholderTxn Do\n"); }
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::Undo(void)
|
|
{
|
|
// using this to debug
|
|
return EditAggregateTxn::Undo();
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::Merge(PRBool *aDidMerge, nsITransaction *aTransaction)
|
|
{
|
|
if (!aDidMerge || !aTransaction) return NS_ERROR_NULL_POINTER;
|
|
|
|
// set out param default value
|
|
*aDidMerge=PR_FALSE;
|
|
|
|
nsresult res = NS_OK;
|
|
|
|
if (mForwarding)
|
|
{
|
|
NS_NOTREACHED("tried to merge into a placeholder that was in forwarding mode!");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
EditTxn *editTxn = (EditTxn*)aTransaction; //XXX: hack, not safe! need nsIEditTransaction!
|
|
if (PR_TRUE==mAbsorb)
|
|
{ // yep, it's one of ours. Assimilate it.
|
|
AppendChild(editTxn);
|
|
*aDidMerge = PR_TRUE;
|
|
if (gNoisy) { printf("Placeholder txn assimilated %p\n", aTransaction); }
|
|
}
|
|
else
|
|
{ // merge typing or deletion transactions if the selection matches
|
|
if ( (mName.get() == nsHTMLEditor::gTypingTxnName) ||
|
|
(mName.get() == nsHTMLEditor::gDeleteTxnName) )
|
|
{
|
|
nsCOMPtr<nsIAbsorbingTransaction> plcTxn;// = do_QueryInterface(editTxn);
|
|
// cant do_QueryInterface() above due to our broken transaction interfaces.
|
|
// instead have to brute it below. ugh.
|
|
editTxn->QueryInterface(nsIAbsorbingTransaction::GetIID(), getter_AddRefs(plcTxn));
|
|
if (plcTxn)
|
|
{
|
|
nsIAtom *atom;
|
|
plcTxn->GetTxnName(&atom);
|
|
if (atom && (atom == mName.get()))
|
|
{
|
|
nsCOMPtr<nsIDOMNode> otherTxnStartNode;
|
|
PRInt32 otherTxnStartOffset;
|
|
res = plcTxn->GetStartNodeAndOffset(&otherTxnStartNode, &otherTxnStartOffset);
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
if ((otherTxnStartNode == mEndNode) && (otherTxnStartOffset == mEndOffset))
|
|
{
|
|
mAbsorb = PR_TRUE; // we need to start absorbing again
|
|
plcTxn->ForwardEndBatchTo(this);
|
|
AppendChild(editTxn);
|
|
*aDidMerge = PR_TRUE;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::GetTxnName(nsIAtom **aName)
|
|
{
|
|
return GetName(aName);
|
|
}
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::GetStartNodeAndOffset(nsCOMPtr<nsIDOMNode> *aTxnStartNode, PRInt32 *aTxnStartOffset)
|
|
{
|
|
if (!aTxnStartNode || !aTxnStartOffset) return NS_ERROR_NULL_POINTER;
|
|
*aTxnStartNode = mStartNode;
|
|
*aTxnStartOffset = mStartOffset;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::EndPlaceHolderBatch()
|
|
{
|
|
mAbsorb = PR_FALSE;
|
|
|
|
if (mForwarding)
|
|
{
|
|
nsCOMPtr<nsIAbsorbingTransaction> plcTxn = do_QueryReferent(mForwarding);
|
|
if (plcTxn) plcTxn->EndPlaceHolderBatch();
|
|
}
|
|
|
|
// if we are a typing or deleting transaction, remember our selection state
|
|
if ( (mName.get() == nsHTMLEditor::gTypingTxnName) ||
|
|
(mName.get() == nsHTMLEditor::gDeleteTxnName) )
|
|
{
|
|
nsCOMPtr<nsIPresShell> ps = do_QueryReferent(mPresShellWeak);
|
|
if (!ps) return NS_ERROR_NOT_INITIALIZED;
|
|
nsCOMPtr<nsIDOMSelection> selection;
|
|
nsresult res = ps->GetSelection(SELECTION_NORMAL, getter_AddRefs(selection));
|
|
if (NS_FAILED(res)) return res;
|
|
if (!selection) return NS_ERROR_NULL_POINTER;
|
|
res = nsEditor::GetStartNodeAndOffset(selection, &mEndNode, &mEndOffset);
|
|
if (NS_FAILED(res)) return res;
|
|
}
|
|
return NS_OK;
|
|
};
|
|
|
|
NS_IMETHODIMP PlaceholderTxn::ForwardEndBatchTo(nsIAbsorbingTransaction *aForwardingAddress)
|
|
{
|
|
mForwarding = getter_AddRefs( NS_GetWeakReference(aForwardingAddress) );
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
|
|
|
|
|