blob: 12d236ba962c6461ca5da3f9efe5fde06fc9fd4b [file] [log] [blame]
/*
* Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2006 Zack Rusin <zack@kde.org>
* Copyright (C) 2006 Apple Computer, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "EditorClientGtk.h"
#include "EditCommand.h"
#include "Editor.h"
#include "FocusController.h"
#include "Frame.h"
#include "KeyboardCodes.h"
#include "KeyboardEvent.h"
#include "NotImplemented.h"
#include "Page.h"
#include "PlatformKeyboardEvent.h"
#include "webkitgtkprivate.h"
#include <stdio.h>
using namespace WebCore;
namespace WebKit {
bool EditorClient::shouldDeleteRange(Range*)
{
notImplemented();
return true;
}
bool EditorClient::shouldShowDeleteInterface(HTMLElement*)
{
return false;
}
bool EditorClient::isContinuousSpellCheckingEnabled()
{
notImplemented();
return false;
}
bool EditorClient::isGrammarCheckingEnabled()
{
notImplemented();
return false;
}
int EditorClient::spellCheckerDocumentTag()
{
notImplemented();
return 0;
}
bool EditorClient::shouldBeginEditing(WebCore::Range*)
{
notImplemented();
return true;
}
bool EditorClient::shouldEndEditing(WebCore::Range*)
{
notImplemented();
return true;
}
bool EditorClient::shouldInsertText(String, Range*, EditorInsertAction)
{
notImplemented();
return true;
}
bool EditorClient::shouldChangeSelectedRange(Range*, Range*, EAffinity, bool)
{
notImplemented();
return true;
}
bool EditorClient::shouldApplyStyle(WebCore::CSSStyleDeclaration*,
WebCore::Range*)
{
notImplemented();
return true;
}
bool EditorClient::shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*)
{
notImplemented();
return true;
}
void EditorClient::didBeginEditing()
{
notImplemented();
}
void EditorClient::respondToChangedContents()
{
notImplemented();
}
void EditorClient::respondToChangedSelection()
{
notImplemented();
}
void EditorClient::didEndEditing()
{
notImplemented();
}
void EditorClient::didWriteSelectionToPasteboard()
{
notImplemented();
}
void EditorClient::didSetSelectionTypesForPasteboard()
{
notImplemented();
}
bool EditorClient::isEditable()
{
notImplemented();
return false;
}
void EditorClient::registerCommandForUndo(WTF::PassRefPtr<WebCore::EditCommand>)
{
notImplemented();
}
void EditorClient::registerCommandForRedo(WTF::PassRefPtr<WebCore::EditCommand>)
{
notImplemented();
}
void EditorClient::clearUndoRedoOperations()
{
notImplemented();
}
bool EditorClient::canUndo() const
{
notImplemented();
return false;
}
bool EditorClient::canRedo() const
{
notImplemented();
return false;
}
void EditorClient::undo()
{
notImplemented();
}
void EditorClient::redo()
{
notImplemented();
}
bool EditorClient::shouldInsertNode(Node*, Range*, EditorInsertAction)
{
notImplemented();
return true;
}
void EditorClient::pageDestroyed()
{
delete this;
}
bool EditorClient::smartInsertDeleteEnabled()
{
notImplemented();
return false;
}
void EditorClient::toggleContinuousSpellChecking()
{
notImplemented();
}
void EditorClient::toggleGrammarChecking()
{
}
void EditorClient::handleKeypress(KeyboardEvent* event)
{
Frame* frame = core(m_page)->focusController()->focusedOrMainFrame();
if (!frame)
return;
const PlatformKeyboardEvent* kevent = event->keyEvent();
if (!kevent->isKeyUp()) {
Node* start = frame->selectionController()->start().node();
if (start && start->isContentEditable()) {
switch (kevent->WindowsKeyCode()) {
case VK_BACK:
frame->editor()->deleteWithDirection(SelectionController::BACKWARD,
CharacterGranularity, false, true);
break;
case VK_DELETE:
frame->editor()->deleteWithDirection(SelectionController::FORWARD,
CharacterGranularity, false, true);
break;
case VK_LEFT:
frame->editor()->execCommand("MoveLeft");
break;
case VK_RIGHT:
frame->editor()->execCommand("MoveRight");
break;
case VK_UP:
frame->editor()->execCommand("MoveUp");
break;
case VK_DOWN:
frame->editor()->execCommand("MoveDown");
break;
default:
frame->editor()->insertText(kevent->text(), event);
}
event->setDefaultHandled();
}
}
}
void EditorClient::handleInputMethodKeypress(KeyboardEvent*)
{
notImplemented();
}
EditorClient::EditorClient(WebKitPage* page)
: m_page(page)
{
}
void EditorClient::textFieldDidBeginEditing(Element*)
{
notImplemented();
}
void EditorClient::textFieldDidEndEditing(Element*)
{
notImplemented();
}
void EditorClient::textDidChangeInTextField(Element*)
{
notImplemented();
}
bool EditorClient::doTextFieldCommandFromEvent(Element*, KeyboardEvent*)
{
notImplemented();
return false;
}
void EditorClient::textWillBeDeletedInTextField(Element*)
{
notImplemented();
}
void EditorClient::textDidChangeInTextArea(Element*)
{
notImplemented();
}
void EditorClient::ignoreWordInSpellDocument(const String&)
{
notImplemented();
}
void EditorClient::learnWord(const String&)
{
notImplemented();
}
void EditorClient::checkSpellingOfString(const UChar*, int, int*, int*)
{
notImplemented();
}
void EditorClient::checkGrammarOfString(const UChar*, int, Vector<GrammarDetail>&, int*, int*)
{
notImplemented();
}
void EditorClient::updateSpellingUIWithGrammarString(const String&, const GrammarDetail&)
{
notImplemented();
}
void EditorClient::updateSpellingUIWithMisspelledWord(const String&)
{
notImplemented();
}
void EditorClient::showSpellingUI(bool)
{
notImplemented();
}
bool EditorClient::spellingUIIsShowing()
{
notImplemented();
return false;
}
void EditorClient::getGuessesForWord(const String&, Vector<String>&)
{
notImplemented();
}
void EditorClient::setInputMethodState(bool)
{
}
}
// vim: ts=4 sw=4 et