]> saetta.ns0.it Git - libgdaex/commitdiff
Added test for query editor.
authorAndrea Zagli <azagli@libero.it>
Sun, 27 Feb 2011 09:15:36 +0000 (10:15 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 27 Feb 2011 09:15:36 +0000 (10:15 +0100)
Added gui loading.
Implemented functions GdaExQueryEditor::add_table and
GdaExQueryEditor::table_add_field.

.gitignore
data/libgdaex/gui/libgdaex.ui
src/Makefile.am
src/gdaex.c
src/gdaex.h
src/queryeditor.c
src/queryeditor.h
tests/Makefile.am
tests/query_editor.c [new file with mode: 0644]

index 2b69f3227a22d6df7e4d33e7bcc004fbb8fe90bf..6c6b3455091098a33ba52e441f895733359075df 100644 (file)
@@ -32,4 +32,6 @@ tests/.deps/
 *.la
 *.bak
 libgdaex*tar*
-tests/test_prefix*
+tests/test_prefix
+tests/query_editor
+tests/*.exe
index 2843836e4bdf2010b42996ac50299beaf310a9f2..43599b90e396b64eb485edad2f07ef2e4aa76d24 100644 (file)
       <column type="gchararray"/>
     </columns>
   </object>
-  <object class="GtkDialog" id="dialog1">
+  <object class="GtkDialog" id="diag_query_editor">
     <property name="border_width">5</property>
+    <property name="title" translatable="yes">Query Editor</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">600</property>
+    <property name="destroy_with_parent">True</property>
     <property name="type_hint">normal</property>
     <child internal-child="vbox">
       <object class="GtkVBox" id="dialog-vbox1">
         <property name="visible">True</property>
         <property name="orientation">vertical</property>
-        <property name="spacing">2</property>
+        <property name="spacing">5</property>
         <child>
           <object class="GtkHPaned" id="hpaned1">
             <property name="visible">True</property>
             <property name="can_focus">True</property>
+            <property name="position">200</property>
+            <property name="position_set">True</property>
             <child>
               <object class="GtkScrolledWindow" id="scrolledwindow1">
                 <property name="visible">True</property>
index d35f53dd186ff3e935999f7dece8bb8e0617d280..fd7f6c45d63e57688ece4442581c3a69983d1105 100644 (file)
@@ -1,5 +1,8 @@
+guidir = $(datadir)/$(PACKAGE)/gui
+
 AM_CPPFLAGS = -I$(top_srcdir) \
               $(GDAEX_CFLAGS) \
+              -DGUIDIR=\""$(guidir)"\" \
               -DG_LOG_DOMAIN=\"GdaEx\"
 
 LIBS = $(GDAEX_LIBS)
index 692a52f88d759c2ab5f50db3c7a6cfd04f33ca09..26b98420495a4c6fb000978682be70ad3a8c1ef2 100644 (file)
@@ -66,6 +66,10 @@ struct _GdaExPrivate
 
                gchar *tables_name_prefix;
 
+               const gchar *guidir;
+               const gchar *guifile;
+               GtkBuilder *gtkbuilder;
+
                guint debug;
                GFileOutputStream *log_file;
        };
@@ -132,6 +136,36 @@ static GdaEx
 
        GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
 
+       /* gui */
+#ifdef G_OS_WIN32
+
+       gchar *moddir;
+       gchar *p;
+
+       moddir = g_win32_get_package_installation_directory_of_module (NULL);
+
+       p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR));
+       if (p != NULL
+           && (g_ascii_strcasecmp (p + 1, "src") == 0
+               || g_ascii_strcasecmp (p + 1, ".libs") == 0))
+               {
+                       priv->guidir = g_strdup (GUIDIR);
+               }
+       else
+               {
+                       priv->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
+               }
+
+#else
+
+       priv->guidir = g_strdup (GUIDIR);
+
+#endif
+
+       priv->guifile = g_build_filename (priv->guidir, "libgdaex.ui", NULL);
+
+       priv->gtkbuilder = gtk_builder_new ();
+
        return gdaex;
 }
 
@@ -1568,6 +1602,30 @@ gdaex_get_chr_quoting (GdaEx *gdaex)
        return chr;
 }
 
+const gchar
+*gdaex_get_guifile (GdaEx *gdaex)
+{
+       GdaExPrivate *priv;
+
+       g_return_val_if_fail (IS_GDAEX (gdaex), NULL);
+
+       priv = GDAEX_GET_PRIVATE (gdaex);
+
+       return (const gchar *)g_strdup (priv->guifile);
+}
+
+GtkBuilder
+*gdaex_get_gtkbuilder (GdaEx *gdaex)
+{
+       GdaExPrivate *priv;
+
+       g_return_val_if_fail (IS_GDAEX (gdaex), NULL);
+
+       priv = GDAEX_GET_PRIVATE (gdaex);
+
+       return priv->gtkbuilder;
+}
+
 /* PRIVATE */
 static void
 gdaex_create_connection_parser (GdaEx *gdaex)
