1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include "config.h"
32 #include "WebInputElement.h"
33
34 #include "HTMLInputElement.h"
35 #include "HTMLNames.h"
36 #include "WebString.h"
37 #include <wtf/PassRefPtr.h>
38
39 using namespace WebCore;
40
41 namespace WebKit {
42
WebInputElement(const WTF::PassRefPtr<HTMLInputElement> & elem)43 WebInputElement::WebInputElement(const WTF::PassRefPtr<HTMLInputElement>& elem)
44 : WebElement(elem.releaseRef())
45 {
46 }
47
operator =(const WTF::PassRefPtr<HTMLInputElement> & elem)48 WebInputElement& WebInputElement::operator=(const WTF::PassRefPtr<HTMLInputElement>& elem)
49 {
50 WebNode::assign(elem.releaseRef());
51 return *this;
52 }
53
operator WTF::PassRefPtr<HTMLInputElement>() const54 WebInputElement::operator WTF::PassRefPtr<HTMLInputElement>() const
55 {
56 return PassRefPtr<HTMLInputElement>(static_cast<HTMLInputElement*>(m_private));
57 }
58
autoComplete() const59 bool WebInputElement::autoComplete() const
60 {
61 return constUnwrap<HTMLInputElement>()->autoComplete();
62 }
63
isEnabledFormControl() const64 bool WebInputElement::isEnabledFormControl() const
65 {
66 return constUnwrap<HTMLInputElement>()->isEnabledFormControl();
67 }
68
inputType() const69 WebInputElement::InputType WebInputElement::inputType() const
70 {
71 return static_cast<InputType>(constUnwrap<HTMLInputElement>()->inputType());
72 }
73
formControlType() const74 WebString WebInputElement::formControlType() const
75 {
76 return constUnwrap<HTMLInputElement>()->formControlType();
77 }
78
isActivatedSubmit() const79 bool WebInputElement::isActivatedSubmit() const
80 {
81 return constUnwrap<HTMLInputElement>()->isActivatedSubmit();
82 }
83
setActivatedSubmit(bool activated)84 void WebInputElement::setActivatedSubmit(bool activated)
85 {
86 unwrap<HTMLInputElement>()->setActivatedSubmit(activated);
87 }
88
setValue(const WebString & value)89 void WebInputElement::setValue(const WebString& value)
90 {
91 unwrap<HTMLInputElement>()->setValue(value);
92 }
93
value() const94 WebString WebInputElement::value() const
95 {
96 return constUnwrap<HTMLInputElement>()->value();
97 }
98
setAutofilled(bool autoFilled)99 void WebInputElement::setAutofilled(bool autoFilled)
100 {
101 unwrap<HTMLInputElement>()->setAutofilled(autoFilled);
102 }
103
dispatchFormControlChangeEvent()104 void WebInputElement::dispatchFormControlChangeEvent()
105 {
106 unwrap<HTMLInputElement>()->dispatchFormControlChangeEvent();
107 }
108
setSelectionRange(int start,int end)109 void WebInputElement::setSelectionRange(int start, int end)
110 {
111 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
112 }
113
name() const114 WebString WebInputElement::name() const
115 {
116 return constUnwrap<HTMLInputElement>()->name();
117 }
118
nameForAutofill() const119 WebString WebInputElement::nameForAutofill() const
120 {
121 String name = constUnwrap<HTMLInputElement>()->name();
122 String trimmedName = name.stripWhiteSpace();
123 if (!trimmedName.isEmpty())
124 return trimmedName;
125 name = constUnwrap<HTMLInputElement>()->getAttribute(HTMLNames::idAttr);
126 trimmedName = name.stripWhiteSpace();
127 if (!trimmedName.isEmpty())
128 return trimmedName;
129 return String();
130 }
131
132 } // namespace WebKit
133