06424f29cea82ea09e9d712c7592ef1c9382e5df
[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/RenderView.h"
37 #include "platform/graphics/GraphicsContext.h"
38
39 namespace blink {
40
41 CaretBase::CaretBase(CaretVisibility visibility)
42     : m_caretRectNeedsUpdate(true)
43     , m_caretVisibility(visibility)
44 {
45 }
46
47 DragCaretController::DragCaretController()
48     : CaretBase(Visible)
49 {
50 }
51
52 PassOwnPtrWillBeRawPtr<DragCaretController> DragCaretController::create()
53 {
54     return adoptPtrWillBeNoop(new DragCaretController);
55 }
56
57 bool DragCaretController::isContentRichlyEditable() const
58 {
59     return isRichlyEditablePosition(m_position.deepEquivalent());
60 }
61
62 void DragCaretController::setCaretPosition(const VisiblePosition& position)
63 {
64     if (Node* node = m_position.deepEquivalent().deprecatedNode())
65         invalidateCaretRect(node);
66     m_position = position;
67     setCaretRectNeedsUpdate();
68     Document* document = 0;
69     if (Node* node = m_position.deepEquivalent().deprecatedNode()) {
70         invalidateCaretRect(node);
71         document = &node->document();
72     }
73     if (m_position.isNull() || m_position.isOrphan()) {
74         clearCaretRect();
75     } else {
76         document->updateRenderTreeIfNeeded();
77         updateCaretRect(document, m_position);
78     }
79 }
80
81 static bool removingNodeRemovesPosition(Node& node, const Position& position)
82 {
83     if (!position.anchorNode())
84         return false;
85
86     if (position.anchorNode() == node)
87         return true;
88
89     if (!node.isElementNode())
90         return false;
91
92     Element& element = toElement(node);
93     return element.containsIncludingShadowDOM(position.anchorNode());
94 }
95
96 void DragCaretController::nodeWillBeRemoved(Node& node)
97 {
98     if (!hasCaret() || !node.inActiveDocument())
99         return;
100
101     if (!removingNodeRemovesPosition(node, m_position.deepEquivalent()))
102         return;
103
104     m_position.deepEquivalent().document()->renderView()->clearSelection();
105     clear();
106 }
107
108 void DragCaretController::trace(Visitor* visitor)
109 {
110     visitor->trace(m_position);
111 }
112
113 void CaretBase::clearCaretRect()
114 {
115     m_caretLocalRect = LayoutRect();
116 }
117
118 static inline bool caretRendersInsideNode(Node* node)
119 {
120     return node && !isRenderedTableElement(node) && !editingIgnoresContent(node);
121 }
122
123 RenderBlock* CaretBase::caretRenderer(Node* node)
124 {
125     if (!node)
126         return 0;
127
128     RenderObject* renderer = node->renderer();
129     if (!renderer)
130         return 0;
131
132     // if caretNode is a block and caret is inside it then caret should be painted by that block
133     bool paintedByBlock = renderer->isRenderBlock() && caretRendersInsideNode(node);
134     return paintedByBlock ? toRenderBlock(renderer) : renderer->containingBlock();
135 }
136
137 bool CaretBase::updateCaretRect(Document* document, const PositionWithAffinity& caretPosition)
138 {
139     m_caretLocalRect = LayoutRect();
140
141     m_caretRectNeedsUpdate = false;
142
143     if (caretPosition.position().isNull())
144         return false;
145
146     ASSERT(caretPosition.position().deprecatedNode()->renderer());
147
148     // First compute a rect local to the renderer at the selection start.
149     RenderObject* renderer;
150     LayoutRect localRect = localCaretRectOfPosition(caretPosition, renderer);
151
152     // Get the renderer that will be responsible for painting the caret
153     // (which is either the renderer we just found, or one of its containers).
154     RenderBlock* caretPainter = caretRenderer(caretPosition.position().deprecatedNode());
155
156     // Compute an offset between the renderer and the caretPainter.
157     bool unrooted = false;
158     while (renderer != caretPainter) {
159         RenderObject* containerObject = renderer->container();
160         if (!containerObject) {
161             unrooted = true;
162             break;
163         }
164         localRect.move(renderer->offsetFromContainer(containerObject, localRect.location()));
165         renderer = containerObject;
166     }
167
168     if (!unrooted)
169         m_caretLocalRect = localRect;
170
171     return true;
172 }
173
174 bool CaretBase::updateCaretRect(Document* document, const VisiblePosition& caretPosition)
175 {
176     return updateCaretRect(document, PositionWithAffinity(caretPosition.deepEquivalent(), caretPosition.affinity()));
177 }
178
179 RenderBlock* DragCaretController::caretRenderer() const
180 {
181     return CaretBase::caretRenderer(m_position.deepEquivalent().deprecatedNode());
182 }
183
184 IntRect CaretBase::absoluteBoundsForLocalRect(Node* node, const LayoutRect& rect) const
185 {
186     RenderBlock* caretPainter = caretRenderer(node);
187     if (!caretPainter)
188         return IntRect();
189
190     LayoutRect localRect(rect);
191     caretPainter->flipForWritingMode(localRect);
192     return caretPainter->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
193 }
194
195 void CaretBase::repaintCaretForLocalRect(Node* node, const LayoutRect& rect)
196 {
197     RenderBlock* caretPainter = caretRenderer(node);
198     if (!caretPainter)
199         return;
200
201     // FIXME: Need to over-paint 1 pixel to workaround some rounding problems.
202     // https://bugs.webkit.org/show_bug.cgi?id=108283
203     LayoutRect inflatedRect = rect;
204     inflatedRect.inflate(1);
205
206     caretPainter->invalidatePaintRectangle(inflatedRect);
207 }
208
209 bool CaretBase::shouldRepaintCaret(const RenderView* view, bool isContentEditable) const
210 {
211     ASSERT(view);
212     bool caretBrowsing = false;
213     if (FrameView* frameView = view->frameView()) {
214         LocalFrame& frame = frameView->frame(); // The frame where the selection started
215         caretBrowsing = frame.settings() && frame.settings()->caretBrowsingEnabled();
216     }
217     return (caretBrowsing || isContentEditable);
218 }
219
220 void CaretBase::invalidateCaretRect(Node* node, bool caretRectChanged)
221 {
222     // EDIT FIXME: This is an unfortunate hack.
223     // Basically, we can't trust this layout position since we
224     // can't guarantee that the check to see if we are in unrendered
225     // content will work at this point. We may have to wait for
226     // a layout and re-render of the document to happen. So, resetting this
227     // flag will cause another caret layout to happen the first time
228     // that we try to paint the caret after this call. That one will work since
229     // it happens after the document has accounted for any editing
230     // changes which may have been done.
231     // And, we need to leave this layout here so the caret moves right
232     // away after clicking.
233     m_caretRectNeedsUpdate = true;
234
235     if (caretRectChanged)
236         return;
237
238     if (RenderView* view = node->document().renderView()) {
239         if (shouldRepaintCaret(view, node->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable)))
240             repaintCaretForLocalRect(node, localCaretRectWithoutUpdate());
241     }
242 }
243
244 void CaretBase::paintCaret(Node* node, GraphicsContext* context, const LayoutPoint& paintOffset, const LayoutRect& clipRect) const
245 {
246     if (m_caretVisibility == Hidden)
247         return;
248
249     LayoutRect drawingRect = localCaretRectWithoutUpdate();
250     if (RenderBlock* renderer = caretRenderer(node))
251         renderer->flipForWritingMode(drawingRect);
252     drawingRect.moveBy(roundedIntPoint(paintOffset));
253     LayoutRect caret = intersection(drawingRect, clipRect);
254     if (caret.isEmpty())
255         return;
256
257     Color caretColor = Color::black;
258
259     Element* element;
260     if (node->isElementNode())
261         element = toElement(node);
262     else
263         element = node->parentElement();
264
265     if (element && element->renderer())
266         caretColor = element->renderer()->resolveColor(CSSPropertyColor);
267
268     context->fillRect(caret, caretColor);
269 }
270
271 void DragCaretController::paintDragCaret(LocalFrame* frame, GraphicsContext* p, const LayoutPoint& paintOffset, const LayoutRect& clipRect) const
272 {
273     if (m_position.deepEquivalent().deprecatedNode()->document().frame() == frame)
274         paintCaret(m_position.deepEquivalent().deprecatedNode(), p, paintOffset, clipRect);
275 }
276
277 }