From: Andrea Zagli Date: Mon, 12 Jun 2017 20:11:40 +0000 (+0200) Subject: First test of FormElementArray. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=6e87adb5f9136afffa17f9bdfaf45eeac638641a;p=zakform%2Ftests First test of FormElementArray. --- diff --git a/data/zakformtests/gui/main.ui b/data/zakformtests/gui/main.ui index 0afde1c..90ad751 100644 --- a/data/zakformtests/gui/main.ui +++ b/data/zakformtests/gui/main.ui @@ -370,6 +370,98 @@ 11 + + + True + False + Array + 0 + + + 0 + 12 + + + + + True + False + + + One + True + True + False + True + + + False + True + 0 + + + + + Two + True + True + False + True + + + False + True + 1 + + + + + Three + True + True + False + True + + + False + True + 2 + + + + + Four + True + True + False + True + + + False + True + 3 + + + + + Five + True + True + False + True + + + False + True + 4 + + + + + 1 + 12 + + False diff --git a/data/zakformtests/xml/main.xml b/data/zakformtests/xml/main.xml index b53419c..abab397 100644 --- a/data/zakformtests/xml/main.xml +++ b/data/zakformtests/xml/main.xml @@ -139,6 +139,43 @@ and some tabs + + array + string + array_signal_element_added + + + one + boolean + checkbutton1 + + + + two + boolean + checkbutton2 + + + + three + boolean + checkbutton3 + + + + four + boolean + checkbutton4 + + + + five + boolean + checkbutton5 + + + + diff --git a/src/gtk_gdaex.c b/src/gtk_gdaex.c index 0a03dd3..9590623 100644 --- a/src/gtk_gdaex.c +++ b/src/gtk_gdaex.c @@ -30,6 +30,8 @@ GtkWidget *textview; ZakFormGtkForm *form; ZakFormGdaexProvider *provider; +GtkBuilder *builder; + void load_clicked (GtkButton *button, gpointer user_data) @@ -92,11 +94,15 @@ is_changed_clicked (GtkButton *button, } } +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[]) { - GtkBuilder *builder; - GdaEx *gdaex; gtk_init (&argc, &argv);