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 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #include "core/editing/CaretBase.h" | 29 #include "core/editing/CaretBase.h" |
30 | 30 |
31 namespace blink { | 31 namespace blink { |
32 | 32 |
33 class DragCaretController final : public GarbageCollectedFinalized<DragCaretCont
roller> { | 33 class DragCaretController final : public GarbageCollectedFinalized<DragCaretCont
roller> { |
34 WTF_MAKE_NONCOPYABLE(DragCaretController); | 34 WTF_MAKE_NONCOPYABLE(DragCaretController); |
35 public: | 35 public: |
36 static DragCaretController* create(); | 36 static DragCaretController* create(); |
37 | 37 |
38 LayoutBlock* caretLayoutObject() const; | |
39 void paintDragCaret(LocalFrame*, GraphicsContext&, const LayoutPoint&) const
; | 38 void paintDragCaret(LocalFrame*, GraphicsContext&, const LayoutPoint&) const
; |
40 | 39 |
41 bool isContentEditable() const; | 40 bool hasCaretIn(const LayoutBlock&) const; |
42 bool isContentRichlyEditable() const; | 41 bool isContentRichlyEditable() const; |
43 | 42 |
44 bool hasCaret() const { return m_position.isNotNull(); } | 43 bool hasCaret() const { return m_position.isNotNull(); } |
45 const VisiblePosition& caretPosition() { return m_position; } | 44 const VisiblePosition& caretPosition() { return m_position; } |
46 void setCaretPosition(const PositionWithAffinity&); | 45 void setCaretPosition(const PositionWithAffinity&); |
47 void clear() { setCaretPosition(PositionWithAffinity()); } | 46 void clear() { setCaretPosition(PositionWithAffinity()); } |
48 | 47 |
49 void nodeWillBeRemoved(Node&); | 48 void nodeWillBeRemoved(Node&); |
50 | 49 |
51 DECLARE_TRACE(); | 50 DECLARE_TRACE(); |
52 | 51 |
53 private: | 52 private: |
54 DragCaretController(); | 53 DragCaretController(); |
55 | 54 |
56 VisiblePosition m_position; | 55 VisiblePosition m_position; |
57 const Member<CaretBase> m_caretBase; | 56 const Member<CaretBase> m_caretBase; |
58 }; | 57 }; |
59 | 58 |
60 } // namespace blink | 59 } // namespace blink |
61 | 60 |
62 #endif // DragCaretController_h | 61 #endif // DragCaretController_h |
OLD | NEW |