1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2004-2018 Apple Inc. All rights reserved.
* Copyright (C) 2009, 2010, 2011 Google Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#pragma once
#include "HTMLFormControlElement.h"
#include "PointerEventTypeNames.h"
namespace WebCore {
class Position;
class RenderTextControl;
class TextControlInnerTextElement;
class VisiblePosition;
struct SimpleRange;
enum class AutoFillButtonType : uint8_t { None, Credentials, Contacts, StrongPassword, CreditCard, Loading };
enum TextFieldSelectionDirection { SelectionHasNoDirection, SelectionHasForwardDirection, SelectionHasBackwardDirection };
enum TextFieldEventBehavior { DispatchNoEvent, DispatchChangeEvent, DispatchInputAndChangeEvent };
enum TextControlSetValueSelection { SetSelectionToEnd, Clamp, DoNotSet };
class HTMLTextFormControlElement : public HTMLFormControlElement {
WTF_MAKE_ISO_ALLOCATED(HTMLTextFormControlElement);
public:
// Common flag for HTMLInputElement::tooLong() / tooShort() and HTMLTextAreaElement::tooLong() / tooShort().
enum NeedsToCheckDirtyFlag {CheckDirtyFlag, IgnoreDirtyFlag};
virtual ~HTMLTextFormControlElement();
void didEditInnerTextValue();
void forwardEvent(Event&);
int maxLength() const { return m_maxLength; }
WEBCORE_EXPORT ExceptionOr<void> setMaxLength(int);
int minLength() const { return m_minLength; }
ExceptionOr<void> setMinLength(int);
InsertedIntoAncestorResult insertedIntoAncestor(InsertionType, ContainerNode&) override;
// The derived class should return true if placeholder processing is needed.
bool isPlaceholderVisible() const { return m_isPlaceholderVisible; }
virtual bool supportsPlaceholder() const = 0;
virtual HTMLElement* placeholderElement() const = 0;
void updatePlaceholderVisibility();
WEBCORE_EXPORT void setCanShowPlaceholder(bool);
bool canShowPlaceholder() const { return m_canShowPlaceholder; }
int indexForVisiblePosition(const VisiblePosition&) const;
WEBCORE_EXPORT VisiblePosition visiblePositionForIndex(int index) const;
WEBCORE_EXPORT unsigned selectionStart() const;
WEBCORE_EXPORT unsigned selectionEnd() const;
WEBCORE_EXPORT const AtomString& selectionDirection() const;
WEBCORE_EXPORT void setSelectionStart(unsigned);
WEBCORE_EXPORT void setSelectionEnd(unsigned);
WEBCORE_EXPORT void setSelectionDirection(const String&);
WEBCORE_EXPORT void select(SelectionRevealMode = SelectionRevealMode::DoNotReveal, const AXTextStateChangeIntent& = AXTextStateChangeIntent());
WEBCORE_EXPORT ExceptionOr<void> setRangeText(StringView replacement);
WEBCORE_EXPORT virtual ExceptionOr<void> setRangeText(StringView replacement, unsigned start, unsigned end, const String& selectionMode);
void setSelectionRange(unsigned start, unsigned end, const String& direction, const AXTextStateChangeIntent& = AXTextStateChangeIntent());
WEBCORE_EXPORT bool setSelectionRange(unsigned start, unsigned end, TextFieldSelectionDirection = SelectionHasNoDirection, SelectionRevealMode = SelectionRevealMode::DoNotReveal, const AXTextStateChangeIntent& = AXTextStateChangeIntent());
TextFieldSelectionDirection computeSelectionDirection() const;
std::optional<SimpleRange> selection() const;
String selectedText() const;
void dispatchFormControlChangeEvent() final;
void scheduleSelectEvent();
virtual String value() const = 0;
virtual ExceptionOr<void> setValue(const String&, TextFieldEventBehavior = DispatchNoEvent, TextControlSetValueSelection = TextControlSetValueSelection::SetSelectionToEnd) = 0;
virtual RefPtr<TextControlInnerTextElement> innerTextElement() const = 0;
virtual RefPtr<TextControlInnerTextElement> innerTextElementCreatingShadowSubtreeIfNeeded() = 0;
virtual RenderStyle createInnerTextStyle(const RenderStyle&) = 0;
void selectionChanged(bool shouldFireSelectEvent);
WEBCORE_EXPORT bool lastChangeWasUserEdit() const;
void setInnerTextValue(String&&);
String innerTextValue() const;
String directionForFormData() const;
void setTextAsOfLastFormControlChangeEvent(const String& text) { m_textAsOfLastFormControlChangeEvent = text; }
WEBCORE_EXPORT virtual bool isInnerTextElementEditable() const;
bool canContainRangeEndPoint() const override { return false; }
protected:
HTMLTextFormControlElement(const QualifiedName&, Document&, HTMLFormElement*);
bool isPlaceholderEmpty() const;
virtual void updatePlaceholderText() = 0;
void attributeChanged(const QualifiedName&, const AtomString& oldValue, const AtomString& newValue, AttributeModificationReason) override;
void disabledStateChanged() override;
void readOnlyStateChanged() override;
bool readOnlyBarsFromConstraintValidation() const final { return true; }
void updateInnerTextElementEditability();
bool cacheSelection(unsigned start, unsigned end, TextFieldSelectionDirection);
void restoreCachedSelection(SelectionRevealMode, const AXTextStateChangeIntent& = AXTextStateChangeIntent());
bool hasCachedSelection() const { return m_hasCachedSelection; }
unsigned computeSelectionStart() const;
unsigned computeSelectionEnd() const;
virtual void subtreeHasChanged() = 0;
void setLastChangeWasNotUserEdit() { m_lastChangeWasUserEdit = false; }
String valueWithHardLineBreaks() const;
void adjustInnerTextStyle(const RenderStyle& parentStyle, RenderStyle& textBlockStyle) const;
void internalSetMaxLength(int maxLength) { m_maxLength = maxLength; }
void internalSetMinLength(int minLength) { m_minLength = minLength; }
private:
TextFieldSelectionDirection cachedSelectionDirection() const { return static_cast<TextFieldSelectionDirection>(m_cachedSelectionDirection); }
bool isTextFormControlElement() const final { return true; }
void dispatchFocusEvent(RefPtr<Element>&& oldFocusedElement, const FocusOptions&) final;
void dispatchBlurEvent(RefPtr<Element>&& newFocusedElement) final;
bool childShouldCreateRenderer(const Node&) const override;
void setHovered(bool, Style::InvalidationScope, HitTestRequest) final;
unsigned indexForPosition(const Position&) const;
// Returns true if user-editable value is empty. Used to check placeholder visibility.
virtual bool isEmptyValue() const = 0;
// Called in dispatchFocusEvent(), after placeholder process, before calling parent's dispatchFocusEvent().
virtual void handleFocusEvent(Node* /* oldFocusedNode */, FocusDirection) { }
// Called in dispatchBlurEvent(), after placeholder process, before calling parent's dispatchBlurEvent().
virtual void handleBlurEvent() { }
bool placeholderShouldBeVisible() const;
unsigned m_cachedSelectionDirection : 2;
unsigned m_lastChangeWasUserEdit : 1;
unsigned m_isPlaceholderVisible : 1;
unsigned m_canShowPlaceholder : 1;
String m_pointerType { mousePointerEventType() };
String m_textAsOfLastFormControlChangeEvent;
unsigned m_cachedSelectionStart;
unsigned m_cachedSelectionEnd;
int m_maxLength { -1 };
int m_minLength { -1 };
bool m_hasCachedSelection { false };
};
WEBCORE_EXPORT HTMLTextFormControlElement* enclosingTextFormControl(const Position&);
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::HTMLTextFormControlElement)
static bool isType(const WebCore::Element& element) { return element.isTextFormControlElement(); }
static bool isType(const WebCore::Node& node) { return is<WebCore::Element>(node) && isType(downcast<WebCore::Element>(node)); }
static bool isType(const WebCore::EventTarget& target) { return is<WebCore::Node>(target) && isType(downcast<WebCore::Node>(target)); }
SPECIALIZE_TYPE_TRAITS_END()
|