| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | |
| 4 * | |
| 5 * Redistribution and use in source and binary forms, with or without | |
| 6 * modification, are permitted provided that the following conditions | |
| 7 * are met: | |
| 8 * | |
| 9 * 1. Redistributions of source code must retain the above copyright | |
| 10 * notice, this list of conditions and the following disclaimer. | |
| 11 * 2. Redistributions in binary form must reproduce the above copyright | |
| 12 * notice, this list of conditions and the following disclaimer in the | |
| 13 * documentation and/or other materials provided with the distribution. | |
| 14 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of | |
| 15 * its contributors may be used to endorse or promote products derived | |
| 16 * from this software without specific prior written permission. | |
| 17 * | |
| 18 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | |
| 19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
| 20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
| 21 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | |
| 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 28 */ | |
| 29 | |
| 30 | |
| 31 #ifndef DOMSelection_h | |
| 32 #define DOMSelection_h | |
| 33 | |
| 34 #include "bindings/core/v8/ScriptWrappable.h" | |
| 35 #include "core/frame/DOMWindowProperty.h" | |
| 36 #include "platform/heap/Handle.h" | |
| 37 #include "wtf/Forward.h" | |
| 38 #include "wtf/PassRefPtr.h" | |
| 39 #include "wtf/RefCounted.h" | |
| 40 | |
| 41 namespace blink { | |
| 42 | |
| 43 class ExceptionState; | |
| 44 class LocalFrame; | |
| 45 class Node; | |
| 46 class Position; | |
| 47 class Range; | |
| 48 class TreeScope; | |
| 49 class VisibleSelection; | |
| 50 | |
| 51 class DOMSelection FINAL : public RefCountedWillBeGarbageCollectedFinalized<DOMS
election>, public ScriptWrappable, public DOMWindowProperty { | |
| 52 public: | |
| 53 static PassRefPtrWillBeRawPtr<DOMSelection> create(const TreeScope* treeScop
e) | |
| 54 { | |
| 55 return adoptRefWillBeNoop(new DOMSelection(treeScope)); | |
| 56 } | |
| 57 | |
| 58 void clearTreeScope(); | |
| 59 | |
| 60 // FIXME: Reorder API functions according to Selection.idl. | |
| 61 // Safari Selection Object API | |
| 62 // These methods return the valid equivalents of internal editing positions. | |
| 63 Node* baseNode() const; | |
| 64 Node* extentNode() const; | |
| 65 int baseOffset() const; | |
| 66 int extentOffset() const; | |
| 67 String type() const; | |
| 68 void setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int
extentOffset, ExceptionState&); | |
| 69 void modify(const String& alter, const String& direction, const String& gran
ularity); | |
| 70 | |
| 71 // Mozilla Selection Object API | |
| 72 // In Firefox, anchor/focus are the equal to the start/end of the selection, | |
| 73 // but reflect the direction in which the selection was made by the user. Th
at does | |
| 74 // not mean that they are base/extent, since the base/extent don't reflect | |
| 75 // expansion. | |
| 76 // These methods return the valid equivalents of internal editing positions. | |
| 77 Node* anchorNode() const; | |
| 78 int anchorOffset() const; | |
| 79 Node* focusNode() const; | |
| 80 int focusOffset() const; | |
| 81 bool isCollapsed() const; | |
| 82 int rangeCount() const; | |
| 83 void collapse(Node*, int offset, ExceptionState&); | |
| 84 void collapse(Node*, ExceptionState&); | |
| 85 void collapseToEnd(ExceptionState&); | |
| 86 void collapseToStart(ExceptionState&); | |
| 87 void extend(Node*, int offset, ExceptionState&); | |
| 88 void extend(Node*, ExceptionState&); | |
| 89 PassRefPtrWillBeRawPtr<Range> getRangeAt(int, ExceptionState&); | |
| 90 void removeAllRanges(); | |
| 91 void addRange(Range*); | |
| 92 void deleteFromDocument(); | |
| 93 bool containsNode(const Node*, bool partlyContained) const; | |
| 94 void selectAllChildren(Node*, ExceptionState&); | |
| 95 | |
| 96 String toString(); | |
| 97 | |
| 98 // Microsoft Selection Object API | |
| 99 void empty(); | |
| 100 | |
| 101 void trace(Visitor* visitor) { visitor->trace(m_treeScope); } | |
| 102 | |
| 103 private: | |
| 104 explicit DOMSelection(const TreeScope*); | |
| 105 | |
| 106 // Convenience method for accessors, does not check m_frame present. | |
| 107 const VisibleSelection& visibleSelection() const; | |
| 108 | |
| 109 Node* shadowAdjustedNode(const Position&) const; | |
| 110 int shadowAdjustedOffset(const Position&) const; | |
| 111 | |
| 112 bool isValidForPosition(Node*) const; | |
| 113 | |
| 114 void addConsoleError(const String& message); | |
| 115 | |
| 116 RawPtrWillBeMember<const TreeScope> m_treeScope; | |
| 117 }; | |
| 118 | |
| 119 } // namespace blink | |
| 120 | |
| 121 #endif // DOMSelection_h | |
| OLD | NEW |