gecko-dev/editor/base/editor.cpp

567 строки
13 KiB
C++
Исходник Обычный вид История

1998-11-11 06:34:37 +03: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 "nsIDOMDocument.h"
1998-12-10 00:22:17 +03:00
#include "editor.h"
1998-11-12 03:15:58 +03:00
#include "nsIDOMEventReceiver.h"
#include "nsIDOMText.h"
#include "nsIDOMElement.h"
1999-01-06 23:29:11 +03:00
#include "nsIDOMAttr.h"
#include "nsIDocument.h"
#include "nsRepository.h"
1999-01-06 23:29:11 +03:00
#include "nsIServiceManager.h"
#include "nsEditFactory.h"
1998-12-11 04:03:12 +03:00
#include "nsEditorCID.h"
1999-01-06 23:29:11 +03:00
#include "nsTransactionManagerCID.h"
#include "nsITransactionManager.h"
#include "nsIAtom.h"
1998-11-11 12:26:42 +03:00
static NS_DEFINE_IID(kIDOMEventReceiverIID, NS_IDOMEVENTRECEIVER_IID);
static NS_DEFINE_IID(kIDOMMouseListenerIID, NS_IDOMMOUSELISTENER_IID);
1998-12-11 04:03:12 +03:00
static NS_DEFINE_IID(kIDOMKeyListenerIID, NS_IDOMKEYLISTENER_IID);
static NS_DEFINE_IID(kIDOMTextIID, NS_IDOMTEXT_IID);
static NS_DEFINE_IID(kIDOMElementIID, NS_IDOMELEMENT_IID);
static NS_DEFINE_IID(kIDOMNodeIID, NS_IDOMNODE_IID);
static NS_DEFINE_IID(kIDocumentIID, NS_IDOCUMENT_IID);
static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID);
static NS_DEFINE_IID(kIEditFactoryIID, NS_IEDITORFACTORY_IID);
static NS_DEFINE_IID(kIEditorIID, NS_IEDITOR_IID);
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
static NS_DEFINE_IID(kEditorCID, NS_EDITOR_CID);
1999-01-06 23:29:11 +03:00
static NS_DEFINE_IID(kITransactionManagerIID, NS_ITRANSACTIONMANAGER_IID);
static NS_DEFINE_CID(kCTransactionManagerFactoryCID, NS_TRANSACTION_MANAGER_FACTORY_CID);
#ifdef XP_PC
#define TRANSACTION_MANAGER_DLL "txmgr.dll"
#else
#ifdef XP_MAC
#define TRANSACTION_MANAGER_DLL "TRANSACTION_MANAGER_DLL"
#else // XP_UNIX
#define TRANSACTION_MANAGER_DLL "libtxmgr.so"
#endif
#endif
//monitor for the editor
PRMonitor *getEditorMonitor() //if more than one person asks for the monitor at the same time for the FIRST time, we are screwed
{
static PRMonitor *ns_editlock = nsnull;
if (nsnull == ns_editlock)
{
ns_editlock = (PRMonitor *)1; //how long will the next line take? lets cut down on the chance of reentrancy
ns_editlock = PR_NewMonitor();
}
else if ((PRMonitor *)1 == ns_editlock)
return getEditorMonitor();
return ns_editlock;
}
1998-11-28 04:46:56 +03:00
/*
we must be good providers of factories ect. this is where to put ALL editor exports
*/
//BEGIN EXPORTS
extern "C" NS_EXPORT nsresult NSGetFactory(const nsCID &aClass, nsIFactory
**aFactory)
{
if (nsnull == aFactory) {
return NS_ERROR_NULL_POINTER;
}
*aFactory = nsnull;
1998-12-11 04:03:12 +03:00
if (aClass.Equals(kEditorCID)) {
return getEditFactory(aFactory);
}
return NS_NOINTERFACE;
}
extern "C" NS_EXPORT PRBool
NSCanUnload(void)
{
return PR_FALSE; //I have no idea. I am copying code here
}
extern "C" NS_EXPORT nsresult
NSRegisterSelf(const char *path)
{
return nsRepository::RegisterFactory(kIEditFactoryIID, path,
PR_TRUE, PR_TRUE); //this will register the factory with the xpcom dll.
}
extern "C" NS_EXPORT nsresult
NSUnregisterSelf(const char *path)
{
return nsRepository::UnregisterFactory(kIEditFactoryIID, path);//this will unregister the factory with the xpcom dll.
}
//END EXPORTS
//class implementations are in order they are declared in editor.h
1999-01-06 23:29:11 +03:00
static PRBool needsInit=PR_TRUE;
nsEditor::nsEditor()
{
//initialize member variables here
1998-12-11 04:03:12 +03:00
NS_INIT_REFCNT();
1999-01-06 23:29:11 +03:00
if (PR_TRUE==needsInit)
{
needsInit=PR_FALSE;
nsRepository::RegisterFactory(kCTransactionManagerFactoryCID,
TRANSACTION_MANAGER_DLL, PR_FALSE, PR_FALSE);
}
mTxnMgr = nsnull;
}
1998-11-18 22:18:47 +03:00
1998-11-11 12:26:42 +03:00
nsEditor::~nsEditor()
1998-11-11 12:26:42 +03:00
{
//the autopointers will clear themselves up.
//but we need to also remove the listeners or we have a leak
1998-12-17 22:26:17 +03:00
nsCOMPtr<nsIDOMEventReceiver> erP;
nsresult t_result = mDomInterfaceP->QueryInterface(kIDOMEventReceiverIID, getter_AddRefs(erP));
if (NS_SUCCEEDED( t_result ))
{
erP->RemoveEventListener(mKeyListenerP, kIDOMKeyListenerIID);
1998-11-20 03:01:15 +03:00
//erP->RemoveEventListener(mMouseListenerP, kIDOMMouseListenerIID);
}
else
1998-11-20 03:01:15 +03:00
NS_NOTREACHED("!nsEditor");
1998-11-11 23:44:02 +03:00
}
1998-11-11 12:26:42 +03:00
//BEGIN nsIEditor interface implementations
NS_IMPL_ADDREF(nsEditor)
NS_IMPL_RELEASE(nsEditor)
nsresult
nsEditor::QueryInterface(REFNSIID aIID, void** aInstancePtr)
{
1998-12-04 02:46:36 +03:00
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(kIEditorIID)) {
*aInstancePtr = (void*)(nsIEditor*)this;
NS_ADDREF_THIS();
return NS_OK;
}
return NS_NOINTERFACE;
}
1998-11-11 12:26:42 +03:00
nsresult
nsEditor::GetDomInterface(nsIDOMDocument **aDomInterface)
{
*aDomInterface = mDomInterfaceP; return NS_OK;
}
1998-11-11 12:26:42 +03:00
nsresult
nsEditor::Init(nsIDOMDocument *aDomInterface)
1998-11-11 12:26:42 +03:00
{
if (!aDomInterface)
return NS_ERROR_NULL_POINTER;
1998-11-11 12:26:42 +03:00
mDomInterfaceP = aDomInterface;
nsresult t_result = NS_NewEditorKeyListener(getter_AddRefs(mKeyListenerP), this);
1998-11-11 12:26:42 +03:00
if (NS_OK != t_result)
{
// NS_NOTREACHED("Init Failed");
1998-11-11 12:26:42 +03:00
return t_result;
}
t_result = NS_NewEditorMouseListener(getter_AddRefs(mMouseListenerP), this);
1998-11-11 12:26:42 +03:00
if (NS_OK != t_result)
{
1998-11-12 03:15:58 +03:00
mKeyListenerP = 0; //dont keep the key listener if the mouse listener fails.
// NS_NOTREACHED("Mouse Listener");
1998-11-11 12:26:42 +03:00
return t_result;
}
1998-12-17 22:26:17 +03:00
nsCOMPtr<nsIDOMEventReceiver> erP;
t_result = mDomInterfaceP->QueryInterface(kIDOMEventReceiverIID, getter_AddRefs(erP));
1998-11-11 12:26:42 +03:00
if (NS_OK != t_result)
{
1998-11-12 03:15:58 +03:00
mKeyListenerP = 0;
mMouseListenerP = 0; //dont need these if we cant register them
// NS_NOTREACHED("query interface");
1998-11-11 12:26:42 +03:00
return t_result;
}
1998-11-11 23:44:02 +03:00
erP->AddEventListener(mKeyListenerP, kIDOMKeyListenerIID);
1998-11-20 03:01:15 +03:00
//erP->AddEventListener(mMouseListenerP, kIDOMMouseListenerIID);
1999-01-06 23:29:11 +03:00
/* fire up the transaction manager */
/*
now to handle selection
*/
/*
1998-12-17 22:26:17 +03:00
nsCOMPtr<nsIDocument> document;
if (NS_SUCCEEDED(t_result = mDomInterfaceP->QueryInterface(kIDocumentIID, getter_AddRefs(document))))
{
if (!NS_SUCCEEDED(t_result = document->GetSelection(*getter_AddRefs(mSelectionP))))
{
NS_NOTREACHED("query interface");
return t_result;
}
}
else
{
NS_NOTREACHED("query interface");
return t_result;
}
*/
1999-01-06 23:29:11 +03:00
nsISupports *isup = 0;
nsresult result;
result = nsServiceManager::GetService(kCTransactionManagerFactoryCID,
kITransactionManagerIID, &isup);
if (NS_FAILED(result) || !isup) {
printf("ERROR: Failed to get TransactionManager nsISupports interface.\n");
return NS_ERROR_OUT_OF_MEMORY;
}
result = isup->QueryInterface(kITransactionManagerIID, (void **)&mTxnMgr);
if (NS_FAILED(result)) {
printf("ERROR: Failed to get TransactionManager interface. (%d)\n", result);
return result;
}
if (!mTxnMgr) {
printf("ERROR: QueryInterface() returned NULL pointer.\n");
return NS_ERROR_NULL_POINTER;
}
1998-11-12 03:15:58 +03:00
return NS_OK;
1998-11-11 12:26:42 +03:00
}
nsresult
nsEditor::InsertString(nsString *aString)
{
return AppendText(aString);
}
nsresult
nsEditor::SetProperties(PROPERTIES aProperty)
{
return NS_OK;
}
nsresult
nsEditor::GetProperties(PROPERTIES **)
{
return NS_OK;
}
1999-01-06 23:29:11 +03:00
nsresult
nsEditor::SetAttribute(nsIDOMElement *aElement, const nsString& aAttribute, const nsString& aValue)
{
return aElement->SetDOMAttribute(aAttribute, aValue);
}
nsresult
nsEditor::GetAttributeValue(nsIDOMElement *aElement,
const nsString& aAttribute,
nsString& aResultValue,
PRBool& aResultIsSet)
{
aResultIsSet=PR_FALSE;
nsresult result=NS_OK;
if (nsnull!=aElement)
{
nsIDOMAttr* attNode=nsnull;
result = aElement->GetAttributeNode(aAttribute, &attNode);
if ((NS_SUCCEEDED(result)) && (nsnull!=attNode))
{
attNode->GetSpecified(&aResultIsSet);
attNode->GetValue(aResultValue);
}
}
return result;
}
nsresult
nsEditor::RemoveAttribute(nsIDOMElement *aElement, const nsString& aAttribute)
{
return aElement->RemoveAttribute(aAttribute);
}
nsresult
nsEditor::Commit(PRBool aCtrlKey)
{
if (aCtrlKey)
{
// nsSelectionRange range;
//mSelectionP->GetRange(&range);
}
else
{
}
return NS_OK;
}
1998-11-11 12:26:42 +03:00
//END nsIEditorInterfaces
//BEGIN nsEditor Calls from public
1998-11-11 23:44:02 +03:00
PRBool
nsEditor::KeyDown(int aKeycode)
1998-11-11 12:26:42 +03:00
{
1998-11-12 03:15:58 +03:00
return PR_TRUE;
1998-11-11 12:26:42 +03:00
}
1998-11-11 23:44:02 +03:00
PRBool
nsEditor::MouseClick(int aX,int aY)
1998-11-11 12:26:42 +03:00
{
1998-11-12 03:15:58 +03:00
return PR_FALSE;
1998-11-11 12:26:42 +03:00
}
//END nsEditor Calls from public
//BEGIN nsEditor Private methods
nsresult
nsEditor::AppendText(nsString *aStr)
{
1998-12-17 22:26:17 +03:00
nsCOMPtr<nsIDOMNode> currentNode;
nsCOMPtr<nsIDOMNode> textNode;
nsCOMPtr<nsIDOMText> text;
if (!aStr)
return NS_ERROR_NULL_POINTER;
if (NS_SUCCEEDED(GetCurrentNode(getter_AddRefs(currentNode))) &&
NS_SUCCEEDED(GetFirstTextNode(currentNode,getter_AddRefs(textNode))) &&
NS_SUCCEEDED(textNode->QueryInterface(kIDOMTextIID, getter_AddRefs(text)))) {
1998-11-18 22:18:47 +03:00
text->AppendData(*aStr);
}
return NS_OK;
}
1998-11-11 12:26:42 +03:00
nsresult
nsEditor::GetCurrentNode(nsIDOMNode ** aNode)
{
1998-11-20 03:01:15 +03:00
if (!aNode)
return NS_ERROR_NULL_POINTER;
/* If no node set, get first text node */
1998-12-17 22:26:17 +03:00
nsCOMPtr<nsIDOMElement> docNode;
if (NS_SUCCEEDED(mDomInterfaceP->GetDocumentElement(getter_AddRefs(docNode))))
{
1998-11-18 22:18:47 +03:00
return docNode->QueryInterface(kIDOMNodeIID,(void **) aNode);
}
return NS_ERROR_FAILURE;
}
1999-01-06 23:29:11 +03:00
nsresult
nsEditor::GetFirstNodeOfType(nsIDOMNode *aStartNode, const nsString &aTag, nsIDOMNode **aResult)
{
nsresult result=NS_OK;
if (!aResult)
return NS_ERROR_NULL_POINTER;
/* If no node set, get root node */
nsCOMPtr<nsIDOMNode> node;
nsCOMPtr<nsIDOMElement> element;
if (nsnull==aStartNode)
{
mDomInterfaceP->GetDocumentElement(getter_AddRefs(element));
result = element->QueryInterface(kIDOMNodeIID,getter_AddRefs(node));
if (NS_FAILED(result))
return result;
if (!node)
return NS_ERROR_NULL_POINTER;
}
else
node=aStartNode;
*aResult = nsnull;
nsCOMPtr<nsIDOMNode> childNode;
result = node->GetFirstChild(getter_AddRefs(childNode));
while (childNode)
{
result = childNode->QueryInterface(kIDOMNodeIID,getter_AddRefs(element));
nsString tag;
if (NS_SUCCEEDED(result) && (element))
{
element->GetTagName(tag);
if (PR_TRUE==aTag.Equals(tag))
{
return (childNode->QueryInterface(kIDOMNodeIID,(void **) aResult)); // does the addref
}
else
{
nsresult result = GetFirstNodeOfType(childNode, aTag, aResult);
if (nsnull!=*aResult)
return result;
}
}
nsCOMPtr<nsIDOMNode> xNode;
childNode->GetNextSibling(getter_AddRefs(xNode));
childNode=xNode;
}
return NS_ERROR_FAILURE;
}
nsresult
nsEditor::GetFirstTextNode(nsIDOMNode *aNode, nsIDOMNode **aRetNode)
{
1998-11-20 03:01:15 +03:00
if (!aNode || !aRetNode)
{
NS_NOTREACHED("GetFirstTextNode Failed");
return NS_ERROR_NULL_POINTER;
}
PRUint16 mType;
PRBool mCNodes;
1998-12-17 22:26:17 +03:00
nsCOMPtr<nsIDOMNode> answer;
aNode->GetNodeType(&mType);
if (nsIDOMNode::ELEMENT_NODE == mType) {
if (NS_SUCCEEDED(aNode->HasChildNodes(&mCNodes)) && PR_TRUE == mCNodes)
{
1998-12-17 22:26:17 +03:00
nsCOMPtr<nsIDOMNode> node1;
nsCOMPtr<nsIDOMNode> node2;
if (!NS_SUCCEEDED(aNode->GetFirstChild(getter_AddRefs(node1))))
1998-11-18 22:18:47 +03:00
{
1998-11-20 03:01:15 +03:00
NS_NOTREACHED("GetFirstTextNode Failed");
1998-11-18 22:18:47 +03:00
}
1998-11-20 03:01:15 +03:00
while(!answer && node1)
{
GetFirstTextNode(node1, getter_AddRefs(answer));
node1->GetNextSibling(getter_AddRefs(node2));
1998-11-20 03:01:15 +03:00
node1 = node2;
}
}
}
else if (nsIDOMNode::TEXT_NODE == mType) {
answer = aNode;
}
// OK, now return the answer, if any
*aRetNode = answer;
if (*aRetNode)
NS_IF_ADDREF(*aRetNode);
else
return NS_ERROR_FAILURE;
return NS_OK;
}
1999-01-06 23:29:11 +03:00
nsresult
nsEditor::ExecuteTransaction(nsITransaction *aTxn)
{
nsresult result = NS_OK;
if (nsnull!=aTxn)
{
if (nsnull!=mTxnMgr)
{
result = mTxnMgr->Do(aTxn);
}
else
{
result = aTxn->Do();
}
}
return result;
}
nsresult
nsEditor::Undo()
{
nsresult result = NS_OK;
if (nsnull!=mTxnMgr)
{
result = mTxnMgr->Undo();
}
return result;
}
nsresult
nsEditor::Redo()
{
nsresult result = NS_OK;
if (nsnull!=mTxnMgr)
{
result = mTxnMgr->Redo();
}
return result;
}
//END nsEditor Private methods