Lines Matching defs:editor
86 #include "Editor.h"
1120 Editor* editor = frame()->editor();
1122 if (editor->hasComposition())
1123 editor->confirmComposition(text);
1125 editor->insertText(text, 0);
1131 Editor* editor = frame()->editor();
1134 editor->setComposition(text, decorations, location, length);
1139 frame()->editor()->confirmCompositionWithoutDisturbingSelection();
1144 return frame()->editor()->hasComposition();
1149 return frame()->editor()->compositionRange();
1162 IntRect intRect = frame()->editor()->firstRectForRange(range.get());
1176 // string and call the function on Editor directly.
1196 // Specially handling commands that Editor::execCommand does not directly
1199 Editor* editor = frame()->editor();
1200 if (!editor->deleteWithDirection(DirectionForward,
1204 editor->deleteWithDirection(DirectionForward,
1210 frame()->editor()->indent();
1212 frame()->editor()->outdent();
1214 rv = frame()->editor()->command(AtomicString("BackwardDelete")).execute();
1216 rv = frame()->editor()->command(AtomicString("ForwardDelete")).execute();
1220 frame()->editor()->advanceToNextMisspelling(false);
1222 frame()->editor()->showSpellingGuessPanel();
1224 rv = frame()->editor()->command(command).execute();
1235 if (!frame()->editor()->canEdit() && webName == "moveToBeginningOfDocument")
1238 if (!frame()->editor()->canEdit() && webName == "moveToEndOfDocument")
1241 return frame()->editor()->command(webName).execute(value);
1247 return frame()->editor()->command(name).isEnabled();
1254 // Note, the editor will will notify the client that the continuous spell
1257 frame()->editor()->toggleContinuousSpellChecking();
1262 return frame()->editor()->isContinuousSpellCheckingEnabled();
1492 bool found = frame()->editor()->findString(
1571 frame()->editor()->setMarkedTextMatchesAreHighlighted(false);
1592 if (frame()->editor()->markedTextMatchesAreHighlighted())
1658 if (frame()->editor()->insideVisibleArea(resultRange.get())) {
1714 frame()->editor()->setMarkedTextMatchesAreHighlighted(true);
1860 return m_frame->editor()->selectionStartHasMarkerFor(DocumentMarker::Spelling, from, length);