/*
- * Copyright (C) 2011-2012 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2016 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
#include "queryeditor.h"
#include "queryeditorentry.h"
+#include "queryeditorentrydate.h"
#define GROUP "{--group--}"
#define GDAEX_QUERY_EDITOR_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_GDAEX_QUERY_EDITOR, GdaExQueryEditorPrivate))
-typedef GtkWidget *(* GtkDateEntryNew) (const gchar *format,
- const gchar *separator,
- gboolean calendar_button_is_visible);
-typedef void (* GtkDateEntrySetDateVisible) (gpointer gtkdateentry, gboolean visible);
-typedef void (* GtkDateEntrySetTimeVisible) (gpointer gtkdateentry, gboolean visible);
-
typedef struct _GdaExQueryEditorPrivate GdaExQueryEditorPrivate;
struct _GdaExQueryEditorPrivate
{
GdaEx *gdaex;
- GModule *gtk_date_entry_module;
- GtkDateEntryNew gtk_date_entry_new;
- GtkDateEntrySetDateVisible gtk_date_entry_set_date_visible;
- GtkDateEntrySetTimeVisible gtk_date_entry_set_time_visible;
+ GPtrArray *ar_modules;
GtkBuilder *gtkbuilder;
}
+static void
+gdaex_query_editor_load_modules (GdaExQueryEditor *gdaex_query_editor)
+{
+ GdaExQueryEditorPrivate *priv;
+
+ gchar *modulesdir;
+ GDir *dir;
+ GError *error;
+
+ GModule *module;
+ const gchar *filename;
+
+ if (g_module_supported ())
+ {
+ priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (gdaex_query_editor);
+
+ modulesdir = (gchar *)g_getenv ("LIBGDAEX_MODULESDIR");
+ if (modulesdir == NULL)
+ {
+#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))
+ {
+ modulesdir = g_strdup (MODULESDIR);
+ }
+ else
+ {
+ modulesdir = g_build_filename (moddir, "lib", PACKAGE, "modules", NULL);
+ }
+
+#else
+
+ modulesdir = g_strdup (MODULESDIR);
+
+#endif
+ }
+
+ /* load myself as module (for filters and validators) */
+ module = g_module_open (NULL, G_MODULE_BIND_LAZY);
+ if (module == NULL)
+ {
+ g_warning (_("Unable to load module of myself"));
+ }
+ else
+ {
+ if (priv->ar_modules == NULL)
+ {
+ priv->ar_modules = g_ptr_array_new ();
+ }
+ g_ptr_array_add (priv->ar_modules, (gpointer)module);
+ }
+
+ /* for each file in MODULESDIR */
+ error = NULL;
+ dir = g_dir_open (modulesdir, 0, &error);
+ if (dir != NULL && error == NULL)
+ {
+ while ((filename = g_dir_read_name (dir)) != NULL)
+ {
+ /* trying to open the module */
+ module = g_module_open (filename, G_MODULE_BIND_LAZY);
+ if (module != NULL)
+ {
+ if (priv->ar_modules == NULL)
+ {
+ priv->ar_modules = g_ptr_array_new ();
+ }
+ g_ptr_array_add (priv->ar_modules, (gpointer)module);
+ }
+ else
+ {
+ g_warning (_("Unable to load %s: %s."), filename, g_module_error ());
+ }
+ }
+
+ g_dir_close (dir);
+ }
+ else
+ {
+ g_warning (_("Unable to open modules dir: %s."),
+ error != NULL && error->message != NULL ? error->message : _("no details"));
+ }
+ }
+ else
+ {
+ g_warning (_("Modules not supported by this operating system."));
+ }
+}
+
/**
* gdaex_query_editor_new:
* @gdaex:
priv->gdaex = gdaex;
- /* test if we can use GtkDateEntry */
- priv->gtk_date_entry_module = NULL;
- priv->gtk_date_entry_new = NULL;
- priv->gtk_date_entry_set_date_visible = NULL;
- priv->gtk_date_entry_set_time_visible = NULL;
- if (g_module_supported ())
- {
- /* TODO it must be found in a better way */
-#ifdef G_OS_WIN32
- priv->gtk_date_entry_module = g_module_open (g_build_filename (g_win32_get_package_installation_directory_of_module (NULL), "libgtkdateentry-0.dll", NULL), G_MODULE_BIND_LAZY);
-#else
- priv->gtk_date_entry_module = g_module_open ("/usr/local/lib/libgtkdateentry.la", G_MODULE_BIND_LAZY);
-#endif
- if (priv->gtk_date_entry_module != NULL)
- {
- if (!g_module_symbol (priv->gtk_date_entry_module, "gtk_date_entry_new", (gpointer *)&(priv->gtk_date_entry_new))
- || !g_module_symbol (priv->gtk_date_entry_module, "gtk_date_entry_set_date_visible", (gpointer *)&(priv->gtk_date_entry_set_date_visible))
- || !g_module_symbol (priv->gtk_date_entry_module, "gtk_date_entry_set_time_visible", (gpointer *)&(priv->gtk_date_entry_set_time_visible)))
- {
- g_module_close (priv->gtk_date_entry_module);
- priv->gtk_date_entry_module = NULL;
- priv->gtk_date_entry_new = NULL;
- priv->gtk_date_entry_set_date_visible = NULL;
- priv->gtk_date_entry_set_time_visible = NULL;
- }
- }
- }
+ gdaex_query_editor_load_modules (gdaex_query_editor);
priv->gtkbuilder = gdaex_get_gtkbuilder (priv->gdaex);
if (!GDAEX_QUERY_EDITOR_IS_IWIDGET (_field->iwidget_from))
{
- if (priv->gtk_date_entry_module != NULL
- && (_field->type == GDAEX_QE_FIELD_TYPE_DATE
- || _field->type == GDAEX_QE_FIELD_TYPE_DATETIME
- || _field->type == GDAEX_QE_FIELD_TYPE_TIME))
+ if (_field->type == GDAEX_QE_FIELD_TYPE_DATE
+ || _field->type == GDAEX_QE_FIELD_TYPE_DATETIME
+ || _field->type == GDAEX_QE_FIELD_TYPE_TIME)
{
- _field->iwidget_from = GDAEX_QUERY_EDITOR_IWIDGET (priv->gtk_date_entry_new (NULL, NULL, TRUE));
+ _field->iwidget_from = GDAEX_QUERY_EDITOR_IWIDGET (gdaex_query_editor_entry_date_new ());
+ /* TODO
+ * read format from locale */
if (_field->type == GDAEX_QE_FIELD_TYPE_DATE)
{
- priv->gtk_date_entry_set_date_visible ((gpointer)_field->iwidget_from, TRUE);
- priv->gtk_date_entry_set_time_visible ((gpointer)_field->iwidget_from, FALSE);
+ gdaex_query_editor_entry_date_set_format (GDAEX_QUERY_EDITOR_ENTRY_DATE (_field->iwidget_from), "%d/%m/%Y");
+ gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_from), 10);
}
else if (_field->type == GDAEX_QE_FIELD_TYPE_DATETIME)
{
+ gdaex_query_editor_entry_date_set_format (GDAEX_QUERY_EDITOR_ENTRY_DATE (_field->iwidget_from), "%d/%m/%Y %H:%M:%S");
+ gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_from), 19);
}
else if (_field->type == GDAEX_QE_FIELD_TYPE_TIME)
{
- priv->gtk_date_entry_set_date_visible ((gpointer)_field->iwidget_from, FALSE);
- priv->gtk_date_entry_set_time_visible ((gpointer)_field->iwidget_from, TRUE);
+ gdaex_query_editor_entry_date_set_format (GDAEX_QUERY_EDITOR_ENTRY_DATE (_field->iwidget_from), "%H:%M:%S");
+ gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_from), 8);
}
}
else
{
_field->iwidget_from = GDAEX_QUERY_EDITOR_IWIDGET (gdaex_query_editor_entry_new ());
- if (_field->type == GDAEX_QE_FIELD_TYPE_DATE)
- {
- gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_from), 10);
- }
- else if (_field->type == GDAEX_QE_FIELD_TYPE_DATETIME)
- {
- gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_from), 19);
- }
- else if (_field->type == GDAEX_QE_FIELD_TYPE_TIME)
- {
- gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_from), 8);
- }
}
}
if (!GDAEX_QUERY_EDITOR_IS_IWIDGET (_field->iwidget_to))
{
- if (priv->gtk_date_entry_module != NULL
- && (_field->type == GDAEX_QE_FIELD_TYPE_DATE
- || _field->type == GDAEX_QE_FIELD_TYPE_DATETIME
- || _field->type == GDAEX_QE_FIELD_TYPE_TIME))
+ if (_field->type == GDAEX_QE_FIELD_TYPE_DATE
+ || _field->type == GDAEX_QE_FIELD_TYPE_DATETIME
+ || _field->type == GDAEX_QE_FIELD_TYPE_TIME)
{
- _field->iwidget_to = GDAEX_QUERY_EDITOR_IWIDGET (priv->gtk_date_entry_new (NULL, NULL, TRUE));
+ _field->iwidget_to = GDAEX_QUERY_EDITOR_IWIDGET (gdaex_query_editor_entry_date_new ());
+ /* TODO
+ * read format from locale */
if (_field->type == GDAEX_QE_FIELD_TYPE_DATE)
{
- priv->gtk_date_entry_set_date_visible ((gpointer)_field->iwidget_to, TRUE);
- priv->gtk_date_entry_set_time_visible ((gpointer)_field->iwidget_to, FALSE);
+ gdaex_query_editor_entry_date_set_format (GDAEX_QUERY_EDITOR_ENTRY_DATE (_field->iwidget_to), "%d/%m/%Y");
+ gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_to), 10);
}
else if (_field->type == GDAEX_QE_FIELD_TYPE_DATETIME)
{
+ gdaex_query_editor_entry_date_set_format (GDAEX_QUERY_EDITOR_ENTRY_DATE (_field->iwidget_to), "%d/%m/%Y %H:%M:%S");
+ gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_to), 19);
}
else if (_field->type == GDAEX_QE_FIELD_TYPE_TIME)
{
- priv->gtk_date_entry_set_date_visible ((gpointer)_field->iwidget_to, FALSE);
- priv->gtk_date_entry_set_time_visible ((gpointer)_field->iwidget_to, TRUE);
+ gdaex_query_editor_entry_date_set_format (GDAEX_QUERY_EDITOR_ENTRY_DATE (_field->iwidget_to), "%H:%M:%S");
+ gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_to), 8);
}
}
else
{
_field->iwidget_to = GDAEX_QUERY_EDITOR_IWIDGET (gdaex_query_editor_entry_new ());
- if (_field->type == GDAEX_QE_FIELD_TYPE_DATE)
- {
- gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_to), 10);
- }
- else if (_field->type == GDAEX_QE_FIELD_TYPE_DATETIME)
- {
- gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_to), 19);
- }
- else if (_field->type == GDAEX_QE_FIELD_TYPE_TIME)
- {
- gtk_entry_set_max_length (GTK_ENTRY (_field->iwidget_to), 8);
- }
}
}
return ret;
}
+typedef GdaExQueryEditorIWidget *(* IWidgetConstructorFunc) (void);
+typedef gboolean (* IWidgetXmlParsingFunc) (GdaExQueryEditorIWidget *, xmlNodePtr);
+
void
gdaex_query_editor_load_tables_from_xml (GdaExQueryEditor *qe,
xmlNode *root,
gboolean clean)
{
+ GdaExQueryEditorPrivate *priv;
+
xmlDoc *xdoc;
xmlXPathContextPtr xpcontext;
xmlXPathObjectPtr xpresult;
GdaExQueryEditorJoinType join_type;
GSList *fields_joined;
+ IWidgetConstructorFunc iwidget_constructor;
+ IWidgetXmlParsingFunc iwidget_xml_parsing;
+
g_return_if_fail (GDAEX_IS_QUERY_EDITOR (qe));
g_return_if_fail (root != NULL);
g_return_if_fail (xmlStrcmp (root->name, "gdaex_query_editor") == 0);
+ priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (qe);
+
if (clean)
{
gdaex_query_editor_clean (qe);
xdecode = xdecode->next;
}
}
+ else if (xmlStrcmp (cur->name, "widget") == 0
+ || xmlStrcmp (cur->name, "widget_from") == 0
+ || xmlStrcmp (cur->name, "widget_to") == 0)
+ {
+ gchar *type;
+
+ guint i;
+
+ GdaExQueryEditorIWidget *iwidget;
+
+ type = xmlGetProp (xnode, (const xmlChar *)"type");
+
+ iwidget = NULL;
+ for (i = 0; i < priv->ar_modules->len; i++)
+ {
+ if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
+ g_strconcat (type, "_new", NULL),
+ (gpointer *)&iwidget_constructor))
+ {
+ if (iwidget_constructor != NULL)
+ {
+ iwidget = iwidget_constructor ();
+ if (iwidget != NULL)
+ {
+ if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
+ g_strconcat (type, "_xml_parsing", NULL),
+ (gpointer *)&iwidget_xml_parsing))
+ {
+ if (iwidget_xml_parsing != NULL)
+ {
+ iwidget_xml_parsing (iwidget, cur);
+ }
+ }
+ }
+ break;
+ }
+ }
+ }
+
+ if (iwidget == NULL)
+ {
+ g_warning (_("Unknown iwidget type «%s»."), type);
+ }
+
+ if (xmlStrcmp (cur->name, "widget") == 0)
+ {
+ field->iwidget_from = iwidget;
+ field->iwidget_to = iwidget;
+ }
+ else if (xmlStrcmp (cur->name, "widget_from") == 0)
+ {
+ field->iwidget_from = iwidget;
+ }
+ else if (xmlStrcmp (cur->name, "widget_to") == 0)
+ {
+ field->iwidget_to = iwidget;
+ }
+ }
cur = cur->next;
}
month = 0;
day = 0;
- if (strlen (sql) >= 10)
+ if (strlen (sql + 1) >= 10)
{
- year = strtol (g_strndup (sql, 4), NULL, 10);
- month = strtol (g_strndup (sql + 5, 2), NULL, 10);
- day = strtol (g_strndup (sql + 8, 2), NULL, 10);
+ year = strtol (g_strndup (sql + 1, 4), NULL, 10);
+ month = strtol (g_strndup (sql + 6, 2), NULL, 10);
+ day = strtol (g_strndup (sql + 9, 2), NULL, 10);
ret = g_date_new_dmy (day,
month,
ret = NULL;
- if (strlen (sql) >= 10)
+ if (strlen (sql + 1) >= 10)
{
ret = g_new0 (GdaTimestamp, 1);
- ret->year = strtol (g_strndup (sql, 4), NULL, 10);
- ret->month = strtol (g_strndup (sql + 5, 2), NULL, 10);
- ret->day = strtol (g_strndup (sql + 8, 2), NULL, 10);
+ ret->year = strtol (g_strndup (sql + 1, 4), NULL, 10);
+ ret->month = strtol (g_strndup (sql + 6, 2), NULL, 10);
+ ret->day = strtol (g_strndup (sql + 9, 2), NULL, 10);
- if (strlen (sql) >= 12)
+ if (strlen (sql + 1) >= 12)
{
- ret->hour = strtol (g_strndup (sql + 11, 2), NULL, 10);
- ret->minute = strtol (g_strndup (sql + 14, 2), NULL, 10);
- if (strlen (sql) >= 16)
+ ret->hour = strtol (g_strndup (sql + 12, 2), NULL, 10);
+ ret->minute = strtol (g_strndup (sql + 15, 2), NULL, 10);
+ if (strlen (sql + 1) >= 16)
{
- ret->second = strtol (g_strndup (sql + 17, 2), NULL, 10);
+ ret->second = strtol (g_strndup (sql + 18, 2), NULL, 10);
}
}
}
}
id_cond_iter = gda_sql_builder_add_cond (sqlbuilder, where_op, id_field, id_value1, id_value2);
- if (not && where_type != GDAEX_QE_WHERE_TYPE_IS_NULL)
- {
- id_cond_iter = gda_sql_builder_add_cond (sqlbuilder, GDA_SQL_OPERATOR_TYPE_NOT, id_cond_iter, 0, 0);
- }
- if (id_ret == 0)
+ if (id_cond_iter == 0)
{
- id_ret = id_cond_iter;
+ g_warning (_("Unable to create GdaSqlBuilder condition."));
+ continue;
}
else
{
- id_ret = gda_sql_builder_add_cond (sqlbuilder, link_op, id_ret, id_cond_iter, 0);
+ if (not && where_type != GDAEX_QE_WHERE_TYPE_IS_NULL)
+ {
+ id_cond_iter = gda_sql_builder_add_cond (sqlbuilder, GDA_SQL_OPERATOR_TYPE_NOT, id_cond_iter, 0, 0);
+ }
+ if (id_ret == 0)
+ {
+ id_ret = id_cond_iter;
+ }
+ else
+ {
+ id_ret = gda_sql_builder_add_cond (sqlbuilder, link_op, id_ret, id_cond_iter, 0);
+ }
}
}
else
{
val1 = g_strdup (val1);
}
- if (val1_sql == NULL)
+ if (val1_sql == NULL
+ || g_strcmp0 (val1_sql, "NULL") == 0)
{
val1_sql = g_strdup ("");
}
{
val2 = g_strdup (val2);
}
- if (val2_sql == NULL)
+ if (val2_sql == NULL
+ || g_strcmp0 (val2_sql, "NULL") == 0)
{
val2_sql = g_strdup ("");
}
--- /dev/null
+/*
+ * Copyright (C) 2016 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 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., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include "config.h"
+#endif
+
+#include <libzakutils/libzakutils.h>
+
+#include "libgdaex.h"
+
+#include "queryeditorentrydate.h"
+
+static void gdaex_query_editor_entry_date_class_init (GdaExQueryEditorEntryDateClass *klass);
+static void gdaex_query_editor_entry_date_init (GdaExQueryEditorEntryDate *masked_entry);
+
+static void gdaex_query_editor_entry_date_gdaex_query_editor_iwidget_interface_init (GdaExQueryEditorIWidgetIface *iface);
+
+static void gdaex_query_editor_entry_date_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec);
+static void gdaex_query_editor_entry_date_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec);
+
+static const gchar *gdaex_query_editor_entry_date_get_value (GdaExQueryEditorIWidget *iwidget);
+static const gchar *gdaex_query_editor_entry_date_get_value_sql (GdaExQueryEditorIWidget *iwidget);
+static void gdaex_query_editor_entry_date_set_value (GdaExQueryEditorIWidget *iwidget, const gchar *value);
+
+#define GDAEX_QUERY_EDITOR_ENTRY_DATE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GDAEX_QUERY_EDITOR_TYPE_ENTRY_DATE, GdaExQueryEditorEntryDatePrivate))
+
+typedef struct _GdaExQueryEditorEntryDatePrivate GdaExQueryEditorEntryDatePrivate;
+struct _GdaExQueryEditorEntryDatePrivate
+ {
+ gchar *format;
+ };
+
+G_DEFINE_TYPE_WITH_CODE (GdaExQueryEditorEntryDate, gdaex_query_editor_entry_date, GTK_TYPE_ENTRY,
+ G_IMPLEMENT_INTERFACE (GDAEX_QUERY_EDITOR_TYPE_IWIDGET,
+ gdaex_query_editor_entry_date_gdaex_query_editor_iwidget_interface_init));
+
+static void
+gdaex_query_editor_entry_date_class_init (GdaExQueryEditorEntryDateClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ g_type_class_add_private (object_class, sizeof (GdaExQueryEditorEntryDatePrivate));
+
+ object_class->set_property = gdaex_query_editor_entry_date_set_property;
+ object_class->get_property = gdaex_query_editor_entry_date_get_property;
+}
+
+static void
+gdaex_query_editor_entry_date_init (GdaExQueryEditorEntryDate *entry)
+{
+ GdaExQueryEditorEntryDatePrivate *priv = GDAEX_QUERY_EDITOR_ENTRY_DATE_GET_PRIVATE (entry);
+
+ priv->format = NULL;
+}
+
+static void
+gdaex_query_editor_entry_date_gdaex_query_editor_iwidget_interface_init (GdaExQueryEditorIWidgetIface *iface)
+{
+ iface->get_value = gdaex_query_editor_entry_date_get_value;
+ iface->get_value_sql = gdaex_query_editor_entry_date_get_value_sql;
+ iface->set_value = gdaex_query_editor_entry_date_set_value;
+}
+
+/**
+ * gdaex_query_editor_entry_date_new:
+ *
+ * Creates a new #GdaExQueryEditorEntryDate widget.
+ *
+ * Returns: the newly created #GdaExQueryEditorEntryDate widget.
+ */
+GtkWidget*
+gdaex_query_editor_entry_date_new ()
+{
+ return GTK_WIDGET (g_object_new (gdaex_query_editor_entry_date_get_type (), NULL));
+}
+
+void
+gdaex_query_editor_entry_date_set_format (GdaExQueryEditorEntryDate *entry, const gchar *format)
+{
+ GdaExQueryEditorEntryDatePrivate *priv = GDAEX_QUERY_EDITOR_ENTRY_DATE_GET_PRIVATE (entry);
+
+ if (priv->format != NULL)
+ {
+ g_free (priv->format);
+ }
+ priv->format = g_strdup (format);
+}
+gchar
+*gdaex_query_editor_entry_date_get_format (GdaExQueryEditorEntryDate* entry)
+{
+ GdaExQueryEditorEntryDatePrivate *priv = GDAEX_QUERY_EDITOR_ENTRY_DATE_GET_PRIVATE (entry);
+
+ return g_strdup (priv->format);
+}
+
+static void
+gdaex_query_editor_entry_date_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+ GdaExQueryEditorEntryDate *entry = GDAEX_QUERY_EDITOR_ENTRY_DATE (object);
+ GdaExQueryEditorEntryDatePrivate *priv = GDAEX_QUERY_EDITOR_ENTRY_DATE_GET_PRIVATE (entry);
+
+ switch (property_id)
+ {
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+gdaex_query_editor_entry_date_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+ GdaExQueryEditorEntryDate *entry = GDAEX_QUERY_EDITOR_ENTRY_DATE (object);
+ GdaExQueryEditorEntryDatePrivate *priv = GDAEX_QUERY_EDITOR_ENTRY_DATE_GET_PRIVATE (entry);
+
+ switch (property_id)
+ {
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static const gchar
+*gdaex_query_editor_entry_date_get_value (GdaExQueryEditorIWidget *iwidget)
+{
+ return gtk_entry_get_text (GTK_ENTRY (iwidget));
+}
+
+static const gchar
+*gdaex_query_editor_entry_date_get_value_sql (GdaExQueryEditorIWidget *iwidget)
+{
+ gchar *ret;
+ GDateTime *gdt;
+
+ GdaExQueryEditorEntryDatePrivate *priv = GDAEX_QUERY_EDITOR_ENTRY_DATE_GET_PRIVATE (GDAEX_QUERY_EDITOR_ENTRY_DATE (iwidget));
+
+ gdt = zak_utils_get_gdatetime_from_string (gtk_entry_get_text (GTK_ENTRY (iwidget)), priv->format);
+ ret = g_strdup (zak_utils_gdatetime_to_sql (gdt, NULL));
+
+ return ret;
+}
+
+static void
+gdaex_query_editor_entry_date_set_value (GdaExQueryEditorIWidget *iwidget,
+ const gchar *value)
+{
+ gtk_entry_set_text (GTK_ENTRY (iwidget), value);
+}