From: Andrea Zagli Date: Thu, 12 Aug 2010 15:34:46 +0000 (+0200) Subject: Inizio gestione uffici. X-Git-Tag: 0.0.3~61 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=687abc0e2e07bdf94b05fd503aa351e4bd4603a3;p=solipa%2Forganigramma Inizio gestione uffici. --- diff --git a/data/organigramma/form/Makefile.am b/data/organigramma/form/Makefile.am index f0534cb..877deb2 100644 --- a/data/organigramma/form/Makefile.am +++ b/data/organigramma/form/Makefile.am @@ -3,6 +3,7 @@ formdir = $(datadir)/$(PACKAGE)/form form_DATA = \ nodo.form \ tipo_nodo.form \ - tipo_recapito.form + tipo_recapito.form \ + ufficio.form EXTRA_DIST = $(form_DATA) diff --git a/data/organigramma/form/ufficio.form b/data/organigramma/form/ufficio.form new file mode 100644 index 0000000..9ad8be1 --- /dev/null +++ b/data/organigramma/form/ufficio.form @@ -0,0 +1,41 @@ + + + + uffici
+ + + + t + t + + + + + + f + f + + + + + + entry6 + + SELECT nome FROM nodi WHERE id = ##label22::gint + + + + + + + + + + + + + + + + +
diff --git a/data/organigramma/gui/organigramma.gui b/data/organigramma/gui/organigramma.gui index 3a91505..bb99de8 100644 --- a/data/organigramma/gui/organigramma.gui +++ b/data/organigramma/gui/organigramma.gui @@ -52,6 +52,14 @@ + + + True + _Uffici + True + + + @@ -444,6 +452,14 @@ + + + + + + + + True center-on-parent @@ -618,7 +634,7 @@ True True - 200 + 100 @@ -1011,7 +1027,7 @@ True True - 200 + 100 @@ -1099,4 +1115,410 @@ + + Uffici - Gestione organigramma + + + True + 5 + vertical + 5 + + + True + <b>Uffici</b> + True + + + False + 0 + + + + + True + True + automatic + automatic + etched-in + + + True + True + lstore_uffici + 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 + + + + + + + Ufficio - Gestione organigramma + True + center-on-parent + True + + + True + 5 + vertical + 5 + + + True + 6 + 2 + 5 + 5 + + + True + 0 + Nome + + + 3 + 4 + GTK_FILL + GTK_FILL + + + + + True + True + 100 + + + + 1 + 2 + 3 + 4 + GTK_FILL + + + + + True + 0 + 0 + Descrizione + + + 4 + 5 + GTK_FILL + GTK_FILL + + + + + True + True + automatic + automatic + etched-in + + + True + True + + + + + 1 + 2 + 4 + 5 + + + + + True + 0 + Nodo superiore + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + 5 + + + True + True + False + + + + 0 + + + + + ... + True + True + True + + + False + 1 + + + + + lbl_id_nodi + + + False + 2 + + + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + 0 + lbl_id + + + 1 + 2 + GTK_FILL + + + + + True + 0 + ID + + + GTK_FILL + GTK_FILL + + + + + + + + + + + True + 0 + Struttura + + + 2 + 3 + + + + + True + 5 + + + True + True + False + + + + 0 + + + + + ... + True + True + True + + + False + 1 + + + + + lbl_id_strutture + + + False + 2 + + + + + 1 + 2 + 2 + 3 + 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 d48018d..21dd6a3 100644 --- a/docs/note.txt +++ b/docs/note.txt @@ -13,7 +13,7 @@ CREATE TABLE nodi ( CREATE TABLE tipi_nodo ( id INTEGER, - nome VARCHAR (200) DEFAULT '', + nome VARCHAR (100) DEFAULT '', status VARCHAR (1) DEFAULT '', CONSTRAINT tipi_nodo_pkey PRIMARY KEY (id) ); @@ -24,4 +24,15 @@ CREATE TABLE tipi_recapito 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 +); + +CREATE TABLE uffici +( + id integer NOT NULL, + id_nodi integer, + id_strutture integer, + nome character varying(100) DEFAULT ''::character varying, + descrizione text DEFAULT ''::text, + status character varying(1) DEFAULT ''::character varying, + CONSTRAINT uffici_pkey PRIMARY KEY (id) +); \ No newline at end of file diff --git a/src/Makefile.am b/src/Makefile.am index 87545bc..63b14c5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -24,4 +24,8 @@ organigramma_SOURCES = \ tiponodo.c \ tiponodo.h \ tiporecapito.c \ - tiporecapito.h \ No newline at end of file + tiporecapito.h \ + uffici.c \ + uffici.h \ + ufficio.c \ + ufficio.h \ No newline at end of file diff --git a/src/main.c b/src/main.c index 1b4a15d..4d13dbd 100644 --- a/src/main.c +++ b/src/main.c @@ -31,6 +31,7 @@ #include "nodi.h" #include "tipinodo.h" #include "tipirecapito.h" +#include "uffici.h" static Commons *commons; @@ -66,6 +67,19 @@ on_mnu_view_nodi_activate (GtkMenuItem *menuitem, main_set_vbx_body_child (vbx); } +G_MODULE_EXPORT void +on_mnu_view_uffici_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + Uffici *m = uffici_new (commons, FALSE); + + vbx = uffici_get_widget (m); + + main_set_vbx_body_child (vbx); +} + G_MODULE_EXPORT void on_mnu_tabelle_tipi_nodo_activate (GtkMenuItem *menuitem, gpointer user_data) diff --git a/src/uffici.c b/src/uffici.c new file mode 100644 index 0000000..5284b66 --- /dev/null +++ b/src/uffici.c @@ -0,0 +1,445 @@ +/* + * 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 "uffici.h" +#include "ufficio.h" + +static void uffici_class_init (UfficiClass *klass); +static void uffici_init (Uffici *uffici); + +static void uffici_carica (Uffici *uffici); +static void uffici_modifica (Uffici *uffici); + +static void uffici_selezionato (Uffici *uffici); +static void uffici_on_costo_aggiornato (gpointer instance, gpointer user_data); + +static void uffici_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec); +static void uffici_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec); + +static void uffici_on_btn_nuovo_clicked (GtkButton *button, + gpointer user_data); +static void uffici_on_btn_modifica_clicked (GtkButton *button, + gpointer user_data); +static void uffici_on_btn_elimina_clicked (GtkButton *button, + gpointer user_data); +static void uffici_on_trv_uffici_row_activated (GtkTreeView *tree_view, + GtkTreePath *tree_path, + GtkTreeViewColumn *column, + gpointer user_data); + +static void uffici_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data); +static void uffici_on_btn_seleziona_clicked (GtkButton *button, + gpointer user_data); + +#define UFFICI_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_UFFICI, UfficiPrivate)) + +enum +{ + COL_ID, + COL_NOME +}; + +typedef struct _UfficiPrivate UfficiPrivate; +struct _UfficiPrivate + { + Commons *commons; + + GtkWidget *widget; + GtkTreeSelection *selection; + GtkListStore *lstore_uffici; + + gboolean selezione; + GtkWindow *wtransient; + }; + +G_DEFINE_TYPE (Uffici, uffici, G_TYPE_OBJECT) + +static void +uffici_class_init (UfficiClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (object_class, sizeof (UfficiPrivate)); + + object_class->set_property = uffici_set_property; + object_class->get_property = uffici_get_property; + + /** + * Uffici::selezionato: + * @uffici: + * + */ + 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 +uffici_init (Uffici *uffici) +{ + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); +} + +/** + * uffici_new: + * @commons: + * @selezione: + * + * Returns: the newly created #Uffici object. + */ +Uffici +*uffici_new (Commons *commons, gboolean selezione) +{ + GError *error; + + Uffici *a = UFFICI (g_object_new (uffici_get_type (), NULL)); + + UfficiPrivate *priv = UFFICI_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_uffici|", + (selezione ? "w_uffici" : "vbx_uffici"), + 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_uffici" : "vbx_uffici"))); + priv->selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview4"))); + priv->lstore_uffici = GTK_LIST_STORE (gtk_builder_get_object (priv->commons->gtkbuilder, "lstore_uffici")); + + 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, "button23"), + "clicked", G_CALLBACK (uffici_on_btn_nuovo_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button24"), + "clicked", G_CALLBACK (uffici_on_btn_modifica_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button25"), + "clicked", G_CALLBACK (uffici_on_btn_elimina_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview4"), + "row-activated", G_CALLBACK (uffici_on_trv_uffici_row_activated), (gpointer)a); + + if (priv->selezione) + { + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "label7"))); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button26"), + "clicked", G_CALLBACK (uffici_on_btn_annulla_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button27"), + "clicked", G_CALLBACK (uffici_on_btn_seleziona_clicked), (gpointer)a); + } + else + { + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button26"))); + gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button27"))); + } + + uffici_carica (a); + + return a; +} + +/** + * uffici_get_widget: + * @uffici: + * + */ +GtkWidget +*uffici_get_widget (Uffici *uffici) +{ + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + return priv->widget; +} + +/* PRIVATE */ +static void +uffici_carica (Uffici *uffici) +{ + GtkTreeIter iter; + GdaDataModel *dm; + + gint rows; + gint row; + + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + gtk_list_store_clear (priv->lstore_uffici); + + dm = gdaex_query (priv->commons->gdaex, + "SELECT c.id, c.nome" + " FROM uffici 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_uffici, &iter); + + gtk_list_store_set (priv->lstore_uffici, &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"), + -1); + } + + g_object_unref (dm); + } +} + +static void +uffici_modifica (Uffici *uffici) +{ + GtkTreeIter iter; + guint id; + + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + GtkWidget *w; + + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_uffici), &iter, + COL_ID, &id, + -1); + + Ufficio *c = ufficio_new (priv->commons, id); + + g_signal_connect (G_OBJECT (c), "aggiornato", + G_CALLBACK (uffici_on_costo_aggiornato), (gpointer)uffici); + + w = ufficio_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), priv->wtransient); + 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 ufficio"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +uffici_selezionato (Uffici *uffici) +{ + GtkTreeIter iter; + guint *id; + + UfficiClass *klass = UFFICI_GET_CLASS (uffici); + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_uffici), &iter, + COL_ID, &id, + -1); + + g_signal_emit (G_OBJECT (uffici), klass->selezionato_signal_id, 0, id); + + gtk_widget_destroy (priv->widget); + g_object_unref (G_OBJECT (uffici)); + } + else + { + GtkWidget *dialog = gtk_message_dialog_new (priv->wtransient, + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Occorre prima selezionare un ufficio"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +uffici_on_costo_aggiornato (gpointer instance, gpointer user_data) +{ + uffici_carica ((Uffici *)user_data); +} + +static void +uffici_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) +{ + Uffici *uffici = UFFICI (object); + + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static void +uffici_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) +{ + Uffici *uffici = UFFICI (object); + + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +/* CALLBACK */ +static void +uffici_on_btn_nuovo_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *w; + + Uffici *uffici = (Uffici *)user_data; + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + Ufficio *c = ufficio_new (priv->commons, 0); + + g_signal_connect (G_OBJECT (c), "aggiornato", + G_CALLBACK (uffici_on_costo_aggiornato), (gpointer)uffici); + + w = ufficio_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), priv->wtransient); + gtk_widget_show (w); +} + +static void +uffici_on_btn_modifica_clicked (GtkButton *button, + gpointer user_data) +{ + uffici_modifica ((Uffici *)user_data); +} + +static void +uffici_on_btn_elimina_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *dialog; + gboolean risp; + + GtkTreeIter iter; + guint id; + + Uffici *uffici = (Uffici *)user_data; + UfficiPrivate *priv = UFFICI_GET_PRIVATE (uffici); + + 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 l'ufficio selezionato?"); + risp = gtk_dialog_run (GTK_DIALOG (dialog)); + if (risp == GTK_RESPONSE_YES) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->lstore_uffici), &iter, + COL_ID, &id, + -1); + + gdaex_execute (priv->commons->gdaex, + g_strdup_printf ("UPDATE uffici SET status = 'E' WHERE id = %d", id)); + + uffici_carica (uffici); + } + 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 ufficio"); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +uffici_on_trv_uffici_row_activated (GtkTreeView *tree_view, + GtkTreePath *tree_path, + GtkTreeViewColumn *column, + gpointer user_data) +{ + UfficiPrivate *priv = UFFICI_GET_PRIVATE ((Uffici *)user_data); + + if (priv->selezione) + { + uffici_selezionato ((Uffici *)user_data); + } + else + { + uffici_modifica ((Uffici *)user_data); + } +} + + +static void +uffici_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data) +{ + UfficiPrivate *priv = UFFICI_GET_PRIVATE ((Uffici *)user_data); + + gtk_widget_destroy (priv->widget); + g_object_unref (G_OBJECT (user_data)); +} + +static void +uffici_on_btn_seleziona_clicked (GtkButton *button, + gpointer user_data) +{ + uffici_selezionato ((Uffici *)user_data); +} diff --git a/src/uffici.h b/src/uffici.h new file mode 100644 index 0000000..a246f1a --- /dev/null +++ b/src/uffici.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 __UFFICI_H__ +#define __UFFICI_H__ + +#include +#include + +#include +#include + +#include "commons.h" + +G_BEGIN_DECLS + + +#define TYPE_UFFICI (uffici_get_type ()) +#define UFFICI(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_UFFICI, Uffici)) +#define UFFICI_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_UFFICI, UfficiClass)) +#define IS_UFFICI(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_UFFICI)) +#define IS_UFFICI_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_UFFICI)) +#define UFFICI_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_UFFICI, UfficiClass)) + + +typedef struct _Uffici Uffici; +typedef struct _UfficiClass UfficiClass; + +struct _Uffici + { + GObject parent; + }; + +struct _UfficiClass + { + GObjectClass parent_class; + + guint selezionato_signal_id; + }; + +GType uffici_get_type (void) G_GNUC_CONST; + +Uffici *uffici_new (Commons *commons, gboolean selezione); + +GtkWidget *uffici_get_widget (Uffici *uffici); + + +G_END_DECLS + +#endif /* __UFFICI_H__ */ diff --git a/src/ufficio.c b/src/ufficio.c new file mode 100644 index 0000000..2472b39 --- /dev/null +++ b/src/ufficio.c @@ -0,0 +1,376 @@ +/* + * 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 "ufficio.h" +#include "nodi.h" + +static void ufficio_class_init (UfficioClass *klass); +static void ufficio_init (Ufficio *ufficio); + +static void ufficio_carica (Ufficio *ufficio); +static void ufficio_salva (Ufficio *ufficio); + +static gboolean ufficio_conferma_chiusura (Ufficio *ufficio); + +static void ufficio_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec); +static void ufficio_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec); + +static void ufficio_on_nodo_selezionato (gpointer instance, guint id, gpointer user_data); + +static void ufficio_on_btn_nodo_clicked (GtkButton *button, + gpointer user_data); + +static gboolean ufficio_on_w_ufficio_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data); + +static void ufficio_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data); +static void ufficio_on_btn_salva_clicked (GtkButton *button, + gpointer user_data); + +#define UFFICIO_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_UFFICIO, UfficioPrivate)) + +enum +{ + LBL_ID +}; + +typedef struct _UfficioPrivate UfficioPrivate; +struct _UfficioPrivate + { + Commons *commons; + + GtkForm *form; + + GtkWidget *w; + + GObject **objects; + + gint id; + }; + +G_DEFINE_TYPE (Ufficio, ufficio, G_TYPE_OBJECT) + +static void +ufficio_class_init (UfficioClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (object_class, sizeof (UfficioPrivate)); + + object_class->set_property = ufficio_set_property; + object_class->get_property = ufficio_get_property; + + /** + * Ufficio::aggiornato: + * @ufficio: + * + */ + 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 +ufficio_init (Ufficio *ufficio) +{ + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); +} + +/** + * ufficio_new: + * @commons: + * @id: + * + * Returns: the newly created #Ufficio object. + */ +Ufficio +*ufficio_new (Commons *commons, gint id) +{ + GError *error; + + Ufficio *a = UFFICIO (g_object_new (ufficio_get_type (), NULL)); + + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (a); + + priv->commons = commons; + + error = NULL; + gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile, + g_strsplit ("w_ufficio", "|", -1), + &error); + if (error != NULL) + { + g_warning ("Errore: %s.", error->message); + return NULL; + } + + priv->form = gtk_form_new (); + g_object_set (G_OBJECT (priv->form), "gdaex", priv->commons->gdaex, NULL); + gtk_form_load_from_file (priv->form, g_build_filename (priv->commons->formdir, "ufficio.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_ufficio")); + + priv->objects = gtk_form_get_objects_by_name (priv->form, + "label23", + NULL); + + g_signal_connect (priv->w, + "delete-event", G_CALLBACK (ufficio_on_w_ufficio_delete_event), (gpointer *)a); + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button28"), + "clicked", G_CALLBACK (ufficio_on_btn_nodo_clicked), (gpointer *)a); + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button29"), + "clicked", G_CALLBACK (ufficio_on_btn_annulla_clicked), (gpointer *)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button30"), + "clicked", G_CALLBACK (ufficio_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)); + ufficio_carica (a); + } + + return a; +} + +/** + * ufficio_get_widget: + * @ufficio: + * + */ +GtkWidget +*ufficio_get_widget (Ufficio *ufficio) +{ + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); + + return priv->w; +} + +/* PRIVATE */ +static void +ufficio_carica (Ufficio *ufficio) +{ + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); + + gtk_form_fill_from_table (priv->form); +} + +static void +ufficio_salva (Ufficio *ufficio) +{ + GError *error = NULL; + gchar *sql; + GtkWidget *dialog; + + GDate *da; + GDate *a; + + UfficioClass *klass = UFFICIO_GET_CLASS (ufficio); + + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); + + 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 (ufficio, 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 +ufficio_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) +{ + Ufficio *ufficio = UFFICIO (object); + + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static void +ufficio_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) +{ + Ufficio *ufficio = UFFICIO (object); + + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static gboolean +ufficio_conferma_chiusura (Ufficio *ufficio) +{ + GtkWidget *dialog; + + gboolean ret; + + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); + + 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 void +ufficio_on_nodo_selezionato (gpointer instance, guint id, gpointer user_data) +{ + Ufficio *f = (Ufficio *)user_data; + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (f); + + gtk_form_widget_set_value_stringify (gtk_form_get_form_widget_from_name (priv->form, "label22"), g_strdup_printf ("%d", id)); +} + +static void +ufficio_on_btn_nodo_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *w; + + Ufficio *rf = (Ufficio *)user_data; + + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (rf); + + Nodi *c = nodi_new (priv->commons, TRUE); + + g_signal_connect (G_OBJECT (c), "selezionato", + G_CALLBACK (ufficio_on_nodo_selezionato), user_data); + + w = nodi_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (priv->w)); + gtk_widget_show (w); +} + +static gboolean +ufficio_on_w_ufficio_delete_event (GtkWidget *widget, + GdkEvent *event, + gpointer user_data) +{ + return !ufficio_conferma_chiusura ((Ufficio *)user_data); +} + +static void +ufficio_on_btn_annulla_clicked (GtkButton *button, + gpointer user_data) +{ + Ufficio *ufficio = (Ufficio *)user_data; + + UfficioPrivate *priv = UFFICIO_GET_PRIVATE (ufficio); + + if (ufficio_conferma_chiusura (ufficio)) gtk_widget_destroy (priv->w); +} + +static void +ufficio_on_btn_salva_clicked (GtkButton *button, + gpointer user_data) +{ + ufficio_salva ((Ufficio *)user_data); +} diff --git a/src/ufficio.h b/src/ufficio.h new file mode 100644 index 0000000..6fb932b --- /dev/null +++ b/src/ufficio.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 __UFFICIO_H__ +#define __UFFICIO_H__ + +#include +#include + +#include +#include + +#include "commons.h" + +G_BEGIN_DECLS + + +#define TYPE_UFFICIO (ufficio_get_type ()) +#define UFFICIO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_UFFICIO, Ufficio)) +#define UFFICIO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_UFFICIO, UfficioClass)) +#define IS_UFFICIO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_UFFICIO)) +#define IS_UFFICIO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_UFFICIO)) +#define UFFICIO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_UFFICIO, UfficioClass)) + + +typedef struct _Ufficio Ufficio; +typedef struct _UfficioClass UfficioClass; + +struct _Ufficio + { + GObject parent; + }; + +struct _UfficioClass + { + GObjectClass parent_class; + + guint aggiornato_signal_id; + }; + +GType ufficio_get_type (void) G_GNUC_CONST; + +Ufficio *ufficio_new (Commons *commons, gint id); + +GtkWidget *ufficio_get_widget (Ufficio *ufficio); + + +G_END_DECLS + +#endif /* __UFFICIO_H__ */