This source file includes following definitions.
- create
- createRenderer
- create
- customStyleForRenderer
- create
- defaultEventHandler
- createRenderer
- customStyleForRenderer
- create
- shadowPseudoId
- defaultEventHandler
- willRespondToMouseClickEvents
- m_capturing
- create
- detach
- defaultEventHandler
- willRespondToMouseClickEvents
- m_listenerId
- create
- defaultEventHandler
- willRespondToMouseClickEvents
- setState
- speechInput
- didCompleteRecording
- didCompleteRecognition
- setRecognitionResult
- attach
- detach
- startSpeechInput
- stopSpeechInput
#include "config.h"
#include "core/html/shadow/TextControlInnerElements.h"
#include "HTMLNames.h"
#include "core/dom/Document.h"
#include "core/dom/NodeRenderStyle.h"
#include "core/events/MouseEvent.h"
#include "core/events/TextEvent.h"
#include "core/events/TextEventInputType.h"
#include "core/frame/LocalFrame.h"
#include "core/html/HTMLInputElement.h"
#include "core/html/shadow/ShadowElementNames.h"
#include "core/page/EventHandler.h"
#include "core/rendering/RenderTextControlSingleLine.h"
#include "core/rendering/RenderView.h"
#include "core/speech/SpeechInput.h"
#include "core/speech/SpeechInputEvent.h"
#include "platform/UserGestureIndicator.h"
namespace WebCore {
using namespace HTMLNames;
TextControlInnerContainer::TextControlInnerContainer(Document& document)
: HTMLDivElement(document)
{
}
PassRefPtr<TextControlInnerContainer> TextControlInnerContainer::create(Document& document)
{
RefPtr<TextControlInnerContainer> element = adoptRef(new TextControlInnerContainer(document));
element->setAttribute(idAttr, ShadowElementNames::textFieldContainer());
return element.release();
}
RenderObject* TextControlInnerContainer::createRenderer(RenderStyle*)
{
return new RenderTextControlInnerContainer(this);
}
EditingViewPortElement::EditingViewPortElement(Document& document)
: HTMLDivElement(document)
{
setHasCustomStyleCallbacks();
}
PassRefPtr<EditingViewPortElement> EditingViewPortElement::create(Document& document)
{
RefPtr<EditingViewPortElement> element = adoptRef(new EditingViewPortElement(document));
element->setAttribute(idAttr, ShadowElementNames::editingViewPort());
return element.release();
}
PassRefPtr<RenderStyle> EditingViewPortElement::customStyleForRenderer()
{
RefPtr<RenderStyle> style = RenderStyle::create();
style->inheritFrom(shadowHost()->renderStyle());
style->setFlexGrow(1);
style->setDisplay(BLOCK);
style->setDirection(LTR);
style->setUserModify(READ_ONLY);
style->setUnique();
return style.release();
}
inline TextControlInnerTextElement::TextControlInnerTextElement(Document& document)
: HTMLDivElement(document)
{
setHasCustomStyleCallbacks();
}
PassRefPtr<TextControlInnerTextElement> TextControlInnerTextElement::create(Document& document)
{
RefPtr<TextControlInnerTextElement> element = adoptRef(new TextControlInnerTextElement(document));
element->setAttribute(idAttr, ShadowElementNames::innerEditor());
return element.release();
}
void TextControlInnerTextElement::defaultEventHandler(Event* event)
{
if (event->isBeforeTextInsertedEvent() || event->type() == EventTypeNames::webkitEditableContentChanged) {
Element* shadowAncestor = shadowHost();
if (shadowAncestor)
shadowAncestor->defaultEventHandler(event);
}
if (!event->defaultHandled())
HTMLDivElement::defaultEventHandler(event);
}
RenderObject* TextControlInnerTextElement::createRenderer(RenderStyle*)
{
return new RenderTextControlInnerBlock(this);
}
PassRefPtr<RenderStyle> TextControlInnerTextElement::customStyleForRenderer()
{
RenderObject* parentRenderer = shadowHost()->renderer();
if (!parentRenderer || !parentRenderer->isTextControl())
return originalStyleForRenderer();
RenderTextControl* textControlRenderer = toRenderTextControl(parentRenderer);
return textControlRenderer->createInnerTextStyle(textControlRenderer->style());
}
inline SearchFieldDecorationElement::SearchFieldDecorationElement(Document& document)
: HTMLDivElement(document)
{
}
PassRefPtr<SearchFieldDecorationElement> SearchFieldDecorationElement::create(Document& document)
{
RefPtr<SearchFieldDecorationElement> element = adoptRef(new SearchFieldDecorationElement(document));
element->setAttribute(idAttr, ShadowElementNames::searchDecoration());
return element.release();
}
const AtomicString& SearchFieldDecorationElement::shadowPseudoId() const
{
DEFINE_STATIC_LOCAL(AtomicString, resultsDecorationId, ("-webkit-search-results-decoration", AtomicString::ConstructFromLiteral));
DEFINE_STATIC_LOCAL(AtomicString, decorationId, ("-webkit-search-decoration", AtomicString::ConstructFromLiteral));
Element* host = shadowHost();
if (!host)
return resultsDecorationId;
if (isHTMLInputElement(*host)) {
if (toHTMLInputElement(host)->maxResults() < 0)
return decorationId;
return resultsDecorationId;
}
return resultsDecorationId;
}
void SearchFieldDecorationElement::defaultEventHandler(Event* event)
{
HTMLInputElement* input = toHTMLInputElement(shadowHost());
if (input && event->type() == EventTypeNames::mousedown && event->isMouseEvent() && toMouseEvent(event)->button() == LeftButton) {
input->focus();
input->select();
event->setDefaultHandled();
}
if (!event->defaultHandled())
HTMLDivElement::defaultEventHandler(event);
}
bool SearchFieldDecorationElement::willRespondToMouseClickEvents()
{
return true;
}
inline SearchFieldCancelButtonElement::SearchFieldCancelButtonElement(Document& document)
: HTMLDivElement(document)
, m_capturing(false)
{
}
PassRefPtr<SearchFieldCancelButtonElement> SearchFieldCancelButtonElement::create(Document& document)
{
RefPtr<SearchFieldCancelButtonElement> element = adoptRef(new SearchFieldCancelButtonElement(document));
element->setShadowPseudoId(AtomicString("-webkit-search-cancel-button", AtomicString::ConstructFromLiteral));
element->setAttribute(idAttr, ShadowElementNames::clearButton());
return element.release();
}
void SearchFieldCancelButtonElement::detach(const AttachContext& context)
{
if (m_capturing) {
if (LocalFrame* frame = document().frame())
frame->eventHandler().setCapturingMouseEventsNode(nullptr);
}
HTMLDivElement::detach(context);
}
void SearchFieldCancelButtonElement::defaultEventHandler(Event* event)
{
RefPtr<HTMLInputElement> input(toHTMLInputElement(shadowHost()));
if (!input || input->isDisabledOrReadOnly()) {
if (!event->defaultHandled())
HTMLDivElement::defaultEventHandler(event);
return;
}
if (event->type() == EventTypeNames::click && event->isMouseEvent() && toMouseEvent(event)->button() == LeftButton) {
input->setValueForUser("");
input->onSearch();
event->setDefaultHandled();
}
if (!event->defaultHandled())
HTMLDivElement::defaultEventHandler(event);
}
bool SearchFieldCancelButtonElement::willRespondToMouseClickEvents()
{
const HTMLInputElement* input = toHTMLInputElement(shadowHost());
if (input && !input->isDisabledOrReadOnly())
return true;
return HTMLDivElement::willRespondToMouseClickEvents();
}
#if ENABLE(INPUT_SPEECH)
inline InputFieldSpeechButtonElement::InputFieldSpeechButtonElement(Document& document)
: HTMLDivElement(document)
, m_capturing(false)
, m_state(Idle)
, m_listenerId(0)
{
}
InputFieldSpeechButtonElement::~InputFieldSpeechButtonElement()
{
SpeechInput* speech = speechInput();
if (speech && m_listenerId) {
if (m_state != Idle)
speech->cancelRecognition(m_listenerId);
speech->unregisterListener(m_listenerId);
}
}
PassRefPtr<InputFieldSpeechButtonElement> InputFieldSpeechButtonElement::create(Document& document)
{
RefPtr<InputFieldSpeechButtonElement> element = adoptRef(new InputFieldSpeechButtonElement(document));
element->setShadowPseudoId(AtomicString("-webkit-input-speech-button", AtomicString::ConstructFromLiteral));
element->setAttribute(idAttr, ShadowElementNames::speechButton());
return element.release();
}
void InputFieldSpeechButtonElement::defaultEventHandler(Event* event)
{
if (!UserGestureIndicator::processingUserGesture()) {
HTMLDivElement::defaultEventHandler(event);
return;
}
RefPtr<HTMLInputElement> input(toHTMLInputElement(shadowHost()));
if (!input || input->isDisabledOrReadOnly()) {
if (!event->defaultHandled())
HTMLDivElement::defaultEventHandler(event);
return;
}
if (event->type() == EventTypeNames::mousedown && event->isMouseEvent() && toMouseEvent(event)->button() == LeftButton) {
if (renderer() && renderer()->visibleToHitTesting()) {
if (LocalFrame* frame = document().frame()) {
frame->eventHandler().setCapturingMouseEventsNode(this);
m_capturing = true;
}
}
RefPtr<InputFieldSpeechButtonElement> holdRefButton(this);
input->focus();
input->select();
event->setDefaultHandled();
}
if (event->type() == EventTypeNames::mouseup && event->isMouseEvent() && toMouseEvent(event)->button() == LeftButton) {
if (m_capturing && renderer() && renderer()->visibleToHitTesting()) {
if (LocalFrame* frame = document().frame()) {
frame->eventHandler().setCapturingMouseEventsNode(nullptr);
m_capturing = false;
}
}
}
if (event->type() == EventTypeNames::click && m_listenerId) {
switch (m_state) {
case Idle:
startSpeechInput();
break;
case Recording:
stopSpeechInput();
break;
case Recognizing:
break;
}
event->setDefaultHandled();
}
if (!event->defaultHandled())
HTMLDivElement::defaultEventHandler(event);
}
bool InputFieldSpeechButtonElement::willRespondToMouseClickEvents()
{
const HTMLInputElement* input = toHTMLInputElement(shadowHost());
if (input && !input->isDisabledOrReadOnly())
return true;
return HTMLDivElement::willRespondToMouseClickEvents();
}
void InputFieldSpeechButtonElement::setState(SpeechInputState state)
{
if (m_state != state) {
m_state = state;
shadowHost()->renderer()->repaint();
}
}
SpeechInput* InputFieldSpeechButtonElement::speechInput()
{
return SpeechInput::from(document().page());
}
void InputFieldSpeechButtonElement::didCompleteRecording(int)
{
setState(Recognizing);
}
void InputFieldSpeechButtonElement::didCompleteRecognition(int)
{
setState(Idle);
}
void InputFieldSpeechButtonElement::setRecognitionResult(int, const SpeechInputResultArray& results)
{
m_results = results;
RefPtr<HTMLInputElement> input(toHTMLInputElement(shadowHost()));
if (!input || input->isDisabledOrReadOnly())
return;
RefPtr<InputFieldSpeechButtonElement> holdRefButton(this);
if (document().domWindow()) {
input->selectionChanged(false);
input->dispatchEvent(TextEvent::create(document().domWindow(), results.isEmpty() ? "" : results[0]->utterance(), TextEventInputOther));
}
input->dispatchEvent(SpeechInputEvent::create(EventTypeNames::webkitspeechchange, results));
if (renderer())
renderer()->repaint();
}
void InputFieldSpeechButtonElement::attach(const AttachContext& context)
{
ASSERT(!m_listenerId);
if (SpeechInput* input = SpeechInput::from(document().page()))
m_listenerId = input->registerListener(this);
HTMLDivElement::attach(context);
}
void InputFieldSpeechButtonElement::detach(const AttachContext& context)
{
if (m_capturing) {
if (LocalFrame* frame = document().frame())
frame->eventHandler().setCapturingMouseEventsNode(nullptr);
}
if (m_listenerId) {
if (m_state != Idle)
speechInput()->cancelRecognition(m_listenerId);
speechInput()->unregisterListener(m_listenerId);
m_listenerId = 0;
}
HTMLDivElement::detach(context);
}
void InputFieldSpeechButtonElement::startSpeechInput()
{
if (m_state != Idle)
return;
RefPtr<HTMLInputElement> input = toHTMLInputElement(shadowHost());
AtomicString language = input->computeInheritedLanguage();
String grammar = input->getAttribute(webkitgrammarAttr);
IntRect rect = document().view()->contentsToRootView(pixelSnappedBoundingBox());
if (speechInput()->startRecognition(m_listenerId, rect, language, grammar, document().securityOrigin()))
setState(Recording);
}
void InputFieldSpeechButtonElement::stopSpeechInput()
{
if (m_state == Recording)
speechInput()->stopRecording(m_listenerId);
}
#endif
}