Home | History | Annotate | Download | only in src

Lines Matching defs:WebInputElement

32 #include "WebInputElement.h"
43 bool WebInputElement::isTextField() const
48 bool WebInputElement::isText() const
53 bool WebInputElement::isPasswordField() const
58 bool WebInputElement::isImageButton() const
63 bool WebInputElement::autoComplete() const
68 int WebInputElement::maxLength() const
73 bool WebInputElement::isActivatedSubmit() const
78 void WebInputElement::setActivatedSubmit(bool activated)
83 int WebInputElement::size() const
88 void WebInputElement::setValue(const WebString& value, bool sendChangeEvent)
93 WebString WebInputElement::value() const
98 void WebInputElement::setSuggestedValue(const WebString& value)
103 WebString WebInputElement::suggestedValue() const
108 void WebInputElement::setPlaceholder(const WebString& value)
113 WebString WebInputElement::placeholder() const
118 bool WebInputElement::isAutofilled() const
123 void WebInputElement::setAutofilled(bool autoFilled)
128 void WebInputElement::setSelectionRange(int start, int end)
133 int WebInputElement::selectionStart() const
138 int WebInputElement::selectionEnd() const
143 bool WebInputElement::isValidValue(const WebString& value) const
148 bool WebInputElement::isChecked() const
153 int WebInputElement::defaultMaxLength()
158 WebInputElement::WebInputElement(const PassRefPtr<HTMLInputElement>& elem)
163 WebInputElement& WebInputElement::operator=(const PassRefPtr<HTMLInputElement>& elem)
169 WebInputElement::operator PassRefPtr<HTMLInputElement>() const
174 WebInputElement* toWebInputElement(WebElement* webElement)
182 return static_cast<WebInputElement*>(webElement);