Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / editing / Caret.cpp
1 /*
2  * Copyright (C) 2004, 2008, 2009, 2010 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "core/editing/Caret.h"
28
29 #include "core/dom/Document.h"
30 #include "core/editing/VisibleUnits.h"
31 #include "core/editing/htmlediting.h"
32 #include "core/frame/LocalFrame.h"
33 #include "core/frame/Settings.h"
34 #include "core/html/HTMLTextFormControlElement.h"
35 #include "core/rendering/RenderBlock.h"
36 #include "core/rendering/RenderLayer.h"
37 #include "core/rendering/RenderView.h"
38 #include "platform/graphics/GraphicsContext.h"
39
40 namespace blink {
41
42 CaretBase::CaretBase(CaretVisibility visibility)
43     : m_caretRectNeedsUpdate(true)
44     , m_caretVisibility(visibility)
45 {
46 }
47
48 DragCaretController::DragCaretController()
49     : CaretBase(Visible)
50 {
51 }
52
53 PassOwnPtrWillBeRawPtr<DragCaretController> DragCaretController::create()
54 {
55     return adoptPtrWillBeNoop(new DragCaretController);
56 }
57
58 bool DragCaretController::isContentRichlyEditable() const
59 {
60     return isRichlyEditablePosition(m_position.deepEquivalent());
61 }
62
63 void DragCaretController::setCaretPosition(const VisiblePosition& position)
64 {
65     // for querying RenderLayer::compositingState()
66     // This code is probably correct, since it doesn't occur in a stack that involves updating compositing state.
67     DisableCompositingQueryAsserts disabler;
68
69     if (Node* node = m_position.deepEquivalent().deprecatedNode())
70         invalidateCaretRect(node);
71     m_position = position;
72     setCaretRectNeedsUpdate();
73     Document* document = 0;
74     if (Node* node = m_position.deepEquivalent().deprecatedNode()) {
75         invalidateCaretRect(node);
76         document = &node->document();
77     }
78     if (m_position.isNull() || m_position.isOrphan()) {
79         clearCaretRect();
80     } else {
81         document->updateRenderTreeIfNeeded();
82         updateCaretRect(document, m_position);
83     }
84 }
85
86 static bool removingNodeRemovesPosition(Node& node, const Position& position)
87 {
88     if (!position.anchorNode())
89         return false;
90
91     if (position.anchorNode() == node)
92         return true;
93
94     if (!node.isElementNode())
95         return false;
96
97     Element& element = toElement(node);
98     return element.containsIncludingShadowDOM(position.anchorNode());
99 }
100
101 void DragCaretController::nodeWillBeRemoved(Node& node)
102 {
103     if (!hasCaret() || !node.inActiveDocument())
104         return;
105
106     if (!removingNodeRemovesPosition(node, m_position.deepEquivalent()))
107         return;
108
109     m_position.deepEquivalent().document()->renderView()->clearSelection();
110     clear();
111 }
112
113 void DragCaretController::trace(Visitor* visitor)
114 {
115     visitor->trace(m_position);
116 }
117
118 void CaretBase::clearCaretRect()
119 {
120     m_caretLocalRect = LayoutRect();
121 }
122
123 static inline bool caretRendersInsideNode(Node* node)
124 {
125     return node && !isRenderedTableElement(node) && !editingIgnoresContent(node);
126 }
127
128 RenderBlock* CaretBase::caretRenderer(Node* node)
129 {
130     if (!node)
131         return 0;
132
133     RenderObject* renderer = node->renderer();
134     if (!renderer)
135         return 0;
136
137     // if caretNode is a block and caret is inside it then caret should be painted by that block
138     bool paintedByBlock = renderer->isRenderBlock() && caretRendersInsideNode(node);
139     return paintedByBlock ? toRenderBlock(renderer) : renderer->containingBlock();
140 }
141
142 bool CaretBase::updateCaretRect(Document* document, const PositionWithAffinity& caretPosition)
143 {
144     m_caretLocalRect = LayoutRect();
145
146     m_caretRectNeedsUpdate = false;
147
148     if (caretPosition.position().isNull())
149         return false;
150
151     ASSERT(caretPosition.position().deprecatedNode()->renderer());
152
153     // First compute a rect local to the renderer at the selection start.
154     RenderObject* renderer;
155     LayoutRect localRect = localCaretRectOfPosition(caretPosition, renderer);
156
157     // Get the renderer that will be responsible for painting the caret
158     // (which is either the renderer we just found, or one of its containers).
159     RenderBlock* caretPainter = caretRenderer(caretPosition.position().deprecatedNode());
160
161     // Compute an offset between the renderer and the caretPainter.
162     bool unrooted = false;
163     while (renderer != caretPainter) {
164         RenderObject* containerObject = renderer->container();
165         if (!containerObject) {
166             unrooted = true;
167             break;
168         }
169         localRect.move(renderer->offsetFromContainer(containerObject, localRect.location()));
170         renderer = containerObject;
171     }
172
173     if (!unrooted)
174         m_caretLocalRect = localRect;
175
176     return true;
177 }
178
179 bool CaretBase::updateCaretRect(Document* document, const VisiblePosition& caretPosition)
180 {
181     return updateCaretRect(document, PositionWithAffinity(caretPosition.deepEquivalent(), caretPosition.affinity()));
182 }
183
184 RenderBlock* DragCaretController::caretRenderer() const
185 {
186     return CaretBase::caretRenderer(m_position.deepEquivalent().deprecatedNode());
187 }
188
189 IntRect CaretBase::absoluteBoundsForLocalRect(Node* node, const LayoutRect& rect) const
190 {
191     RenderBlock* caretPainter = caretRenderer(node);
192     if (!caretPainter)
193         return IntRect();
194
195     LayoutRect localRect(rect);
196     caretPainter->flipForWritingMode(localRect);
197     return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
198 }
199
200 void CaretBase::invalidateLocalCaretRect(Node* node, const LayoutRect& rect)
201 {
202     RenderBlock* caretPainter = caretRenderer(node);
203     if (!caretPainter)
204         return;
205
206     // FIXME: Need to over-paint 1 pixel to workaround some rounding problems.
207     // https://bugs.webkit.org/show_bug.cgi?id=108283
208     LayoutRect inflatedRect = rect;
209     inflatedRect.inflate(1);
210
211     caretPainter->invalidatePaintRectangle(inflatedRect);
212 }
213
214 bool CaretBase::shouldRepaintCaret(const RenderView* view, bool isContentEditable) const
215 {
216     ASSERT(view);
217     bool caretBrowsing = false;
218     if (FrameView* frameView = view->frameView()) {
219         LocalFrame& frame = frameView->frame(); // The frame where the selection started
220         caretBrowsing = frame.settings() && frame.settings()->caretBrowsingEnabled();
221     }
222     return (caretBrowsing || isContentEditable);
223 }
224
225 void CaretBase::invalidateCaretRect(Node* node, bool caretRectChanged)
226 {
227     // EDIT FIXME: This is an unfortunate hack.
228     // Basically, we can't trust this layout position since we
229     // can't guarantee that the check to see if we are in unrendered
230     // content will work at this point. We may have to wait for
231     // a layout and re-render of the document to happen. So, resetting this
232     // flag will cause another caret layout to happen the first time
233     // that we try to paint the caret after this call. That one will work since
234     // it happens after the document has accounted for any editing
235     // changes which may have been done.
236     // And, we need to leave this layout here so the caret moves right
237     // away after clicking.
238     m_caretRectNeedsUpdate = true;
239
240     if (caretRectChanged)
241         return;
242
243     if (RenderView* view = node->document().renderView()) {
244         if (shouldRepaintCaret(view, node->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable)))
245             invalidateLocalCaretRect(node, localCaretRectWithoutUpdate());
246     }
247 }
248
249 void CaretBase::paintCaret(Node* node, GraphicsContext* context, const LayoutPoint& paintOffset, const LayoutRect& clipRect) const
250 {
251     if (m_caretVisibility == Hidden)
252         return;
253
254     LayoutRect drawingRect = localCaretRectWithoutUpdate();
255     if (RenderBlock* renderer = caretRenderer(node))
256         renderer->flipForWritingMode(drawingRect);
257     drawingRect.moveBy(roundedIntPoint(paintOffset));
258     LayoutRect caret = intersection(drawingRect, clipRect);
259     if (caret.isEmpty())
260         return;
261
262     Color caretColor = Color::black;
263
264     Element* element;
265     if (node->isElementNode())
266         element = toElement(node);
267     else
268         element = node->parentElement();
269
270     if (element && element->renderer())
271         caretColor = element->renderer()->resolveColor(CSSPropertyColor);
272
273     context->fillRect(caret, caretColor);
274 }
275
276 void DragCaretController::paintDragCaret(LocalFrame* frame, GraphicsContext* p, const LayoutPoint& paintOffset, const LayoutRect& clipRect) const
277 {
278     if (m_position.deepEquivalent().deprecatedNode()->document().frame() == frame)
279         paintCaret(m_position.deepEquivalent().deprecatedNode(), p, paintOffset, clipRect);
280 }
281
282 }