1 | /* |
2 | * This file is part of the WebKit open source project. |
3 | * |
4 | * This library is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Library General Public |
6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License, or (at your option) any later version. |
8 | * |
9 | * This library is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU Library General Public License |
15 | * along with this library; see the file COPYING.LIB. If not, write to |
16 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
17 | * Boston, MA 02110-1301, USA. |
18 | */ |
19 | |
20 | #include "config.h" |
21 | #include "WebKitDOMHTMLLegendElement.h" |
22 | |
23 | #include <WebCore/CSSImportRule.h> |
24 | #include "DOMObjectCache.h" |
25 | #include <WebCore/DOMException.h> |
26 | #include <WebCore/Document.h> |
27 | #include "GObjectEventListener.h" |
28 | #include <WebCore/HTMLNames.h> |
29 | #include <WebCore/JSExecState.h> |
30 | #include "WebKitDOMEventPrivate.h" |
31 | #include "WebKitDOMEventTarget.h" |
32 | #include "WebKitDOMHTMLFormElementPrivate.h" |
33 | #include "WebKitDOMHTMLLegendElementPrivate.h" |
34 | #include "WebKitDOMNodePrivate.h" |
35 | #include "WebKitDOMPrivate.h" |
36 | #include "ConvertToUTF8String.h" |
37 | #include <wtf/GetPtr.h> |
38 | #include <wtf/RefPtr.h> |
39 | |
40 | G_GNUC_BEGIN_IGNORE_DEPRECATIONS; |
41 | |
42 | namespace WebKit { |
43 | |
44 | WebKitDOMHTMLLegendElement* kit(WebCore::HTMLLegendElement* obj) |
45 | { |
46 | return WEBKIT_DOM_HTML_LEGEND_ELEMENT(kit(static_cast<WebCore::Node*>(obj))); |
47 | } |
48 | |
49 | WebCore::HTMLLegendElement* core(WebKitDOMHTMLLegendElement* request) |
50 | { |
51 | return request ? static_cast<WebCore::HTMLLegendElement*>(WEBKIT_DOM_OBJECT(request)->coreObject) : 0; |
52 | } |
53 | |
54 | WebKitDOMHTMLLegendElement* wrapHTMLLegendElement(WebCore::HTMLLegendElement* coreObject) |
55 | { |
56 | ASSERT(coreObject); |
57 | return WEBKIT_DOM_HTML_LEGEND_ELEMENT(g_object_new(WEBKIT_DOM_TYPE_HTML_LEGEND_ELEMENT, "core-object" , coreObject, nullptr)); |
58 | } |
59 | |
60 | } // namespace WebKit |
61 | |
62 | static gboolean webkit_dom_html_legend_element_dispatch_event(WebKitDOMEventTarget* target, WebKitDOMEvent* event, GError** error) |
63 | { |
64 | WebCore::Event* coreEvent = WebKit::core(event); |
65 | if (!coreEvent) |
66 | return false; |
67 | WebCore::HTMLLegendElement* coreTarget = static_cast<WebCore::HTMLLegendElement*>(WEBKIT_DOM_OBJECT(target)->coreObject); |
68 | |
69 | auto result = coreTarget->dispatchEventForBindings(*coreEvent); |
70 | if (result.hasException()) { |
71 | auto description = WebCore::DOMException::description(result.releaseException().code()); |
72 | g_set_error_literal(error, g_quark_from_string("WEBKIT_DOM" ), description.legacyCode, description.name); |
73 | return false; |
74 | } |
75 | return result.releaseReturnValue(); |
76 | } |
77 | |
78 | static gboolean webkit_dom_html_legend_element_add_event_listener(WebKitDOMEventTarget* target, const char* eventName, GClosure* handler, gboolean useCapture) |
79 | { |
80 | WebCore::HTMLLegendElement* coreTarget = static_cast<WebCore::HTMLLegendElement*>(WEBKIT_DOM_OBJECT(target)->coreObject); |
81 | return WebKit::GObjectEventListener::addEventListener(G_OBJECT(target), coreTarget, eventName, handler, useCapture); |
82 | } |
83 | |
84 | static gboolean webkit_dom_html_legend_element_remove_event_listener(WebKitDOMEventTarget* target, const char* eventName, GClosure* handler, gboolean useCapture) |
85 | { |
86 | WebCore::HTMLLegendElement* coreTarget = static_cast<WebCore::HTMLLegendElement*>(WEBKIT_DOM_OBJECT(target)->coreObject); |
87 | return WebKit::GObjectEventListener::removeEventListener(G_OBJECT(target), coreTarget, eventName, handler, useCapture); |
88 | } |
89 | |
90 | static void webkit_dom_html_legend_element_dom_event_target_init(WebKitDOMEventTargetIface* iface) |
91 | { |
92 | iface->dispatch_event = webkit_dom_html_legend_element_dispatch_event; |
93 | iface->add_event_listener = webkit_dom_html_legend_element_add_event_listener; |
94 | iface->remove_event_listener = webkit_dom_html_legend_element_remove_event_listener; |
95 | } |
96 | |
97 | G_DEFINE_TYPE_WITH_CODE(WebKitDOMHTMLLegendElement, webkit_dom_html_legend_element, WEBKIT_DOM_TYPE_HTML_ELEMENT, G_IMPLEMENT_INTERFACE(WEBKIT_DOM_TYPE_EVENT_TARGET, webkit_dom_html_legend_element_dom_event_target_init)) |
98 | |
99 | enum { |
100 | DOM_HTML_LEGEND_ELEMENT_PROP_0, |
101 | DOM_HTML_LEGEND_ELEMENT_PROP_FORM, |
102 | DOM_HTML_LEGEND_ELEMENT_PROP_ALIGN, |
103 | }; |
104 | |
105 | static void webkit_dom_html_legend_element_set_property(GObject* object, guint propertyId, const GValue* value, GParamSpec* pspec) |
106 | { |
107 | WebKitDOMHTMLLegendElement* self = WEBKIT_DOM_HTML_LEGEND_ELEMENT(object); |
108 | |
109 | switch (propertyId) { |
110 | case DOM_HTML_LEGEND_ELEMENT_PROP_ALIGN: |
111 | webkit_dom_html_legend_element_set_align(self, g_value_get_string(value)); |
112 | break; |
113 | default: |
114 | G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec); |
115 | break; |
116 | } |
117 | } |
118 | |
119 | static void webkit_dom_html_legend_element_get_property(GObject* object, guint propertyId, GValue* value, GParamSpec* pspec) |
120 | { |
121 | WebKitDOMHTMLLegendElement* self = WEBKIT_DOM_HTML_LEGEND_ELEMENT(object); |
122 | |
123 | switch (propertyId) { |
124 | case DOM_HTML_LEGEND_ELEMENT_PROP_FORM: |
125 | g_value_set_object(value, webkit_dom_html_legend_element_get_form(self)); |
126 | break; |
127 | case DOM_HTML_LEGEND_ELEMENT_PROP_ALIGN: |
128 | g_value_take_string(value, webkit_dom_html_legend_element_get_align(self)); |
129 | break; |
130 | default: |
131 | G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec); |
132 | break; |
133 | } |
134 | } |
135 | |
136 | static void webkit_dom_html_legend_element_class_init(WebKitDOMHTMLLegendElementClass* requestClass) |
137 | { |
138 | GObjectClass* gobjectClass = G_OBJECT_CLASS(requestClass); |
139 | gobjectClass->set_property = webkit_dom_html_legend_element_set_property; |
140 | gobjectClass->get_property = webkit_dom_html_legend_element_get_property; |
141 | |
142 | g_object_class_install_property( |
143 | gobjectClass, |
144 | DOM_HTML_LEGEND_ELEMENT_PROP_FORM, |
145 | g_param_spec_object( |
146 | "form" , |
147 | "HTMLLegendElement:form" , |
148 | "read-only WebKitDOMHTMLFormElement* HTMLLegendElement:form" , |
149 | WEBKIT_DOM_TYPE_HTML_FORM_ELEMENT, |
150 | WEBKIT_PARAM_READABLE)); |
151 | |
152 | g_object_class_install_property( |
153 | gobjectClass, |
154 | DOM_HTML_LEGEND_ELEMENT_PROP_ALIGN, |
155 | g_param_spec_string( |
156 | "align" , |
157 | "HTMLLegendElement:align" , |
158 | "read-write gchar* HTMLLegendElement:align" , |
159 | "" , |
160 | WEBKIT_PARAM_READWRITE)); |
161 | |
162 | } |
163 | |
164 | static void webkit_dom_html_legend_element_init(WebKitDOMHTMLLegendElement* request) |
165 | { |
166 | UNUSED_PARAM(request); |
167 | } |
168 | |
169 | WebKitDOMHTMLFormElement* webkit_dom_html_legend_element_get_form(WebKitDOMHTMLLegendElement* self) |
170 | { |
171 | WebCore::JSMainThreadNullState state; |
172 | g_return_val_if_fail(WEBKIT_DOM_IS_HTML_LEGEND_ELEMENT(self), 0); |
173 | WebCore::HTMLLegendElement* item = WebKit::core(self); |
174 | RefPtr<WebCore::HTMLFormElement> gobjectResult = WTF::getPtr(item->form()); |
175 | return WebKit::kit(gobjectResult.get()); |
176 | } |
177 | |
178 | gchar* webkit_dom_html_legend_element_get_align(WebKitDOMHTMLLegendElement* self) |
179 | { |
180 | WebCore::JSMainThreadNullState state; |
181 | g_return_val_if_fail(WEBKIT_DOM_IS_HTML_LEGEND_ELEMENT(self), 0); |
182 | WebCore::HTMLLegendElement* item = WebKit::core(self); |
183 | gchar* result = convertToUTF8String(item->attributeWithoutSynchronization(WebCore::HTMLNames::alignAttr)); |
184 | return result; |
185 | } |
186 | |
187 | void webkit_dom_html_legend_element_set_align(WebKitDOMHTMLLegendElement* self, const gchar* value) |
188 | { |
189 | WebCore::JSMainThreadNullState state; |
190 | g_return_if_fail(WEBKIT_DOM_IS_HTML_LEGEND_ELEMENT(self)); |
191 | g_return_if_fail(value); |
192 | WebCore::HTMLLegendElement* item = WebKit::core(self); |
193 | WTF::String convertedValue = WTF::String::fromUTF8(value); |
194 | item->setAttributeWithoutSynchronization(WebCore::HTMLNames::alignAttr, convertedValue); |
195 | } |
196 | |
197 | G_GNUC_END_IGNORE_DEPRECATIONS; |
198 | |