From b460f08bdb37929b5659c7e36335a8562e80f0bb Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 27 May 2020 15:08:42 +0200 Subject: [PATCH] Test for ZakFormForm::get_xml (gtk). --- .gitignore | 3 ++- src/Makefile.am | 3 ++- src/gtk_get_xml.c | 53 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 src/gtk_get_xml.c diff --git a/.gitignore b/.gitignore index c370eb8..0c23471 100644 --- a/.gitignore +++ b/.gitignore @@ -57,4 +57,5 @@ get_element_filters get_element_validators get_validators gtk_gdaex -gtk_ini \ No newline at end of file +gtk_ini +gtk_get_xml \ No newline at end of file diff --git a/src/Makefile.am b/src/Makefile.am index d5d980d..e2299e9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -15,4 +15,5 @@ noinst_PROGRAMS = \ get_element_validators \ get_validators \ gtk_gdaex \ - gtk_ini + gtk_ini \ + gtk_get_xml diff --git a/src/gtk_get_xml.c b/src/gtk_get_xml.c new file mode 100644 index 0000000..2a1f57e --- /dev/null +++ b/src/gtk_get_xml.c @@ -0,0 +1,53 @@ +/* + * Copyright (C) 2020 Andrea Zagli + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifdef HAVE_CONFIG_H + #include +#endif + +#include +#include + +ZakFormGtkForm *form; + +GtkBuilder *builder; + +G_MODULE_EXPORT void +array_signal_element_added (gpointer instance, GObject *element_added, gpointer user_data) +{ + zak_form_gtk_form_element_set_gtkbuilder ((ZakFormGtkFormElement *)element_added, builder); +} + +int +main (int argc, char *argv[]) +{ + gtk_init (&argc, &argv); + + builder = gtk_builder_new (); + gtk_builder_add_objects_from_file (builder, GUIDIR "/main.ui", + g_strsplit ("w_main" + "|adjustment1", "|", -1), NULL); + + form = zak_form_gtk_form_new (); + zak_form_gtk_form_set_gtkbuilder (form, builder); + zak_form_form_load_from_file (ZAK_FORM_FORM (form), XMLDIR "/main.xml"); + + xmlSaveFormatFileEnc ("main.xml", zak_form_form_get_xml (ZAK_FORM_FORM (form), NULL), "UTF-8", 2); + + return 0; +} -- 2.49.0