--- /dev/null
+/*
+ * 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;
+}