From 60f58af24d0ea8bc5c1aa6b3136674b67a3570a7 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Thu, 19 Jul 2012 12:53:44 +0100 Subject: HTMLOptGroupElement: Prepare for implementation --- Makefile | 1 + include/dom/dom.h | 1 + include/dom/html/html_opt_group_element.h | 7 +++++++ include/dom/html/html_optgroup_element.h | 7 ------- src/html/Makefile | 6 +++--- src/html/html_opt_group_element.c | 7 +++++++ src/html/html_opt_group_element.h | 7 +++++++ src/html/html_optgroup_element.c | 7 ------- src/html/html_optgroup_element.h | 7 ------- 9 files changed, 26 insertions(+), 24 deletions(-) create mode 100644 include/dom/html/html_opt_group_element.h delete mode 100644 include/dom/html/html_optgroup_element.h create mode 100644 src/html/html_opt_group_element.c create mode 100644 src/html/html_opt_group_element.h delete mode 100644 src/html/html_optgroup_element.c delete mode 100644 src/html/html_optgroup_element.h diff --git a/Makefile b/Makefile index 8b64f4b..be9cc2d 100644 --- a/Makefile +++ b/Makefile @@ -91,6 +91,7 @@ INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_form_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_button_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_input_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_text_area_element.h +INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_opt_group_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) /lib/pkgconfig:lib$(COMPONENT).pc.in INSTALL_ITEMS := $(INSTALL_ITEMS) /lib:$(OUTPUT) diff --git a/include/dom/dom.h b/include/dom/dom.h index bfe9378..7a17152 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -50,6 +50,7 @@ #include #include #include +#include /* DOM Events header */ #include diff --git a/include/dom/html/html_opt_group_element.h b/include/dom/html/html_opt_group_element.h new file mode 100644 index 0000000..2e182d5 --- /dev/null +++ b/include/dom/html/html_opt_group_element.h @@ -0,0 +1,7 @@ +/* + * This file is part of libdom. + * Licensed under the MIT License, + * http://www.opensource.org/licenses/mit-license.php + * Copyright 2009 Bo Yang + */ + diff --git a/include/dom/html/html_optgroup_element.h b/include/dom/html/html_optgroup_element.h deleted file mode 100644 index 2e182d5..0000000 --- a/include/dom/html/html_optgroup_element.h +++ /dev/null @@ -1,7 +0,0 @@ -/* - * This file is part of libdom. - * Licensed under the MIT License, - * http://www.opensource.org/licenses/mit-license.php - * Copyright 2009 Bo Yang - */ - diff --git a/src/html/Makefile b/src/html/Makefile index 9fdcea4..3001c59 100644 --- a/src/html/Makefile +++ b/src/html/Makefile @@ -5,10 +5,10 @@ DIR_SOURCES := \ html_link_element.c html_title_element.c html_meta_element.c \ html_base_element.c html_isindex_element.c html_style_element.c \ html_body_element.c html_form_element.c html_select_element.c \ - html_button_element.c html_input_element.c html_text_area_element.c + html_button_element.c html_input_element.c html_text_area_element.c \ + html_opt_group_element.c -UNINMPLEMENTED_SOURCES := html_optgroup_element.c \ - html_option_element.c \ +UNINMPLEMENTED_SOURCES := html_option_element.c \ html_label_element.c html_fieldset_element.c \ html_legend_element.c html_ulist_element.c html_olist_element.c \ html_dlist_element.c html_directory_element.c html_menu_element.c \ diff --git a/src/html/html_opt_group_element.c b/src/html/html_opt_group_element.c new file mode 100644 index 0000000..2e182d5 --- /dev/null +++ b/src/html/html_opt_group_element.c @@ -0,0 +1,7 @@ +/* + * This file is part of libdom. + * Licensed under the MIT License, + * http://www.opensource.org/licenses/mit-license.php + * Copyright 2009 Bo Yang + */ + diff --git a/src/html/html_opt_group_element.h b/src/html/html_opt_group_element.h new file mode 100644 index 0000000..2e182d5 --- /dev/null +++ b/src/html/html_opt_group_element.h @@ -0,0 +1,7 @@ +/* + * This file is part of libdom. + * Licensed under the MIT License, + * http://www.opensource.org/licenses/mit-license.php + * Copyright 2009 Bo Yang + */ + diff --git a/src/html/html_optgroup_element.c b/src/html/html_optgroup_element.c deleted file mode 100644 index 2e182d5..0000000 --- a/src/html/html_optgroup_element.c +++ /dev/null @@ -1,7 +0,0 @@ -/* - * This file is part of libdom. - * Licensed under the MIT License, - * http://www.opensource.org/licenses/mit-license.php - * Copyright 2009 Bo Yang - */ - diff --git a/src/html/html_optgroup_element.h b/src/html/html_optgroup_element.h deleted file mode 100644 index 2e182d5..0000000 --- a/src/html/html_optgroup_element.h +++ /dev/null @@ -1,7 +0,0 @@ -/* - * This file is part of libdom. - * Licensed under the MIT License, - * http://www.opensource.org/licenses/mit-license.php - * Copyright 2009 Bo Yang - */ - -- cgit v1.2.3