| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef DragCaretController_h | 26 #ifndef DragCaretController_h |
| 27 #define DragCaretController_h | 27 #define DragCaretController_h |
| 28 | 28 |
| 29 #include "core/editing/Caret.h" | 29 #include "core/editing/Caret.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class DragCaretController final : public NoBaseWillBeGarbageCollected<DragCaretC
ontroller>, private CaretBase { | 33 class DragCaretController final : public NoBaseWillBeGarbageCollectedFinalized<D
ragCaretController>, private CaretBase { |
| 34 WTF_MAKE_NONCOPYABLE(DragCaretController); | 34 WTF_MAKE_NONCOPYABLE(DragCaretController); |
| 35 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(DragCaretController); | 35 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(DragCaretController); |
| 36 public: | 36 public: |
| 37 static PassOwnPtrWillBeRawPtr<DragCaretController> create(); | 37 static PassOwnPtrWillBeRawPtr<DragCaretController> create(); |
| 38 | 38 |
| 39 LayoutBlock* caretLayoutObject() const; | 39 LayoutBlock* caretLayoutObject() const; |
| 40 void paintDragCaret(LocalFrame*, GraphicsContext*, const LayoutPoint&, const
LayoutRect& clipRect) const; | 40 void paintDragCaret(LocalFrame*, GraphicsContext*, const LayoutPoint&, const
LayoutRect& clipRect) const; |
| 41 | 41 |
| 42 bool isContentEditable() const; | 42 bool isContentEditable() const; |
| 43 bool isContentRichlyEditable() const; | 43 bool isContentRichlyEditable() const; |
| 44 | 44 |
| 45 bool hasCaret() const { return m_position.isNotNull(); } | 45 bool hasCaret() const { return m_position.isNotNull(); } |
| 46 const VisiblePosition& caretPosition() { return m_position; } | 46 const VisiblePosition& caretPosition() { return m_position; } |
| 47 void setCaretPosition(const PositionWithAffinity&); | 47 void setCaretPosition(const PositionWithAffinity&); |
| 48 void clear() { setCaretPosition(PositionWithAffinity()); } | 48 void clear() { setCaretPosition(PositionWithAffinity()); } |
| 49 | 49 |
| 50 void nodeWillBeRemoved(Node&); | 50 void nodeWillBeRemoved(Node&); |
| 51 | 51 |
| 52 DECLARE_TRACE(); | 52 DECLARE_TRACE(); |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 DragCaretController(); | 55 DragCaretController(); |
| 56 | 56 |
| 57 VisiblePosition m_position; | 57 VisiblePosition m_position; |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } // namespace blink | 60 } // namespace blink |
| 61 | 61 |
| 62 #endif // DragCaretController_h | 62 #endif // DragCaretController_h |
| OLD | NEW |