| /* |
| * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "InsertLineBreakCommand.h" |
| |
| #include "CSSMutableStyleDeclaration.h" |
| #include "Document.h" |
| #include "Element.h" |
| #include "Frame.h" |
| #include "Text.h" |
| #include "VisiblePosition.h" |
| #include "Range.h" |
| #include "htmlediting.h" |
| #include "HTMLNames.h" |
| #include "visible_units.h" |
| |
| namespace WebCore { |
| |
| using namespace HTMLNames; |
| |
| InsertLineBreakCommand::InsertLineBreakCommand(Document* document) |
| : CompositeEditCommand(document) |
| { |
| } |
| |
| bool InsertLineBreakCommand::preservesTypingStyle() const |
| { |
| return true; |
| } |
| |
| void InsertLineBreakCommand::insertNodeAfterPosition(Node *node, const Position &pos) |
| { |
| // Insert the BR after the caret position. In the case the |
| // position is a block, do an append. We don't want to insert |
| // the BR *after* the block. |
| Position upstream(pos.upstream()); |
| Node *cb = pos.node()->enclosingBlockFlowElement(); |
| if (cb == pos.node()) |
| appendNode(node, cb); |
| else |
| insertNodeAfter(node, pos.node()); |
| } |
| |
| void InsertLineBreakCommand::insertNodeBeforePosition(Node *node, const Position &pos) |
| { |
| // Insert the BR after the caret position. In the case the |
| // position is a block, do an append. We don't want to insert |
| // the BR *before* the block. |
| Position upstream(pos.upstream()); |
| Node *cb = pos.node()->enclosingBlockFlowElement(); |
| if (cb == pos.node()) |
| appendNode(node, cb); |
| else |
| insertNodeBefore(node, pos.node()); |
| } |
| |
| void InsertLineBreakCommand::doApply() |
| { |
| deleteSelection(); |
| Selection selection = endingSelection(); |
| if (selection.isNone()) |
| return; |
| |
| Position pos(selection.start().upstream()); |
| Position canonicalPos(VisiblePosition(pos).deepEquivalent()); |
| |
| pos = positionAvoidingSpecialElementBoundary(pos); |
| |
| Node* styleNode = pos.node(); |
| bool isTabSpan = isTabSpanTextNode(styleNode); |
| if (isTabSpan) |
| styleNode = styleNode->parentNode()->parentNode(); |
| RenderObject* styleRenderer = styleNode->renderer(); |
| bool useBreakElement = !styleRenderer || !styleRenderer->style()->preserveNewline(); |
| |
| RefPtr<Node> nodeToInsert; |
| if (useBreakElement) |
| nodeToInsert = createBreakElement(document()); |
| else |
| nodeToInsert = document()->createTextNode("\n"); |
| // FIXME: Need to merge text nodes when inserting just after or before text. |
| |
| if (isTabSpan) { |
| insertNodeAtTabSpanPosition(nodeToInsert.get(), pos); |
| setEndingSelection(Selection(Position(nodeToInsert->traverseNextNode(), 0), DOWNSTREAM)); |
| } else if (canonicalPos.node()->renderer() && canonicalPos.node()->renderer()->isTable() || |
| canonicalPos.node()->hasTagName(hrTag)) { |
| if (canonicalPos.offset() == 0) { |
| insertNodeBefore(nodeToInsert.get(), canonicalPos.node()); |
| // Insert an extra br or '\n' if the just inserted one collapsed. |
| if (!isStartOfParagraph(VisiblePosition(Position(nodeToInsert.get(), 0)))) |
| insertNodeBefore(nodeToInsert->cloneNode(false).get(), nodeToInsert.get()); |
| // Leave the selection where it was, just before the table/horizontal rule. |
| } else if (canonicalPos.offset() == maxDeepOffset(canonicalPos.node())) { |
| insertNodeAfter(nodeToInsert.get(), canonicalPos.node()); |
| setEndingSelection(Selection(VisiblePosition(Position(nodeToInsert.get(), 0)))); |
| } else |
| // There aren't any VisiblePositions like this yet. |
| ASSERT_NOT_REACHED(); |
| // FIXME: The following doesn't handle positions at the ends of anonymous blocks, and |
| // those cases are buggy. |
| } else if (isEndOfBlock(selection.visibleStart())) { |
| insertNodeAt(nodeToInsert.get(), pos.node(), pos.offset()); |
| VisiblePosition endingPosition(endOfBlock(VisiblePosition(pos))); |
| |
| // Insert an extra br or '\n' if the inserted one collapsed. |
| if (!isStartOfParagraph(endingPosition)) |
| insertNodeBefore(nodeToInsert->cloneNode(false).get(), nodeToInsert.get()); |
| |
| setEndingSelection(Selection(endingPosition)); |
| } else if (pos.offset() <= pos.node()->caretMinOffset()) { |
| // Insert node before downstream position, and place caret there as well. |
| Position endingPosition = pos.downstream(); |
| insertNodeBeforePosition(nodeToInsert.get(), endingPosition); |
| setEndingSelection(Selection(endingPosition, DOWNSTREAM)); |
| } else if (pos.offset() >= pos.node()->caretMaxOffset()) { |
| // Insert BR after this node. Place caret in the position that is downstream |
| // of the current position, reckoned before inserting the BR in between. |
| Position endingPosition = pos.downstream(); |
| insertNodeAfterPosition(nodeToInsert.get(), pos); |
| setEndingSelection(Selection(endingPosition, DOWNSTREAM)); |
| } else { |
| // Split a text node |
| ASSERT(pos.node()->isTextNode()); |
| |
| // Do the split |
| ExceptionCode ec = 0; |
| Text *textNode = static_cast<Text *>(pos.node()); |
| RefPtr<Text> textBeforeNode = document()->createTextNode(textNode->substringData(0, selection.start().offset(), ec)); |
| deleteTextFromNode(textNode, 0, pos.offset()); |
| insertNodeBefore(textBeforeNode.get(), textNode); |
| insertNodeBefore(nodeToInsert.get(), textNode); |
| Position endingPosition = Position(textNode, 0); |
| |
| // Handle whitespace that occurs after the split |
| updateLayout(); |
| if (!endingPosition.isRenderedCharacter()) { |
| // Clear out all whitespace and insert one non-breaking space |
| deleteInsignificantTextDownstream(endingPosition); |
| ASSERT(!textNode->renderer() || textNode->renderer()->style()->collapseWhiteSpace()); |
| insertTextIntoNode(textNode, 0, nonBreakingSpaceString()); |
| } |
| |
| setEndingSelection(Selection(endingPosition, DOWNSTREAM)); |
| } |
| |
| // Handle the case where there is a typing style. |
| // FIXME: Improve typing style. |
| // See this bug: <rdar://problem/3769899> Implementation of typing style needs improvement |
| |
| CSSMutableStyleDeclaration* typingStyle = document()->frame()->typingStyle(); |
| |
| if (typingStyle && typingStyle->length() > 0) { |
| Selection selectionBeforeStyle = endingSelection(); |
| applyStyle(typingStyle, Position(nodeToInsert.get(), 0), |
| Position(nodeToInsert.get(), maxDeepOffset(nodeToInsert.get()))); |
| setEndingSelection(selectionBeforeStyle); |
| } |
| |
| rebalanceWhitespace(); |
| } |
| |
| } |