Test for ZakFormForm::get_xml (gtk).
authorAndrea Zagli <azagli@libero.it>
Wed, 27 May 2020 13:08:42 +0000 (15:08 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 27 May 2020 16:11:01 +0000 (18:11 +0200)
.gitignore
src/Makefile.am
src/gtk_get_xml.c [new file with mode: 0644]

index c370eb8bf030dbabee5ef4f61797c4fff7324164..0c23471b23e87b80152a444d03e3dcff2c738181 100644 (file)
@@ -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
index d5d980d23a6d1fd0795c32b2f96f75bc1addc644..e2299e9c0ced36aa40ddeefe7a1ee8429d42bde7 100644 (file)
@@ -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 (file)
index 0000000..2a1f57e
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+ * Copyright (C) 2020 Andrea Zagli <azagli@libero.it>
+ *
+ *  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 <config.h>
+#endif
+
+#include <libzakform/libzakform.h>
+#include <libzakformgtk/libzakformgtk.h>
+
+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;
+}