index 078a69edd0e939275f616c1a14eeccc09539fc62..ad3f4431967281c2ecade4ab91db177377a878e6 100644 (file)
@@ -24,6 +24,7 @@
 #include <time.h>
 #include <glib.h>
 #include <glib-object.h>
+#include <gtk/gtk.h>
 #include <libgda/libgda.h>
 
 #ifndef __GDAEX_H__
@@ -138,6 +139,10 @@ gchar *gdaex_strescape (const gchar *source, const gchar *exceptions);
 
 gchar gdaex_get_chr_quoting (GdaEx *gdaex);
 
+const gchar *gdaex_get_guifile (GdaEx *gdaex);
+
+GtkBuilder *gdaex_get_gtkbuilder (GdaEx *gdaex);
+
 
 G_END_DECLS
 
index 84d858b8bc08ca978404f079de191eee21bd8f75..d37e65b5ad644c58758cb16f688a6575a593c72e 100644 (file)
@@ -50,7 +50,10 @@ struct _GdaExQueryEditorPrivate
        {
                GdaEx *gdaex;
 
-               GtkWidget *hbx_main;
+               GtkBuilder *gtkbuilder;
+
+               GtkWidget *dialog;
+               GtkWidget *hpaned_main;
 
                GHashTable *tables;     /* GdaExQueryEditorTable */
        };
@@ -113,6 +116,11 @@ static void
 gdaex_query_editor_init (GdaExQueryEditor *gdaex_query_editor)
 {
        GdaExQueryEditorPrivate *priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (gdaex_query_editor);
+
+       priv->tables = g_hash_table_new (g_str_hash, g_str_equal);
+
+       priv->dialog = NULL;
+       priv->hpaned_main = NULL;
 }
 
 /**
@@ -137,17 +145,114 @@ GdaExQueryEditor
 
        priv->gdaex = gdaex;
 
+       priv->gtkbuilder = gdaex_get_gtkbuilder (priv->gdaex);
+
+       error = NULL;
+       gtk_builder_add_objects_from_file (priv->gtkbuilder,
+                                          gdaex_get_guifile (priv->gdaex),
+                                          g_strsplit ("tstore_fields"
+                                                      "|lstore_show"
+                                                      "|tstore_where"
+                                                      "|lstore_order"
+                                                      "|diag_query_editor",
+                                                      "|", -1),
+                                          &error);
+       if (error != NULL)
+               {
+                       g_warning ("Error on gui initialization: %s.",
+                                  error->message != NULL ? error->message : "no details");
+                       return NULL;
+               }
+
        return gdaex_query_editor;
 }
 
+GtkWidget
+*gdaex_query_editor_get_dialog (GdaExQueryEditor *gdaex_query_editor)
+{
+       GdaExQueryEditorPrivate *priv;
+
+       g_return_if_fail (GDAEX_IS_QUERY_EDITOR (gdaex_query_editor));
+
+       priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (gdaex_query_editor);
+
+       if (priv->dialog == NULL)
+               {
+                       priv->dialog = GTK_WIDGET (gtk_builder_get_object (priv->gtkbuilder, "diag_query_editor"));
+               }
+
+       return priv->dialog;
+}
+
 GtkWidget
 *gdaex_query_editor_get_widget (GdaExQueryEditor *gdaex_query_editor)
 {
        GdaExQueryEditorPrivate *priv;
 
+       g_return_if_fail (GDAEX_IS_QUERY_EDITOR (gdaex_query_editor));
+
        priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (gdaex_query_editor);
 
-       return priv->hbx_main;
+       if (priv->hpaned_main == NULL)
+               {
+                       priv->hpaned_main = GTK_WIDGET (gtk_builder_get_object (priv->gtkbuilder, "hpaned1"));
+               }
+
+       return priv->hpaned_main;
+}
+
+gboolean
+gdaex_query_editor_add_table (GdaExQueryEditor *qe,
+                              const gchar *table_name,
+                              const gchar *table_name_visibile)
+{
+       gboolean ret;
+
+       GdaExQueryEditorPrivate *priv;
+       GdaExQueryEditorTable *table;
+
+       g_return_val_if_fail (GDAEX_IS_QUERY_EDITOR (qe), FALSE);
+
+       priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (qe);
+
+       table = g_new0 (GdaExQueryEditorTable, 1);
+       table->name = g_strstrip (g_strdup (table_name));
+       table->name_visible = g_strstrip (g_strdup (table_name_visibile));
+       table->fields = g_hash_table_new (g_str_hash, g_str_equal);
+
+       g_hash_table_insert (priv->tables, table->name, table);
+
+       ret = TRUE;
+
+       return ret;
+}
+
+gboolean
+gdaex_query_editor_table_add_field (GdaExQueryEditor *qe,
+                                    const gchar *table_name,
+                                    GdaExQueryEditorField field)
+{
+       gboolean ret;
+
+       GdaExQueryEditorPrivate *priv;
+       GdaExQueryEditorTable *table;
+
+       g_return_val_if_fail (GDAEX_IS_QUERY_EDITOR (qe), FALSE);
+
+       priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (qe);
+
+       table = g_hash_table_lookup (priv->tables, table_name);
+       if (table == NULL)
+               {
+                       g_warning ("Table «%s» doesn't exists.", table_name);
+                       return FALSE;
+               }
+
+       g_hash_table_insert (table->fields, field.name, g_memdup (&field, sizeof (GdaExQueryEditorField)));
+
+       ret = TRUE;
+
+       return ret;
 }
 
 /* PRIVATE */
