stamp-it
intltool-*
Rules-quot
+tests/plugin_gtkform
$(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
--- /dev/null
+/*
+ * 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;
+}
--- /dev/null
+<?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>
--- /dev/null
+<?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">●</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>