Home | History | Annotate | Download | only in win

Lines Matching refs:editor

81 #include <WebCore/Editor.h>
1765 return frame->editor()->command("SelectAll").execute();
1767 return frame->editor()->command("Undo").execute();
1769 return frame->editor()->command("Redo").execute();
1916 Editor::Command command = frame->editor()->command(interpretKeyEvent(evt));
1919 // WebKit doesn't have enough information about mode to decide how commands that just insert text if executed via Editor should be treated,
1932 return frame->editor()->insertText(evt->keyEvent()->text(), evt);
3342 m_page->focusController()->focusedOrMainFrame()->editor()->command(name).execute(value);
3569 String frameSelectedText = focusedFrame->editor()->selectedText();
4152 Editor* editor = m_page->focusController()->focusedOrMainFrame()->editor();
4153 *enabled = editor->canCut() || editor->canDHTMLCut();
4160 Editor* editor = m_page->focusController()->focusedOrMainFrame()->editor();
4161 *enabled = editor->canCopy() || editor->canDHTMLCopy();
4168 Editor* editor = m_page->focusController()->focusedOrMainFrame()->editor();
4169 *enabled = editor->canPaste() || editor->canDHTMLPaste();
4176 *enabled = m_page->focusController()->focusedOrMainFrame()->editor()->canDelete();
4183 *enabled = m_page->focusController()->focusedOrMainFrame()->editor()->canEdit();
4236 m_page->focusController()->focusedOrMainFrame()->editor()->insertText(textString, 0);
4257 Editor* editor = m_page->focusController()->focusedOrMainFrame()->editor();
4258 editor->deleteSelectionWithSmartDelete(editor->canSmartCopyOrDelete());
4280 m_page->focusController()->focusedOrMainFrame()->editor()->command("Copy").execute();
4287 m_page->focusController()->focusedOrMainFrame()->editor()->command("Cut").execute();
4294 m_page->focusController()->focusedOrMainFrame()->editor()->command("Paste").execute();
4301 m_page->focusController()->focusedOrMainFrame()->editor()->copyURL(MarshallingHelpers::BSTRToKURL(url), "");
4323 m_page->focusController()->focusedOrMainFrame()->editor()->command("Delete").execute();
4405 core(m_mainFrame)->editor()->advanceToNextMisspelling();
4424 core(m_mainFrame)->editor()->advanceToNextMisspelling(true);
5190 frame->editor()->clearUndoRedoOperations();
5305 caret = targetFrame->editor()->firstRectForRange(tempRange.get());
5323 targetFrame->editor()->confirmCompositionWithoutDisturbingSelection();
5334 if (!targetFrame || !targetFrame->editor()->hasComposition())
5337 if (targetFrame->editor()->ignoreCompositionSelectionChange())
5342 if (!targetFrame->editor()->getCompositionSelection(start, end))
5500 if (!targetFrame || !targetFrame->editor()->canEdit())
5510 targetFrame->editor()->confirmComposition(compositionString);
5531 targetFrame->editor()->setComposition(compositionString, underlines, cursorPosition, 0);
5543 if (targetFrame && targetFrame->editor()->hasComposition())
5544 targetFrame->editor()->confirmComposition(String());
5569 if (charPos->dwCharPos && !targetFrame->editor()->hasComposition())
5572 if (RefPtr<Range> range = targetFrame->editor()->hasComposition() ? targetFrame->editor()->compositionRange() : targetFrame->selection()->selection().toNormalizedRange()) {
5576 caret = targetFrame->editor()->firstRectForRange(tempRange.get());
5609 if (!targetFrame || !targetFrame->editor()->canEdit())