Lines Matching refs:Editor
88 // Map selectors into Editor command names.
89 // This is not needed for any selectors that have the same name as the Editor command.
114 // No need to capitalize the command name since Editor command names are not case sensitive.
138 ASSERT(!frame->editor()->hasComposition());
140 if (!frame->editor()->canEdit())
145 eventWasHandled |= frame->editor()->insertText(commands[i].text, event);
147 Editor::Command command = frame->editor()->command(commandNameForSelectorName(commands[i].commandName));
197 // Are there commands that could just cause text insertion if executed via Editor?
203 if (frame->editor()->command(commandNameForSelectorName(commands[i].commandName)).isTextInsertion())
235 frame->editor()->setComposition(text, underlines, selectionStart, selectionEnd);
245 frame->editor()->confirmComposition();
260 if (!frame->editor()->hasComposition()) {
263 handled = frame->editor()->insertText(text, m_keyboardEventBeingInterpreted);
266 frame->editor()->confirmComposition(text);
280 RefPtr<Range> range = frame->editor()->compositionRange();
385 IntRect rect = frame->editor()->firstRectForRange(range.get());
536 // FIXME: All these selectors have corresponding Editor commands, but the commands only work in editable content.
537 // Should such non-editing behaviors be implemented in Editor or EventHandler::defaultArrowEventHandler() perhaps?
595 frame->editor()->writeSelectionToPasteboard(pasteboardName, pasteboardTypes);
606 frame->editor()->readSelectionFromPasteboard(pasteboardName);