blob: 7b49c4ffe354d57d8f8c4cddfeb8c8219acf11ca [file] [log] [blame]
/*
* Copyright (C) 2006, 2007, 2008 Apple 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.
*/
#ifndef InputMethodController_h
#define InputMethodController_h
#include "core/editing/CompositionUnderline.h"
#include "core/editing/PlainTextRange.h"
#include "wtf/Vector.h"
namespace WebCore {
class Editor;
class EditorClient;
class Frame;
class Range;
class Text;
class InputMethodController {
WTF_MAKE_NONCOPYABLE(InputMethodController);
public:
enum ConfirmCompositionBehavior {
DoNotKeepSelection,
KeepSelection,
};
static PassOwnPtr<InputMethodController> create(Frame&);
~InputMethodController();
// international text input composition
bool hasComposition() const;
void setComposition(const String&, const Vector<CompositionUnderline>&, unsigned selectionStart, unsigned selectionEnd);
void setCompositionFromExistingText(const Vector<CompositionUnderline>&, unsigned compositionStart, unsigned compositionEnd);
// Inserts the text that is being composed as a regular text and returns true
// if composition exists.
bool confirmComposition();
// Inserts the given text string in the place of the existing composition
// and returns true.
bool confirmComposition(const String& text);
// Inserts the text that is being composed or specified non-empty text and
// returns true.
bool confirmCompositionOrInsertText(const String& text, ConfirmCompositionBehavior);
void confirmCompositionAndResetState();
// Deletes the existing composition text.
void cancelComposition();
void cancelCompositionIfSelectionIsInvalid();
PassRefPtr<Range> compositionRange() const;
// getting international text input composition state (for use by InlineTextBox)
Text* compositionNode() const { return m_compositionNode.get(); }
unsigned compositionStart() const { return m_compositionStart; }
unsigned compositionEnd() const { return m_compositionEnd; }
bool compositionUsesCustomUnderlines() const { return !m_customCompositionUnderlines.isEmpty(); }
const Vector<CompositionUnderline>& customCompositionUnderlines() const { return m_customCompositionUnderlines; }
void clear();
PlainTextRange getSelectionOffsets() const;
// Returns true if setting selection to specified offsets, otherwise false.
bool setEditableSelectionOffsets(const PlainTextRange&);
void extendSelectionAndDelete(int before, int after);
private:
class SelectionOffsetsScope {
WTF_MAKE_NONCOPYABLE(SelectionOffsetsScope);
public:
SelectionOffsetsScope(InputMethodController*);
~SelectionOffsetsScope();
private:
InputMethodController* m_inputMethodController;
const PlainTextRange m_offsets;
};
friend class SelectionOffsetsScope;
Frame& m_frame;
RefPtr<Text> m_compositionNode;
// We don't use PlainTextRange which is immutable, for composition range.
unsigned m_compositionStart;
unsigned m_compositionEnd;
// startOffset and endOffset of CompositionUnderline are based on
// m_compositionNode.
Vector<CompositionUnderline> m_customCompositionUnderlines;
explicit InputMethodController(Frame&);
Editor& editor() const;
EditorClient& editorClient() const;
bool insertTextForConfirmedComposition(const String& text);
void selectComposition() const;
enum FinishCompositionMode { ConfirmComposition, CancelComposition };
// Returns true if composition exists.
bool finishComposition(const String&, FinishCompositionMode);
bool setSelectionOffsets(const PlainTextRange&);
};
} // namespace WebCore
#endif // InputMethodController_h