HomeSort by relevance Sort by last modified time
    Searched refs:SelectionController (Results 1 - 25 of 46) sorted by null

1 2

  /external/webkit/Source/WebCore/editing/
SetSelectionCommand.h 30 #include "SelectionController.h"
36 static PassRefPtr<SetSelectionCommand> create(const VisibleSelection& selection, SelectionController::SetSelectionOptions options)
42 SetSelectionCommand(const VisibleSelection&, SelectionController::SetSelectionOptions);
46 SelectionController::SetSelectionOptions m_options;
SetSelectionCommand.cpp 33 SetSelectionCommand::SetSelectionCommand(const VisibleSelection& selection, SelectionController::SetSelectionOptions options)
42 SelectionController* selectionController = document()->frame()->selection();
43 ASSERT(selectionController);
45 if (selectionController->shouldChangeSelection(m_selectionToSet) && m_selectionToSet.isNonOrphanedCaretOrRange()) {
46 selectionController->setSelection(m_selectionToSet, m_options);
53 SelectionController* selectionController = document()->frame()->selection();
54 ASSERT(selectionController);
56 if (selectionController->shouldChangeSelection(startingSelection()) && startingSelection().isNonOrphanedCaretOrRange()
    [all...]
SpellingCorrectionCommand.cpp 97 applyCommandToComposite(SetSelectionCommand::create(m_selectionToBeCorrected, SelectionController::SpellCorrectionTriggered | SelectionController::CloseTyping | SelectionController::ClearTypingStyle));
SelectionController.cpp 27 #include "SelectionController.h"
76 SelectionController::SelectionController(Frame* frame, bool isDragCaretController)
80 , m_caretBlinkTimer(this, &SelectionController::caretBlinkTimerFired)
92 void SelectionController::moveTo(const VisiblePosition &pos, bool userTriggered, CursorAlignOnScroll align)
100 void SelectionController::moveTo(const VisiblePosition &base, const VisiblePosition &extent, bool userTriggered)
108 void SelectionController::moveTo(const Position &pos, EAffinity affinity, bool userTriggered)
116 void SelectionController::moveTo(const Range *r, EAffinity affinity, bool userTriggered)
125 void SelectionController::moveTo(const Position &base, const Position &extent, EAffinity affinity, bool userTriggered)
133 void SelectionController::setSelection(const VisibleSelection& s, SetSelectionOptions options, CursorAlignOnScroll align, T (…)
    [all...]
SelectionController.h 51 class SelectionController {
52 WTF_MAKE_NONCOPYABLE(SelectionController); WTF_MAKE_FAST_ALLOCATED;
65 SelectionController(Frame* = 0, bool isDragCaretController = false);
218 void caretBlinkTimerFired(Timer<SelectionController>*);
231 Timer<SelectionController> m_caretBlinkTimer;
247 inline EditingStyle* SelectionController::typingStyle() const
252 inline void SelectionController::clearTypingStyle()
257 inline void SelectionController::setTypingStyle(PassRefPtr<EditingStyle> style)
263 inline void SelectionController::notifyAccessibilityForSelectionChange()
272 void showTree(const WebCore::SelectionController&)
    [all...]
EditorCommand.cpp 379 SelectionController* selection = frame->selection();
609 frame->selection()->modify(SelectionController::AlterationMove, DirectionBackward, CharacterGranularity, true);
615 frame->selection()->modify(SelectionController::AlterationExtend, DirectionBackward, CharacterGranularity, true);
621 return frame->selection()->modify(SelectionController::AlterationMove, DirectionForward, LineGranularity, true);
626 frame->selection()->modify(SelectionController::AlterationExtend, DirectionForward, LineGranularity, true);
632 frame->selection()->modify(SelectionController::AlterationMove, DirectionForward, CharacterGranularity, true);
638 frame->selection()->modify(SelectionController::AlterationExtend, DirectionForward, CharacterGranularity, true);
644 return frame->selection()->modify(SelectionController::AlterationMove, DirectionLeft, CharacterGranularity, true);
649 frame->selection()->modify(SelectionController::AlterationExtend, DirectionLeft, CharacterGranularity, true);
658 return frame->selection()->modify(SelectionController::AlterationMove, distance, true, SelectionController::AlignCursorOnScrollAlways)
    [all...]
EditingAllInOne.cpp 62 #include <SelectionController.cpp>
TypingCommand.cpp 41 #include "SelectionController.h"
164 // FIXME: We shouldn't need to take selectionForInsertion. It should be identical to SelectionController's current selection.
488 SelectionController selection;
490 selection.modify(SelectionController::AlterationExtend, DirectionBackward, granularity);
492 selection.modify(SelectionController::AlterationExtend, DirectionBackward, CharacterGranularity);
518 selection.modify(SelectionController::AlterationExtend, DirectionBackward, granularity);
584 SelectionController selection;
586 selection.modify(SelectionController::AlterationExtend, DirectionForward, granularity);
588 selection.modify(SelectionController::AlterationExtend, DirectionForward, CharacterGranularity);
603 selection.modify(SelectionController::AlterationExtend, DirectionForward, CharacterGranularity)
    [all...]
SpellingCorrectionController.cpp 273 m_frame->selection()->setSelection(selectionOfCorrected, SelectionController::CloseTyping | SelectionController::ClearTypingStyle | SelectionController::SpellCorrectionTriggered);
  /external/webkit/Source/WebKit/wx/
WebDOMSelection.h 43 class SelectionController;
54 wxWebKitSelection(WebCore::SelectionController* selection)
65 WebCore::SelectionController* m_selection;
  /external/webkit/Source/WebCore/bindings/objc/
ExceptionHandlers.h 45 class SelectionController;
  /external/webkit/Source/WebCore/editing/chromium/
SelectionControllerChromium.cpp 32 #include "SelectionController.h"
39 void SelectionController::notifyAccessibilityForSelectionChange()
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 270 frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
276 frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
282 frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
288 frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 349 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
355 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
361 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
367 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 359 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
365 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
371 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
377 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
  /external/webkit/Source/WebCore/page/
DOMSelection.cpp 38 #include "SelectionController.h"
182 SelectionController* selection = m_frame->selection();
296 SelectionController::EAlteration alter;
298 alter = SelectionController::AlterationExtend;
300 alter = SelectionController::AlterationMove;
402 SelectionController* selection = m_frame->selection();
439 SelectionController* selection = m_frame->selection();
445 selection->modify(SelectionController::AlterationExtend, DirectionBackward, CharacterGranularity);
464 SelectionController* selection = m_frame->selection();
DragController.h 48 class SelectionController;
102 bool dragIsMove(SelectionController*, DragData*);
Frame.h 39 #include "SelectionController.h"
116 SelectionController* selection() const;
236 mutable SelectionController m_selectionController;
310 inline SelectionController* Frame::selection() const
Page.h 78 class SelectionController;
168 SelectionController* dragCaretController() const { return m_dragCaretController.get(); }
319 OwnPtr<SelectionController> m_dragCaretController;
  /external/webkit/Source/WebCore/editing/gtk/
SelectionControllerGtk.cpp 21 #include "SelectionController.h"
78 void SelectionController::notifyAccessibilityForSelectionChange()
  /external/webkit/Source/WebCore/editing/mac/
SelectionControllerMac.mm 27 #import "SelectionController.h"
49 void SelectionController::notifyAccessibilityForSelectionChange()
EditorMac.mm 193 SelectionController* selection = m_frame->selection();
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameInternal.h 36 #import <WebCore/SelectionController.h>
141 - (DOMRange *)_rangeByAlteringCurrentSelection:(WebCore::SelectionController::EAlteration)alteration direction:(WebCore::SelectionDirection)direction granularity:(WebCore::TextGranularity)granularity;
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 25 import com.android.traceview.SelectionController;
265 SelectionController selectionController = new SelectionController();
285 new TimeLineView(sashForm1, reader, selectionController);
288 new ProfileView(sashForm1, reader, selectionController).setMethodHandler(this);
  /external/webkit/Source/WebCore/svg/
SVGTextContentElement.cpp 34 #include "SelectionController.h"
165 SelectionController* controller = document()->frame()->selection();

Completed in 189 milliseconds

1 2