From 7684674243732511ef00ba31766f0b4a2d5688c5 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 5 Mar 2016 14:17:22 +0100 Subject: [PATCH] QueryEditor: added and implemented where_default_* field properties (closes #977). --- data/gdaex_query_editor.dtd | 8 ++++- src/queryeditor.c | 65 +++++++++++++++++++++++++++++++++++-- src/queryeditor.h | 6 ++++ tests/query_editor.xml | 14 ++++++-- 4 files changed, 87 insertions(+), 6 deletions(-) diff --git a/data/gdaex_query_editor.dtd b/data/gdaex_query_editor.dtd index b5011e0..7097eb8 100644 --- a/data/gdaex_query_editor.dtd +++ b/data/gdaex_query_editor.dtd @@ -13,7 +13,7 @@ table_name CDATA #REQUIRED > - + @@ -26,10 +26,16 @@ + + + + + + diff --git a/src/queryeditor.c b/src/queryeditor.c index 9d485f3..d08fac3 100644 --- a/src/queryeditor.c +++ b/src/queryeditor.c @@ -283,9 +283,9 @@ enum COL_WHERE_CONDITION_NOT, COL_WHERE_CONDITION_TYPE, COL_WHERE_CONDITION_TYPE_VISIBLE, - COL_WHERE_CONDITION_FROM, /* column with exchange value from GtkTreeStore and GFtkWidget */ - COL_WHERE_CONDITION_FROM_VISIBLE, /* column with the visible eventually formatted value */ - COL_WHERE_CONDITION_FROM_SQL, /* columne with the value formatted useful for sql */ + COL_WHERE_CONDITION_FROM, /* column with exchange value from GtkTreeStore and GtkWidget */ + COL_WHERE_CONDITION_FROM_VISIBLE, /* column with the visible, eventually formatted, value */ + COL_WHERE_CONDITION_FROM_SQL, /* column with the value formatted useful for sql */ COL_WHERE_CONDITION_TO, COL_WHERE_CONDITION_TO_VISIBLE, COL_WHERE_CONDITION_TO_SQL @@ -1335,6 +1335,13 @@ gdaex_query_editor_load_tables_from_xml (GdaExQueryEditor *qe, field->for_where = TRUE; field->for_order = TRUE; + field->where_default_from = g_strdup (""); + field->where_default_from_visible = g_strdup (""); + field->where_default_from_sql = g_strdup (""); + field->where_default_to = g_strdup (""); + field->where_default_to_visible = g_strdup (""); + field->where_default_to_sql = g_strdup (""); + cur = xfield->children; while (cur != NULL) { @@ -1390,6 +1397,52 @@ gdaex_query_editor_load_tables_from_xml (GdaExQueryEditor *qe, { field->where_default_type = gdaex_query_editor_str_to_where_type (xmlNodeGetContent (cur)); } + else if (xmlStrcmp (cur->name, "where_default_from") == 0) + { + xmlNode *wfrom; + + wfrom = cur->children; + while (wfrom != NULL) + { + if (xmlStrcmp (wfrom->name, "w_value") == 0) + { + field->where_default_from = xmlNodeGetContent (wfrom); + } + else if (xmlStrcmp (wfrom->name, "w_visible") == 0) + { + field->where_default_from_visible = xmlNodeGetContent (wfrom); + } + else if (xmlStrcmp (wfrom->name, "w_sql") == 0) + { + field->where_default_from_sql = xmlNodeGetContent (wfrom); + } + + wfrom = wfrom->next; + } + } + else if (xmlStrcmp (cur->name, "where_default_to") == 0) + { + xmlNode *wto; + + wto = cur->children; + while (wto != NULL) + { + if (xmlStrcmp (wto->name, "w_value") == 0) + { + field->where_default_to = xmlNodeGetContent (wto); + } + else if (xmlStrcmp (wto->name, "w_visible") == 0) + { + field->where_default_to_visible = xmlNodeGetContent (wto); + } + else if (xmlStrcmp (wto->name, "w_sql") == 0) + { + field->where_default_to_sql = xmlNodeGetContent (wto); + } + + wto = wto->next; + } + } else if (xmlStrcmp (cur->name, "for_order") == 0) { field->for_order = zak_utils_string_to_boolean (xmlNodeGetContent (cur)); @@ -4274,6 +4327,12 @@ gdaex_query_editor_on_btn_where_add_clicked (GtkButton *button, COL_WHERE_CONDITION_NOT, field->where_default_not, COL_WHERE_CONDITION_TYPE, field->where_default_type, COL_WHERE_CONDITION_TYPE_VISIBLE, gdaex_query_editor_get_where_type_str_from_type (field->where_default_type), + COL_WHERE_CONDITION_FROM, field->where_default_from, + COL_WHERE_CONDITION_FROM_VISIBLE, field->where_default_from_visible, + COL_WHERE_CONDITION_FROM_SQL, field->where_default_from_sql, + COL_WHERE_CONDITION_TO, field->where_default_to, + COL_WHERE_CONDITION_TO_VISIBLE, field->where_default_to_visible, + COL_WHERE_CONDITION_TO_SQL, field->where_default_to_sql, -1); if (with_parent) diff --git a/src/queryeditor.h b/src/queryeditor.h index d92890f..8da5013 100644 --- a/src/queryeditor.h +++ b/src/queryeditor.h @@ -129,6 +129,12 @@ typedef struct guint available_where_type; gboolean where_default_not; GdaExQueryEditorWhereType where_default_type; + gchar *where_default_from; + gchar *where_default_from_visible; + gchar *where_default_from_sql; + gchar *where_default_to; + gchar *where_default_to_visible; + gchar *where_default_to_sql; gboolean for_order; gboolean always_ordered; GdaExQueryEditorOrderType order_default; diff --git a/tests/query_editor.xml b/tests/query_editor.xml index bced065..4b0c1a0 100644 --- a/tests/query_editor.xml +++ b/tests/query_editor.xml @@ -31,9 +31,19 @@ Surname The client's surname text - string|is_null + string|is_null|between t - is_null + between + + jon + jon + 'jon' + + + jane + jane + 'jane' + true DESC -- 2.49.0