plugin=/usr/local/lib/libaute/plugins/libaute-db
cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autedb
+[AUTOZ]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz
+
[DB]
cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=organigramma
#include <gtk/gtk.h>
#include <libgdaex/libgdaex.h>
+#include <libautoz/autoz.h>
+#include <libautoz/role_interface.h>
#include <libterritorio/commons.h>
const gchar *guifile;
+ const gchar *utente;
+ Autoz *autoz;
+ AutozIRole *role_utente;
+
TerritorioCommons *territorio_commons;
} OrganigrammaCommons;
#include <gtk/gtk.h>
#include <libaute.h>
+#include <libautoz/autoz.h>
#include <libterritorio/commons.h>
/* inizializzazione commons */
commons = g_new0 (OrganigrammaCommons, 1);
+ commons->utente = utente;
commons->territorio_commons = g_new0 (TerritorioCommons, 1);
commons->territorio_commons->utente = utente;
commons->guifile = g_build_filename (commons->guidir, "organigramma.gui", NULL);
commons->territorio_commons->guifile = g_build_filename (commons->territorio_commons->guidir, "territorio.gui", NULL);
+ /* leggo i parametri per libautoz */
+ error = NULL;
+ cnc_string = g_key_file_get_value (config, "AUTOZ", "cnc_string", &error);
+ if (cnc_string == NULL)
+ {
+ g_warning ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ return 0;
+ }
+
+ error = NULL;
+ gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
+ if (gdacon == NULL)
+ {
+ g_warning ("Impossibile creare la connessione al db per libautoz: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ return 0;
+ }
+
+ commons->autoz = autoz_new ();
+ if (commons->autoz == NULL)
+ {
+ g_warning ("Impossibile creare l'oggetto per libautoz.");
+ return 0;
+ }
+ if (!autoz_load_from_db (commons->autoz, gdacon, NULL, TRUE))
+ {
+ g_warning ("Impossibile caricare la configurazione per libautoz dal db.");
+ return 0;
+ }
+
+ commons->role_utente = autoz_get_role_from_id (commons->autoz, commons->utente);
+ if (commons->role_utente == NULL)
+ {
+ g_warning ("Utente «%s» non trovato nell configurazione di libautoz.", commons->utente);
+ return 0;
+ }
+
+ if (!autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "organigramma_ro"), FALSE)
+ && !autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "organigramma_rw"), FALSE))
+ {
+ g_critical ("Non si è autorizzati all'utilizzo di questa applicazione.");
+ return 0;
+ }
+
/* leggo la stringa di connessione al db */
error = NULL;
cnc_string = g_key_file_get_value (config, "DB", "cnc_string", &error);
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "nodi.h"
*organigramma_nodi_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaNodi *a = ORGANIGRAMMA_NODI (g_object_new (organigramma_nodi_get_type (), NULL));
organigramma_nodi_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button1")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button3")), FALSE);
+ }
+
return a;
}
/*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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 <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_nodo_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaNodo *a = ORGANIGRAMMA_NODO (g_object_new (organigramma_nodo_get_type (), NULL));
organigramma_nodo_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button5")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_persona_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersona *a = ORGANIGRAMMA_PERSONA (g_object_new (organigramma_persona_get_type (), NULL));
organigramma_persona_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button79")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button81")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button70")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button72")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button73")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button75")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button62")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button64")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button67")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button69")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button76")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button78")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button66")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_incarico_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersonaIncarico *a = ORGANIGRAMMA_PERSONA_INCARICO (g_object_new (organigramma_persona_incarico_get_type (), NULL));
organigramma_persona_incarico_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button99")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_nodo_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersonaNodo *a = ORGANIGRAMMA_PERSONA_NODO (g_object_new (organigramma_persona_nodo_get_type (), NULL));
organigramma_persona_nodo_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button92")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_nodo_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone, guint id_nodi)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersonaNodoRecapito *a = ORGANIGRAMMA_PERSONA_NODO_RECAPITO (g_object_new (organigramma_persona_nodo_recapito_get_type (), NULL));
organigramma_persona_nodo_recapito_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button94")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersonaRecapito *a = ORGANIGRAMMA_PERSONA_RECAPITO (g_object_new (organigramma_persona_recapito_get_type (), NULL));
organigramma_persona_recapito_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button88")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_ufficio_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersonaUfficio *a = ORGANIGRAMMA_PERSONA_UFFICIO (g_object_new (organigramma_persona_ufficio_get_type (), NULL));
organigramma_persona_ufficio_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button84")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_ufficio_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone, guint id_uffici)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersonaUfficioRecapito *a = ORGANIGRAMMA_PERSONA_UFFICIO_RECAPITO (g_object_new (organigramma_persona_ufficio_recapito_get_type (), NULL));
organigramma_persona_ufficio_recapito_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button86")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "persone.h"
guint id_uffici, GDateTime *when)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPersone *a = ORGANIGRAMMA_PERSONE (g_object_new (organigramma_persone_get_type (), NULL));
organigramma_persone_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button102")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button104")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_posizione_economica_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPosizioneEconomica *a = POSIZIONE_ECONOMICA (g_object_new (organigramma_posizione_economica_get_type (), NULL));
organigramma_posizione_economica_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button122")), FALSE);
+ }
+
return a;
}
/*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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 <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "posizionieconomiche.h"
*organigramma_posizioni_economiche_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaPosizioniEconomiche *a = ORGANIGRAMMA_POSIZIONI_ECONOMICHE (g_object_new (organigramma_posizioni_economiche_get_type (), NULL));
organigramma_posizioni_economiche_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button116")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button118")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "profiliprofessionali.h"
*organigramma_profili_professionali_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaProfiliProfessionali *a = ORGANIGRAMMA_PROFILI_PROFESSIONALI (g_object_new (organigramma_profili_professionali_get_type (), NULL));
organigramma_profili_professionali_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button130")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button132")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_profilo_professionale_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaProfiloProfessionale *a = ORGANIGRAMMA_PROFILO_PROFESSIONALE (g_object_new (organigramma_profilo_professionale_get_type (), NULL));
organigramma_profilo_professionale_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button136")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libterritorio/via.h>
#include <libsolipa/utils.h>
*organigramma_struttura_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaStruttura *a = ORGANIGRAMMA_STRUTTURA (g_object_new (organigramma_struttura_get_type (), NULL));
organigramma_struttura_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button47")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button51")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button40")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libterritorio/vie.h>
#include <libsolipa/utils.h>
*organigramma_struttura_indirizzo_new (OrganigrammaCommons *commons, guint id, guint id_strutture)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaStrutturaIndirizzo *a = ORGANIGRAMMA_STRUTTURA_INDIRIZZO (g_object_new (organigramma_struttura_indirizzo_get_type (), NULL));
organigramma_struttura_indirizzo_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button56")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "strutture.h"
*organigramma_strutture_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaStrutture *a = ORGANIGRAMMA_STRUTTURE (g_object_new (organigramma_strutture_get_type (), NULL));
organigramma_strutture_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button32")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button34")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "tipinodo.h"
*organigramma_tipi_nodo_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipiNodo *a = ORGANIGRAMMA_TIPI_NODO (g_object_new (organigramma_tipi_nodo_get_type (), NULL));
organigramma_tipi_nodo_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button7")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button11")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "tipiprestazione.h"
*organigramma_tipi_prestazione_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipiPrestazione *a = ORGANIGRAMMA_TIPI_PRESTAZIONE (g_object_new (organigramma_tipi_prestazione_get_type (), NULL));
organigramma_tipi_prestazione_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button123")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button125")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "tipirapportolavoro.h"
*organigramma_tipi_rapporto_lavoro_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipiRapportoLavoro *a = ORGANIGRAMMA_TIPI_RAPPORTO_LAVORO (g_object_new (organigramma_tipi_rapporto_lavoro_get_type (), NULL));
organigramma_tipi_rapporto_lavoro_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button109")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button111")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "tipirecapito.h"
*organigramma_tipi_recapito_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipiRecapito *a = ORGANIGRAMMA_TIPI_RECAPITO (g_object_new (organigramma_tipi_recapito_get_type (), NULL));
organigramma_tipi_recapito_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button16")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button18")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_tipo_nodo_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipoNodo *a = ORGANIGRAMMA_TIPO_NODO (g_object_new (organigramma_tipo_nodo_get_type (), NULL));
organigramma_tipo_nodo_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button9")), FALSE);
+ }
+
return a;
}
/*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 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 <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_tipo_prestazione_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipoPrestazione *a = ORGANIGRAMMA_TIPO_PRESTAZIONE (g_object_new (organigramma_tipo_prestazione_get_type (), NULL));
organigramma_tipo_prestazione_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button129")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_tipo_rapporto_lavoro_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipoRapportoLavoro *a = ORGANIGRAMMA_TIPO_RAPPORTO_LAVORO (g_object_new (organigramma_tipo_rapporto_lavoro_get_type (), NULL));
organigramma_tipo_rapporto_lavoro_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button115")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_tipo_recapito_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTipoRecapito *a = ORGANIGRAMMA_TIPO_RECAPITO (g_object_new (organigramma_tipo_recapito_get_type (), NULL));
organigramma_tipo_recapito_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button22")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "titoli.h"
*organigramma_titoli_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTitoli *a = ORGANIGRAMMA_TITOLI (g_object_new (organigramma_titoli_get_type (), NULL));
organigramma_titoli_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button95")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button97")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_titolo_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaTitolo *a = ORGANIGRAMMA_TITOLO (g_object_new (organigramma_titolo_get_type (), NULL));
organigramma_titolo_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button106")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libsolipa/utils.h>
#include "uffici.h"
*organigramma_uffici_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaUffici *a = ORGANIGRAMMA_UFFICI (g_object_new (organigramma_uffici_get_type (), NULL));
organigramma_uffici_carica (a);
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button23")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button25")), FALSE);
+ }
+
return a;
}
*
*/
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaUfficio *a = ORGANIGRAMMA_UFFICIO (g_object_new (organigramma_ufficio_get_type (), NULL));
priv->sel_orari = gtk_tree_view_get_selection (GTK_TREE_VIEW (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview10")));
g_signal_connect (priv->w,
- "delete-event", G_CALLBACK (organigramma_ufficio_on_w_organigramma_ufficio_delete_event), (gpointer *)a);
+ "delete-event", G_CALLBACK (organigramma_ufficio_on_w_organigramma_ufficio_delete_event), (gpointer)a);
g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button31"),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_organigramma_ufficio_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_organigramma_ufficio_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button28")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_nuovo_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_nuovo_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button42")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_modifica_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_modifica_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button43")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_elimina_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_elimina_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview7")),
- "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_nodi_row_activated), (gpointer *)a);
+ "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_nodi_row_activated), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button137")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_nuovo_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_nuovo_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button140")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_modifica_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_modifica_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button141")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_elimina_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_elimina_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview23")),
- "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_stanze_row_activated), (gpointer *)a);
+ "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_stanze_row_activated), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button37")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_nuovo_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_nuovo_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button38")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_modifica_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_modifica_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button41")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_elimina_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_elimina_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview6")),
- "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_recapiti_row_activated), (gpointer *)a);
+ "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_recapiti_row_activated), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button59")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_nuovo_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_nuovo_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button60")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_modifica_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_modifica_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button61")),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_elimina_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_elimina_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview10")),
- "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_orari_row_activated), (gpointer *)a);
+ "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_orari_row_activated), (gpointer)a);
g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button29"),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_annulla_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_annulla_clicked), (gpointer)a);
g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button30"),
- "clicked", G_CALLBACK (organigramma_ufficio_on_btn_salva_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_on_btn_salva_clicked), (gpointer)a);
gtk_form_clear (priv->form);
organigramma_ufficio_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button28")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button43")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button137")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button141")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button37")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button41")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button59")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button61")), FALSE);
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button30")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_nodo_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaUfficioNodo *a = ORGANIGRAMMA_UFFICIO_NODO (g_object_new (organigramma_ufficio_nodo_get_type (), NULL));
NULL);
g_signal_connect (priv->w,
- "delete-event", G_CALLBACK (organigramma_ufficio_nodo_on_w_organigramma_ufficio_nodo_delete_event), (gpointer *)a);
+ "delete-event", G_CALLBACK (organigramma_ufficio_nodo_on_w_organigramma_ufficio_nodo_delete_event), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button44")),
- "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_nodo_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_nodo_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button45")),
- "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_annulla_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_annulla_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button46")),
- "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_salva_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_salva_clicked), (gpointer)a);
priv->id = id;
if (priv->id == 0)
organigramma_ufficio_nodo_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button46")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_orario_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaUfficioOrario *a = ORGANIGRAMMA_UFFICIO_ORARIO (g_object_new (organigramma_ufficio_orario_get_type (), NULL));
organigramma_ufficio_orario_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button58")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_recapito_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaUfficioRecapito *a = ORGANIGRAMMA_UFFICIO_RECAPITO (g_object_new (organigramma_ufficio_recapito_get_type (), NULL));
NULL);
g_signal_connect (priv->w,
- "delete-event", G_CALLBACK (organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito_delete_event), (gpointer *)a);
+ "delete-event", G_CALLBACK (organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito_delete_event), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button48")),
- "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_annulla_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_annulla_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button49")),
- "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_salva_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_salva_clicked), (gpointer)a);
priv->id = id;
if (priv->id == 0)
organigramma_ufficio_recapito_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button49")), FALSE);
+ }
+
return a;
}
#include <config.h>
#endif
+#include <libautoz/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_stanza_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
+ AutozIResource *ires1;
OrganigrammaUfficioStanza *a = ORGANIGRAMMA_UFFICIO_STANZA (g_object_new (organigramma_ufficio_stanza_get_type (), NULL));
NULL);
g_signal_connect (priv->w,
- "delete-event", G_CALLBACK (organigramma_ufficio_stanza_on_w_organigramma_ufficio_stanza_delete_event), (gpointer *)a);
+ "delete-event", G_CALLBACK (organigramma_ufficio_stanza_on_w_organigramma_ufficio_stanza_delete_event), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button138")),
- "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_annulla_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_annulla_clicked), (gpointer)a);
g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button139")),
- "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_salva_clicked), (gpointer *)a);
+ "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_salva_clicked), (gpointer)a);
priv->id = id;
if (priv->id == 0)
organigramma_ufficio_stanza_carica (a);
}
+ ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ {
+ gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button139")), FALSE);
+ }
+
return a;
}