2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2006 Zack Rusin <zack@kde.org>
4 * Copyright (C) 2006 Apple Computer, Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
21 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
25 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include "EditorClientQt.h"
34 #include "qwebpage_p.h"
37 #include "EditCommandQt.h"
40 #include "FocusController.h"
42 #include "KeyboardCodes.h"
43 #include "KeyboardEvent.h"
45 #include "PlatformKeyboardEvent.h"
46 #include "NotImplemented.h"
53 #define methodDebug() qDebug("EditorClientQt: %s", __FUNCTION__);
55 static bool dumpEditingCallbacks = false;
56 static bool drt_run = false;
57 static bool acceptsEditing = true;
58 void QWEBKIT_EXPORT qt_dump_editing_callbacks(bool b)
60 dumpEditingCallbacks = b;
62 void QWEBKIT_EXPORT qt_drt_run(bool b)
67 void QWEBKIT_EXPORT qt_dump_set_accepts_editing(bool b)
73 static QString dumpPath(WebCore::Node *node)
75 QString str = node->nodeName();
77 WebCore::Node *parent = node->parentNode();
79 str.append(QLatin1String(" > "));
80 str.append(parent->nodeName());
81 parent = parent->parentNode();
86 static QString dumpRange(WebCore::Range *range)
89 return QLatin1String("(null)");
91 WebCore::ExceptionCode code;
92 str.sprintf("range from %ld of %ls to %ld of %ls",
93 range->startOffset(code), dumpPath(range->startContainer(code)).unicode(),
94 range->endOffset(code), dumpPath(range->endContainer(code)).unicode());
102 bool EditorClientQt::shouldDeleteRange(Range* range)
104 if (dumpEditingCallbacks)
105 printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", dumpRange(range).toUtf8().constData());
110 bool EditorClientQt::shouldShowDeleteInterface(HTMLElement* element)
113 return element->className() == "needsDeletionUI";
117 bool EditorClientQt::isContinuousSpellCheckingEnabled()
122 bool EditorClientQt::isGrammarCheckingEnabled()
127 int EditorClientQt::spellCheckerDocumentTag()
132 bool EditorClientQt::shouldBeginEditing(WebCore::Range* range)
134 if (dumpEditingCallbacks)
135 printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", dumpRange(range).toUtf8().constData());
139 bool EditorClientQt::shouldEndEditing(WebCore::Range* range)
141 if (dumpEditingCallbacks)
142 printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", dumpRange(range).toUtf8().constData());
146 bool EditorClientQt::shouldInsertText(const String& string, Range* range, EditorInsertAction action)
148 if (dumpEditingCallbacks) {
149 static const char *insertactionstring[] = {
150 "WebViewInsertActionTyped",
151 "WebViewInsertActionPasted",
152 "WebViewInsertActionDropped",
155 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
156 QString(string).toUtf8().constData(), dumpRange(range).toUtf8().constData(), insertactionstring[action]);
158 return acceptsEditing;
161 bool EditorClientQt::shouldChangeSelectedRange(Range* currentRange, Range* proposedRange, EAffinity selectionAffinity, bool stillSelecting)
163 if (dumpEditingCallbacks) {
164 static const char *affinitystring[] = {
165 "NSSelectionAffinityUpstream",
166 "NSSelectionAffinityDownstream"
168 static const char *boolstring[] = {
173 printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n",
174 dumpRange(currentRange).toUtf8().constData(),
175 dumpRange(proposedRange).toUtf8().constData(),
176 affinitystring[selectionAffinity], boolstring[stillSelecting]);
178 return acceptsEditing;
181 bool EditorClientQt::shouldApplyStyle(WebCore::CSSStyleDeclaration* style,
182 WebCore::Range* range)
184 if (dumpEditingCallbacks)
185 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
186 QString(style->cssText()).toUtf8().constData(), dumpRange(range).toUtf8().constData());
187 return acceptsEditing;
190 bool EditorClientQt::shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*)
196 void EditorClientQt::didBeginEditing()
198 if (dumpEditingCallbacks)
199 printf("EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification\n");
203 void EditorClientQt::respondToChangedContents()
205 if (dumpEditingCallbacks)
206 printf("EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification\n");
207 m_page->d->modified = true;
210 void EditorClientQt::respondToChangedSelection()
212 if (dumpEditingCallbacks)
213 printf("EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification\n");
214 // const Selection &selection = m_page->d->page->selection();
215 // char buffer[1024];
216 // selection.formatForDebugger(buffer, sizeof(buffer));
217 // printf("%s\n", buffer);
219 m_page->d->updateEditorActions();
220 emit m_page->selectionChanged();
221 emit m_page->microFocusChanged();
224 void EditorClientQt::didEndEditing()
226 if (dumpEditingCallbacks)
227 printf("EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification\n");
231 void EditorClientQt::didWriteSelectionToPasteboard()
235 void EditorClientQt::didSetSelectionTypesForPasteboard()
239 bool EditorClientQt::selectWordBeforeMenuEvent()
245 bool EditorClientQt::isEditable()
247 return m_page->isEditable();
250 void EditorClientQt::registerCommandForUndo(WTF::PassRefPtr<WebCore::EditCommand> cmd)
252 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame();
253 if (m_inUndoRedo || (frame && !frame->editor()->lastEditCommand() /* HACK!! Don't recreate undos */)) {
256 m_page->undoStack()->push(new EditCommandQt(cmd));
259 void EditorClientQt::registerCommandForRedo(WTF::PassRefPtr<WebCore::EditCommand>)
263 void EditorClientQt::clearUndoRedoOperations()
265 return m_page->undoStack()->clear();
268 bool EditorClientQt::canUndo() const
270 return m_page->undoStack()->canUndo();
273 bool EditorClientQt::canRedo() const
275 return m_page->undoStack()->canRedo();
278 void EditorClientQt::undo()
281 m_page->undoStack()->undo();
282 m_inUndoRedo = false;
285 void EditorClientQt::redo()
288 m_page->undoStack()->redo();
289 m_inUndoRedo = false;
292 bool EditorClientQt::shouldInsertNode(Node* node, Range* range, EditorInsertAction action)
294 if (dumpEditingCallbacks) {
295 static const char *insertactionstring[] = {
296 "WebViewInsertActionTyped",
297 "WebViewInsertActionPasted",
298 "WebViewInsertActionDropped",
301 printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", dumpPath(node).toUtf8().constData(),
302 dumpRange(range).toUtf8().constData(), insertactionstring[action]);
304 return acceptsEditing;
307 void EditorClientQt::pageDestroyed()
312 bool EditorClientQt::smartInsertDeleteEnabled()
318 void EditorClientQt::toggleContinuousSpellChecking()
323 void EditorClientQt::toggleGrammarChecking()
328 void EditorClientQt::handleKeyboardEvent(KeyboardEvent* event)
330 Frame* frame = m_page->d->page->focusController()->focusedOrMainFrame();
331 if (!frame || !frame->document()->focusedNode())
334 const PlatformKeyboardEvent* kevent = event->keyEvent();
335 if (!kevent || kevent->type() == PlatformKeyboardEvent::KeyUp)
338 Node* start = frame->selection()->start().node();
342 // FIXME: refactor all of this to use Actions or something like them
343 if (start->isContentEditable()) {
344 switch (kevent->windowsVirtualKeyCode()) {
346 frame->editor()->command("InsertLineBreak").execute();
349 frame->editor()->deleteWithDirection(SelectionController::BACKWARD,
350 CharacterGranularity, false, true);
353 frame->editor()->deleteWithDirection(SelectionController::FORWARD,
354 CharacterGranularity, false, true);
357 if (kevent->shiftKey())
358 frame->editor()->command("MoveLeftAndModifySelection").execute();
359 else frame->editor()->command("MoveLeft").execute();
362 if (kevent->shiftKey())
363 frame->editor()->command("MoveRightAndModifySelection").execute();
364 else frame->editor()->command("MoveRight").execute();
367 if (kevent->shiftKey())
368 frame->editor()->command("MoveUpAndModifySelection").execute();
369 else frame->editor()->command("MoveUp").execute();
372 if (kevent->shiftKey())
373 frame->editor()->command("MoveDownAndModifySelection").execute();
374 else frame->editor()->command("MoveDown").execute();
376 case VK_PRIOR: // PageUp
377 frame->editor()->command("MovePageUp").execute();
379 case VK_NEXT: // PageDown
380 frame->editor()->command("MovePageDown").execute();
385 if (kevent->type() != PlatformKeyboardEvent::KeyDown
386 && !kevent->ctrlKey() && !kevent->altKey() && !kevent->text().isEmpty()) {
387 frame->editor()->insertText(kevent->text(), event);
388 } else if (kevent->ctrlKey()) {
389 switch (kevent->windowsVirtualKeyCode()) {
391 frame->editor()->command("SelectAll").execute();
394 frame->editor()->command("ToggleBold").execute();
397 frame->editor()->command("Copy").execute();
400 frame->editor()->command("ToggleItalic").execute();
403 frame->editor()->command("Paste").execute();
406 frame->editor()->command("Cut").execute();
409 frame->editor()->command("Redo").execute();
412 frame->editor()->command("Undo").execute();
415 // catch combination AltGr+key or Ctrl+Alt+key
416 if (kevent->type() != PlatformKeyboardEvent::KeyDown && !kevent->text().isEmpty()) {
417 frame->editor()->insertText(kevent->text(), event);
425 switch (kevent->windowsVirtualKeyCode()) {
427 frame->editor()->command("MoveUp").execute();
430 frame->editor()->command("MoveDown").execute();
432 case VK_PRIOR: // PageUp
433 frame->editor()->command("MovePageUp").execute();
435 case VK_NEXT: // PageDown
436 frame->editor()->command("MovePageDown").execute();
439 if (kevent->ctrlKey())
440 frame->editor()->command("MoveToBeginningOfDocument").execute();
443 if (kevent->ctrlKey())
444 frame->editor()->command("MoveToEndOfDocument").execute();
447 if (kevent->ctrlKey()) {
448 switch (kevent->windowsVirtualKeyCode()) {
450 frame->editor()->command("SelectAll").execute();
452 case VK_C: case VK_X:
453 frame->editor()->command("Copy").execute();
461 event->setDefaultHandled();
464 void EditorClientQt::handleInputMethodKeydown(KeyboardEvent*)
468 EditorClientQt::EditorClientQt(QWebPage* page)
469 : m_page(page), m_editing(false), m_inUndoRedo(false)
473 void EditorClientQt::textFieldDidBeginEditing(Element*)
478 void EditorClientQt::textFieldDidEndEditing(Element*)
483 void EditorClientQt::textDidChangeInTextField(Element*)
487 bool EditorClientQt::doTextFieldCommandFromEvent(Element*, KeyboardEvent*)
492 void EditorClientQt::textWillBeDeletedInTextField(Element*)
496 void EditorClientQt::textDidChangeInTextArea(Element*)
500 void EditorClientQt::ignoreWordInSpellDocument(const String&)
505 void EditorClientQt::learnWord(const String&)
510 void EditorClientQt::checkSpellingOfString(const UChar*, int, int*, int*)
515 void EditorClientQt::checkGrammarOfString(const UChar*, int, Vector<GrammarDetail>&, int*, int*)
520 void EditorClientQt::updateSpellingUIWithGrammarString(const String&, const GrammarDetail&)
525 void EditorClientQt::updateSpellingUIWithMisspelledWord(const String&)
530 void EditorClientQt::showSpellingUI(bool)
535 bool EditorClientQt::spellingUIIsShowing()
541 void EditorClientQt::getGuessesForWord(const String&, Vector<String>&)
546 bool EditorClientQt::isEditing() const
551 void EditorClientQt::setInputMethodState(bool active)
553 QWidget *view = m_page->view();
555 view->setAttribute(Qt::WA_InputMethodEnabled, active);
556 emit m_page->microFocusChanged();