blob: 70527fc82b32d7def3f86450386d4665d55a921c [file] [log] [blame]
/*
* 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, 2008, 2009, 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 THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_HTML_FORM_CONTROL_ELEMENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_HTML_FORM_CONTROL_ELEMENT_H_
#include "third_party/blink/public/common/metrics/form_element_pii_type.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/web/web_autofill_state.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/html/forms/form_associated.h"
#include "third_party/blink/renderer/core/html/forms/listed_element.h"
#include "third_party/blink/renderer/core/html/html_element.h"
#include "third_party/blink/renderer/platform/wtf/casting.h"
namespace blink {
class HTMLFormElement;
// HTMLFormControlElement is the default implementation of
// ListedElement, and listed element implementations should use
// HTMLFormControlElement unless there is a special reason.
class CORE_EXPORT HTMLFormControlElement : public HTMLElement,
public ListedElement,
public FormAssociated {
public:
~HTMLFormControlElement() override;
void Trace(Visitor*) const override;
String formAction() const;
void setFormAction(const AtomicString&);
String formEnctype() const;
void setFormEnctype(const AtomicString&);
String formMethod() const;
void setFormMethod(const AtomicString&);
bool FormNoValidate() const;
void Reset();
HTMLFormElement* formOwner() const final;
bool IsDisabledFormControl() const override;
bool MatchesEnabledPseudoClass() const override;
bool IsEnumeratable() const override { return false; }
bool IsRequired() const;
const AtomicString& type() const { return FormControlType(); }
virtual const AtomicString& FormControlType() const = 0;
virtual bool CanTriggerImplicitSubmission() const { return false; }
virtual bool IsSubmittableElement() { return true; }
virtual String ResultForDialogSubmit();
// Return true if this control type can be a submit button. This doesn't
// check |disabled|, and this doesn't check if this is the first submit
// button.
virtual bool CanBeSuccessfulSubmitButton() const { return false; }
// Return true if this control can submit a form.
// i.e. canBeSuccessfulSubmitButton() && !isDisabledFormControl().
bool IsSuccessfulSubmitButton() const;
virtual bool IsActivatedSubmit() const { return false; }
virtual void SetActivatedSubmit(bool) {}
// Getter and setter for the PII type of the element derived from the autofill
// field semantic prediction.
virtual FormElementPiiType GetFormElementPiiType() const {
return FormElementPiiType::kUnknown;
}
virtual void SetFormElementPiiType(FormElementPiiType form_element_pii_type) {
}
bool willValidate() const override;
bool IsReadOnly() const;
bool IsDisabledOrReadOnly() const;
bool MayTriggerVirtualKeyboard() const override;
WebAutofillState GetAutofillState() const { return autofill_state_; }
bool IsAutofilled() const {
return autofill_state_ != WebAutofillState::kNotFilled;
}
void SetAutofillState(WebAutofillState = WebAutofillState::kAutofilled);
// The autofill section to which this element belongs (e.g. billing address,
// shipping address, .. .)
WebString AutofillSection() const { return autofill_section_; }
void SetAutofillSection(const WebString&);
const AtomicString& autocapitalize() const final;
static const HTMLFormControlElement* EnclosingFormControlElement(const Node*);
String NameForAutofill() const;
void CloneNonAttributePropertiesFrom(const Element&,
CloneChildrenFlag) override;
FormAssociated* ToFormAssociatedOrNull() override { return this; }
void AssociateWith(HTMLFormElement*) override;
bool BlocksFormSubmission() const { return blocks_form_submission_; }
void SetBlocksFormSubmission(bool value) { blocks_form_submission_ = value; }
unsigned UniqueRendererFormControlId() const {
return unique_renderer_form_control_id_;
}
int32_t GetAxId() const;
protected:
HTMLFormControlElement(const QualifiedName& tag_name, Document&);
void AttributeChanged(const AttributeModificationParams&) override;
void ParseAttribute(const AttributeModificationParams&) override;
virtual void RequiredAttributeChanged();
void DisabledAttributeChanged() override;
InsertionNotificationRequest InsertedInto(ContainerNode&) override;
void RemovedFrom(ContainerNode&) override;
void WillChangeForm() override;
void DidChangeForm() override;
void DidMoveToNewDocument(Document& old_document) override;
bool SupportsFocus() const override;
bool IsKeyboardFocusable() const override;
bool ShouldHaveFocusAppearance() const override;
virtual void ResetImpl() {}
private:
bool IsFormControlElement() const final { return true; }
bool AlwaysCreateUserAgentShadowRoot() const override { return true; }
bool IsValidElement() override;
bool MatchesValidityPseudoClasses() const override;
unsigned unique_renderer_form_control_id_;
WebString autofill_section_;
enum WebAutofillState autofill_state_;
bool blocks_form_submission_ : 1;
};
template <>
inline bool IsElementOfType<const HTMLFormControlElement>(const Node& node) {
return IsA<HTMLFormControlElement>(node);
}
template <>
struct DowncastTraits<HTMLFormControlElement> {
static bool AllowFrom(const Node& node) {
auto* html_element = DynamicTo<HTMLElement>(node);
return html_element && AllowFrom(*html_element);
}
static bool AllowFrom(const ListedElement& control) {
return control.IsFormControlElement();
}
static bool AllowFrom(const HTMLElement& html_element) {
return html_element.IsFormControlElement();
}
};
} // namespace blink
#endif