HomeSort by relevance Sort by last modified time
    Searched full:frameselection (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.h 56 class FrameSelection FINAL : public NoBaseWillBeGarbageCollectedFinalized<FrameSelection>, public VisibleSelection::ChangeObserver, private CaretBase {
57 WTF_MAKE_NONCOPYABLE(FrameSelection);
59 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FrameSelection);
61 static PassOwnPtrWillBeRawPtr<FrameSelection> create(LocalFrame* frame = 0)
63 return adoptPtrWillBeNoop(new FrameSelection(frame));
65 virtual ~FrameSelection();
155 // If this FrameSelection has a logical range which is still valid, this function return its clone. Otherwise,
219 explicit FrameSelection(LocalFrame*);
249 void caretBlinkTimerFired(Timer<FrameSelection>*);
    [all...]
FrameSelection.cpp 27 #include "core/editing/FrameSelection.h"
94 FrameSelection::FrameSelection(LocalFrame* frame)
99 , m_caretBlinkTimer(this, &FrameSelection::caretBlinkTimerFired)
110 FrameSelection::~FrameSelection()
114 // it is finalized as a part object of FrameSelection.
119 Element* FrameSelection::rootEditableElementOrDocumentElement() const
125 ContainerNode* FrameSelection::rootEditableElementOrTreeScopeRootNode() const
135 void FrameSelection::moveTo(const VisiblePosition &pos, EUserTriggered userTriggered, CursorAlignOnScroll align
    [all...]
EditorCommand.cpp 42 #include "core/editing/FrameSelection.h"
224 frame.selection().setSelectedRange(newRange.get(), affinity, FrameSelection::NonDirectional, FrameSelection::CloseTyping);
228 static TriState selectionListState(const FrameSelection& selection, const QualifiedName& tagName)
402 bool selected = frame.selection().setSelectedRange(unionDOMRanges(mark.get(), frame.editor().selectedRange().get()).get(), DOWNSTREAM, FrameSelection::NonDirectional, FrameSelection::CloseTyping);
642 frame.selection().modify(FrameSelection::AlterationMove, DirectionBackward, CharacterGranularity, UserTriggered);
648 frame.selection().modify(FrameSelection::AlterationExtend, DirectionBackward, CharacterGranularity, UserTriggered);
654 return frame.selection().modify(FrameSelection::AlterationMove, DirectionForward, LineGranularity, UserTriggered);
659 frame.selection().modify(FrameSelection::AlterationExtend, DirectionForward, LineGranularity, UserTriggered)
    [all...]
FrameSelectionTest.cpp 6 #include "core/editing/FrameSelection.h"
34 FrameSelection& selection() const;
63 FrameSelection& FrameSelectionTest::selection() const
87 // update FrameSelection with the selection.
DOMSelection.cpp 42 #include "core/editing/FrameSelection.h"
178 FrameSelection& selection = m_frame->selection();
221 m_frame->selection().setSelectedRange(range.get(), DOWNSTREAM, m_frame->selection().isDirectional() ? FrameSelection::Directional : FrameSelection::NonDirectional);
291 FrameSelection::EAlteration alter;
293 alter = FrameSelection::AlterationExtend;
295 alter = FrameSelection::AlterationMove;
405 FrameSelection& selection = m_frame->selection();
446 FrameSelection& selection = m_frame->selection();
465 FrameSelection& selection = m_frame->selection()
    [all...]
SpellChecker.h 30 #include "core/editing/FrameSelection.h"
74 void respondToChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions);
Editor.h 34 #include "core/editing/FrameSelection.h"
216 void respondToChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions);
274 void changeSelectionAfterCommand(const VisibleSelection& newSelection, FrameSelection::SetSelectionOptions);
275 void notifyComponentsOnChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions);
TypingCommand.cpp 35 #include "core/editing/FrameSelection.h"
169 // FIXME: We shouldn't need to take selectionForInsertion. It should be identical to FrameSelection's current selection.
433 OwnPtrWillBeRawPtr<FrameSelection> selection = FrameSelection::create();
435 selection->modify(FrameSelection::AlterationExtend, DirectionBackward, granularity);
437 selection->modify(FrameSelection::AlterationExtend, DirectionBackward, CharacterGranularity);
464 selection->modify(FrameSelection::AlterationExtend, DirectionBackward, granularity);
535 OwnPtrWillBeRawPtr<FrameSelection> selection = FrameSelection::create();
537 selection->modify(FrameSelection::AlterationExtend, DirectionForward, granularity)
    [all...]
TextInsertionBaseCommand.cpp 33 #include "core/editing/FrameSelection.h"
Editor.cpp 236 FrameSelection& selection = frame().selection();
247 FrameSelection& selection = frame().selection();
543 void Editor::notifyComponentsOnChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions options)
699 changeSelectionAfterCommand(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle);
715 changeSelectionAfterCommand(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle);
    [all...]
Caret.h 75 bool m_caretRectNeedsUpdate; // true if m_caretRect (and m_absCaretBounds in FrameSelection) need to be calculated
EditCommand.cpp 32 #include "core/editing/FrameSelection.h"
RemoveFormatCommand.cpp 37 #include "core/editing/FrameSelection.h"
InputMethodController.cpp 313 frame().selection().setSelectedRange(selectedRange.get(), DOWNSTREAM, FrameSelection::NonDirectional, NotUserTriggered);
390 return frame().selection().setSelectedRange(range.get(), VP_DEFAULT_AFFINITY, FrameSelection::NonDirectional, FrameSelection::CloseTyping);
SpellChecker.cpp 425 frame().selection().modify(FrameSelection::AlterationMove, DirectionForward, CharacterGranularity);
643 frame().selection().modify(FrameSelection::AlterationMove, DirectionForward, CharacterGranularity);
647 frame().selection().modify(FrameSelection::AlterationMove, DirectionForward, CharacterGranularity);
    [all...]
InsertLineBreakCommand.cpp 33 #include "core/editing/FrameSelection.h"
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElementTest.cpp 10 #include "core/editing/FrameSelection.h"
116 FrameSelection& frameSelection = document().frame()->selection();
118 LayoutRect oldCaretRect = frameSelection.absoluteCaretBounds();
123 LayoutRect newCaretRect = frameSelection.absoluteCaretBounds();
127 oldCaretRect = frameSelection.absoluteCaretBounds();
132 newCaretRect = frameSelection.absoluteCaretBounds();
218 document().frame()->selection().setSelection(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle | FrameSelection::DoNotUpdateAppearance)
    [all...]
HTMLTextFormControlElement.cpp 38 #include "core/editing/FrameSelection.h"
386 frame->selection().setSelection(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle | (selectionOption == ChangeSelectionAndFocus ? 0 : FrameSelection::DoNotSetFocus));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.h 52 class FrameSelection;
103 FrameSelection& selection() const;
178 const OwnPtrWillBeMember<FrameSelection> m_selection;
214 inline FrameSelection& LocalFrame::selection() const
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.h 45 class FrameSelection;
91 bool dragIsMove(FrameSelection&, DragData*);
  /external/chromium_org/third_party/WebKit/Source/web/
WebRange.cpp 40 #include "core/editing/FrameSelection.h"
SpellCheckerClientImpl.cpp 107 VisibleSelection frameSelection = frame->selection().selection();
109 if (Element* rootEditableElement = frameSelection.rootEditableElement()) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CharacterData.cpp 32 #include "core/editing/FrameSelection.h"
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.cpp 41 #include "core/editing/FrameSelection.h"
RenderObjectChildList.cpp 85 // FIXME: The FrameSelection should be responsible for this when it

Completed in 1291 milliseconds

1 2 3