From: Andrea Zagli Date: Sun, 27 Jun 2010 06:51:20 +0000 (+0200) Subject: Test for libgtkform plugin. X-Git-Tag: v0.0.3~9 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=bb34b8313c81151215783ec5b9b0299e4fffc9b1;p=libgtkmaskedentry Test for libgtkform plugin. --- diff --git a/.gitignore b/.gitignore index 65c174b..d5b4dc4 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,4 @@ mkinstalldirs stamp-it intltool-* Rules-quot +tests/plugin_gtkform diff --git a/tests/Makefile.am b/tests/Makefile.am index edf0a85..3ff97ab 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -2,9 +2,20 @@ INCLUDES = \ $(WARN_CFLAGS) \ $(DISABLE_DEPRECATED_CFLAGS) \ $(GTK_CFLAGS) \ + $(GTKFORM_CFLAGS) \ -I../src -LDADD = ../src/libgtkmaskedentry.la +LDADD = ../src/libgtkmaskedentry.la \ + $(GTKFORM_LIBS) + +if LIBGTKFORM_FOUND +GTKFORM_NOINST = plugin_gtkform +else +GTKFORM_NOINST = +endif noinst_PROGRAMS = \ - masked_entry + masked_entry \ + $(GTKFORM_NOINST) + +plugin_gtkform_SOURCES = plugin_gtkform.c diff --git a/tests/plugin_gtkform.c b/tests/plugin_gtkform.c new file mode 100644 index 0000000..3b251b7 --- /dev/null +++ b/tests/plugin_gtkform.c @@ -0,0 +1,75 @@ +/* + * GtkMaskedEntry widget test - plugin for libgtkform + * Copyright (C) 2010 Andrea Zagli + * + * This software is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this software; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#include + +#include + +#include + +GtkBuilder *builder; +GtkForm *form; + +static void +btn_insert_on_clicked (GtkButton *button, + gpointer user_data) +{ + GtkTextBuffer *buf; + + buf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (gtk_builder_get_object (builder, "textview1"))); + gtk_text_buffer_set_text (buf, gtk_form_get_sql (form, GTK_FORM_SQL_INSERT), -1); +} + +static void +btn_update_on_clicked (GtkButton *button, + gpointer user_data) +{ + GtkTextBuffer *buf; + + buf = gtk_text_view_get_buffer (GTK_TEXT_VIEW (gtk_builder_get_object (builder, "textview1"))); + gtk_text_buffer_set_text (buf, gtk_form_get_sql (form, GTK_FORM_SQL_UPDATE), -1); +} + +int +main (int argc, char **argv) +{ + GtkWidget *w; + GError *error; + + gtk_init (&argc, &argv); + + error = NULL; + builder = gtk_builder_new (); + gtk_builder_add_from_file (builder, "plugin_gtkform.ui", &error); + + gtk_builder_connect_signals (builder, NULL); + + g_signal_connect (gtk_builder_get_object (builder, "button1"), "clicked", G_CALLBACK (btn_insert_on_clicked), NULL); + g_signal_connect (gtk_builder_get_object (builder, "button2"), "clicked", G_CALLBACK (btn_update_on_clicked), NULL); + + form = gtk_form_new_from_file ("plugin_gtkform.form", builder); + + w = GTK_WIDGET (gtk_builder_get_object (builder, "window1")); + gtk_widget_show (w); + + gtk_main (); + + return 0; +} diff --git a/tests/plugin_gtkform.form b/tests/plugin_gtkform.form new file mode 100644 index 0000000..e68757b --- /dev/null +++ b/tests/plugin_gtkform.form @@ -0,0 +1,15 @@ + + + + clients
+ + + + TRUE + date + %m-%d-%Y + TRUE + + + +
diff --git a/tests/plugin_gtkform.ui b/tests/plugin_gtkform.ui new file mode 100644 index 0000000..7e9c922 --- /dev/null +++ b/tests/plugin_gtkform.ui @@ -0,0 +1,92 @@ + + + + + + + center + 440 + 250 + + + + + True + 3 + 3 + + + True + Masked Entry + + + + + True + True + + __-__-____ + 00-00-0000 + + + 1 + 2 + + + + + True + True + automatic + automatic + etched-in + + + True + True + False + + + + + 3 + 2 + 3 + + + + + SQL Insert + True + True + True + + + 1 + 2 + + + + + SQL Update + True + True + True + + + 1 + 2 + 1 + 2 + + + + + + + + + + + +