1999-01-06 20:30:13 +00:00
|
|
|
/* -*- 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 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "EditTxn.h"
|
1999-01-09 00:24:48 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsIDOMNodeList.h"
|
1999-01-06 20:30:13 +00:00
|
|
|
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
|
|
static NS_DEFINE_IID(kITransactionIID, NS_ITRANSACTION_IID);
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(EditTxn)
|
|
|
|
NS_IMPL_RELEASE(EditTxn)
|
|
|
|
|
|
|
|
// note that aEditor is not refcounted
|
1999-01-21 01:51:09 +00:00
|
|
|
EditTxn::EditTxn()
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
1999-01-28 19:45:23 +00:00
|
|
|
NS_INIT_REFCNT();
|
1999-01-06 20:30:13 +00:00
|
|
|
}
|
|
|
|
|
1999-03-05 21:05:35 +00:00
|
|
|
EditTxn::~EditTxn()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::Do(void)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::Undo(void)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::Redo(void)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
1999-01-07 17:57:16 +00:00
|
|
|
return Do();
|
1999-01-06 20:30:13 +00:00
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::GetIsTransient(PRBool *aIsTransient)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
|
|
|
if (nsnull!=aIsTransient)
|
1999-01-22 15:40:31 +00:00
|
|
|
*aIsTransient = PR_FALSE;
|
1999-01-06 20:30:13 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::Merge(PRBool *aDidMerge, nsITransaction *aTransaction)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::Write(nsIOutputStream *aOutputStream)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::GetUndoString(nsString **aString)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
|
|
|
if (nsnull!=aString)
|
|
|
|
*aString=nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP EditTxn::GetRedoString(nsString **aString)
|
1999-01-06 20:30:13 +00:00
|
|
|
{
|
|
|
|
if (nsnull!=aString)
|
|
|
|
*aString=nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHODIMP
|
1999-01-06 20:30:13 +00:00
|
|
|
EditTxn::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
if (NULL == aInstancePtr) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
|
|
|
*aInstancePtr = (void*)(nsISupports*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (aIID.Equals(kITransactionIID)) {
|
|
|
|
*aInstancePtr = (void*)(nsITransaction*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
*aInstancePtr = 0;
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
1999-01-09 00:24:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|