#define TERRITORIO_COMUNI_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TERRITORIO_COMUNI, TerritorioComuniPrivate))
+enum
+{
+ PROP_0,
+ PROP_PROVINCIA
+};
+
enum
{
COL_ID,
GtkWindow *wtransient;
guint signal_map;
+
+ guint id_provincia;
};
G_DEFINE_TYPE (TerritorioComuni, territorio_comuni, G_TYPE_OBJECT)
object_class->set_property = territorio_comuni_set_property;
object_class->get_property = territorio_comuni_get_property;
+ g_object_class_install_property (object_class, PROP_PROVINCIA,
+ g_param_spec_uint ("provincia",
+ "ID province",
+ "ID province",
+ 0, G_MAXUINT, 0,
+ G_PARAM_READWRITE));
+
/**
* TerritorioComuni::selezionato:
* @territorio_comuni:
territorio_comuni_init (TerritorioComuni *territorio_comuni)
{
TerritorioComuniPrivate *priv = TERRITORIO_COMUNI_GET_PRIVATE (territorio_comuni);
+
+ priv->id_provincia = 0;
}
/**
"%'",
NULL);
}
+ }
+
+ ival = 0;
+ if (priv->id_provincia > 0)
+ {
+ ival = priv->id_provincia;
+ }
+ else if (priv->parametri_ricerca != NULL)
+ {
ival = g_value_get_int ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "id_province"));
- if (ival != 0)
- {
- sql_where = g_strconcat (sql_where, " AND c.id_province = ",
- g_strdup_printf ("%d", ival),
- NULL);
- }
+ }
+ if (ival > 0)
+ {
+ sql_where = g_strconcat (sql_where, " AND c.id_province = ",
+ g_strdup_printf ("%d", ival),
+ NULL);
}
sql = g_strdup_printf ("SELECT c.id, c.nome,"
" ORDER BY c.nome",
sql_where);
dm = gdaex_query (priv->commons->gdaex, sql);
+ g_free (sql);
+ g_free (sql_where);
if (dm != NULL)
{
rows = gda_data_model_get_n_rows (dm);
for (row = 0; row < rows; row++)
{
gtk_list_store_append (priv->lstore_comuni, &iter);
-
gtk_list_store_set (priv->lstore_comuni, &iter,
COL_ID, gdaex_data_model_get_field_value_integer_at (dm, row, "id"),
COL_NOME, gdaex_data_model_get_field_value_stringify_at (dm, row, "nome"),
territorio_comuni_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
{
TerritorioComuni *territorio_comuni = TERRITORIO_COMUNI (object);
-
TerritorioComuniPrivate *priv = TERRITORIO_COMUNI_GET_PRIVATE (territorio_comuni);
switch (property_id)
{
+ case PROP_PROVINCIA:
+ priv->id_provincia = g_value_get_uint (value);
+ break;
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
territorio_comuni_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
{
TerritorioComuni *territorio_comuni = TERRITORIO_COMUNI (object);
-
TerritorioComuniPrivate *priv = TERRITORIO_COMUNI_GET_PRIVATE (territorio_comuni);
switch (property_id)
{
+ case PROP_PROVINCIA:
+ g_value_set_uint (value, priv->id_provincia);
+ break;
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
#define TERRITORIO_PROVINCE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TERRITORIO_PROVINCE, TerritorioProvincePrivate))
+enum
+{
+ PROP_0,
+ PROP_REGIONE
+};
+
enum
{
COL_ID,
GtkWindow *wtransient;
guint signal_map;
+
+ guint id_regioni;
};
G_DEFINE_TYPE (TerritorioProvince, territorio_province, G_TYPE_OBJECT)
object_class->set_property = territorio_province_set_property;
object_class->get_property = territorio_province_get_property;
+ g_object_class_install_property (object_class, PROP_REGIONE,
+ g_param_spec_uint ("regione",
+ "ID regioni",
+ "ID regioni",
+ 0, G_MAXUINT, 0,
+ G_PARAM_READWRITE));
+
/**
* TerritorioProvince::selezionato:
* @territorio_province:
territorio_province_init (TerritorioProvince *territorio_province)
{
TerritorioProvincePrivate *priv = TERRITORIO_PROVINCE_GET_PRIVATE (territorio_province);
+
+ priv->id_regioni = 0;
}
/**
"%'",
NULL);
}
+ }
+
+ ival = 0;
+ if (priv->id_regioni > 0)
+ {
+ ival = priv->id_regioni;
+ }
+ else if (priv->parametri_ricerca != NULL)
+ {
ival = g_value_get_int ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "id_regioni"));
- if (ival != 0)
- {
- sql_where = g_strconcat (sql_where, " AND c.id_regioni = ",
- g_strdup_printf ("%d", ival),
- NULL);
- }
+ }
+ if (ival > 0)
+ {
+ sql_where = g_strconcat (sql_where, " AND c.id_regioni = ",
+ g_strdup_printf ("%d", ival),
+ NULL);
}
sql = g_strdup_printf ("SELECT c.id, c.nome, c.sigla, r.nome AS regione"
territorio_province_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
{
TerritorioProvince *territorio_province = TERRITORIO_PROVINCE (object);
-
TerritorioProvincePrivate *priv = TERRITORIO_PROVINCE_GET_PRIVATE (territorio_province);
switch (property_id)
{
+ case PROP_REGIONE:
+ priv->id_regioni = g_value_get_uint (value);
+ break;
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
territorio_province_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
{
TerritorioProvince *territorio_province = TERRITORIO_PROVINCE (object);
-
TerritorioProvincePrivate *priv = TERRITORIO_PROVINCE_GET_PRIVATE (territorio_province);
switch (property_id)
{
+ case PROP_REGIONE:
+ g_value_set_uint (value, priv->id_regioni);
+ break;
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
#define TERRITORIO_VIE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TERRITORIO_VIE, TerritorioViePrivate))
+enum
+{
+ PROP_0,
+ PROP_COMUNE
+};
+
enum
{
COL_ID,
GtkWindow *wtransient;
guint signal_map;
+
+ guint id_comuni;
};
G_DEFINE_TYPE (TerritorioVie, territorio_vie, G_TYPE_OBJECT)
object_class->set_property = territorio_vie_set_property;
object_class->get_property = territorio_vie_get_property;
+ g_object_class_install_property (object_class, PROP_COMUNE,
+ g_param_spec_uint ("comune",
+ "ID comuni",
+ "ID comuni",
+ 0, G_MAXUINT, 0,
+ G_PARAM_READWRITE));
+
/**
* TerritorioVie::selezionato:
* @territorio_vie:
territorio_vie_init (TerritorioVie *territorio_vie)
{
TerritorioViePrivate *priv = TERRITORIO_VIE_GET_PRIVATE (territorio_vie);
+
+ priv->id_comuni = 0;
}
/**
gtk_list_store_clear (priv->lstore_vie);
sql_where = g_strdup ("");
+
if (priv->parametri_ricerca != NULL)
{
gcval = g_strstrip ((gchar *)g_value_get_string ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "nome")));
"%'",
NULL);
}
+ }
+
+ ival = 0;
+ if (priv->id_comuni > 0)
+ {
+ ival = priv->id_comuni;
+ }
+ else if (priv->parametri_ricerca != NULL)
+ {
ival = g_value_get_int ((GValue *)g_hash_table_lookup (priv->parametri_ricerca, "id_comuni"));
- if (ival != 0)
- {
- sql_where = g_strconcat (sql_where, " AND v.id_comuni = ",
- g_strdup_printf ("%d", ival),
- NULL);
- }
+ }
+ if (ival > 0)
+ {
+ sql_where = g_strconcat (sql_where, " AND v.id_comuni = ",
+ g_strdup_printf ("%d", ival),
+ NULL);
}
sql = g_strdup_printf ("SELECT v.id, v.nome,"
sql_where);
dm = gdaex_query (priv->commons->gdaex, sql);
+ g_free (sql);
+ g_free (sql_where);
if (dm != NULL)
{
rows = gda_data_model_get_n_rows (dm);
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_WARNING,
GTK_BUTTONS_OK,
- "Occorre prima selezionare una via");
+ "Occorre prima selezionare una via.");
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}
territorio_vie_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
{
TerritorioVie *territorio_vie = TERRITORIO_VIE (object);
-
TerritorioViePrivate *priv = TERRITORIO_VIE_GET_PRIVATE (territorio_vie);
switch (property_id)
{
+ case PROP_COMUNE:
+ priv->id_comuni = g_value_get_uint (value);
+ break;
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
territorio_vie_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
{
TerritorioVie *territorio_vie = TERRITORIO_VIE (object);
-
TerritorioViePrivate *priv = TERRITORIO_VIE_GET_PRIVATE (territorio_vie);
switch (property_id)
{
+ case PROP_COMUNE:
+ g_value_set_uint (value, priv->id_comuni);
+ break;
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;