Home | History | Annotate | Download | only in WebCoreSupport

Lines Matching defs:EditorClient

63 static void imContextCommitted(GtkIMContext* context, const gchar* compositionString, EditorClient* client)
86 static void imContextPreeditChanged(GtkIMContext* context, EditorClient* client)
102 static void backspaceCallback(GtkWidget* widget, EditorClient* client)
108 static void selectAllCallback(GtkWidget* widget, gboolean select, EditorClient* client)
114 static void cutClipboardCallback(GtkWidget* widget, EditorClient* client)
120 static void copyClipboardCallback(GtkWidget* widget, EditorClient* client)
126 static void pasteClipboardCallback(GtkWidget* widget, EditorClient* client)
132 static void toggleOverwriteCallback(GtkWidget* widget, EditorClient*)
141 static void popupMenuCallback(GtkWidget* widget, EditorClient*)
146 static void showHelpCallback(GtkWidget* widget, EditorClient*)
162 static void deleteFromCursorCallback(GtkWidget* widget, GtkDeleteType deleteType, gint count, EditorClient* client)
221 static void moveCursorCallback(GtkWidget* widget, GtkMovementStep step, gint count, gboolean extendSelection, EditorClient* client)
239 void EditorClient::updatePendingComposition(const gchar* newComposition)
249 void EditorClient::willSetInputMethodState()
253 void EditorClient::setInputMethodState(bool active)
270 bool EditorClient::shouldDeleteRange(Range* range)
278 bool EditorClient::shouldShowDeleteInterface(HTMLElement* element)
286 bool EditorClient::isContinuousSpellCheckingEnabled()
296 bool EditorClient::isGrammarCheckingEnabled()
302 int EditorClient::spellCheckerDocumentTag()
308 bool EditorClient::shouldBeginEditing(WebCore::Range* range)
318 bool EditorClient::shouldEndEditing(WebCore::Range* range)
342 bool EditorClient::shouldInsertText(const String& string, Range* range, EditorInsertAction action)
362 bool EditorClient::shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity affinity, bool stillSelecting)
372 bool EditorClient::shouldApplyStyle(WebCore::CSSStyleDeclaration* declaration, WebCore::Range* range)
381 bool EditorClient::shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*)
387 void EditorClient::didBeginEditing()
392 void EditorClient::respondToChangedContents()
439 void EditorClient::respondToChangedSelection()
469 void EditorClient::didEndEditing()
474 void EditorClient::didWriteSelectionToPasteboard()
479 void EditorClient::didSetSelectionTypesForPasteboard()
484 void EditorClient::registerCommandForUndo(WTF::PassRefPtr<WebCore::EditCommand> command)
493 void EditorClient::registerCommandForRedo(WTF::PassRefPtr<WebCore::EditCommand> command)
498 void EditorClient::clearUndoRedoOperations()
504 bool EditorClient::canCopyCut(bool defaultValue) const
509 bool EditorClient::canPaste(bool defaultValue) const
514 bool EditorClient::canUndo() const
519 bool EditorClient::canRedo() const
524 void EditorClient::undo()
534 void EditorClient::redo()
548 bool EditorClient::shouldInsertNode(Node* node, Range* range, EditorInsertAction action)
557 void EditorClient::pageDestroyed()
562 bool EditorClient::smartInsertDeleteEnabled()
568 bool EditorClient::isSelectTrailingWhitespaceEnabled()
575 void EditorClient::toggleContinuousSpellChecking()
585 void EditorClient::toggleGrammarChecking()
627 void EditorClient::generateEditorCommands(const KeyboardEvent* event)
671 bool EditorClient::executePendingEditorCommands(Frame* frame, bool allowTextInsertion)
702 void EditorClient::handleKeyboardEvent(KeyboardEvent* event)
767 void EditorClient::handleInputMethodKeydown(KeyboardEvent* event)
786 // 2. Keydown event -> EditorClient::handleInputMethodKeydown
790 // 4. Keydown event -> EditorClient::handleKeyboardEvent
796 // 7. Keypress event -> EditorClient::handleKeyboardEvent
799 // 9. Keyup event -> EditorClient::handleKeyboardEvent
817 void EditorClient::handleInputMethodMousePress()
839 EditorClient::EditorClient(WebKitWebView* webView)
865 EditorClient::~EditorClient()
872 void EditorClient::textFieldDidBeginEditing(Element*)
876 void EditorClient::textFieldDidEndEditing(Element*)
880 void EditorClient::textDidChangeInTextField(Element*)
884 bool EditorClient::doTextFieldCommandFromEvent(Element*, KeyboardEvent*)
889 EditorClient::textWillBeDeletedInTextField(Element*)
894 void EditorClient::textDidChangeInTextArea(Element*)
899 void EditorClient::updateSpellingUIWithGrammarString(const String&, const GrammarDetail&)
904 void EditorClient::updateSpellingUIWithMisspelledWord(const String&)
909 void EditorClient::showSpellingUI(bool)
914 bool EditorClient::spellingUIIsShowing()