From 68801493a348e22fd5c83e31dcd93084b1b408e5 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Tue, 24 Aug 2010 11:53:37 +0200 Subject: [PATCH] Import iniziale. --- .gitignore | 23 ++ AUTHORS | 1 + Makefile.am | 22 ++ NEWS | 0 README | 0 autogen.sh | 23 ++ configure.ac | 43 +++ data/Makefile.am | 1 + data/territorio/Makefile.am | 1 + data/territorio/form/Makefile.am | 5 + data/territorio/gui/Makefile.am | 5 + docs/Makefile.am | 3 + docs/territorio.sql | 323 +++++++++++++++++++++++ docs/territorio/Makefile.am | 1 + docs/territorio/examples/Makefile.am | 6 + docs/territorio/examples/territorio.conf | 6 + src/Makefile.am | 15 ++ src/commons.h | 42 +++ src/main.c | 241 +++++++++++++++++ 19 files changed, 761 insertions(+) create mode 100644 .gitignore create mode 100644 AUTHORS create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100644 autogen.sh create mode 100644 configure.ac create mode 100644 data/Makefile.am create mode 100644 data/territorio/Makefile.am create mode 100644 data/territorio/form/Makefile.am create mode 100644 data/territorio/gui/Makefile.am create mode 100644 docs/Makefile.am create mode 100644 docs/territorio.sql create mode 100644 docs/territorio/Makefile.am create mode 100644 docs/territorio/examples/Makefile.am create mode 100644 docs/territorio/examples/territorio.conf create mode 100644 src/Makefile.am create mode 100644 src/commons.h create mode 100644 src/main.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5fbe730 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +*.o +*~ +*.in +src/organigramma +COPYING +INSTALL +Makefile +Makefile.in +aclocal.m4 +autom4te.cache/ +config.guess +config.h +config.log +config.status +config.sub +configure +depcomp +install-sh +missing +src/.deps/ +stamp-h1 +.anjuta* +*exe diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..353c69e --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Andrea Zagli \ No newline at end of file diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..db05b3f --- /dev/null +++ b/Makefile.am @@ -0,0 +1,22 @@ +SUBDIRS = src data docs + +distclean-local: + if test "$(srcdir)" = "."; then :; else \ + rm -f ChangeLog; \ + fi + +ChangeLog: + @echo Creating $@ + @if test -d "$(srcdir)/.git"; then \ + (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \ + && mv -f $@.tmp $@ \ + || ($(RM) $@.tmp; \ + echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ + (test -f $@ || echo git-log is required to generate this file >> $@)); \ + else \ + test -f $@ || \ + (echo A git checkout and git-log is required to generate ChangeLog >&2 && \ + echo A git checkout and git-log is required to generate this file >> $@); \ + fi + +.PHONY: ChangeLog diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/autogen.sh b/autogen.sh new file mode 100644 index 0000000..2d06c42 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="territorio" + +(test -f $srcdir/configure.ac \ + && test -d $srcdir/src \ + && test -f $srcdir/src/main.c) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level territorio directory" + exit 1 +} + +which gnome-autogen.sh || { + echo "You need to install gnome-common from GNOME and make" + echo "sure the gnome-autogen.sh script is in your \$PATH." + exit 1 +} + +USE_GNOME2_MACROS=1 . gnome-autogen.sh diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..150b5d7 --- /dev/null +++ b/configure.ac @@ -0,0 +1,43 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ([2.65]) +AC_INIT([territorio], [0.0.1], [azagli@libero.it]) +AC_CONFIG_SRCDIR([src/main.c]) +AC_CONFIG_HEADER([config.h]) + +AM_INIT_AUTOMAKE +AM_MAINTAINER_MODE + +AC_CANONICAL_SYSTEM + +# Checks for programs. +AC_PROG_CC + +# Checks for libraries. +PKG_CHECK_MODULES(TERRITORIO, [gio-2.0 >= 2.20 + gtk+-2.0 >= 2.16 + libgtkform >= 0.1.3 + libaute >= 0.0.2]) + +AC_SUBST(TERRITORIO_CFLAGS) +AC_SUBST(TERRITORIO_LIBS) + +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. + +# Checks for library functions. + +AC_CONFIG_FILES([ + Makefile + src/Makefile + data/Makefile + data/territorio/Makefile + data/territorio/form/Makefile + data/territorio/gui/Makefile + docs/Makefile + docs/territorio/Makefile + docs/territorio/examples/Makefile +]) +AC_OUTPUT diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..334489d --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = territorio diff --git a/data/territorio/Makefile.am b/data/territorio/Makefile.am new file mode 100644 index 0000000..93b52d7 --- /dev/null +++ b/data/territorio/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = form gui diff --git a/data/territorio/form/Makefile.am b/data/territorio/form/Makefile.am new file mode 100644 index 0000000..e8bfb71 --- /dev/null +++ b/data/territorio/form/Makefile.am @@ -0,0 +1,5 @@ +formdir = $(datadir)/$(PACKAGE)/form + +form_DATA = + +EXTRA_DIST = $(form_DATA) diff --git a/data/territorio/gui/Makefile.am b/data/territorio/gui/Makefile.am new file mode 100644 index 0000000..045dae7 --- /dev/null +++ b/data/territorio/gui/Makefile.am @@ -0,0 +1,5 @@ +guidir = $(datadir)/$(PACKAGE)/gui + +gui_DATA = + +EXTRA_DIST = $(gui_DATA) diff --git a/docs/Makefile.am b/docs/Makefile.am new file mode 100644 index 0000000..a6e45c8 --- /dev/null +++ b/docs/Makefile.am @@ -0,0 +1,3 @@ +SUBDIRS = territorio + +NOINST = territorio.sql \ No newline at end of file diff --git a/docs/territorio.sql b/docs/territorio.sql new file mode 100644 index 0000000..f62267c --- /dev/null +++ b/docs/territorio.sql @@ -0,0 +1,323 @@ +-- +-- PostgreSQL database dump +-- + +-- Started on 2010-08-17 15:07:46 + +SET statement_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = off; +SET check_function_bodies = false; +SET client_min_messages = warning; +SET escape_string_warning = off; + +-- +-- TOC entry 1851 (class 1262 OID 59278) +-- Name: organigramma; Type: DATABASE; Schema: -; Owner: - +-- + +CREATE DATABASE organigramma WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'Italian, Italy' LC_CTYPE = 'Italian, Italy'; + + +\connect organigramma + +SET statement_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = off; +SET check_function_bodies = false; +SET client_min_messages = warning; +SET escape_string_warning = off; + +-- +-- TOC entry 329 (class 2612 OID 16386) +-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: - +-- + +CREATE PROCEDURAL LANGUAGE plpgsql; + + +SET search_path = public, pg_catalog; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- TOC entry 1516 (class 1259 OID 59279) +-- Dependencies: 1803 1804 1805 3 +-- Name: nodi; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE nodi ( + id integer NOT NULL, + id_tipi_nodo integer, + nome character varying(200) DEFAULT ''::character varying, + descrizione text DEFAULT ''::text, + id_nodi integer, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1522 (class 1259 OID 59346) +-- Dependencies: 1819 1820 1821 3 +-- Name: struttura_indirizzi; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE struttura_indirizzi ( + id integer NOT NULL, + id_strutture integer, + id_vie integer, + civico character varying(10) DEFAULT ''::character varying, + note text DEFAULT ''::text, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1520 (class 1259 OID 59327) +-- Dependencies: 1813 1814 1815 1816 1817 3 +-- Name: strutture; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE strutture ( + id integer NOT NULL, + nome character varying(100) DEFAULT ''::character varying, + descrizione text DEFAULT ''::text, + prefisso_centralino character varying(20) DEFAULT ''::character varying, + interno_centralino character varying(10) DEFAULT ''::character varying, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1517 (class 1259 OID 59290) +-- Dependencies: 1806 1807 3 +-- Name: tipi_nodo; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE tipi_nodo ( + id integer NOT NULL, + nome character varying(100) DEFAULT ''::character varying, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1518 (class 1259 OID 59297) +-- Dependencies: 1808 1809 3 +-- Name: tipi_recapito; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE tipi_recapito ( + id integer NOT NULL, + nome character varying(100) DEFAULT ''::character varying, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1519 (class 1259 OID 59311) +-- Dependencies: 1810 1811 1812 3 +-- Name: uffici; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE uffici ( + id integer NOT NULL, + id_strutture integer, + nome character varying(100) DEFAULT ''::character varying, + descrizione text DEFAULT ''::text, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1523 (class 1259 OID 59357) +-- Dependencies: 1822 1823 3 +-- Name: ufficio_nodi; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE ufficio_nodi ( + id integer NOT NULL, + id_uffici integer, + id_nodi integer, + note text DEFAULT ''::text, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1524 (class 1259 OID 59399) +-- Dependencies: 1824 1825 3 +-- Name: ufficio_orari; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE ufficio_orari ( + id integer NOT NULL, + id_uffici integer, + descrizione text DEFAULT ''::text, + da_data date, + a_data date, + lunedi boolean, + martedi boolean, + mercoledi boolean, + giovedi boolean, + venerdi boolean, + sabato boolean, + domenica boolean, + settimana integer, + giorno_mese integer, + mese integer, + da_ora time without time zone, + a_ora time without time zone, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1525 (class 1259 OID 59409) +-- Dependencies: 1826 1827 1828 3 +-- Name: ufficio_recapiti; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE ufficio_recapiti ( + id integer NOT NULL, + id_uffici integer, + id_tipi_recapito integer, + recapito character varying(100) DEFAULT ''::character varying, + note text DEFAULT ''::text, + privato boolean, + status character varying(1) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1521 (class 1259 OID 59340) +-- Dependencies: 1818 3 +-- Name: vie; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE vie ( + id integer NOT NULL, + nome character varying(100) DEFAULT ''::character varying +); + + +-- +-- TOC entry 1830 (class 2606 OID 59289) +-- Dependencies: 1516 1516 +-- Name: nodi_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY nodi + ADD CONSTRAINT nodi_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1842 (class 2606 OID 59356) +-- Dependencies: 1522 1522 +-- Name: struttura_indirizzi_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY struttura_indirizzi + ADD CONSTRAINT struttura_indirizzi_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1838 (class 2606 OID 59339) +-- Dependencies: 1520 1520 +-- Name: strutture_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY strutture + ADD CONSTRAINT strutture_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1832 (class 2606 OID 59296) +-- Dependencies: 1517 1517 +-- Name: tipi_nodo_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY tipi_nodo + ADD CONSTRAINT tipi_nodo_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1834 (class 2606 OID 59303) +-- Dependencies: 1518 1518 +-- Name: tipi_recapito_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY tipi_recapito + ADD CONSTRAINT tipi_recapito_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1836 (class 2606 OID 59321) +-- Dependencies: 1519 1519 +-- Name: uffici_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY uffici + ADD CONSTRAINT uffici_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1844 (class 2606 OID 59366) +-- Dependencies: 1523 1523 +-- Name: ufficio_nodi_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY ufficio_nodi + ADD CONSTRAINT ufficio_nodi_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1846 (class 2606 OID 59408) +-- Dependencies: 1524 1524 +-- Name: ufficio_orari_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY ufficio_orari + ADD CONSTRAINT ufficio_orari_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1848 (class 2606 OID 59419) +-- Dependencies: 1525 1525 +-- Name: ufficio_recapiti_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY ufficio_recapiti + ADD CONSTRAINT ufficio_recapiti_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1840 (class 2606 OID 59345) +-- Dependencies: 1521 1521 +-- Name: vie_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY vie + ADD CONSTRAINT vie_pkey PRIMARY KEY (id); + + +-- +-- TOC entry 1853 (class 0 OID 0) +-- Dependencies: 3 +-- Name: public; Type: ACL; Schema: -; Owner: - +-- + +REVOKE ALL ON SCHEMA public FROM PUBLIC; +REVOKE ALL ON SCHEMA public FROM postgres; +GRANT ALL ON SCHEMA public TO postgres; +GRANT ALL ON SCHEMA public TO PUBLIC; + + +-- Completed on 2010-08-17 15:07:46 + +-- +-- PostgreSQL database dump complete +-- + diff --git a/docs/territorio/Makefile.am b/docs/territorio/Makefile.am new file mode 100644 index 0000000..aee2d7b --- /dev/null +++ b/docs/territorio/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = examples diff --git a/docs/territorio/examples/Makefile.am b/docs/territorio/examples/Makefile.am new file mode 100644 index 0000000..0740d47 --- /dev/null +++ b/docs/territorio/examples/Makefile.am @@ -0,0 +1,6 @@ +examplesdir = $(docdir)/$(PACKAGE)/examples + +examples_DATA = \ + territorio.conf + +EXTRA_DIST = $(examples_DATA) diff --git a/docs/territorio/examples/territorio.conf b/docs/territorio/examples/territorio.conf new file mode 100644 index 0000000..91d9111 --- /dev/null +++ b/docs/territorio/examples/territorio.conf @@ -0,0 +1,6 @@ +[AUTE] +plugin=/usr/local/lib/libaute/plugins/libaute-db +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autedb + +[DB] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=organigramma diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..022718f --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,15 @@ +guidir = $(datadir)/$(PACKAGE)/gui +formdir = $(datadir)/$(PACKAGE)/form + +AM_CPPFLAGS = $(TERRITORIO_CFLAGS) \ + -DGUIDIR=\""$(guidir)"\" \ + -DFORMDIR=\""$(formdir)"\" + +LIBS = $(TERRITORIO_LIBS) \ + -export-dynamic + +bin_PROGRAMS = territorio + +territorio_SOURCES = \ + commons.h \ + main.c \ No newline at end of file diff --git a/src/commons.h b/src/commons.h new file mode 100644 index 0000000..b65e42d --- /dev/null +++ b/src/commons.h @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifdef HAVE_CONFIG_H + #include +#endif + +#ifndef __COMMONS_H__ +#define __COMMONS_H__ + +#include + +#include + +typedef struct + { + gchar *guidir; + gchar *formdir; + + GtkBuilder *gtkbuilder; + + GdaEx *gdaex; + + const gchar *guifile; + } Commons; + +#endif /* __COMMONS_H__ */ diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..72696ef --- /dev/null +++ b/src/main.c @@ -0,0 +1,241 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifdef HAVE_CONFIG_H + #include +#endif + +#include + +#include + +#include +#include + +#include "commons.h" + +static Commons *commons; + +static GKeyFile *config; + +static GtkWidget *w; +static GtkWidget *vbx_body; +static GtkWidget *vbx_body_child; + +static void +main_set_vbx_body_child (GtkWidget *child) +{ + if (GTK_IS_WIDGET (vbx_body_child)) + { + gtk_container_remove (GTK_CONTAINER (vbx_body), vbx_body_child); + gtk_widget_destroy (vbx_body_child); + } + + vbx_body_child = child; + gtk_box_pack_start (GTK_BOX (vbx_body), vbx_body_child, TRUE, TRUE, 0); +} + +/*G_MODULE_EXPORT void +on_mnu_view_nodi_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + Nodi *m = nodi_new (commons, FALSE); + + vbx = nodi_get_widget (m); + + main_set_vbx_body_child (vbx); +}*/ + +G_MODULE_EXPORT void +on_mnu_help_about_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GError *error; + GtkWidget *diag; + + error = NULL; + gtk_builder_add_objects_from_file (commons->gtkbuilder, commons->guifile, + g_strsplit_set ("dlg_about", "|", -1), + &error); + if (error != NULL) + { + g_error ("Errore: %s.", error->message); + } + + diag = GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "dlg_about")); + gtk_window_set_transient_for (GTK_WINDOW (diag), GTK_WINDOW (w)); + gtk_dialog_run (GTK_DIALOG (diag)); + gtk_widget_destroy (diag); +} + +int +main (int argc, char *argv[]) +{ + GError *error; + + Aute *aute; + gchar **aute_params; + gsize n_aute_params; + GSList *sl_aute_params; + + gchar *utente; + + gchar *cnc_string; + + gint i; + + gtk_init (&argc, &argv); + + gda_init (); + + /* leggo la configurazione dal file */ + if (argc == 1) + { + g_error ("Occorre passare a riga di comando il file di configurazione."); + } + + error = NULL; + config = g_key_file_new (); + if (!g_key_file_load_from_file (config, argv[1], G_KEY_FILE_NONE, &error)) + { + g_error ("Impossibile caricare il file di configurazione specificato: %s.", argv[1]); + } + + /* leggo i parametri per l'autenticazione */ + error = NULL; + aute_params = g_key_file_get_keys (config, "AUTE", &n_aute_params, &error); + if (aute_params == NULL) + { + g_error ("Impossibile leggere la configurazione per il sistema di autenticazione."); + } + + sl_aute_params = NULL; + for (i = 0; i < n_aute_params; i++) + { + error = NULL; + sl_aute_params = g_slist_append (sl_aute_params, g_key_file_get_string (config, "AUTE", aute_params[i], &error)); + } + + g_strfreev (aute_params); + + /* autenticazione */ + /*aute = aute_new (); + aute_set_config (aute, sl_aute_params); + + while (TRUE) + { + utente = aute_autentica (aute); + + if (utente == NULL) + { + g_warning ("Nome utente o password non validi."); + } + else if (g_strcmp0 (utente, "") == 0) + { + return 0; + } + else + { + break; + } + }*/ + + /* inizializzazione commons */ + commons = g_malloc (sizeof (Commons)); + +#ifdef G_OS_WIN32 + + gchar *moddir; + gchar *p; + + moddir = g_win32_get_package_installation_directory_of_module (NULL); + + p = strrchr (moddir, G_DIR_SEPARATOR); + if (p != NULL + && g_ascii_strcasecmp (p + 1, "src") == 0) + { + /* + *p = '\0'; + commons->guidir = g_build_filename (moddir, "data", PACKAGE, "gui", NULL); + commons->formdir = g_build_filename (moddir, "data", PACKAGE, "form", NULL);*/ + commons->guidir = g_strdup (GUIDIR); + commons->formdir = g_strdup (FORMDIR); + } + else + { + commons->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL); + commons->formdir = g_build_filename (moddir, "share", PACKAGE, "form", NULL); + } + +#else + + commons->guidir = g_strdup (GUIDIR); + commons->formdir = g_strdup (FORMDIR); + +#endif + + commons->guifile = g_build_filename (commons->guidir, "organigramma.gui", NULL); + + /* leggo la stringa di connessione al db */ + error = NULL; + cnc_string = g_key_file_get_value (config, "DB", "cnc_string", &error); + if (cnc_string == NULL) + { + if (error != NULL) + { + g_error ("Impossibile leggere la stringa di connessione dal file di configurazione: %s", error->message); + } + else + { + g_error ("Impossibile leggere la stringa di connessione dal file di configurazione."); + } + } + + commons->gdaex = gdaex_new_from_string (cnc_string); + if (commons->gdaex == NULL) + { + g_error ("Errore nella connessione al database: %s", cnc_string); + } + + commons->gtkbuilder = gtk_builder_new (); + + error = NULL; + gtk_builder_add_objects_from_file (commons->gtkbuilder, commons->guifile, + g_strsplit_set ("w_main", "|", -1), + &error); + if (error != NULL) + { + g_error ("Errore: %s", error->message); + } + + gtk_builder_connect_signals (commons->gtkbuilder, NULL); + + w = GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "w_main")); + + vbx_body = GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "vbx_body")); + + vbx_body_child = NULL; + + gtk_widget_show (w); + + gtk_main (); + + return 0; +} -- 2.49.0