1999-03-10 19:53:26 +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 "nsTextEditRules.h"
|
1999-03-12 02:28:24 +00:00
|
|
|
#include "nsTextEditor.h"
|
1999-03-15 00:57:32 +00:00
|
|
|
#include "PlaceholderTxn.h"
|
|
|
|
#include "InsertTextTxn.h"
|
1999-03-10 19:53:26 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMNodeList.h"
|
|
|
|
#include "nsIDOMSelection.h"
|
|
|
|
#include "nsIDOMRange.h"
|
1999-03-12 02:28:24 +00:00
|
|
|
#include "nsIDOMCharacterData.h"
|
1999-03-10 19:53:26 +00:00
|
|
|
#include "nsIEnumerator.h"
|
1999-03-13 04:53:21 +00:00
|
|
|
#include "nsIContent.h"
|
1999-03-10 19:53:26 +00:00
|
|
|
|
1999-03-13 04:53:21 +00:00
|
|
|
const static char* kMOZEditorBogusNodeAttr="MOZ_EDITOR_BOGUS_NODE";
|
|
|
|
const static char* kMOZEditorBogusNodeValue="TRUE";
|
1999-03-10 19:53:26 +00:00
|
|
|
|
1999-03-15 00:57:32 +00:00
|
|
|
static NS_DEFINE_IID(kPlaceholderTxnIID, PLACEHOLDER_TXN_IID);
|
|
|
|
|
1999-03-10 21:26:33 +00:00
|
|
|
static PRBool NodeIsType(nsIDOMNode *aNode, nsIAtom *aTag)
|
1999-03-10 19:53:26 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMElement>element;
|
|
|
|
element = do_QueryInterface(aNode);
|
|
|
|
if (element)
|
|
|
|
{
|
|
|
|
nsAutoString tag;
|
|
|
|
element->GetTagName(tag);
|
|
|
|
if (tag.Equals(aTag))
|
|
|
|
{
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
1999-03-13 04:53:21 +00:00
|
|
|
PRBool IsEditable(nsIDOMNode *aNode)
|
|
|
|
{
|
|
|
|
if (!aNode) return PR_FALSE;
|
|
|
|
nsCOMPtr<nsIDOMElement>element;
|
|
|
|
element = do_QueryInterface(aNode);
|
|
|
|
if (element)
|
|
|
|
{
|
|
|
|
nsAutoString att(kMOZEditorBogusNodeAttr);
|
|
|
|
nsAutoString val;
|
|
|
|
nsresult result = element->GetAttribute(att, val);
|
|
|
|
if (val.Equals(kMOZEditorBogusNodeValue)) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMCharacterData>text;
|
|
|
|
text = do_QueryInterface(aNode);
|
|
|
|
if (text)
|
|
|
|
{
|
|
|
|
nsAutoString data;
|
|
|
|
text->GetData(data);
|
|
|
|
if (0==data.Length()) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
if ('\n'==data[0]) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-03-10 19:53:26 +00:00
|
|
|
nsTextEditRules::nsTextEditRules()
|
|
|
|
{
|
1999-03-12 02:28:24 +00:00
|
|
|
mEditor = nsnull;
|
1999-03-10 19:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsTextEditRules::~nsTextEditRules()
|
|
|
|
{
|
1999-03-12 02:28:24 +00:00
|
|
|
// do NOT delete mEditor here. We do not hold a ref count to mEditor. mEditor owns our lifespan.
|
1999-03-10 19:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-03-12 02:28:24 +00:00
|
|
|
nsTextEditRules::Init(nsTextEditor *aEditor)
|
1999-03-10 19:53:26 +00:00
|
|
|
{
|
|
|
|
// null aNextRule is ok
|
|
|
|
if (!aEditor) { return NS_ERROR_NULL_POINTER; }
|
1999-03-12 02:28:24 +00:00
|
|
|
mEditor = aEditor; // we hold a non-refcounted reference back to our editor
|
1999-03-10 19:53:26 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-12 02:28:24 +00:00
|
|
|
|
1999-03-13 04:53:21 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::WillInsert(nsIDOMSelection *aSelection, PRBool *aCancel)
|
|
|
|
{
|
|
|
|
if (!aSelection || !aCancel) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
// initialize out param
|
|
|
|
*aCancel = PR_FALSE;
|
|
|
|
|
|
|
|
// check for the magic content node and delete it if it exists
|
1999-03-15 00:57:32 +00:00
|
|
|
if (mBogusNode)
|
1999-03-13 04:53:21 +00:00
|
|
|
{
|
1999-03-15 00:57:32 +00:00
|
|
|
mEditor->DeleteNode(mBogusNode);
|
|
|
|
mBogusNode = do_QueryInterface(nsnull);
|
|
|
|
// there is no longer any legit selection, so clear it.
|
|
|
|
aSelection->ClearSelection();
|
1999-03-13 04:53:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::DidInsert(nsIDOMSelection *aSelection, nsresult aResult)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::WillInsertText(nsIDOMSelection *aSelection,
|
|
|
|
const nsString& aInputString,
|
|
|
|
PRBool *aCancel,
|
1999-03-15 00:57:32 +00:00
|
|
|
nsString& aOutputString,
|
|
|
|
PlaceholderTxn **aTxn)
|
1999-03-13 04:53:21 +00:00
|
|
|
{
|
|
|
|
if (!aSelection || !aCancel) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
// initialize out param
|
|
|
|
*aCancel = PR_FALSE;
|
|
|
|
// by default, we insert what we're told to insert
|
|
|
|
aOutputString = aInputString;
|
1999-03-15 00:57:32 +00:00
|
|
|
if (mBogusNode)
|
|
|
|
{
|
|
|
|
nsresult result = TransactionFactory::GetNewTransaction(kPlaceholderTxnIID, (EditTxn **)aTxn);
|
|
|
|
if (NS_FAILED(result)) { return result; }
|
|
|
|
if (!*aTxn) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
(*aTxn)->SetName(InsertTextTxn::gInsertTextTxnName);
|
|
|
|
mEditor->Do(*aTxn);
|
|
|
|
}
|
1999-03-16 16:38:09 +00:00
|
|
|
nsresult result = WillInsert(aSelection, aCancel);
|
|
|
|
return result;
|
1999-03-13 04:53:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::DidInsertText(nsIDOMSelection *aSelection,
|
|
|
|
const nsString& aStringToInsert,
|
|
|
|
nsresult aResult)
|
|
|
|
{
|
|
|
|
return DidInsert(aSelection, aResult);
|
|
|
|
}
|
1999-03-12 02:28:24 +00:00
|
|
|
|
1999-03-10 19:53:26 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::WillInsertBreak(nsIDOMSelection *aSelection, PRBool *aCancel)
|
|
|
|
{
|
|
|
|
if (!aSelection || !aCancel) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
// initialize out param
|
|
|
|
*aCancel = PR_FALSE;
|
1999-03-13 04:53:21 +00:00
|
|
|
return WillInsert(aSelection, aCancel);
|
1999-03-10 19:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: this code is all experimental, and has no effect on the content model yet
|
|
|
|
// the point here is to collapse adjacent BR's into P's
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::DidInsertBreak(nsIDOMSelection *aSelection, nsresult aResult)
|
|
|
|
{
|
1999-03-12 02:28:24 +00:00
|
|
|
nsresult result = aResult; // if aResult is an error, we return it.
|
1999-03-10 19:53:26 +00:00
|
|
|
if (!aSelection) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
PRBool isCollapsed;
|
|
|
|
aSelection->IsCollapsed(&isCollapsed);
|
|
|
|
NS_ASSERTION(PR_TRUE==isCollapsed, "selection not collapsed after insert break.");
|
|
|
|
// if the insert break resulted in consecutive BR tags,
|
|
|
|
// collapse the two BR tags into a single P
|
1999-03-15 05:08:30 +00:00
|
|
|
if (NS_SUCCEEDED(result))
|
1999-03-10 19:53:26 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEnumerator> enumerator;
|
|
|
|
enumerator = do_QueryInterface(aSelection,&result);
|
|
|
|
if (enumerator)
|
|
|
|
{
|
|
|
|
enumerator->First();
|
|
|
|
nsISupports *currentItem;
|
|
|
|
result = enumerator->CurrentItem(¤tItem);
|
|
|
|
if ((NS_SUCCEEDED(result)) && currentItem)
|
|
|
|
{
|
|
|
|
result = NS_ERROR_UNEXPECTED;
|
|
|
|
nsCOMPtr<nsIDOMRange> range( do_QueryInterface(currentItem) );
|
|
|
|
if (range)
|
|
|
|
{
|
|
|
|
nsIAtom *brTag = NS_NewAtom("BR");
|
|
|
|
nsCOMPtr<nsIDOMNode> startNode;
|
|
|
|
result = range->GetStartParent(getter_AddRefs(startNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && startNode)
|
|
|
|
{
|
|
|
|
PRInt32 offset;
|
|
|
|
range->GetStartOffset(&offset);
|
|
|
|
nsCOMPtr<nsIDOMNodeList>startNodeChildren;
|
|
|
|
result = startNode->GetChildNodes(getter_AddRefs(startNodeChildren));
|
|
|
|
if ((NS_SUCCEEDED(result)) && startNodeChildren)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> selectedNode;
|
|
|
|
result = startNodeChildren->Item(offset, getter_AddRefs(selectedNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && selectedNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> prevNode;
|
|
|
|
result = selectedNode->GetPreviousSibling(getter_AddRefs(prevNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && prevNode)
|
|
|
|
{
|
|
|
|
if (PR_TRUE==NodeIsType(prevNode, brTag))
|
|
|
|
{ // the previous node is a BR, check it's siblings
|
|
|
|
nsCOMPtr<nsIDOMNode> leftNode;
|
|
|
|
result = prevNode->GetPreviousSibling(getter_AddRefs(leftNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && leftNode)
|
|
|
|
{
|
|
|
|
if (PR_TRUE==NodeIsType(leftNode, brTag))
|
|
|
|
{ // left sibling is also a BR, collapse
|
|
|
|
printf("1\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (PR_TRUE==NodeIsType(selectedNode, brTag))
|
|
|
|
{ // right sibling is also a BR, collapse
|
|
|
|
printf("2\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// now check the next node from selectedNode
|
|
|
|
nsCOMPtr<nsIDOMNode> nextNode;
|
|
|
|
result = selectedNode->GetNextSibling(getter_AddRefs(nextNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && nextNode)
|
|
|
|
{
|
|
|
|
if (PR_TRUE==NodeIsType(nextNode, brTag))
|
|
|
|
{ // the previous node is a BR, check it's siblings
|
|
|
|
nsCOMPtr<nsIDOMNode> rightNode;
|
1999-03-13 05:31:22 +00:00
|
|
|
result = nextNode->GetNextSibling(getter_AddRefs(rightNode));
|
1999-03-10 19:53:26 +00:00
|
|
|
if ((NS_SUCCEEDED(result)) && rightNode)
|
|
|
|
{
|
|
|
|
if (PR_TRUE==NodeIsType(rightNode, brTag))
|
|
|
|
{ // right sibling is also a BR, collapse
|
|
|
|
printf("3\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (PR_TRUE==NodeIsType(selectedNode, brTag))
|
|
|
|
{ // left sibling is also a BR, collapse
|
|
|
|
printf("4\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_RELEASE(brTag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::GetInsertBreakTag(nsIAtom **aTag)
|
|
|
|
{
|
|
|
|
if (!aTag) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
*aTag = NS_NewAtom("BR");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-12 02:28:24 +00:00
|
|
|
|
1999-03-10 19:53:26 +00:00
|
|
|
NS_IMETHODIMP
|
1999-03-12 02:28:24 +00:00
|
|
|
nsTextEditRules::WillDeleteSelection(nsIDOMSelection *aSelection, PRBool *aCancel)
|
1999-03-10 19:53:26 +00:00
|
|
|
{
|
1999-03-12 02:28:24 +00:00
|
|
|
if (!aSelection || !aCancel) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
// initialize out param
|
|
|
|
*aCancel = PR_FALSE;
|
1999-03-13 04:53:21 +00:00
|
|
|
|
|
|
|
// if there is only bogus content, cancel the operation
|
1999-03-15 00:57:32 +00:00
|
|
|
if (mBogusNode) {
|
|
|
|
*aCancel = PR_TRUE;
|
|
|
|
return NS_OK;
|
1999-03-13 04:53:21 +00:00
|
|
|
}
|
1999-03-12 02:28:24 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the document is empty, insert a bogus text node with a
|
1999-03-16 16:38:09 +00:00
|
|
|
// if we ended up with consecutive text nodes, merge them
|
1999-03-12 02:28:24 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::DidDeleteSelection(nsIDOMSelection *aSelection, nsresult aResult)
|
|
|
|
{
|
|
|
|
nsresult result = aResult; // if aResult is an error, we just return it
|
|
|
|
if (!aSelection) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
PRBool isCollapsed;
|
|
|
|
aSelection->IsCollapsed(&isCollapsed);
|
|
|
|
NS_ASSERTION(PR_TRUE==isCollapsed, "selection not collapsed after delete selection.");
|
|
|
|
// if the delete selection resulted in no content
|
|
|
|
// insert a special bogus text node with a character in it.
|
1999-03-16 16:38:09 +00:00
|
|
|
if (NS_SUCCEEDED(result)) // only do this work if DeleteSelection completed successfully
|
1999-03-12 02:28:24 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMDocument>doc;
|
|
|
|
mEditor->GetDocument(getter_AddRefs(doc));
|
|
|
|
nsCOMPtr<nsIDOMNodeList>nodeList;
|
|
|
|
nsAutoString bodyTag = "body";
|
|
|
|
nsresult result = doc->GetElementsByTagName(bodyTag, getter_AddRefs(nodeList));
|
|
|
|
if ((NS_SUCCEEDED(result)) && nodeList)
|
|
|
|
{
|
|
|
|
PRUint32 count;
|
|
|
|
nodeList->GetLength(&count);
|
|
|
|
NS_ASSERTION(1==count, "there is not exactly 1 body in the document!");
|
|
|
|
nsCOMPtr<nsIDOMNode>bodyNode;
|
|
|
|
result = nodeList->Item(0, getter_AddRefs(bodyNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && bodyNode)
|
|
|
|
{ // now we've got the body tag.
|
|
|
|
// iterate the body tag, looking for editable content
|
|
|
|
// if no editable content is found, insert the bogus node
|
|
|
|
PRBool needsBogusContent=PR_TRUE;
|
|
|
|
nsCOMPtr<nsIDOMNode>bodyChild;
|
|
|
|
result = bodyNode->GetFirstChild(getter_AddRefs(bodyChild));
|
|
|
|
while ((NS_SUCCEEDED(result)) && bodyChild)
|
1999-03-13 04:53:21 +00:00
|
|
|
{
|
|
|
|
if (PR_TRUE==IsEditable(bodyChild))
|
|
|
|
{
|
|
|
|
needsBogusContent = PR_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
1999-03-12 02:28:24 +00:00
|
|
|
nsCOMPtr<nsIDOMNode>temp;
|
1999-03-13 04:53:21 +00:00
|
|
|
bodyChild->GetNextSibling(getter_AddRefs(temp));
|
1999-03-12 02:28:24 +00:00
|
|
|
bodyChild = do_QueryInterface(temp);
|
|
|
|
}
|
|
|
|
if (PR_TRUE==needsBogusContent)
|
|
|
|
{
|
1999-03-15 00:57:32 +00:00
|
|
|
// set mBogusNode to be the newly created <P>
|
1999-03-12 02:28:24 +00:00
|
|
|
result = mEditor->CreateNode(nsAutoString("P"), bodyNode, 0,
|
1999-03-15 00:57:32 +00:00
|
|
|
getter_AddRefs(mBogusNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && mBogusNode)
|
1999-03-12 02:28:24 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode>newTNode;
|
1999-03-15 00:57:32 +00:00
|
|
|
result = mEditor->CreateNode(nsIEditor::GetTextNodeTag(), mBogusNode, 0,
|
1999-03-12 02:28:24 +00:00
|
|
|
getter_AddRefs(newTNode));
|
|
|
|
if ((NS_SUCCEEDED(result)) && newTNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMCharacterData>newNodeAsText;
|
|
|
|
newNodeAsText = do_QueryInterface(newTNode);
|
|
|
|
if (newNodeAsText)
|
|
|
|
{
|
|
|
|
nsAutoString data;
|
|
|
|
data += 160;
|
|
|
|
newNodeAsText->SetData(data);
|
|
|
|
aSelection->Collapse(newTNode, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// make sure we know the PNode is bogus
|
|
|
|
nsCOMPtr<nsIDOMElement>newPElement;
|
1999-03-15 00:57:32 +00:00
|
|
|
newPElement = do_QueryInterface(mBogusNode);
|
1999-03-12 02:28:24 +00:00
|
|
|
if (newPElement)
|
|
|
|
{
|
1999-03-13 04:53:21 +00:00
|
|
|
nsAutoString att(kMOZEditorBogusNodeAttr);
|
|
|
|
nsAutoString val(kMOZEditorBogusNodeValue);
|
|
|
|
newPElement->SetAttribute(att, val);
|
1999-03-12 02:28:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-03-16 16:38:09 +00:00
|
|
|
// if we don't have an empty document, check the selection to see if any collapsing is necessary
|
|
|
|
if (!mBogusNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode>anchor;
|
|
|
|
PRInt32 offset;
|
|
|
|
nsresult result = aSelection->GetAnchorNodeAndOffset(getter_AddRefs(anchor), &offset);
|
|
|
|
if ((NS_SUCCEEDED(result)) && anchor)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNodeList> anchorChildren;
|
|
|
|
result = anchor->GetChildNodes(getter_AddRefs(anchorChildren));
|
|
|
|
nsCOMPtr<nsIDOMNode> selectedNode;
|
|
|
|
if ((NS_SUCCEEDED(result)) && anchorChildren) {
|
|
|
|
result = anchorChildren->Item(offset, getter_AddRefs(selectedNode));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
selectedNode = do_QueryInterface(anchor);
|
|
|
|
}
|
|
|
|
if ((NS_SUCCEEDED(result)) && selectedNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMCharacterData>selectedNodeAsText;
|
|
|
|
selectedNodeAsText = do_QueryInterface(selectedNode);
|
|
|
|
if (selectedNodeAsText)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> siblingNode;
|
|
|
|
selectedNode->GetPreviousSibling(getter_AddRefs(siblingNode));
|
|
|
|
if (siblingNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMCharacterData>siblingNodeAsText;
|
|
|
|
siblingNodeAsText = do_QueryInterface(siblingNode);
|
|
|
|
if (siblingNodeAsText)
|
|
|
|
{
|
|
|
|
PRUint32 siblingLength; // the length of siblingNode before the join
|
|
|
|
siblingNodeAsText->GetLength(&siblingLength);
|
|
|
|
nsCOMPtr<nsIDOMNode> parentNode;
|
|
|
|
selectedNode->GetParentNode(getter_AddRefs(parentNode));
|
|
|
|
result = mEditor->JoinNodes(siblingNode, selectedNode, parentNode);
|
|
|
|
// set selection to point between the end of siblingNode and start of selectedNode
|
|
|
|
aSelection->Collapse(siblingNode, siblingLength);
|
|
|
|
selectedNode = do_QueryInterface(siblingNode); // subsequent code relies on selectedNode
|
|
|
|
// being the real node in the DOM tree
|
|
|
|
}
|
|
|
|
}
|
|
|
|
selectedNode->GetNextSibling(getter_AddRefs(siblingNode));
|
|
|
|
if (siblingNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMCharacterData>siblingNodeAsText;
|
|
|
|
siblingNodeAsText = do_QueryInterface(siblingNode);
|
|
|
|
if (siblingNodeAsText)
|
|
|
|
{
|
|
|
|
PRUint32 selectedNodeLength; // the length of siblingNode before the join
|
|
|
|
selectedNodeAsText->GetLength(&selectedNodeLength);
|
|
|
|
nsCOMPtr<nsIDOMNode> parentNode;
|
|
|
|
selectedNode->GetParentNode(getter_AddRefs(parentNode));
|
|
|
|
result = mEditor->JoinNodes(selectedNode, siblingNode, parentNode);
|
|
|
|
// set selection
|
|
|
|
aSelection->Collapse(selectedNode, selectedNodeLength);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-03-10 19:53:26 +00:00
|
|
|
}
|
1999-03-12 02:28:24 +00:00
|
|
|
return result;
|
1999-03-10 19:53:26 +00:00
|
|
|
}
|
|
|
|
|
1999-03-15 05:08:30 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::WillUndo(nsIDOMSelection *aSelection, PRBool *aCancel)
|
|
|
|
{
|
|
|
|
if (!aSelection || !aCancel) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
// initialize out param
|
|
|
|
*aCancel = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the idea here is to see if the magic empty node has suddenly reappeared as the result of the undo.
|
|
|
|
* if it has, set our state so we remember it.
|
|
|
|
* There is a tradeoff between doing here and at redo, or doing it everywhere else that might care.
|
|
|
|
* Since undo and redo are relatively rare, it makes sense to take the (small) performance hit here.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules:: DidUndo(nsIDOMSelection *aSelection, nsresult aResult)
|
|
|
|
{
|
|
|
|
nsresult result = aResult; // if aResult is an error, we return it.
|
|
|
|
if (!aSelection) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
if (NS_SUCCEEDED(result))
|
|
|
|
{
|
|
|
|
if (mBogusNode) {
|
|
|
|
mBogusNode = do_QueryInterface(nsnull);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode>node;
|
|
|
|
PRInt32 offset;
|
|
|
|
nsresult result = aSelection->GetAnchorNodeAndOffset(getter_AddRefs(node), &offset);
|
|
|
|
while ((NS_SUCCEEDED(result)) && node)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMElement>element;
|
|
|
|
element = do_QueryInterface(node);
|
|
|
|
if (element)
|
|
|
|
{
|
|
|
|
nsAutoString att(kMOZEditorBogusNodeAttr);
|
|
|
|
nsAutoString val;
|
|
|
|
nsresult result = element->GetAttribute(att, val);
|
|
|
|
if (val.Equals(kMOZEditorBogusNodeValue)) {
|
|
|
|
mBogusNode = do_QueryInterface(element);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMNode> temp;
|
|
|
|
result = node->GetParentNode(getter_AddRefs(temp));
|
|
|
|
node = do_QueryInterface(temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::WillRedo(nsIDOMSelection *aSelection, PRBool *aCancel)
|
|
|
|
{
|
|
|
|
if (!aSelection || !aCancel) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
// initialize out param
|
|
|
|
*aCancel = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextEditRules::DidRedo(nsIDOMSelection *aSelection, nsresult aResult)
|
|
|
|
{
|
|
|
|
nsresult result = aResult; // if aResult is an error, we return it.
|
|
|
|
if (!aSelection) { return NS_ERROR_NULL_POINTER; }
|
|
|
|
if (NS_SUCCEEDED(result))
|
|
|
|
{
|
|
|
|
if (mBogusNode) {
|
|
|
|
mBogusNode = do_QueryInterface(nsnull);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode>node;
|
|
|
|
PRInt32 offset;
|
|
|
|
nsresult result = aSelection->GetAnchorNodeAndOffset(getter_AddRefs(node), &offset);
|
|
|
|
while ((NS_SUCCEEDED(result)) && node)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMElement>element;
|
|
|
|
element = do_QueryInterface(node);
|
|
|
|
if (element)
|
|
|
|
{
|
|
|
|
nsAutoString att(kMOZEditorBogusNodeAttr);
|
|
|
|
nsAutoString val;
|
|
|
|
nsresult result = element->GetAttribute(att, val);
|
|
|
|
if (val.Equals(kMOZEditorBogusNodeValue)) {
|
|
|
|
mBogusNode = do_QueryInterface(element);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMNode> temp;
|
|
|
|
result = node->GetParentNode(getter_AddRefs(temp));
|
|
|
|
node = do_QueryInterface(temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1999-03-10 19:53:26 +00:00
|
|
|
|
|
|
|
|
1999-03-12 02:28:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|