]> saetta.ns0.it Git - libgtkmaskedentry/commitdiff
Test for libgtkform plugin.
authorAndrea Zagli <azagli@libero.it>
Sun, 27 Jun 2010 06:51:20 +0000 (08:51 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 27 Jun 2010 06:51:20 +0000 (08:51 +0200)
.gitignore
tests/Makefile.am
tests/plugin_gtkform.c [new file with mode: 0644]
tests/plugin_gtkform.form [new file with mode: 0644]
tests/plugin_gtkform.ui [new file with mode: 0644]

index 65c174b135c663bff4801a72fd021c6e3f5bcbbe..d5b4dc42a894bf346741e7e8b6f378be9d570d7b 100644 (file)
@@ -46,3 +46,4 @@ mkinstalldirs
 stamp-it
 intltool-*
 Rules-quot
+tests/plugin_gtkform
index edf0a8588b2da5eabb5e6d00e4ff3d6cf7b64cfc..3ff97abab0be743eee0a0ef96079d56899694944 100644 (file)
@@ -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 (file)
index 0000000..3b251b7
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * GtkMaskedEntry widget test - plugin for libgtkform
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * 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 <stdio.h>
+
+#include <gtk/gtk.h>
+
+#include <libgtkform/form.h>
+
+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 (file)
index 0000000..e68757b
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version="1.0"?>
+<gtkform>
+
+       <table>clients</table>
+
+       <widget type="masked_entry" name="gtkmaskedentry1" label="label1">
+               <field type="datetime" name="data">
+                       <obligatory>TRUE</obligatory>
+                       <datetime-type>date</datetime-type>
+                       <display-format>%m-%d-%Y</display-format>
+                       <obligatory>TRUE</obligatory>
+               </field>
+       </widget>
+
+</gtkform>
diff --git a/tests/plugin_gtkform.ui b/tests/plugin_gtkform.ui
new file mode 100644 (file)
index 0000000..7e9c922
--- /dev/null
@@ -0,0 +1,92 @@
+<?xml version="1.0"?>
+<interface>
+  <requires lib="gtk+" version="2.16"/>
+  <!-- interface-requires gtkmaskedentry 0.0 -->
+  <!-- interface-naming-policy project-wide -->
+  <object class="GtkWindow" id="window1">
+    <property name="window_position">center</property>
+    <property name="default_width">440</property>
+    <property name="default_height">250</property>
+    <signal name="destroy" handler="gtk_main_quit"/>
+    <signal name="delete_event" handler="gtk_false"/>
+    <child>
+      <object class="GtkTable" id="table1">
+        <property name="visible">True</property>
+        <property name="n_rows">3</property>
+        <property name="n_columns">3</property>
+        <child>
+          <object class="GtkLabel" id="label1">
+            <property name="visible">True</property>
+            <property name="label" translatable="yes">Masked Entry</property>
+          </object>
+        </child>
+        <child>
+          <object class="GtkMaskedEntry" id="gtkmaskedentry1">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="invisible_char">&#x25CF;</property>
+            <property name="text" translatable="yes">__-__-____</property>
+            <property name="mask">00-00-0000</property>
+          </object>
+          <packing>
+            <property name="left_attach">1</property>
+            <property name="right_attach">2</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow1">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="hscrollbar_policy">automatic</property>
+            <property name="vscrollbar_policy">automatic</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <object class="GtkTextView" id="textview1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="editable">False</property>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="right_attach">3</property>
+            <property name="top_attach">2</property>
+            <property name="bottom_attach">3</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButton" id="button1">
+            <property name="label" translatable="yes">SQL Insert</property>
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="receives_default">True</property>
+          </object>
+          <packing>
+            <property name="top_attach">1</property>
+            <property name="bottom_attach">2</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkButton" id="button2">
+            <property name="label" translatable="yes">SQL Update</property>
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="receives_default">True</property>
+          </object>
+          <packing>
+            <property name="left_attach">1</property>
+            <property name="right_attach">2</property>
+            <property name="top_attach">1</property>
+            <property name="bottom_attach">2</property>
+          </packing>
+        </child>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <placeholder/>
+        </child>
+      </object>
+    </child>
+  </object>
+</interface>