From: Andrea Zagli Date: Thu, 12 Aug 2010 15:06:13 +0000 (+0200) Subject: Gestione tipi recapito. X-Git-Tag: 0.0.3~62 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=390e0d50c93a967b5978a214e837a2298afe6957;p=solipa%2Forganigramma Gestione tipi recapito. --- diff --git a/data/organigramma/form/Makefile.am b/data/organigramma/form/Makefile.am index 8d770f4..f0534cb 100644 --- a/data/organigramma/form/Makefile.am +++ b/data/organigramma/form/Makefile.am @@ -1,5 +1,8 @@ formdir = $(datadir)/$(PACKAGE)/form -form_DATA = +form_DATA = \ + nodo.form \ + tipo_nodo.form \ + tipo_recapito.form EXTRA_DIST = $(form_DATA) diff --git a/data/organigramma/form/tipo_recapito.form b/data/organigramma/form/tipo_recapito.form new file mode 100644 index 0000000..e5a3cb5 --- /dev/null +++ b/data/organigramma/form/tipo_recapito.form @@ -0,0 +1,17 @@ + + + + tipi_recapito
+ + + + t + t + + + + + + + +
diff --git a/data/organigramma/gui/organigramma.gui b/data/organigramma/gui/organigramma.gui index 7090abd..3a91505 100644 --- a/data/organigramma/gui/organigramma.gui +++ b/data/organigramma/gui/organigramma.gui @@ -72,6 +72,14 @@ + + + True + Tipi _recapito + True + + + @@ -428,6 +436,14 @@ + + + + + + + + True center-on-parent @@ -825,4 +841,262 @@ + + Tipi recapito - Gestione organigramma + + + True + 5 + vertical + 5 + + + True + <b>Tipi recapito</b> + True + + + False + 0 + + + + + True + True + automatic + automatic + etched-in + + + True + True + lstore_tipi_recapito + False + 0 + + + Nome + + + + 1 + + + + + + + + + 1 + + + + + True + 5 + end + + + gtk-new + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + True + True + True + True + + + False + False + 2 + + + + + gtk-cancel + True + True + True + True + + + False + False + 3 + + + + + gtk-ok + True + True + True + True + + + False + False + 4 + + + + + False + 2 + + + + + + + Tipo recapito - Gestione organigramma + True + center-on-parent + True + + + True + 5 + vertical + 5 + + + True + 3 + 2 + 5 + 5 + + + True + 0 + Nome + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + 200 + + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + 0 + lbl_id + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + 0 + ID + + + GTK_FILL + GTK_FILL + + + + + + + + + + + 0 + + + + + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + False + 1 + + + + + diff --git a/docs/note.txt b/docs/note.txt index 022555a..d48018d 100644 --- a/docs/note.txt +++ b/docs/note.txt @@ -16,4 +16,12 @@ CREATE TABLE tipi_nodo ( nome VARCHAR (200) DEFAULT '', status VARCHAR (1) DEFAULT '', CONSTRAINT tipi_nodo_pkey PRIMARY KEY (id) -); \ No newline at end of file +); + +CREATE TABLE tipi_recapito +( + id integer NOT NULL, + nome character varying(100) DEFAULT ''::character varying, + status character varying(1) DEFAULT ''::character varying, + CONSTRAINT tipi_recapito_pkey PRIMARY KEY (id) +) \ No newline at end of file diff --git a/src/Makefile.am b/src/Makefile.am index 3429f13..87545bc 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -19,5 +19,9 @@ organigramma_SOURCES = \ nodo.h \ tipinodo.c \ tipinodo.h \ + tipirecapito.c \ + tipirecapito.h \ tiponodo.c \ - tiponodo.h \ No newline at end of file + tiponodo.h \ + tiporecapito.c \ + tiporecapito.h \ No newline at end of file diff --git a/src/main.c b/src/main.c index e362940..1b4a15d 100644 --- a/src/main.c +++ b/src/main.c @@ -30,6 +30,7 @@ #include "commons.h" #include "nodi.h" #include "tipinodo.h" +#include "tipirecapito.h" static Commons *commons; @@ -78,6 +79,19 @@ on_mnu_tabelle_tipi_nodo_activate (GtkMenuItem *menuitem, main_set_vbx_body_child (vbx); } +G_MODULE_EXPORT void +on_mnu_tabelle_tipi_recapito_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + TipiRecapito *m = tipi_recapito_new (commons, FALSE); + + vbx = tipi_recapito_get_widget (m); + + main_set_vbx_body_child (vbx); +} + G_MODULE_EXPORT void on_mnu_help_about_activate (GtkMenuItem *menuitem, gpointer user_data) diff --git a/src/tipirecapito.c b/src/tipirecapito.c new file mode 100644 index 0000000..e700bd8 --- /dev/null +++ b/src/tipirecapito.c @@ -0,0 +1,452 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 "tipirecapito.h" +#include "tiporecapito.h" + +static void tipi_recapito_class_init (TipiRecapitoClass *klass); +static void tipi_recapito_init (TipiRecapito *tipi_recapito); + +static void tipi_recapito_carica (TipiRecapito *tipi_recapito); +static void tipi_recapito_modifica (TipiRecapito *tipi_recapito); + +static void tipi_recapito_selezionato (TipiRecapito *tipi_recapito); +static void tipi_recapito_on_costo_aggiornato (gpointer instance, gpointer user_data); + +static void tipi_recapito_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec); +static void tipi_recapito_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec); + +static void tipi_recapito_on_btn_nuovo_clicked (GtkButton *button, + gpointer user_data); +static void tipi_recapito_on_btn_modifica_clicked (GtkButton *button, + gpointer user_data); +static void tipi_recapito_on_btn_elimina_clicked (GtkButton *button, + gpointer user_data); +static void tipi_recapito_on_trv_tipi_recapito_row_activated (GtkTreeView *tree_view, + GtkTreePath *tree_path, + GtkTreeViewColumn *column, + gpointer user_data); + +static void tipi_recapito_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data); +static void tipi_recapito_on_btn_seleziona_clicked (GtkButton *button, + gpointer user_data); + +#define TIPI_RECAPITO_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TIPI_RECAPITO, TipiRecapitoPrivate)) + +enum +{ + COL_ID, + COL_NOME +}; + +typedef struct _TipiRecapitoPrivate TipiRecapitoPrivate; +struct _TipiRecapitoPrivate + { + Commons *commons; + + GtkWidget *widget; + GtkTreeSelection *selection; + GtkListStore *lstore_tipi_recapito; + + gboolean selezione; + GtkWindow *wtransient; + }; + +G_DEFINE_TYPE (TipiRecapito, tipi_recapito, G_TYPE_OBJECT) + +static void +tipi_recapito_class_init (TipiRecapitoClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (object_class, sizeof (TipiRecapitoPrivate)); + + object_class->set_property = tipi_recapito_set_property; + object_class->get_property = tipi_recapito_get_property; + + /** + * TipiRecapito::selezionato: + * @tipi_recapito: + * + */ + klass->selezionato_signal_id = g_signal_new ("selezionato", + G_TYPE_FROM_CLASS (object_class), + G_SIGNAL_RUN_LAST, + 0, + NULL, + NULL, + g_cclosure_marshal_VOID__UINT, + G_TYPE_NONE, + 1, G_TYPE_UINT); +} + +static void +tipi_recapito_init (TipiRecapito *tipi_recapito) +{ + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); +} + +/** + * tipi_recapito_new: + * @commons: + * @selezione: + * + * Returns: the newly created #TipiRecapito object. + */ +TipiRecapito +*tipi_recapito_new (Commons *commons, gboolean selezione) +{ + GError *error; + + TipiRecapito *a = TIPI_RECAPITO (g_object_new (tipi_recapito_get_type (), NULL)); + + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (a); + + priv->commons = commons; + priv->selezione = selezione; + + error = NULL; + gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile, + g_strsplit (g_strconcat ("lstore_tipi_recapito|", + (selezione ? "w_tipi_recapito" : "vbx_tipi_recapito"), + NULL), "|", -1), + &error); + if (error != NULL) + { + g_warning ("Errore: %s.", error->message); + return NULL; + } + + priv->widget = GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, (selezione ? "w_tipi_recapito" : "vbx_tipi_recapito"))); + priv->selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview3"))); + priv->lstore_tipi_recapito = GTK_LIST_STORE (gtk_builder_get_object (priv->commons->gtkbuilder, "lstore_tipi_recapito")); + + if (priv->selezione) + { + priv->wtransient = GTK_WINDOW (priv->widget); + } + else + { + priv->wtransient = GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")); + } + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button16"), + "clicked", G_CALLBACK (tipi_recapito_on_btn_nuovo_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button17"), + "clicked", G_CALLBACK (tipi_recapito_on_btn_modifica_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button18"), + "clicked", G_CALLBACK (tipi_recapito_on_btn_elimina_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview3"), + "row-activated", G_CALLBACK (tipi_recapito_on_trv_tipi_recapito_row_activated), (gpointer)a); + + if (priv->selezione) + { + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "label3"))); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button19"), + "clicked", G_CALLBACK (tipi_recapito_on_btn_annulla_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button20"), + "clicked", G_CALLBACK (tipi_recapito_on_btn_seleziona_clicked), (gpointer)a); + } + else + { + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button19"))); + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button20"))); + } + + tipi_recapito_carica (a); + + return a; +} + +/** + * tipi_recapito_get_widget: + * @tipi_recapito: + * + */ +GtkWidget +*tipi_recapito_get_widget (TipiRecapito *tipi_recapito) +{ + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + return priv->widget; +} + +/* PRIVATE */ +static void +tipi_recapito_carica (TipiRecapito *tipi_recapito) +{ + GtkTreeIter iter; + GdaDataModel *dm; + + gint rows; + gint row; + + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + gtk_list_store_clear (priv->lstore_tipi_recapito); + + dm = gdaex_query (priv->commons->gdaex, + "SELECT c.id, c.nome" + " FROM tipi_recapito AS c" + " WHERE c.status <> 'E'" + " ORDER BY c.nome"); + if (dm != NULL) + { + rows = gda_data_model_get_n_rows (dm); + for (row = 0; row < rows; row++) + { + gtk_list_store_append (priv->lstore_tipi_recapito, &iter); + + gtk_list_store_set (priv->lstore_tipi_recapito, &iter, + COL_ID, gdaex_data_model_get_field_value_stringify_at (dm, row, "id"), + COL_NOME, gdaex_data_model_get_field_value_stringify_at (dm, row, "nome"), + -1); + } + + g_object_unref (dm); + } +} + +static void +tipi_recapito_modifica (TipiRecapito *tipi_recapito) +{ + GtkTreeIter iter; + gchar *id; + + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + GtkWidget *w; + + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_tipi_recapito), &iter, + COL_ID, &id, + -1); + + TipoRecapito *c = tipo_recapito_new (priv->commons, strtol (id, NULL, 10)); + + g_signal_connect (G_OBJECT (c), "aggiornato", + G_CALLBACK (tipi_recapito_on_costo_aggiornato), (gpointer)tipi_recapito); + + w = tipo_recapito_get_widget (c); + if (priv->selezione) + { + gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (priv->widget)); + } + else + { + gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main"))); + } + gtk_widget_show (w); + } + else + { + GtkWidget *dialog = gtk_message_dialog_new (priv->wtransient, + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Occorre prima selezionare un tipo recapito"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipi_recapito_selezionato (TipiRecapito *tipi_recapito) +{ + GtkTreeIter iter; + gchar *id; + + TipiRecapitoClass *klass = TIPI_RECAPITO_GET_CLASS (tipi_recapito); + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_tipi_recapito), &iter, + COL_ID, &id, + -1); + + g_signal_emit (G_OBJECT (tipi_recapito), klass->selezionato_signal_id, 0, strtol (id, NULL, 10)); + + gtk_widget_destroy (priv->widget); + g_object_unref (G_OBJECT (tipi_recapito)); + } + else + { + GtkWidget *dialog = gtk_message_dialog_new (priv->wtransient, + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Occorre prima selezionare un tipo recapito"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipi_recapito_on_costo_aggiornato (gpointer instance, gpointer user_data) +{ + tipi_recapito_carica ((TipiRecapito *)user_data); +} + +static void +tipi_recapito_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) +{ + TipiRecapito *tipi_recapito = TIPI_RECAPITO (object); + + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static void +tipi_recapito_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) +{ + TipiRecapito *tipi_recapito = TIPI_RECAPITO (object); + + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +/* CALLBACK */ +static void +tipi_recapito_on_btn_nuovo_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *w; + + TipiRecapito *tipi_recapito = (TipiRecapito *)user_data; + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + TipoRecapito *c = tipo_recapito_new (priv->commons, 0); + + g_signal_connect (G_OBJECT (c), "aggiornato", + G_CALLBACK (tipi_recapito_on_costo_aggiornato), (gpointer)tipi_recapito); + + w = tipo_recapito_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), priv->wtransient); + gtk_widget_show (w); +} + +static void +tipi_recapito_on_btn_modifica_clicked (GtkButton *button, + gpointer user_data) +{ + tipi_recapito_modifica ((TipiRecapito *)user_data); +} + +static void +tipi_recapito_on_btn_elimina_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *dialog; + gboolean risp; + + GtkTreeIter iter; + gchar *id; + + TipiRecapito *tipi_recapito = (TipiRecapito *)user_data; + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE (tipi_recapito); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + dialog = gtk_message_dialog_new (priv->wtransient, + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_YES_NO, + "Sicuro di voler eliminare il tipo recapito selezionato?"); + risp = gtk_dialog_run (GTK_DIALOG (dialog)); + if (risp == GTK_RESPONSE_YES) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_tipi_recapito), &iter, + COL_ID, &id, + -1); + + gdaex_execute (priv->commons->gdaex, + g_strdup_printf ("UPDATE tipi_recapito SET status = 'E' WHERE id = %d", strtol (id, NULL, 10))); + + tipi_recapito_carica (tipi_recapito); + } + gtk_widget_destroy (dialog); + } + else + { + dialog = gtk_message_dialog_new (priv->wtransient, + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Occorre prima selezionare un tipo recapito"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipi_recapito_on_trv_tipi_recapito_row_activated (GtkTreeView *tree_view, + GtkTreePath *tree_path, + GtkTreeViewColumn *column, + gpointer user_data) +{ + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE ((TipiRecapito *)user_data); + + if (priv->selezione) + { + tipi_recapito_selezionato ((TipiRecapito *)user_data); + } + else + { + tipi_recapito_modifica ((TipiRecapito *)user_data); + } +} + + +static void +tipi_recapito_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data) +{ + TipiRecapitoPrivate *priv = TIPI_RECAPITO_GET_PRIVATE ((TipiRecapito *)user_data); + + gtk_widget_destroy (priv->widget); + g_object_unref (G_OBJECT (user_data)); +} + +static void +tipi_recapito_on_btn_seleziona_clicked (GtkButton *button, + gpointer user_data) +{ + tipi_recapito_selezionato ((TipiRecapito *)user_data); +} diff --git a/src/tipirecapito.h b/src/tipirecapito.h new file mode 100644 index 0000000..5546ea8 --- /dev/null +++ b/src/tipirecapito.h @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 + * + */ + +#ifndef __TIPI_RECAPITO_H__ +#define __TIPI_RECAPITO_H__ + +#include +#include + +#include +#include + +#include "commons.h" + +G_BEGIN_DECLS + + +#define TYPE_TIPI_RECAPITO (tipi_recapito_get_type ()) +#define TIPI_RECAPITO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_TIPI_RECAPITO, TipiRecapito)) +#define TIPI_RECAPITO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_TIPI_RECAPITO, TipiRecapitoClass)) +#define IS_TIPI_RECAPITO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_TIPI_RECAPITO)) +#define IS_TIPI_RECAPITO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_TIPI_RECAPITO)) +#define TIPI_RECAPITO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_TIPI_RECAPITO, TipiRecapitoClass)) + + +typedef struct _TipiRecapito TipiRecapito; +typedef struct _TipiRecapitoClass TipiRecapitoClass; + +struct _TipiRecapito + { + GObject parent; + }; + +struct _TipiRecapitoClass + { + GObjectClass parent_class; + + guint selezionato_signal_id; + }; + +GType tipi_recapito_get_type (void) G_GNUC_CONST; + +TipiRecapito *tipi_recapito_new (Commons *commons, gboolean selezione); + +GtkWidget *tipi_recapito_get_widget (TipiRecapito *tipi_recapito); + + +G_END_DECLS + +#endif /* __TIPI_RECAPITO_H__ */ diff --git a/src/tiporecapito.c b/src/tiporecapito.c new file mode 100644 index 0000000..e92b367 --- /dev/null +++ b/src/tiporecapito.c @@ -0,0 +1,336 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 + +#include "tiporecapito.h" + +static void tipo_recapito_class_init (TipoRecapitoClass *klass); +static void tipo_recapito_init (TipoRecapito *tipo_recapito); + +static void tipo_recapito_carica (TipoRecapito *tipo_recapito); +static void tipo_recapito_salva (TipoRecapito *tipo_recapito); + +static gboolean tipo_recapito_conferma_chiusura (TipoRecapito *tipo_recapito); + +static void tipo_recapito_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec); +static void tipo_recapito_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec); + +static gboolean tipo_recapito_on_w_tipo_recapito_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data); + +static void tipo_recapito_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data); +static void tipo_recapito_on_btn_salva_clicked (GtkButton *button, + gpointer user_data); + +#define TIPO_RECAPITO_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TIPO_RECAPITO, TipoRecapitoPrivate)) + +enum +{ + LBL_ID +}; + +typedef struct _TipoRecapitoPrivate TipoRecapitoPrivate; +struct _TipoRecapitoPrivate + { + Commons *commons; + + GtkForm *form; + + GtkWidget *w; + + GObject **objects; + + gint id; + }; + +G_DEFINE_TYPE (TipoRecapito, tipo_recapito, G_TYPE_OBJECT) + +static void +tipo_recapito_class_init (TipoRecapitoClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (object_class, sizeof (TipoRecapitoPrivate)); + + object_class->set_property = tipo_recapito_set_property; + object_class->get_property = tipo_recapito_get_property; + + /** + * TipoRecapito::aggiornato: + * @tipo_recapito: + * + */ + klass->aggiornato_signal_id = g_signal_new ("aggiornato", + G_TYPE_FROM_CLASS (object_class), + G_SIGNAL_RUN_LAST, + 0, + NULL, + NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, + 0); +} + +static void +tipo_recapito_init (TipoRecapito *tipo_recapito) +{ + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); +} + +/** + * tipo_recapito_new: + * @commons: + * @id: + * + * Returns: the newly created #TipoRecapito object. + */ +TipoRecapito +*tipo_recapito_new (Commons *commons, gint id) +{ + GError *error; + + TipoRecapito *a = TIPO_RECAPITO (g_object_new (tipo_recapito_get_type (), NULL)); + + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (a); + + priv->commons = commons; + + error = NULL; + gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile, + g_strsplit ("w_tipo_recapito", "|", -1), + &error); + if (error != NULL) + { + g_warning ("Errore: %s.", error->message); + return NULL; + } + + priv->form = gtk_form_new_from_file (g_build_filename (priv->commons->formdir, "tipo_recapito.form", NULL), priv->commons->gtkbuilder); + + g_object_set (priv->form, "gdaex", priv->commons->gdaex, NULL); + + priv->w = GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_tipo_recapito")); + + priv->objects = gtk_form_get_objects_by_name (priv->form, + "label15", + NULL); + + g_signal_connect (priv->w, + "delete-event", G_CALLBACK (tipo_recapito_on_w_tipo_recapito_delete_event), (gpointer *)a); + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button21"), + "clicked", G_CALLBACK (tipo_recapito_on_btn_annulla_clicked), (gpointer *)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button22"), + "clicked", G_CALLBACK (tipo_recapito_on_btn_salva_clicked), (gpointer *)a); + + priv->id = id; + + if (priv->id == 0) + { + gtk_label_set_text (GTK_LABEL (priv->objects[LBL_ID]), ""); + + gtk_form_set_as_origin (priv->form); + } + else + { + gtk_label_set_text (GTK_LABEL (priv->objects[LBL_ID]), g_strdup_printf ("%d", priv->id)); + tipo_recapito_carica (a); + } + + return a; +} + +/** + * tipo_recapito_get_widget: + * @tipo_recapito: + * + */ +GtkWidget +*tipo_recapito_get_widget (TipoRecapito *tipo_recapito) +{ + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); + + return priv->w; +} + +/* PRIVATE */ +static void +tipo_recapito_carica (TipoRecapito *tipo_recapito) +{ + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); + + gtk_form_fill_from_table (priv->form); +} + +static void +tipo_recapito_salva (TipoRecapito *tipo_recapito) +{ + GError *error = NULL; + gchar *sql; + GtkWidget *dialog; + + GDate *da; + GDate *a; + + TipoRecapitoClass *klass = TIPO_RECAPITO_GET_CLASS (tipo_recapito); + + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); + + if (!gtk_form_check (priv->form, (priv->id != 0), NULL, TRUE, priv->w, TRUE)) + { + return; + } + + if (priv->id == 0) + { + sql = gtk_form_get_sql (priv->form, GTK_FORM_SQL_INSERT); + } + else + { + sql = gtk_form_get_sql (priv->form, GTK_FORM_SQL_UPDATE); + } + + if (gdaex_execute (priv->commons->gdaex, sql) == 1) + { + g_signal_emit (tipo_recapito, klass->aggiornato_signal_id, 0); + + gtk_form_set_as_origin (priv->form); + + if (priv->id == 0) + { + priv->id = strtol (gtk_label_get_text (GTK_LABEL (priv->objects[LBL_ID])), NULL, 10); + } + + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_INFO, + GTK_BUTTONS_OK, + "Salvataggio eseguito con successo."); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } + else + { + if (priv->id == 0) + { + gtk_label_set_text (GTK_LABEL (priv->objects[LBL_ID]), ""); + } + + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Errore durante il salvataggio."); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +tipo_recapito_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) +{ + TipoRecapito *tipo_recapito = TIPO_RECAPITO (object); + + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static void +tipo_recapito_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) +{ + TipoRecapito *tipo_recapito = TIPO_RECAPITO (object); + + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static gboolean +tipo_recapito_conferma_chiusura (TipoRecapito *tipo_recapito) +{ + GtkWidget *dialog; + + gboolean ret; + + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); + + ret = TRUE; + if (gtk_form_is_changed (priv->form)) + { + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_YES_NO, + "Sicuro di voler chiudere senza salvare?"); + if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_NO) + { + ret = FALSE; + } + gtk_widget_destroy (dialog); + } + + return ret; +} + +/* CALLBACK */ +static gboolean +tipo_recapito_on_w_tipo_recapito_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + return !tipo_recapito_conferma_chiusura ((TipoRecapito *)user_data); +} + +static void +tipo_recapito_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data) +{ + TipoRecapito *tipo_recapito = (TipoRecapito *)user_data; + + TipoRecapitoPrivate *priv = TIPO_RECAPITO_GET_PRIVATE (tipo_recapito); + + if (tipo_recapito_conferma_chiusura (tipo_recapito)) gtk_widget_destroy (priv->w); +} + +static void +tipo_recapito_on_btn_salva_clicked (GtkButton *button, + gpointer user_data) +{ + tipo_recapito_salva ((TipoRecapito *)user_data); +} diff --git a/src/tiporecapito.h b/src/tiporecapito.h new file mode 100644 index 0000000..66a04cf --- /dev/null +++ b/src/tiporecapito.h @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 + * + */ + +#ifndef __TIPO_RECAPITO_H__ +#define __TIPO_RECAPITO_H__ + +#include +#include + +#include +#include + +#include "commons.h" + +G_BEGIN_DECLS + + +#define TYPE_TIPO_RECAPITO (tipo_recapito_get_type ()) +#define TIPO_RECAPITO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_TIPO_RECAPITO, TipoRecapito)) +#define TIPO_RECAPITO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_TIPO_RECAPITO, TipoRecapitoClass)) +#define IS_TIPO_RECAPITO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_TIPO_RECAPITO)) +#define IS_TIPO_RECAPITO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_TIPO_RECAPITO)) +#define TIPO_RECAPITO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_TIPO_RECAPITO, TipoRecapitoClass)) + + +typedef struct _TipoRecapito TipoRecapito; +typedef struct _TipoRecapitoClass TipoRecapitoClass; + +struct _TipoRecapito + { + GObject parent; + }; + +struct _TipoRecapitoClass + { + GObjectClass parent_class; + + guint aggiornato_signal_id; + }; + +GType tipo_recapito_get_type (void) G_GNUC_CONST; + +TipoRecapito *tipo_recapito_new (Commons *commons, gint id); + +GtkWidget *tipo_recapito_get_widget (TipoRecapito *tipo_recapito); + + +G_END_DECLS + +#endif /* __TIPO_RECAPITO_H__ */