/* * This file is part of the WebKit open source project. * * 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. */ #include "config.h" #include "WebKitDOMHTMLTableSectionElement.h" #include #include "DOMObjectCache.h" #include #include #include #include "GObjectEventListener.h" #include #include #include "WebKitDOMEventPrivate.h" #include "WebKitDOMEventTarget.h" #include "WebKitDOMHTMLCollectionPrivate.h" #include "WebKitDOMHTMLElementPrivate.h" #include "WebKitDOMHTMLTableSectionElementPrivate.h" #include "WebKitDOMNodePrivate.h" #include "WebKitDOMPrivate.h" #include "ConvertToUTF8String.h" #include #include namespace WebKit { WebKitDOMHTMLTableSectionElement* kit(WebCore::HTMLTableSectionElement* obj) { return WEBKIT_DOM_HTML_TABLE_SECTION_ELEMENT(kit(static_cast(obj))); } WebCore::HTMLTableSectionElement* core(WebKitDOMHTMLTableSectionElement* request) { return request ? static_cast(WEBKIT_DOM_OBJECT(request)->coreObject) : 0; } WebKitDOMHTMLTableSectionElement* wrapHTMLTableSectionElement(WebCore::HTMLTableSectionElement* coreObject) { ASSERT(coreObject); return WEBKIT_DOM_HTML_TABLE_SECTION_ELEMENT(g_object_new(WEBKIT_DOM_TYPE_HTML_TABLE_SECTION_ELEMENT, "core-object", coreObject, nullptr)); } } // namespace WebKit static gboolean webkit_dom_html_table_section_element_dispatch_event(WebKitDOMEventTarget* target, WebKitDOMEvent* event, GError** error) { WebCore::Event* coreEvent = WebKit::core(event); if (!coreEvent) return false; WebCore::HTMLTableSectionElement* coreTarget = static_cast(WEBKIT_DOM_OBJECT(target)->coreObject); auto result = coreTarget->dispatchEventForBindings(*coreEvent); if (result.hasException()) { WebCore::ExceptionCodeDescription description(result.releaseException().code()); g_set_error_literal(error, g_quark_from_string("WEBKIT_DOM"), description.code, description.name); return false; } return result.releaseReturnValue(); } static gboolean webkit_dom_html_table_section_element_add_event_listener(WebKitDOMEventTarget* target, const char* eventName, GClosure* handler, gboolean useCapture) { WebCore::HTMLTableSectionElement* coreTarget = static_cast(WEBKIT_DOM_OBJECT(target)->coreObject); return WebKit::GObjectEventListener::addEventListener(G_OBJECT(target), coreTarget, eventName, handler, useCapture); } static gboolean webkit_dom_html_table_section_element_remove_event_listener(WebKitDOMEventTarget* target, const char* eventName, GClosure* handler, gboolean useCapture) { WebCore::HTMLTableSectionElement* coreTarget = static_cast(WEBKIT_DOM_OBJECT(target)->coreObject); return WebKit::GObjectEventListener::removeEventListener(G_OBJECT(target), coreTarget, eventName, handler, useCapture); } static void webkit_dom_event_target_init(WebKitDOMEventTargetIface* iface) { iface->dispatch_event = webkit_dom_html_table_section_element_dispatch_event; iface->add_event_listener = webkit_dom_html_table_section_element_add_event_listener; iface->remove_event_listener = webkit_dom_html_table_section_element_remove_event_listener; } G_DEFINE_TYPE_WITH_CODE(WebKitDOMHTMLTableSectionElement, webkit_dom_html_table_section_element, WEBKIT_DOM_TYPE_HTML_ELEMENT, G_IMPLEMENT_INTERFACE(WEBKIT_DOM_TYPE_EVENT_TARGET, webkit_dom_event_target_init)) enum { PROP_0, PROP_ALIGN, PROP_CH, PROP_CH_OFF, PROP_V_ALIGN, PROP_ROWS, }; static void webkit_dom_html_table_section_element_set_property(GObject* object, guint propertyId, const GValue* value, GParamSpec* pspec) { WebKitDOMHTMLTableSectionElement* self = WEBKIT_DOM_HTML_TABLE_SECTION_ELEMENT(object); switch (propertyId) { case PROP_ALIGN: webkit_dom_html_table_section_element_set_align(self, g_value_get_string(value)); break; case PROP_CH: webkit_dom_html_table_section_element_set_ch(self, g_value_get_string(value)); break; case PROP_CH_OFF: webkit_dom_html_table_section_element_set_ch_off(self, g_value_get_string(value)); break; case PROP_V_ALIGN: webkit_dom_html_table_section_element_set_v_align(self, g_value_get_string(value)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec); break; } } static void webkit_dom_html_table_section_element_get_property(GObject* object, guint propertyId, GValue* value, GParamSpec* pspec) { WebKitDOMHTMLTableSectionElement* self = WEBKIT_DOM_HTML_TABLE_SECTION_ELEMENT(object); switch (propertyId) { case PROP_ALIGN: g_value_take_string(value, webkit_dom_html_table_section_element_get_align(self)); break; case PROP_CH: g_value_take_string(value, webkit_dom_html_table_section_element_get_ch(self)); break; case PROP_CH_OFF: g_value_take_string(value, webkit_dom_html_table_section_element_get_ch_off(self)); break; case PROP_V_ALIGN: g_value_take_string(value, webkit_dom_html_table_section_element_get_v_align(self)); break; case PROP_ROWS: g_value_set_object(value, webkit_dom_html_table_section_element_get_rows(self)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec); break; } } static void webkit_dom_html_table_section_element_class_init(WebKitDOMHTMLTableSectionElementClass* requestClass) { GObjectClass* gobjectClass = G_OBJECT_CLASS(requestClass); gobjectClass->set_property = webkit_dom_html_table_section_element_set_property; gobjectClass->get_property = webkit_dom_html_table_section_element_get_property; g_object_class_install_property( gobjectClass, PROP_ALIGN, g_param_spec_string( "align", "HTMLTableSectionElement:align", "read-write gchar* HTMLTableSectionElement:align", "", WEBKIT_PARAM_READWRITE)); g_object_class_install_property( gobjectClass, PROP_CH, g_param_spec_string( "ch", "HTMLTableSectionElement:ch", "read-write gchar* HTMLTableSectionElement:ch", "", WEBKIT_PARAM_READWRITE)); g_object_class_install_property( gobjectClass, PROP_CH_OFF, g_param_spec_string( "ch-off", "HTMLTableSectionElement:ch-off", "read-write gchar* HTMLTableSectionElement:ch-off", "", WEBKIT_PARAM_READWRITE)); g_object_class_install_property( gobjectClass, PROP_V_ALIGN, g_param_spec_string( "v-align", "HTMLTableSectionElement:v-align", "read-write gchar* HTMLTableSectionElement:v-align", "", WEBKIT_PARAM_READWRITE)); g_object_class_install_property( gobjectClass, PROP_ROWS, g_param_spec_object( "rows", "HTMLTableSectionElement:rows", "read-only WebKitDOMHTMLCollection* HTMLTableSectionElement:rows", WEBKIT_DOM_TYPE_HTML_COLLECTION, WEBKIT_PARAM_READABLE)); } static void webkit_dom_html_table_section_element_init(WebKitDOMHTMLTableSectionElement* request) { UNUSED_PARAM(request); } WebKitDOMHTMLElement* webkit_dom_html_table_section_element_insert_row(WebKitDOMHTMLTableSectionElement* self, glong index, GError** error) { WebCore::JSMainThreadNullState state; g_return_val_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self), 0); g_return_val_if_fail(!error || !*error, 0); WebCore::HTMLTableSectionElement* item = WebKit::core(self); auto result = item->insertRow(index); if (result.hasException()) { WebCore::ExceptionCodeDescription ecdesc(result.releaseException().code()); g_set_error_literal(error, g_quark_from_string("WEBKIT_DOM"), ecdesc.code, ecdesc.name); } return WebKit::kit(result.releaseReturnValue().ptr()); } void webkit_dom_html_table_section_element_delete_row(WebKitDOMHTMLTableSectionElement* self, glong index, GError** error) { WebCore::JSMainThreadNullState state; g_return_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self)); g_return_if_fail(!error || !*error); WebCore::HTMLTableSectionElement* item = WebKit::core(self); auto result = item->deleteRow(index); if (result.hasException()) { WebCore::ExceptionCodeDescription ecdesc(result.releaseException().code()); g_set_error_literal(error, g_quark_from_string("WEBKIT_DOM"), ecdesc.code, ecdesc.name); } } gchar* webkit_dom_html_table_section_element_get_align(WebKitDOMHTMLTableSectionElement* self) { WebCore::JSMainThreadNullState state; g_return_val_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self), 0); WebCore::HTMLTableSectionElement* item = WebKit::core(self); gchar* result = convertToUTF8String(item->attributeWithoutSynchronization(WebCore::HTMLNames::alignAttr)); return result; } void webkit_dom_html_table_section_element_set_align(WebKitDOMHTMLTableSectionElement* self, const gchar* value) { WebCore::JSMainThreadNullState state; g_return_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self)); g_return_if_fail(value); WebCore::HTMLTableSectionElement* item = WebKit::core(self); WTF::String convertedValue = WTF::String::fromUTF8(value); item->setAttributeWithoutSynchronization(WebCore::HTMLNames::alignAttr, convertedValue); } gchar* webkit_dom_html_table_section_element_get_ch(WebKitDOMHTMLTableSectionElement* self) { WebCore::JSMainThreadNullState state; g_return_val_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self), 0); WebCore::HTMLTableSectionElement* item = WebKit::core(self); gchar* result = convertToUTF8String(item->attributeWithoutSynchronization(WebCore::HTMLNames::charAttr)); return result; } void webkit_dom_html_table_section_element_set_ch(WebKitDOMHTMLTableSectionElement* self, const gchar* value) { WebCore::JSMainThreadNullState state; g_return_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self)); g_return_if_fail(value); WebCore::HTMLTableSectionElement* item = WebKit::core(self); WTF::String convertedValue = WTF::String::fromUTF8(value); item->setAttributeWithoutSynchronization(WebCore::HTMLNames::charAttr, convertedValue); } gchar* webkit_dom_html_table_section_element_get_ch_off(WebKitDOMHTMLTableSectionElement* self) { WebCore::JSMainThreadNullState state; g_return_val_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self), 0); WebCore::HTMLTableSectionElement* item = WebKit::core(self); gchar* result = convertToUTF8String(item->attributeWithoutSynchronization(WebCore::HTMLNames::charoffAttr)); return result; } void webkit_dom_html_table_section_element_set_ch_off(WebKitDOMHTMLTableSectionElement* self, const gchar* value) { WebCore::JSMainThreadNullState state; g_return_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self)); g_return_if_fail(value); WebCore::HTMLTableSectionElement* item = WebKit::core(self); WTF::String convertedValue = WTF::String::fromUTF8(value); item->setAttributeWithoutSynchronization(WebCore::HTMLNames::charoffAttr, convertedValue); } gchar* webkit_dom_html_table_section_element_get_v_align(WebKitDOMHTMLTableSectionElement* self) { WebCore::JSMainThreadNullState state; g_return_val_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self), 0); WebCore::HTMLTableSectionElement* item = WebKit::core(self); gchar* result = convertToUTF8String(item->attributeWithoutSynchronization(WebCore::HTMLNames::valignAttr)); return result; } void webkit_dom_html_table_section_element_set_v_align(WebKitDOMHTMLTableSectionElement* self, const gchar* value) { WebCore::JSMainThreadNullState state; g_return_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self)); g_return_if_fail(value); WebCore::HTMLTableSectionElement* item = WebKit::core(self); WTF::String convertedValue = WTF::String::fromUTF8(value); item->setAttributeWithoutSynchronization(WebCore::HTMLNames::valignAttr, convertedValue); } WebKitDOMHTMLCollection* webkit_dom_html_table_section_element_get_rows(WebKitDOMHTMLTableSectionElement* self) { WebCore::JSMainThreadNullState state; g_return_val_if_fail(WEBKIT_DOM_IS_HTML_TABLE_SECTION_ELEMENT(self), 0); WebCore::HTMLTableSectionElement* item = WebKit::core(self); RefPtr gobjectResult = WTF::getPtr(item->rows()); return WebKit::kit(gobjectResult.get()); }