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
|
/*
* 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, 2005, 2006, 2007, 2010 Apple 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.
*
*/
#ifndef HTMLTextAreaElement_h
#define HTMLTextAreaElement_h
#include "base/gtest_prod_util.h"
#include "core/CoreExport.h"
#include "core/html/TextControlElement.h"
namespace blink {
class BeforeTextInsertedEvent;
class CORE_EXPORT HTMLTextAreaElement final : public TextControlElement {
DEFINE_WRAPPERTYPEINFO();
public:
static HTMLTextAreaElement* create(Document&);
unsigned cols() const { return m_cols; }
unsigned rows() const { return m_rows; }
bool shouldWrapText() const { return m_wrap != NoWrap; }
String value() const override;
void setValue(const String&,
TextFieldEventBehavior = DispatchNoEvent) override;
String defaultValue() const;
void setDefaultValue(const String&);
int textLength() const { return value().length(); }
String suggestedValue() const;
void setSuggestedValue(const String&);
// For ValidityState
String validationMessage() const override;
bool valueMissing() const override;
bool tooLong() const override;
bool tooShort() const override;
bool isValidValue(const String&) const;
void setCols(unsigned);
void setRows(unsigned);
private:
FRIEND_TEST_ALL_PREFIXES(HTMLTextAreaElementTest, SanitizeUserInputValue);
explicit HTMLTextAreaElement(Document&);
enum WrapMethod { NoWrap, SoftWrap, HardWrap };
enum SetValueCommonOption { NotSetSelection, SetSeletion };
void didAddUserAgentShadowRoot(ShadowRoot&) override;
// FIXME: Author shadows should be allowed
// https://bugs.webkit.org/show_bug.cgi?id=92608
bool areAuthorShadowsAllowed() const override { return false; }
void handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*) const;
static String sanitizeUserInputValue(const String&, unsigned maxLength);
void updateValue() const;
void setInnerEditorValue(const String&) override;
void setNonDirtyValue(const String&);
void setValueCommon(const String&,
TextFieldEventBehavior,
SetValueCommonOption = NotSetSelection);
bool isPlaceholderVisible() const override { return m_isPlaceholderVisible; }
void setPlaceholderVisibility(bool) override;
bool supportsPlaceholder() const override { return true; }
void updatePlaceholderText() override;
bool isEmptyValue() const override { return value().isEmpty(); }
bool isEmptySuggestedValue() const final {
return suggestedValue().isEmpty();
}
bool supportsAutocapitalize() const override { return true; }
const AtomicString& defaultAutocapitalize() const override;
bool isOptionalFormControl() const override {
return !isRequiredFormControl();
}
bool isRequiredFormControl() const override { return isRequired(); }
void defaultEventHandler(Event*) override;
void handleFocusEvent(Element* oldFocusedNode, WebFocusType) override;
void subtreeHasChanged() override;
bool isEnumeratable() const override { return true; }
bool isInteractiveContent() const override;
bool supportsAutofocus() const override;
bool supportLabels() const override { return true; }
const AtomicString& formControlType() const override;
FormControlState saveFormControlState() const override;
void restoreFormControlState(const FormControlState&) override;
bool isTextControl() const override { return true; }
void childrenChanged(const ChildrenChange&) override;
void parseAttribute(const AttributeModificationParams&) override;
bool isPresentationAttribute(const QualifiedName&) const override;
void collectStyleForPresentationAttribute(const QualifiedName&,
const AtomicString&,
MutableStylePropertySet*) override;
LayoutObject* createLayoutObject(const ComputedStyle&) override;
void appendToFormData(FormData&) override;
void resetImpl() override;
bool hasCustomFocusLogic() const override;
bool shouldShowFocusRingOnMouseFocus() const override;
bool isKeyboardFocusable() const override;
void updateFocusAppearance(SelectionBehaviorOnFocus) override;
void accessKeyAction(bool sendMouseEvents) override;
bool matchesReadOnlyPseudoClass() const override;
bool matchesReadWritePseudoClass() const override;
void copyNonAttributePropertiesFromElement(const Element&) final;
// If the String* argument is 0, apply this->value().
bool valueMissing(const String*) const;
bool tooLong(const String*, NeedsToCheckDirtyFlag) const;
bool tooShort(const String*, NeedsToCheckDirtyFlag) const;
unsigned m_rows;
unsigned m_cols;
WrapMethod m_wrap;
mutable String m_value;
mutable bool m_isDirty;
bool m_valueIsUpToDate;
unsigned m_isPlaceholderVisible : 1;
String m_suggestedValue;
};
} // namespace blink
#endif // HTMLTextAreaElement_h
|