OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
3 * reserved. | 3 * reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
11 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
12 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
13 * | 13 * |
14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 #ifndef SelectionEditor_h | 27 #ifndef SelectionEditor_h |
28 #define SelectionEditor_h | 28 #define SelectionEditor_h |
29 | 29 |
| 30 #include "core/dom/SynchronousMutationObserver.h" |
30 #include "core/editing/FrameSelection.h" | 31 #include "core/editing/FrameSelection.h" |
| 32 #include "core/editing/SelectionTemplate.h" |
31 #include "core/events/EventDispatchResult.h" | 33 #include "core/events/EventDispatchResult.h" |
32 | 34 |
33 namespace blink { | 35 namespace blink { |
34 | 36 |
35 // TODO(yosin): We will rename |SelectionEditor| to appropriate name since | 37 // TODO(yosin): We will rename |SelectionEditor| to appropriate name since |
36 // it is no longer have a changing selection functionality, it was moved to | 38 // it is no longer have a changing selection functionality, it was moved to |
37 // |SelectionModifier| class. | 39 // |SelectionModifier| class. |
38 class SelectionEditor final | 40 class SelectionEditor final : public GarbageCollectedFinalized<SelectionEditor>, |
39 : public GarbageCollectedFinalized<SelectionEditor> { | 41 public SynchronousMutationObserver { |
40 WTF_MAKE_NONCOPYABLE(SelectionEditor); | 42 WTF_MAKE_NONCOPYABLE(SelectionEditor); |
| 43 USING_GARBAGE_COLLECTED_MIXIN(SelectionEditor); |
41 | 44 |
42 public: | 45 public: |
43 static SelectionEditor* create(LocalFrame& frame) { | 46 static SelectionEditor* create(LocalFrame& frame) { |
44 return new SelectionEditor(frame); | 47 return new SelectionEditor(frame); |
45 } | 48 } |
| 49 |
46 virtual ~SelectionEditor(); | 50 virtual ~SelectionEditor(); |
47 void dispose(); | 51 void dispose(); |
48 | 52 |
49 bool hasEditableStyle() const { return m_selection.hasEditableStyle(); } | |
50 bool isContentEditable() const { return m_selection.isContentEditable(); } | |
51 bool isContentRichlyEditable() const { | |
52 return m_selection.isContentRichlyEditable(); | |
53 } | |
54 | |
55 bool setSelectedRange(const EphemeralRange&, | |
56 TextAffinity, | |
57 SelectionDirectionalMode, | |
58 FrameSelection::SetSelectionOptions); | |
59 | |
60 template <typename Strategy> | 53 template <typename Strategy> |
61 const VisibleSelectionTemplate<Strategy>& visibleSelection() const; | 54 const VisibleSelectionTemplate<Strategy>& visibleSelection() const; |
62 void setVisibleSelection(const VisibleSelection&, | 55 const SelectionInDOMTree& selectionInDOMTree() const; |
63 FrameSelection::SetSelectionOptions); | |
64 void setVisibleSelection(const VisibleSelectionInFlatTree&, | |
65 FrameSelection::SetSelectionOptions); | |
66 | 56 |
67 void setWithoutValidation(const Position& base, const Position& extent); | 57 bool hasEditableStyle() const; |
| 58 bool isContentEditable() const; |
| 59 bool isContentRichlyEditable() const; |
| 60 |
| 61 const VisibleSelection& computeVisibleSelectionInDOMTree() const; |
| 62 const VisibleSelectionInFlatTree& computeVisibleSelectionInFlatTree() const; |
| 63 void setSelection(const SelectionInDOMTree&); |
68 | 64 |
69 void documentAttached(Document*); | 65 void documentAttached(Document*); |
70 void documentDetached(const Document&); | |
71 | 66 |
72 // If this FrameSelection has a logical range which is still valid, this | 67 // If this FrameSelection has a logical range which is still valid, this |
73 // function return its clone. Otherwise, the return value from underlying | 68 // function return its clone. Otherwise, the return value from underlying |
74 // |VisibleSelection|'s |firstRange()| is returned. | 69 // |VisibleSelection|'s |firstRange()| is returned. |
75 Range* firstRange() const; | 70 Range* firstRange() const; |
76 | 71 |
77 // There functions are exposed for |FrameSelection|. | 72 // There functions are exposed for |FrameSelection|. |
78 void resetLogicalRange(); | 73 void resetLogicalRange(); |
79 void setLogicalRange(Range*); | 74 void setLogicalRange(Range*); |
80 | 75 |
81 // Updates |m_selection| and |m_selectionInFlatTree| with up-to-date | 76 // Updates |m_selection| and |m_selectionInFlatTree| with up-to-date |
82 // layout if needed. | 77 // layout if needed. |
83 void updateIfNeeded(); | 78 void updateIfNeeded(); |
84 | 79 |
85 DECLARE_TRACE(); | 80 DECLARE_TRACE(); |
86 | 81 |
87 private: | 82 private: |
88 explicit SelectionEditor(LocalFrame&); | 83 explicit SelectionEditor(LocalFrame&); |
89 | 84 |
90 const Document& document() const; | 85 const Document& document() const; |
| 86 Document& document(); |
91 LocalFrame* frame() const { return m_frame.get(); } | 87 LocalFrame* frame() const { return m_frame.get(); } |
92 | 88 |
| 89 void assertSelectionValid() const; |
93 void clearVisibleSelection(); | 90 void clearVisibleSelection(); |
| 91 void markCacheDirty(); |
94 bool shouldAlwaysUseDirectionalSelection() const; | 92 bool shouldAlwaysUseDirectionalSelection() const; |
95 | 93 |
96 Member<Document> m_document; | 94 // VisibleSelection cache related |
| 95 bool needsUpdateVisibleSelection() const; |
| 96 void updateCachedVisibleSelectionIfNeeded(); |
| 97 |
| 98 void didFinishTextChange(const Position& base, const Position& extent); |
| 99 void didFinishDOMMutation(); |
| 100 |
| 101 // Implementation of |SynchronousMutationObsderver| member functions. |
| 102 void contextDestroyed(Document*) final; |
| 103 void didChangeChildren(const ContainerNode&) final; |
| 104 void didMergeTextNodes(const Text& mergedNode, |
| 105 const NodeWithIndex& nodeToBeRemovedWithIndex, |
| 106 unsigned oldLength) final; |
| 107 void didSplitTextNode(const Text&) final; |
| 108 void didUpdateCharacterData(CharacterData*, |
| 109 unsigned offset, |
| 110 unsigned oldLength, |
| 111 unsigned newLength) final; |
| 112 void nodeChildrenWillBeRemoved(ContainerNode&) final; |
| 113 void nodeWillBeRemoved(Node&) final; |
| 114 |
97 Member<LocalFrame> m_frame; | 115 Member<LocalFrame> m_frame; |
98 | 116 |
99 VisibleSelection m_selection; | 117 SelectionInDOMTree m_selection; |
100 VisibleSelectionInFlatTree m_selectionInFlatTree; | |
101 bool m_observingVisibleSelection; | |
102 | 118 |
103 // The range specified by the user, which may not be visually canonicalized | 119 // The range specified by the user, which may not be visually canonicalized |
104 // (hence "logical"). This will be invalidated if the underlying | 120 // (hence "logical"). This will be invalidated if the underlying |
105 // |VisibleSelection| changes. If that happens, this variable will | 121 // |VisibleSelection| changes. If that happens, this variable will |
106 // become |nullptr|, in which case logical positions == visible positions. | 122 // become |nullptr|, in which case logical positions == visible positions. |
107 Member<Range> m_logicalRange; | 123 Member<Range> m_logicalRange; |
| 124 |
| 125 mutable VisibleSelection m_cachedVisibleSelectionInDOMTree; |
| 126 mutable VisibleSelectionInFlatTree m_cachedVisibleSelectionInFlatTree; |
| 127 mutable uint64_t m_styleVersion = static_cast<uint64_t>(-1); |
| 128 mutable bool m_cacheIsDirty = false; |
108 }; | 129 }; |
109 | 130 |
110 } // namespace blink | 131 } // namespace blink |
111 | 132 |
112 #endif // SelectionEditor_h | 133 #endif // SelectionEditor_h |
OLD | NEW |