tizen beta release
[framework/web/webkit-efl.git] / Source / WebKit / chromium / src / WebElement.cpp
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 "WebElement.h"
33 #include "WebDocument.h"
34
35 #include "Element.h"
36 #include "RenderBoxModelObject.h"
37 #include "RenderObject.h"
38 #include <wtf/PassRefPtr.h>
39
40 #include "WebNamedNodeMap.h"
41
42 using namespace WebCore;
43
44 namespace WebKit {
45
46 bool WebElement::isFormControlElement() const
47 {
48     return constUnwrap<Element>()->isFormControlElement();
49 }
50
51 bool WebElement::isTextFormControlElement() const
52 {
53     return constUnwrap<Element>()->isTextFormControl();
54 }
55
56 WebString WebElement::tagName() const
57 {
58     return constUnwrap<Element>()->tagName();
59 }
60
61 bool WebElement::hasTagName(const WebString& tagName) const
62 {
63     return equalIgnoringCase(constUnwrap<Element>()->tagName(),
64                              tagName.operator String());
65 }
66
67 bool WebElement::hasAttribute(const WebString& attrName) const
68 {
69     return constUnwrap<Element>()->hasAttribute(attrName);
70 }
71
72 WebString WebElement::getAttribute(const WebString& attrName) const
73 {
74     return constUnwrap<Element>()->getAttribute(attrName);
75 }
76
77 bool WebElement::setAttribute(const WebString& attrName, const WebString& attrValue)
78 {
79     ExceptionCode exceptionCode = 0;
80     unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
81     return !exceptionCode;
82 }
83
84 WebNamedNodeMap WebElement::attributes() const
85 {
86     return WebNamedNodeMap(m_private->attributes());
87 }
88
89 WebString WebElement::innerText()
90 {
91     return unwrap<Element>()->innerText();
92 }
93
94 WebString WebElement::computeInheritedLanguage() const
95 {
96     return WebString(constUnwrap<Element>()->computeInheritedLanguage());
97 }
98
99 void WebElement::requestFullScreen()
100 {
101 #if ENABLE(FULLSCREEN_API)
102     unwrap<Element>()->webkitRequestFullScreen(Element::ALLOW_KEYBOARD_INPUT);
103 #endif
104 }
105
106 WebDocument WebElement::document() const
107 {
108     return WebDocument(constUnwrap<Element>()->document());
109 }
110
111 WebElement::WebElement(const PassRefPtr<Element>& elem)
112     : WebNode(elem)
113 {
114 }
115
116 WebElement& WebElement::operator=(const PassRefPtr<Element>& elem)
117 {
118     m_private = elem;
119     return *this;
120 }
121
122 WebElement::operator PassRefPtr<Element>() const
123 {
124     return static_cast<Element*>(m_private.get());
125 }
126
127 } // namespace WebKit