mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1149163 part 7 - Clean up nsHTMLEditRules::PromoteRange; r=froydnj
This commit is contained in:
parent
1522c79dfb
commit
acd79057c7
@ -447,8 +447,7 @@ nsHTMLEditRules::AfterEditInner(EditAction action,
|
||||
nsAutoTxnsConserveSelection dontSpazMySelection(mHTMLEditor);
|
||||
|
||||
// expand the "changed doc range" as needed
|
||||
res = PromoteRange(mDocChangeRange, action);
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
PromoteRange(*mDocChangeRange, action);
|
||||
|
||||
// if we did a ranged deletion or handling backspace key, make sure we have
|
||||
// a place to put caret.
|
||||
@ -5768,8 +5767,7 @@ nsHTMLEditRules::GetPromotedRanges(Selection* inSelection,
|
||||
// The basic idea is to push out the range endpoints
|
||||
// to truly enclose the blocks that we will affect.
|
||||
// This call alters opRange.
|
||||
res = PromoteRange(opRange, inOperationType);
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
PromoteRange(*opRange, inOperationType);
|
||||
|
||||
// stuff new opRange into array
|
||||
outArrayOfRanges.AppendElement(opRange);
|
||||
@ -5778,95 +5776,76 @@ nsHTMLEditRules::GetPromotedRanges(Selection* inSelection,
|
||||
}
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// PromoteRange: expand a range to include any parents for which all
|
||||
// editable children are already in range.
|
||||
//
|
||||
nsresult
|
||||
nsHTMLEditRules::PromoteRange(nsRange* inRange, EditAction inOperationType)
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// PromoteRange: Expand a range to include any parents for which all editable
|
||||
// children are already in range.
|
||||
//
|
||||
void
|
||||
nsHTMLEditRules::PromoteRange(nsRange& aRange, EditAction aOperationType)
|
||||
{
|
||||
NS_ENSURE_TRUE(inRange, NS_ERROR_NULL_POINTER);
|
||||
nsresult res;
|
||||
nsCOMPtr<nsIDOMNode> startNode, endNode;
|
||||
int32_t startOffset, endOffset;
|
||||
|
||||
res = inRange->GetStartContainer(getter_AddRefs(startNode));
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
res = inRange->GetStartOffset(&startOffset);
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
res = inRange->GetEndContainer(getter_AddRefs(endNode));
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
res = inRange->GetEndOffset(&endOffset);
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
|
||||
NS_ENSURE_TRUE(mHTMLEditor, );
|
||||
nsCOMPtr<nsIEditor> kungFuDeathGrip(mHTMLEditor);
|
||||
|
||||
nsCOMPtr<nsINode> startNode = aRange.GetStartParent();
|
||||
nsCOMPtr<nsINode> endNode = aRange.GetEndParent();
|
||||
int32_t startOffset = aRange.StartOffset();
|
||||
int32_t endOffset = aRange.EndOffset();
|
||||
|
||||
// MOOSE major hack:
|
||||
// GetPromotedPoint doesn't really do the right thing for collapsed ranges
|
||||
// inside block elements that contain nothing but a solo <br>. It's easier
|
||||
// to put a workaround here than to revamp GetPromotedPoint. :-(
|
||||
if ( (startNode == endNode) && (startOffset == endOffset))
|
||||
{
|
||||
nsCOMPtr<nsIDOMNode> block;
|
||||
if (IsBlockNode(startNode)) {
|
||||
block = startNode;
|
||||
if (startNode == endNode && startOffset == endOffset) {
|
||||
nsCOMPtr<Element> block;
|
||||
if (IsBlockNode(GetAsDOMNode(startNode))) {
|
||||
block = startNode->AsElement();
|
||||
} else {
|
||||
NS_ENSURE_STATE(mHTMLEditor);
|
||||
block = mHTMLEditor->GetBlockNodeParent(startNode);
|
||||
}
|
||||
if (block)
|
||||
{
|
||||
if (block) {
|
||||
bool bIsEmptyNode = false;
|
||||
// check for the editing host
|
||||
NS_ENSURE_STATE(mHTMLEditor);
|
||||
nsIContent *rootContent = mHTMLEditor->GetActiveEditingHost();
|
||||
nsCOMPtr<nsINode> rootNode = do_QueryInterface(rootContent);
|
||||
nsCOMPtr<nsINode> blockNode = do_QueryInterface(block);
|
||||
NS_ENSURE_TRUE(rootNode && blockNode, NS_ERROR_UNEXPECTED);
|
||||
nsCOMPtr<nsIContent> root = mHTMLEditor->GetActiveEditingHost();
|
||||
// Make sure we don't go higher than our root element in the content tree
|
||||
if (!nsContentUtils::ContentIsDescendantOf(rootNode, blockNode))
|
||||
{
|
||||
NS_ENSURE_STATE(mHTMLEditor);
|
||||
res = mHTMLEditor->IsEmptyNode(block, &bIsEmptyNode, true, false);
|
||||
NS_ENSURE_TRUE(root, );
|
||||
if (!nsContentUtils::ContentIsDescendantOf(root, block)) {
|
||||
mHTMLEditor->IsEmptyNode(block, &bIsEmptyNode, true, false);
|
||||
}
|
||||
if (bIsEmptyNode)
|
||||
{
|
||||
uint32_t numChildren;
|
||||
nsEditor::GetLengthOfDOMNode(block, numChildren);
|
||||
if (bIsEmptyNode) {
|
||||
startNode = block;
|
||||
endNode = block;
|
||||
startOffset = 0;
|
||||
endOffset = numChildren;
|
||||
endOffset = block->Length();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// make a new adjusted range to represent the appropriate block content.
|
||||
// this is tricky. the basic idea is to push out the range endpoints
|
||||
// to truly enclose the blocks that we will affect
|
||||
|
||||
// Make a new adjusted range to represent the appropriate block content.
|
||||
// This is tricky. The basic idea is to push out the range endpoints to
|
||||
// truly enclose the blocks that we will affect.
|
||||
|
||||
nsCOMPtr<nsIDOMNode> opStartNode;
|
||||
nsCOMPtr<nsIDOMNode> opEndNode;
|
||||
int32_t opStartOffset, opEndOffset;
|
||||
nsRefPtr<nsRange> opRange;
|
||||
|
||||
GetPromotedPoint(kStart, startNode, startOffset, inOperationType,
|
||||
address_of(opStartNode), &opStartOffset);
|
||||
GetPromotedPoint(kEnd, endNode, endOffset, inOperationType,
|
||||
|
||||
GetPromotedPoint(kStart, GetAsDOMNode(startNode), startOffset,
|
||||
aOperationType, address_of(opStartNode), &opStartOffset);
|
||||
GetPromotedPoint(kEnd, GetAsDOMNode(endNode), endOffset, aOperationType,
|
||||
address_of(opEndNode), &opEndOffset);
|
||||
|
||||
// Make sure that the new range ends up to be in the editable section.
|
||||
NS_ENSURE_STATE(mHTMLEditor);
|
||||
if (!mHTMLEditor->IsDescendantOfEditorRoot(nsEditor::GetNodeAtRangeOffsetPoint(opStartNode, opStartOffset)) ||
|
||||
!mHTMLEditor || // Check again, since it may have gone away
|
||||
!mHTMLEditor->IsDescendantOfEditorRoot(nsEditor::GetNodeAtRangeOffsetPoint(opEndNode, opEndOffset - 1))) {
|
||||
NS_ENSURE_STATE(mHTMLEditor);
|
||||
return NS_OK;
|
||||
if (!mHTMLEditor->IsDescendantOfEditorRoot(
|
||||
nsEditor::GetNodeAtRangeOffsetPoint(opStartNode, opStartOffset)) ||
|
||||
!mHTMLEditor->IsDescendantOfEditorRoot(
|
||||
nsEditor::GetNodeAtRangeOffsetPoint(opEndNode, opEndOffset - 1))) {
|
||||
return;
|
||||
}
|
||||
|
||||
res = inRange->SetStart(opStartNode, opStartOffset);
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
res = inRange->SetEnd(opEndNode, opEndOffset);
|
||||
return res;
|
||||
}
|
||||
DebugOnly<nsresult> res = aRange.SetStart(opStartNode, opStartOffset);
|
||||
MOZ_ASSERT(NS_SUCCEEDED(res));
|
||||
res = aRange.SetEnd(opEndNode, opEndOffset);
|
||||
MOZ_ASSERT(NS_SUCCEEDED(res));
|
||||
}
|
||||
|
||||
class NodeComparator
|
||||
{
|
||||
@ -6042,23 +6021,20 @@ nsHTMLEditRules::GetChildNodesForOperation(nsIDOMNode *inNode,
|
||||
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// GetListActionNodes:
|
||||
//
|
||||
nsresult
|
||||
nsHTMLEditRules::GetListActionNodes(nsCOMArray<nsIDOMNode> &outArrayOfNodes,
|
||||
nsresult
|
||||
nsHTMLEditRules::GetListActionNodes(nsCOMArray<nsIDOMNode> &outArrayOfNodes,
|
||||
bool aEntireList,
|
||||
bool aDontTouchContent)
|
||||
{
|
||||
nsresult res = NS_OK;
|
||||
|
||||
|
||||
NS_ENSURE_STATE(mHTMLEditor);
|
||||
nsRefPtr<Selection> selection = mHTMLEditor->GetSelection();
|
||||
NS_ENSURE_TRUE(selection, NS_ERROR_FAILURE);
|
||||
// added this in so that ui code can ask to change an entire list, even if selection
|
||||
// is only in part of it. used by list item dialog.
|
||||
if (aEntireList)
|
||||
{
|
||||
{
|
||||
uint32_t rangeCount = selection->RangeCount();
|
||||
for (uint32_t rangeIdx = 0; rangeIdx < rangeCount; ++rangeIdx) {
|
||||
nsRefPtr<nsRange> range = selection->GetRangeAt(rangeIdx);
|
||||
@ -6094,8 +6070,8 @@ nsHTMLEditRules::GetListActionNodes(nsCOMArray<nsIDOMNode> &outArrayOfNodes,
|
||||
outArrayOfNodes, aDontTouchContent);
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
}
|
||||
|
||||
// pre process our list of nodes...
|
||||
|
||||
// pre process our list of nodes...
|
||||
int32_t listCount = outArrayOfNodes.Count();
|
||||
int32_t i;
|
||||
for (i=listCount-1; i>=0; i--)
|
||||
@ -6108,7 +6084,7 @@ nsHTMLEditRules::GetListActionNodes(nsCOMArray<nsIDOMNode> &outArrayOfNodes,
|
||||
{
|
||||
outArrayOfNodes.RemoveObjectAt(i);
|
||||
}
|
||||
|
||||
|
||||
// scan for table elements and divs. If we find table elements other than table,
|
||||
// replace it with a list of any editable non-table content.
|
||||
if (nsHTMLEditUtils::IsTableElementButNotTable(testNode))
|
||||
@ -6402,8 +6378,7 @@ nsHTMLEditRules::GetNodesFromPoint(::DOMPoint point,
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
|
||||
// expand the range to include adjacent inlines
|
||||
res = PromoteRange(range, operation);
|
||||
NS_ENSURE_SUCCESS(res, res);
|
||||
PromoteRange(*range, operation);
|
||||
|
||||
// make array of ranges
|
||||
nsTArray<nsRefPtr<nsRange>> arrayOfRanges;
|
||||
|
@ -275,7 +275,7 @@ protected:
|
||||
nsresult GetPromotedRanges(mozilla::dom::Selection* aSelection,
|
||||
nsTArray<nsRefPtr<nsRange>>& outArrayOfRanges,
|
||||
EditAction inOperationType);
|
||||
nsresult PromoteRange(nsRange* inRange, EditAction inOperationType);
|
||||
void PromoteRange(nsRange& aRange, EditAction inOperationType);
|
||||
enum class TouchContent { no, yes };
|
||||
nsresult GetNodesForOperation(nsTArray<nsRefPtr<nsRange>>& aArrayOfRanges,
|
||||
nsTArray<nsCOMPtr<nsINode>>& aOutArrayOfNodes,
|
||||
|
Loading…
Reference in New Issue
Block a user