1999-04-20 21:57:20 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-04-20 21:57:20 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* 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.
|
1999-04-20 21:57:20 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-04-20 21:57:20 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-04-20 21:57:20 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsIEditActionListener.h"
|
|
|
|
#include "nsTSDNotifier.h"
|
|
|
|
#include "nsTextServicesDocument.h"
|
|
|
|
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
|
|
static NS_DEFINE_IID(kIEditActionListenerIID, NS_IEDITACTIONLISTENER_IID);
|
|
|
|
|
|
|
|
nsTSDNotifier::nsTSDNotifier(nsTextServicesDocument *aDoc) : mDoc(aDoc)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTSDNotifier::~nsTSDNotifier()
|
|
|
|
{
|
|
|
|
mDoc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DEBUG_TSD_NOTIFIER_REFCNT 1
|
|
|
|
|
|
|
|
#ifdef DEBUG_TSD_NOTIFIER_REFCNT
|
|
|
|
|
|
|
|
nsrefcnt nsTSDNotifier::AddRef(void)
|
|
|
|
{
|
|
|
|
return ++mRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsrefcnt nsTSDNotifier::Release(void)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(0 != mRefCnt, "dup release");
|
|
|
|
if (--mRefCnt == 0) {
|
|
|
|
NS_DELETEXPCOM(this);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return mRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(nsTSDNotifier)
|
|
|
|
NS_IMPL_RELEASE(nsTSDNotifier)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTSDNotifier::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
if (nsnull == aInstancePtr) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
|
|
|
*aInstancePtr = (void*)(nsISupports*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (aIID.Equals(kIEditActionListenerIID)) {
|
|
|
|
*aInstancePtr = (void*)(nsIEditActionListener*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
*aInstancePtr = 0;
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-04-27 21:14:28 +04:00
|
|
|
nsTSDNotifier::WillInsertNode(nsIDOMNode *aNode,
|
|
|
|
nsIDOMNode *aParent,
|
|
|
|
PRInt32 aPosition)
|
1999-04-20 21:57:20 +04:00
|
|
|
{
|
1999-04-27 21:14:28 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTSDNotifier::DidInsertNode(nsIDOMNode *aNode,
|
|
|
|
nsIDOMNode *aParent,
|
|
|
|
PRInt32 aPosition,
|
|
|
|
nsresult aResult)
|
|
|
|
{
|
|
|
|
if (NS_FAILED(aResult))
|
|
|
|
return NS_OK;
|
|
|
|
|
1999-04-20 21:57:20 +04:00
|
|
|
if (!mDoc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mDoc->InsertNode(aNode, aParent, aPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-04-27 21:14:28 +04:00
|
|
|
nsTSDNotifier::WillDeleteNode(nsIDOMNode *aChild)
|
1999-04-20 21:57:20 +04:00
|
|
|
{
|
1999-04-27 21:14:28 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTSDNotifier::DidDeleteNode(nsIDOMNode *aChild, nsresult aResult)
|
|
|
|
{
|
|
|
|
if (NS_FAILED(aResult))
|
|
|
|
return NS_OK;
|
|
|
|
|
1999-04-20 21:57:20 +04:00
|
|
|
if (!mDoc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mDoc->DeleteNode(aChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-04-27 21:14:28 +04:00
|
|
|
nsTSDNotifier::WillSplitNode(nsIDOMNode *aExistingRightNode,
|
|
|
|
PRInt32 aOffset)
|
1999-04-20 21:57:20 +04:00
|
|
|
{
|
1999-04-27 21:14:28 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTSDNotifier::DidSplitNode(nsIDOMNode *aExistingRightNode,
|
|
|
|
PRInt32 aOffset,
|
|
|
|
nsIDOMNode *aNewLeftNode,
|
|
|
|
nsresult aResult)
|
|
|
|
{
|
|
|
|
if (NS_FAILED(aResult))
|
|
|
|
return NS_OK;
|
|
|
|
|
1999-04-20 21:57:20 +04:00
|
|
|
if (!mDoc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mDoc->SplitNode(aExistingRightNode, aOffset, aNewLeftNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-04-27 21:14:28 +04:00
|
|
|
nsTSDNotifier::WillJoinNodes(nsIDOMNode *aLeftNode,
|
|
|
|
nsIDOMNode *aRightNode,
|
|
|
|
nsIDOMNode *aParent)
|
1999-04-20 21:57:20 +04:00
|
|
|
{
|
1999-04-27 21:14:28 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTSDNotifier::DidJoinNodes(nsIDOMNode *aLeftNode,
|
|
|
|
nsIDOMNode *aRightNode,
|
|
|
|
nsIDOMNode *aParent,
|
|
|
|
nsresult aResult)
|
|
|
|
{
|
|
|
|
if (NS_FAILED(aResult))
|
|
|
|
return NS_OK;
|
|
|
|
|
1999-04-20 21:57:20 +04:00
|
|
|
if (!mDoc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return mDoc->JoinNodes(aLeftNode, aRightNode, aParent);
|
|
|
|
}
|