index 9b83334c5fea178aac072764145c6bf3cd147667..1bdb55409ed16895660416f68164baa1fce320c0 100644 (file)
@@ -55,6 +55,7 @@ GType gdaex_query_editor_get_type (void) G_GNUC_CONST;
 
 GdaExQueryEditor *gdaex_query_editor_new (GdaEx *gdaex);
 
+GtkWidget *gdaex_query_editor_get_dialog (GdaExQueryEditor *gdaex_query_editor);
 GtkWidget *gdaex_query_editor_get_widget (GdaExQueryEditor *gdaex_query_editor);
 
 typedef struct
@@ -68,8 +69,12 @@ typedef struct
                /*                                             ma ci deve essere la possibilità di fare ricerche anche sulle decodifiche) */
        } GdaExQueryEditorField;
 
-gboolean gdaex_query_editor_add_table (GdaExQueryEditor *qe, const gchar *table_name, const gchar *table_name_visibile);
-gboolean gdaex_query_editor_table_add_field (GdaExQueryEditor *qe, const gchar *table_name, GdaExQueryEditorField field);
+gboolean gdaex_query_editor_add_table (GdaExQueryEditor *qe,
+                                       const gchar *table_name,
+                                       const gchar *table_name_visibile);
+gboolean gdaex_query_editor_table_add_field (GdaExQueryEditor *qe,
+                                             const gchar *table_name,
+                                             GdaExQueryEditorField field);
 gboolean gdaex_query_editor_add_relation (GdaExQueryEditor *qe,
                                           const gchar *table_name1, GdaExQueryEditorField field1,
                                           const gchar *table_name2, GdaExQueryEditorField field2);
index 403f842178c291f7e14f1988f5fe15f53826cb10..1b7cac77f7a4a6ea0c2fbd5a83e2565ca1b8a9a6 100644 (file)
@@ -5,7 +5,8 @@ AM_CPPFLAGS = $(GDAEX_CFLAGS) \
               -I$(top_srcdir)/src \
               -DTESTSDIR="\"@abs_builddir@\""
 
-noinst_PROGRAMS = test_prefix
+noinst_PROGRAMS = test_prefix \
+                  query_editor
 
 LDADD = $(top_builddir)/src/libgdaex.la
 
diff --git a/tests/query_editor.c b/tests/query_editor.c
new file mode 100644 (file)
index 0000000..c4cc731
--- /dev/null
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2011 Andrea Zagli <azagli@libero.it>
+ *
+ * This library 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.1 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 Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <gdaex.h>
+#include <queryeditor.h>
+
+int
+main (int argc, char *argv[])
+{
+       GError *error;
+
+       GOptionContext *context;
+
+       GdaEx *gdaex;
+       GdaExQueryEditor *qe;
+
+       gtk_init (&argc, &argv);
+
+       gdaex =         gdaex = gdaex_new_from_string (g_strdup_printf ("SQLite://DB_DIR=%s;DB_NAME=test_prefix.db", TESTSDIR));
+       if (gdaex == NULL)
+               {
+                       g_error ("Error on GdaEx initialization.");
+                       return 0;
+               }
+
+       error = NULL;
+       context = g_option_context_new ("tests");
+       g_option_context_add_group (context, gdaex_get_option_group (gdaex));
+       g_option_context_parse (context, &argc, &argv, &error);
+       if (error != NULL)
+               {
+                       g_warning ("Error on command line parsing: %s", error->message);
+               }
+
+       qe = gdaex_query_editor_new (gdaex);
+
+       gtk_dialog_run (GTK_DIALOG (gdaex_query_editor_get_dialog (qe)));
+
+       gtk_main ();
+
+       return 0;
+}