From: Andrea Zagli Date: Mon, 15 Feb 2016 15:14:34 +0000 (+0100) Subject: Initial import. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=71fdf34eb90d8f6aef07d9378458bc3c194e0799;p=bcity%2Fbe Initial import. --- 71fdf34eb90d8f6aef07d9378458bc3c194e0799 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1cc121c --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +*.o +*~ +src/cancelleria +src/resources.rc +COPYING +INSTALL +Makefile +Makefile.in +aclocal.m4 +autom4te.cache/ +config.guess +config.h +config.log +config.status +config.sub +configure +configure.lineno +Makefile +Makefile.in +depcomp +install-sh +missing +.deps +depcomp +install-sh +missing +src/.deps/ +src/Makefile +src/Makefile.in +stamp-h1 +.anjuta* +*.exe +cancelleria*tar* +cancelleria*.7z +*.odt# +*.backup +*.bak +installers/*/make_installer.sh +installers/*/tmp +compile +config.h.in +ar-lib +libtool +.dirstamp +*.lo +*.la +ltmain.sh +.libs +m4 +po +confdefs.h +conftest.dir \ No newline at end of file diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..ad1de0f --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Andrea Zagli diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..b693691 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,22 @@ +SUBDIRS = src data doc installers + +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/configure.ac b/configure.ac new file mode 100644 index 0000000..0c017dd --- /dev/null +++ b/configure.ac @@ -0,0 +1,101 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +m4_define(maj, 0) +m4_define(min, 0) +m4_define(mic, 1) + +AC_PREREQ(2.65) +AC_INIT([bcity_be], [maj.min.mic], []) +AC_CONFIG_SRCDIR([src/main.c]) +AC_CONFIG_HEADER([config.h]) + +AM_INIT_AUTOMAKE(-Wall) + +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + +AM_MAINTAINER_MODE + +AC_CANONICAL_SYSTEM + +AC_CONFIG_MACRO_DIR([m4]) + +# Checks for programs. +AC_PROG_CC + +# Checks for libraries. +PKG_CHECK_MODULES(CANCELLERIA, [gtk+-3.0 >= 3.0 + libgdaex >= 0.5.0 + libgdaexgrid + libzakutils + libsoup-2.4 + libsolipa >= 0.5.0 + libzakaudit >= 0.5.0 + libautoz >= 0.0.5 + libaute >= 0.2.0 + libzakgtkdecoder + libzakgtkdecodergdaexqe + libzakform + libzakformgtk + libzakformgtkdecoder + libzakformgdaex + libterritorio + liborganigramma]) + +AC_SUBST(BCITYBE_CFLAGS) +AC_SUBST(BCITYBE_LIBS) + +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. + +dnl ****************************** +dnl Translations +dnl ****************************** +GETTEXT_PACKAGE=bcity_be +AC_SUBST(GETTEXT_PACKAGE) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", + [The prefix for our gettext translation domains.]) +AM_GLIB_GNU_GETTEXT + +# Checks for library functions. + +dnl ****************************** +dnl Check for Operating System +dnl ****************************** + +platform_win32=no + +case "$host" in +*-mingw*) + platform_win32=yes + AC_CHECK_TOOL(WINDRES, windres, windres) + AC_SUBST(WINDRES) + ;; +esac + +AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes]) + +AC_SUBST(V_MAJOR, maj) +AC_SUBST(V_MINOR, min) +AC_SUBST(V_MICRO, mic) + +AC_CONFIG_FILES([ + Makefile + src/Makefile + src/resources.rc + data/Makefile + data/bcity_be/Makefile + data/bcity_be/form/Makefile + data/bcity_be/gui/Makefile + data/bcity_be/images/Makefile + data/bcity_be/query_editor/Makefile + doc/Makefile + doc/bcity_be/Makefile + doc/bcity_be/examples/Makefile + installers/Makefile + installers/msys2/Makefile + installers/msys2/make_installer.sh +]) + +AC_OUTPUT diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..daba128 --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = bcity_be diff --git a/data/bcity_be/Makefile.am b/data/bcity_be/Makefile.am new file mode 100644 index 0000000..64c3f3e --- /dev/null +++ b/data/bcity_be/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = form gui images query_editor diff --git a/data/bcity_be/form/Makefile.am b/data/bcity_be/form/Makefile.am new file mode 100644 index 0000000..6718df2 --- /dev/null +++ b/data/bcity_be/form/Makefile.am @@ -0,0 +1,23 @@ +formdir = $(datadir)/$(PACKAGE)/form + +form_DATA = \ + articolo.form \ + articoloallegato.form \ + articolodisponibilita.form \ + articoloimmagine.form \ + articoloopzione.form \ + categoriaarticolo.form \ + fornitore.form \ + fornitoreallegato.form \ + fornitorerecapito.form \ + iva.form \ + ordine.form \ + ordineallegato.form \ + ordineriga.form \ + tipo_quantita.form \ + tipo_recapito.form \ + ufficio.form \ + ufficiobudget.form \ + ufficioordineminimo.form + +EXTRA_DIST = $(form_DATA) diff --git a/data/bcity_be/gui/Makefile.am b/data/bcity_be/gui/Makefile.am new file mode 100644 index 0000000..2b74cce --- /dev/null +++ b/data/bcity_be/gui/Makefile.am @@ -0,0 +1,5 @@ +guidir = $(datadir)/$(PACKAGE)/gui + +gui_DATA = bcity_be.ui + +EXTRA_DIST = $(gui_DATA) diff --git a/data/bcity_be/gui/bcity_be.ui b/data/bcity_be/gui/bcity_be.ui new file mode 100644 index 0000000..b9235ff --- /dev/null +++ b/data/bcity_be/gui/bcity_be.ui @@ -0,0 +1,7207 @@ + + + + + + + False + Articoli - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>Articoli</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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-find + True + True + True + True + + + True + True + 3 + + + + + gtk-cancel + True + True + True + True + + + False + False + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Ricerca articoli - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + + + + True + False + + + False + True + 1 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + + + False + False + 1 + + + + + False + True + 2 + + + + + + + False + Articolo - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + True + lbl_id + 0 + + + 1 + 0 + + + + + True + False + + + 1 + 1 + + + + + True + False + Categoria + 0 + + + 0 + 1 + + + + + True + False + Fornitore + 0 + + + 0 + 3 + + + + + True + False + + + 1 + 3 + + + + + True + False + Descrizione + 0 + + + 0 + 2 + + + + + True + True + True + 100 + • + False + False + + + 1 + 2 + + + + + True + False + Codice fornitore + 0 + + + 0 + 4 + + + + + True + True + True + 255 + • + False + False + + + 1 + 4 + + + + + True + False + + + 1 + 5 + + + + + True + False + Tipo quantità + 0 + + + 0 + 5 + + + + + True + False + Prezzo unitario + 0 + + + 0 + 6 + + + + + True + True + True + • + False + False + + + 1 + 6 + + + + + True + False + IVA + 0 + + + 0 + 7 + + + + + True + False + + + 1 + 7 + + + + + True + True + 5 + 5 + True + True + + + True + True + 5 + 5 + 5 + 5 + etched-in + + + True + True + + + + + + + True + False + Note + + + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + 1 + + + + + True + False + Periodi disponibilità + + + 1 + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + 2 + + + + + True + False + Opzioni + + + 2 + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + gtk-open + True + True + True + True + + + True + True + 3 + + + + + False + True + 1 + + + + + 3 + + + + + True + False + Immagini + + + 3 + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + gtk-open + True + True + True + True + + + True + True + 3 + + + + + False + True + 1 + + + + + 4 + + + + + True + False + Allegati + + + 4 + False + + + + + 0 + 8 + 2 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Allegato dell'articolo - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + False + True + lbl_id + + + 0 + 5 + + + + + True + False + Descrizione + 0 + + + 0 + 1 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + True + True + True + 10 + • + True + False + False + + + 1 + 2 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 0 + + + + + True + False + True + 0 + + + True + False + True + 5 + 5 + 5 + 5 + + + + + + + + True + False + <b>File</b> + True + + + + + 0 + 4 + 2 + + + + + False + True + True + lbl_id_articoli + + + 1 + 5 + + + + + True + False + Titolo + 0 + + + 0 + 0 + + + + + True + False + Data documento + 0 + + + 0 + 2 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + True + True + 2 + + + + + False + True + 1 + + + + + + + False + Periodo di disponibilità dell'articolo - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + True + True + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + True + 10 + ● + False + False + + + 1 + 0 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 2 + + + + + False + True + lbl_id_articoli + + + 1 + 3 + + + + + True + True + 10 + ● + False + False + + + 1 + 1 + + + + + True + False + Data da + 0 + + + 0 + 0 + + + + + True + False + Data a + 0 + + + 0 + 1 + + + + + True + False + Note + 0 + 0 + + + 0 + 2 + + + + + False + True + lbl_id + + + 0 + 3 + + + + + True + True + 0 + + + + + True + False + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Immagine dell'articolo - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + False + True + lbl_id + + + 0 + 5 + + + + + True + False + Descrizione + 0 + + + 0 + 1 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + True + True + True + 10 + • + True + False + False + + + 1 + 2 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 0 + + + + + True + False + True + 0 + + + True + False + True + 5 + 5 + 5 + 5 + + + + + + + + True + False + <b>File</b> + True + + + + + 0 + 4 + 2 + + + + + False + True + True + lbl_id_articoli + + + 1 + 5 + + + + + True + False + Titolo + 0 + + + 0 + 0 + + + + + True + False + Data documento + 0 + + + 0 + 2 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + True + True + 2 + + + + + False + True + 1 + + + + + + + False + Opzione dell'articolo - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + True + True + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 4 + + + + + False + True + lbl_id_articoli + + + 1 + 5 + + + + + True + False + Note + 0 + 0 + + + 0 + 4 + + + + + False + True + lbl_id + + + 0 + 5 + + + + + True + False + Descrizione + 0 + + + 0 + 0 + + + + + True + True + True + 100 + • + False + False + + + 1 + 0 + + + + + True + False + Codice fornitore + 0 + + + 0 + 1 + + + + + True + True + True + 255 + • + False + False + + + 1 + 1 + + + + + True + False + Tipo quantità + 0 + + + 0 + 2 + + + + + True + False + True + + + 1 + 2 + + + + + True + False + Prezzo unitario + 0 + + + 0 + 3 + + + + + True + True + True + • + False + False + + + 1 + 3 + + + + + False + True + lbl_id_articolo_opzioni + + + 0 + 6 + + + + + + + + True + True + 0 + + + + + True + False + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Categoria articolo - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + True + lbl_id + 0 + + + 1 + 0 + + + + + True + True + True + 100 + • + False + False + + + 1 + 2 + + + + + True + False + Descrizione + 0 + + + 0 + 2 + + + + + True + False + Genitore + 0 + + + 0 + 1 + + + + + True + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Categorie articolo - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>Categorie articolo</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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 + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Fornitore - Gestione ordini cancelleria + True + center-on-parent + 600 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + 5 + 5 + + + True + False + lbl_id + 0 + + + 1 + 0 + + + + + True + True + 255 + ● + True + False + False + + + 1 + 1 + 3 + + + + + True + True + 16 + ● + True + False + False + + + 1 + 2 + + + + + True + True + 11 + ● + True + False + False + + + 1 + 3 + + + + + True + True + 255 + ● + True + False + False + + + 1 + 4 + + + + + True + False + Civico + 0 + + + 2 + 4 + + + + + True + True + 10 + ● + True + 5 + False + False + + + 3 + 4 + + + + + True + False + CAP + 0 + + + 2 + 5 + + + + + True + True + 5 + ● + True + 5 + False + False + + + 3 + 5 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 6 + 3 + + + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + Ragione sociale + 0 + + + 0 + 1 + + + + + True + False + Codice fiscale + 0 + + + 0 + 2 + + + + + True + False + Partita IVA + 0 + + + 0 + 3 + + + + + True + False + Via + 0 + + + 0 + 4 + + + + + True + False + Città + 0 + + + 0 + 5 + + + + + True + False + Note + 0 + 0 + + + 0 + 6 + + + + + True + True + True + True + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + True + False + Recapiti + + + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + 1 + + + + + True + False + Persone + + + 1 + False + + + + + True + False + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + gtk-open + True + True + True + True + + + True + True + 3 + + + + + False + True + 1 + + + + + 2 + + + + + True + False + Allegati + + + 2 + False + + + + + 0 + 7 + 4 + + + + + True + False + + + 1 + 5 + + + + + + + + + + + + + + + + + + + + + + + True + True + 0 + + + + + True + False + 5 + end + + + gtk-cancel + False + True + True + True + True + + + False + False + 0 + + + + + gtk-save + False + True + True + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + True + True + 2 + + + + + False + True + 1 + + + + + + + False + Allegato del fornitore - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + False + True + lbl_id + + + 0 + 5 + + + + + True + False + Descrizione + 0 + + + 0 + 1 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + True + True + True + 10 + • + True + False + False + + + 1 + 2 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 0 + + + + + True + False + True + 0 + + + True + False + True + 5 + 5 + 5 + 5 + + + + + + + + True + False + <b>File</b> + True + + + + + 0 + 4 + 2 + + + + + False + True + True + lbl_id_fornitori + + + 1 + 5 + + + + + True + False + Titolo + 0 + + + 0 + 0 + + + + + True + False + Data documento + 0 + + + 0 + 2 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + True + True + 2 + + + + + False + True + 1 + + + + + + + False + Recapito del fornitore - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + True + True + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + True + True + 255 + ● + False + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + False + True + lbl_id_fornitori + + + 1 + 4 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + False + True + lbl_id + + + 0 + 4 + + + + + True + False + Tipo recapito + 0 + + + 0 + 0 + + + + + True + False + + + 1 + 0 + + + + + True + False + Recapito + 0 + + + 0 + 1 + + + + + True + False + Preferito + 0 + + + 0 + 2 + + + + + True + True + False + 0 + True + + + 1 + 2 + + + + + True + True + 0 + + + + + True + False + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Fornitori - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>Fornitori</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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-find + True + True + True + True + + + True + True + 3 + + + + + gtk-cancel + True + True + True + True + + + False + False + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Ricerca fornitori - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + + + + True + False + + + False + True + 1 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + + + False + False + 1 + + + + + False + True + 2 + + + + + + + False + IVA - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + True + lbl_id + 0 + + + 1 + 0 + + + + + True + True + True + 100 + • + False + False + + + 1 + 1 + + + + + True + False + Descrizione + 0 + + + 0 + 1 + + + + + True + False + Aliquota + 0 + + + 0 + 2 + + + + + True + True + True + 100 + • + False + False + + + 1 + 2 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + IVA - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>IVA</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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-find + True + True + True + True + + + True + True + 3 + + + + + gtk-cancel + True + True + True + True + + + False + False + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Ricerca IVA - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + + + + True + False + + + False + True + 1 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + + + False + False + 1 + + + + + False + True + 2 + + + + + + + False + Gestione ordini cancelleria + center + 750 + 520 + + + + True + False + vertical + + + True + False + + + True + False + _File + True + + + True + False + + + gtk-quit + True + False + True + True + + + + + + + + + + True + False + _Visualizza + True + + + True + False + + + True + False + _Ordini + True + + + + + + + + + + True + False + _Tabelle + True + + + True + False + + + True + False + _IVA + True + + + + + + True + False + Tipi r_ecapito + True + + + + + + True + False + _Uffici + True + + + + + + True + False + _Fornitori + True + + + + + + True + False + _Articoli + True + + + + + + True + False + _Categorie articolo + True + + + + + + True + False + Tipi _quantità + True + + + + + + + + + + True + False + A_iuto + True + + + True + False + + + gtk-about + True + False + True + True + + + + + + + + + + False + True + 0 + + + + + True + False + vertical + + + + + + True + True + 1 + + + + + True + False + 2 + + + False + True + 2 + + + + + + + False + 5 + Informazioni su Gestione ordini cancelleria + True + center-on-parent + normal + w_main + Gestione ordini cancelleria + 0.0.1 + Andrea Zagli <a.zagli@comune.scandicci.fi.it> 2015-2016 + Andrea Zagli <a.zagli@comune.scandicci.fi.it> + image-missing + + + True + False + vertical + 2 + + + True + False + end + + + False + True + end + 0 + + + + + + + + + + False + Ordine - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + True + lbl_id + 0 + + + 1 + 0 + + + + + True + False + Fornitore + 0 + + + 0 + 4 + + + + + True + False + + + 1 + 4 + + + + + True + False + Data + 0 + + + 0 + 3 + + + + + True + True + True + • + False + False + + + 1 + 3 + + + + + True + True + True + True + + + True + True + 5 + 5 + 5 + 5 + etched-in + + + True + True + + + + + + + True + False + Note + + + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + 1 + + + + + True + False + Righe + + + 1 + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + gtk-open + True + True + True + True + + + True + True + 3 + + + + + False + True + 1 + + + + + 2 + + + + + True + False + Allegati + + + 2 + False + + + + + 0 + 5 + 2 + + + + + True + False + Totale + 0 + + + 0 + 6 + + + + + True + True + False + + + 1 + 6 + + + + + True + False + Ufficio + 0 + + + 0 + 1 + + + + + True + False + + + 1 + 1 + + + + + True + False + Budget residuo + 0 + + + 0 + 2 + + + + + True + True + True + False + • + False + False + + + 1 + 2 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + _Completa + True + True + True + True + + + True + True + 0 + + + + + gtk-cancel + True + True + True + True + + + False + False + 1 + + + + + gtk-save + True + True + True + True + + + False + False + 2 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 3 + + + + + False + True + 1 + + + + + + + False + Allegato dell'ordine - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + False + True + lbl_id + + + 0 + 5 + + + + + True + False + Descrizione + 0 + + + 0 + 1 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + True + True + True + 10 + • + True + False + False + + + 1 + 2 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 0 + + + + + True + False + True + 0 + + + True + False + True + 5 + 5 + 5 + 5 + + + + + + + + True + False + <b>File</b> + True + + + + + 0 + 4 + 2 + + + + + False + True + True + lbl_id_ordini + + + 1 + 5 + + + + + True + False + Titolo + 0 + + + 0 + 0 + + + + + True + False + Data documento + 0 + + + 0 + 2 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + True + True + 2 + + + + + False + True + 1 + + + + + + + False + Riga dell'ordine - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + False + True + lbl_id + + + 0 + 5 + + + + + True + False + Quantità + 0 + + + 0 + 2 + + + + + True + True + True + 255 + • + True + False + False + + + 1 + 2 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 4 + + + + + False + True + True + lbl_id_ordini + + + 1 + 5 + + + + + True + False + Note + 0 + 0 + + + 0 + 4 + + + + + True + False + Articolo + 0 + + + 0 + 0 + + + + + True + False + True + + + 1 + 0 + + + + + True + False + Totale + 0 + + + 0 + 3 + + + + + True + True + True + False + 255 + • + True + False + False + + + 1 + 3 + + + + + True + False + Prezzo unitario + 0 + + + 0 + 1 + + + + + True + True + True + False + 255 + • + True + False + False + + + 1 + 1 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + True + True + 2 + + + + + False + True + 1 + + + + + + + False + Ordini - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>Ordini</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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-find + True + True + True + True + + + True + True + 3 + + + + + gtk-cancel + True + True + True + True + + + False + False + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Ricerca ordini - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + + + + True + False + + + False + True + 1 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + + + False + False + 1 + + + + + False + True + 2 + + + + + + + False + Tipi quantità - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>Tipi quantità</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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-find + True + True + True + True + + + True + True + 3 + + + + + gtk-cancel + True + True + True + True + + + False + False + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Ricerca tipi quantità - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + + + + True + False + + + False + True + 1 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + + + False + False + 1 + + + + + False + True + 2 + + + + + + + False + Tipi recapito - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>Tipi recapito</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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-find + True + True + True + True + + + True + True + 3 + + + + + gtk-cancel + True + True + True + True + + + False + False + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Ricerca tipi recapito - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + + + + True + False + + + False + True + 1 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + + + False + False + 1 + + + + + False + True + 2 + + + + + + + False + Tipo quantità - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + True + lbl_id + 0 + + + 1 + 0 + + + + + True + True + True + 100 + • + False + False + + + 1 + 1 + + + + + True + False + Descrizione + 0 + + + 0 + 1 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Tipo recapito - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + True + lbl_id + 0 + + + 1 + 0 + + + + + True + True + True + 100 + • + False + False + + + 1 + 1 + + + + + True + False + Descrizione + 0 + + + 0 + 1 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Uffici - Gestione ordini cancelleria + True + center-on-parent + 550 + 400 + True + + + True + False + 5 + vertical + 5 + + + True + False + <b>Uffici</b> + True + + + False + True + 0 + + + + + True + True + etched-in + + + + + + True + True + 1 + + + + + True + False + 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-find + True + True + True + True + + + True + True + 3 + + + + + gtk-cancel + True + True + True + True + + + False + False + 4 + + + + + gtk-ok + True + True + True + True + + + False + False + 5 + + + + + False + True + 2 + + + + + + + False + Ricerca uffici - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + + + + True + False + + + False + True + 1 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + + + False + False + 1 + + + + + False + True + 2 + + + + + + + False + Tipo quantità - Gestione ordini cancelleria + True + center-on-parent + 550 + True + + + True + False + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + ID + 0 + + + 0 + 0 + + + + + True + False + True + lbl_id + 0 + + + 1 + 0 + + + + + True + False + Ufficio + 0 + + + 0 + 1 + + + + + True + False + + + 1 + 1 + + + + + True + True + True + True + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + True + False + Budget + + + False + + + + + True + False + 5 + 5 + 5 + 5 + 5 + + + True + True + etched-in + + + + + + True + True + 0 + + + + + True + False + vertical + 5 + start + + + gtk-new + False + True + True + True + True + + + False + False + 0 + + + + + gtk-edit + False + True + True + True + True + + + False + False + 1 + + + + + gtk-delete + False + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + 1 + + + + + True + False + Ordine minimo + + + 1 + False + + + + + 0 + 2 + 2 + + + + + True + True + 0 + + + + + True + False + True + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Budget dell'ufficio - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + True + True + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + Budget + 0 + + + 0 + 0 + + + + + True + True + True + 255 + ● + False + False + + + 1 + 0 + + + + + True + True + 10 + ● + False + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + False + lbl_id_uffici + + + 1 + 4 + + + + + True + True + 10 + ● + False + False + + + 1 + 2 + + + + + True + False + Data da + 0 + + + 0 + 1 + + + + + True + False + Data a + 0 + + + 0 + 2 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + False + lbl_id + + + 0 + 4 + + + + + True + True + 0 + + + + + True + False + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + + False + Ordine minimo dell'ufficio - Gestione ordini cancelleria + True + 500 + 300 + True + + + True + False + True + True + 5 + vertical + 5 + + + True + False + True + True + 5 + 5 + + + True + False + Importo + 0 + + + 0 + 0 + + + + + True + True + True + 255 + ● + False + False + + + 1 + 0 + + + + + True + True + 10 + ● + False + False + + + 1 + 1 + + + + + True + True + True + True + etched-in + + + True + True + + + + + 1 + 3 + + + + + False + lbl_id_uffici + + + 1 + 4 + + + + + True + True + 10 + ● + False + False + + + 1 + 2 + + + + + True + False + Data da + 0 + + + 0 + 1 + + + + + True + False + Data a + 0 + + + 0 + 2 + + + + + True + False + Note + 0 + 0 + + + 0 + 3 + + + + + False + lbl_id + + + 0 + 4 + + + + + True + True + 0 + + + + + True + False + 5 + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-save + True + True + True + True + + + False + False + 1 + + + + + Salva e _chiudi + True + True + True + True + + + False + False + 2 + + + + + False + True + 1 + + + + + + diff --git a/data/bcity_be/images/Makefile.am b/data/bcity_be/images/Makefile.am new file mode 100644 index 0000000..91ccaae --- /dev/null +++ b/data/bcity_be/images/Makefile.am @@ -0,0 +1,13 @@ +imagesdir = $(datadir)/$(PACKAGE)/images + +images_DATA = \ + cancelleria.ico + +EXTRA_DIST = \ + cancelleria.svg \ + cancelleria16.png \ + cancelleria32.png \ + cancelleria48.png \ + cancelleria64.png \ + cancelleria128.png \ + cancelleria256.png diff --git a/data/bcity_be/images/bcity_be.ico b/data/bcity_be/images/bcity_be.ico new file mode 100644 index 0000000..9913f60 Binary files /dev/null and b/data/bcity_be/images/bcity_be.ico differ diff --git a/data/bcity_be/images/bcity_be.svg b/data/bcity_be/images/bcity_be.svg new file mode 100644 index 0000000..15d76ef --- /dev/null +++ b/data/bcity_be/images/bcity_be.svg @@ -0,0 +1,2529 @@ + + + + + + + + + + + + hash + + mime-types + computer + icons + + + + + Andy Fitzsimon + + + + + Andy Fitzsimon + + + + + Andy Fitzsimon + + + + image/svg+xml + + + en + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/bcity_be/images/bcity_be128.png b/data/bcity_be/images/bcity_be128.png new file mode 100644 index 0000000..354c313 Binary files /dev/null and b/data/bcity_be/images/bcity_be128.png differ diff --git a/data/bcity_be/images/bcity_be16.png b/data/bcity_be/images/bcity_be16.png new file mode 100644 index 0000000..6e20249 Binary files /dev/null and b/data/bcity_be/images/bcity_be16.png differ diff --git a/data/bcity_be/images/bcity_be256.png b/data/bcity_be/images/bcity_be256.png new file mode 100644 index 0000000..b977ea1 Binary files /dev/null and b/data/bcity_be/images/bcity_be256.png differ diff --git a/data/bcity_be/images/bcity_be32.png b/data/bcity_be/images/bcity_be32.png new file mode 100644 index 0000000..d9b22b4 Binary files /dev/null and b/data/bcity_be/images/bcity_be32.png differ diff --git a/data/bcity_be/images/bcity_be48.png b/data/bcity_be/images/bcity_be48.png new file mode 100644 index 0000000..71a95a2 Binary files /dev/null and b/data/bcity_be/images/bcity_be48.png differ diff --git a/data/bcity_be/images/bcity_be64.png b/data/bcity_be/images/bcity_be64.png new file mode 100644 index 0000000..ad9ebf6 Binary files /dev/null and b/data/bcity_be/images/bcity_be64.png differ diff --git a/data/bcity_be/query_editor/Makefile.am b/data/bcity_be/query_editor/Makefile.am new file mode 100644 index 0000000..a013db9 --- /dev/null +++ b/data/bcity_be/query_editor/Makefile.am @@ -0,0 +1,12 @@ +queryeditordir = $(datadir)/$(PACKAGE)/queryeditor + +queryeditor_DATA = \ + articoli.xml \ + fornitori.xml \ + iva.xml \ + ordini.xml \ + tipi_quantita.xml \ + tipi_recapito.xml \ + uffici.xml + +EXTRA_DIST = $(queryeditor_DATA) diff --git a/doc/Makefile.am b/doc/Makefile.am new file mode 100644 index 0000000..daba128 --- /dev/null +++ b/doc/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = bcity_be diff --git a/doc/bcity_be/Makefile.am b/doc/bcity_be/Makefile.am new file mode 100644 index 0000000..aee2d7b --- /dev/null +++ b/doc/bcity_be/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = examples diff --git a/doc/bcity_be/examples/Makefile.am b/doc/bcity_be/examples/Makefile.am new file mode 100644 index 0000000..2425199 --- /dev/null +++ b/doc/bcity_be/examples/Makefile.am @@ -0,0 +1,6 @@ +bcity_be_examplesdir = $(docdir)/examples + +bcity_be_examples_DATA = \ + bcity_be.conf + +EXTRA_DIST = $(bcity_be_examples_DATA) diff --git a/doc/bcity_be/examples/bcity_be.conf b/doc/bcity_be/examples/bcity_be.conf new file mode 100644 index 0000000..329f614 --- /dev/null +++ b/doc/bcity_be/examples/bcity_be.conf @@ -0,0 +1,33 @@ +[DB_TERRITORIO] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=territorio + +[AUTOZ_TERRITORIO] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz + +[DB_ORGANIGRAMMA] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=organigramma + +[AUTOZ_ORGANIGRAMMA] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz + +[AUTE] +plugin=/usr/local/lib/libaute/plugins/libaute-db +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autedb + +[AUTOZ] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autoz +role_name_prefix= +resource_name_prefix= + +[AUDIT] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cancelleria;SCHEMA=zakaudit + +[DB] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cancelleria + +[MAIL] +smtp=smtp://smtp.localhost/ +security_method=0 +use_auth=0 +visure_from=me@myhome.com +visure_to=me@myhome.com \ No newline at end of file diff --git a/installers/Makefile.am b/installers/Makefile.am new file mode 100644 index 0000000..6ab02d0 --- /dev/null +++ b/installers/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = msys2 \ No newline at end of file diff --git a/installers/msys2/Makefile.am b/installers/msys2/Makefile.am new file mode 100644 index 0000000..75ed5b5 --- /dev/null +++ b/installers/msys2/Makefile.am @@ -0,0 +1,4 @@ +EXTRA_DIST = \ + make_installer.sh \ + cancelleria.conf \ + cancelleria.nsi diff --git a/installers/msys2/bcity_be.conf b/installers/msys2/bcity_be.conf new file mode 100644 index 0000000..c79af3c --- /dev/null +++ b/installers/msys2/bcity_be.conf @@ -0,0 +1,37 @@ +[DB_TERRITORIO] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=cdu + +[AUTOZ_TERRITORIO] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz + +[AUTE] +plugin=/usr/local/lib/libaute/plugins/libaute-db +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autedb + +[AUTOZ] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autoz +role_name_prefix= +resource_name_prefix=titoli_abilitativi_ + +[AUDIT] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cdu;SCHEMA=zakaudit + +[DB] +pg_cnc_string=host=localhost dbname=cdu user=postgres password=postgres +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=cdu + +[DB_SIT] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=sit + +[MAIL] +smtp=smtp://smtp.localhost/ +security_method=0 +use_auth=0 +visure_from=me@myhome.com +visure_to=me@myhome.com + +[MAPSERVER] +url=http://10.0.0.90/cgi-bin/mapserv?map=/home/tux/mapserver/ms4w/apps/tutorial/htdocs/example1-1.map + +[OPENOFFICE] +path=/bin diff --git a/installers/msys2/bcity_be.nsi b/installers/msys2/bcity_be.nsi new file mode 100644 index 0000000..73c9cdb --- /dev/null +++ b/installers/msys2/bcity_be.nsi @@ -0,0 +1,64 @@ +# define name of installer +OutFile "cdu_be-${ARCH}-${VERSION}.exe" + +XPStyle on + +Name "CDU" + +RequestExecutionLevel admin +SetCompressor lzma + +# define installation directory +InstallDir $PROGRAMFILES\sos + +LoadLanguageFile "${NSISDIR}\Contrib\Language files\Italian.nlf" + +# start default section +Section + + # set the installation directory as the destination for the following actions + SetOutPath $INSTDIR + + File /r tmp\mingw32\* + + # create the uninstaller + WriteUninstaller "$INSTDIR\uninstall.exe" + + SetShellVarContext all + + # create a shortcut named "new shortcut" in the start menu programs directory + # point the new shortcut at the program uninstaller + CreateDirectory "$SMPROGRAMS\CDU" + CreateShortCut "$SMPROGRAMS\CDU\CDU.lnk" "$\"$INSTDIR\bin\cdu_be.exe$\"" "$\"$INSTDIR\etc\cdu_be.conf$\"" + CreateShortCut "$SMPROGRAMS\CDU\Disinstalla.lnk" "$\"$INSTDIR\uninstall.exe$\"" + + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "DisplayName" "CDU" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "DisplayVersion" "${VERSION}" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "UninstallString" "$INSTDIR\uninstall.exe" + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "NoModify" 1 + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" "NoRepair" 1 + + CreateShortCut "$DESKTOP\CDU.lnk" "$\"$INSTDIR\bin\cdu_be.exe$\"" "$\"$INSTDIR\etc\cdu_be.conf$\"" + +SectionEnd + +# uninstaller section start +Section "uninstall" + + SetShellVarContext all + + # remove the link from desktop + Delete "$DESKTOP\CDU.lnk" + + # remove the link from the start menu + RMDir /r "$SMPROGRAMS\CDU" + + # first, delete the uninstaller + Delete "$INSTDIR\uninstall.exe" + + RMDir /r "$INSTDIR" + + DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\CDU" + +# uninstaller section end +SectionEnd \ No newline at end of file diff --git a/installers/msys2/make_installer.sh.in b/installers/msys2/make_installer.sh.in new file mode 100644 index 0000000..ba93aa6 --- /dev/null +++ b/installers/msys2/make_installer.sh.in @@ -0,0 +1,176 @@ +# +# "inspired" by gedit installer (https://git.gnome.org/browse/gedit/tree/win32/make-gedit-installer) +# +# thanks to Ignacio Casal Quinteiro +# + +#!/usr/bin/env bash + +_thisdir="$(dirname $0)" +test "${_thisdir}" = "." && _thisdir=${PWD} + +if [ "${MSYSTEM}" = "MINGW32" ]; then + _arch="i686" +elif [ "${MSYSTEM}" = "MINGW64" ]; then + _arch="x86_64" +else + echo "Architettura non supportata: "${MSYSTEM} + exit +fi + +_version=@PACKAGE_VERSION@ + +_filename_exe=cancelleria-${_arch}-${_version}.exe +_filename_zip=cancelleria-${_arch}-${_version}.7z + +if [ "${_arch}" = "x86_64" ]; then + _bitness=64 +else + _bitness=32 +fi + +declare -a undo_commands + +_exitcode=5 + +exit_with_undo() { + for _cmd in ${undo_commands[@]}; do + eval "$_cmd" + done + exit ${_exitcode} +} + +exit_cleanly() { + _exitcode=$1; shift; + local _message=$1; shift; + echo "${_message}" + exit_with_undo +} + +trap exit_with_undo 1 2 15 + +_tmpdir=tmp +_log=${_tmpdir}/installer.log + +_7z=`which 7z` +if [ ${_7z} = "" ]; then + echo "7zip mancante." + exit +fi + +create_archive() { + # remove .a files not needed for the installer + find ${_tmpdir}/mingw${_bitness} -name "*.a" -exec rm -f {} \; + # remove unneeded binaries + find ${_tmpdir}/mingw${_bitness} -not -name "python*.exe" -not -name "cancelleria*.exe" -not -name "territorio*.exe" -not -name "organigramma*.exe" -name "*.exe" -exec rm -f {} \; + # remove python tests + find ${_tmpdir}/mingw${_bitness}/lib/python2.7 -type d -name "test*" -exec rm -rf {} \; + # remove executables + rm -rf ${_tmpdir}/mingw${_bitness}/bin/*-config* + rm -rf ${_tmpdir}/mingw${_bitness}/bin/autopoint + rm -rf ${_tmpdir}/mingw${_bitness}/bin/bz* + rm -rf ${_tmpdir}/mingw${_bitness}/bin/g* + rm -rf ${_tmpdir}/mingw${_bitness}/bin/update* + rm -rf ${_tmpdir}/mingw${_bitness}/bin/xz* + # remove other useless folders + rm -rf ${_tmpdir}/mingw${_bitness}/i686-w64-mingw32 + rm -rf ${_tmpdir}/mingw${_bitness}/include + rm -rf ${_tmpdir}/mingw${_bitness}/sbin + rm -rf ${_tmpdir}/mingw${_bitness}/share/man + rm -rf ${_tmpdir}/mingw${_bitness}/share/readline + rm -rf ${_tmpdir}/mingw${_bitness}/share/info + rm -rf ${_tmpdir}/mingw${_bitness}/share/aclocal + rm -rf ${_tmpdir}/mingw${_bitness}/share/gnome-common + rm -rf ${_tmpdir}/mingw${_bitness}/share/glade + rm -rf ${_tmpdir}/mingw${_bitness}/share/gettext + rm -rf ${_tmpdir}/mingw${_bitness}/share/terminfo + rm -rf ${_tmpdir}/mingw${_bitness}/share/tabset + rm -rf ${_tmpdir}/mingw${_bitness}/share/pkgconfig + rm -rf ${_tmpdir}/mingw${_bitness}/share/bash-completion + rm -rf ${_tmpdir}/mingw${_bitness}/share/appdata + rm -rf ${_tmpdir}/mingw${_bitness}/share/gdb + rm -rf ${_tmpdir}/mingw${_bitness}/share/locale/[abcdfghjklmnoprstuvwxz]* + # on windows we show the online help + rm -rf ${_tmpdir}/mingw${_bitness}/share/help + rm -rf ${_tmpdir}/mingw${_bitness}/share/gtk-doc + rm -rf ${_tmpdir}/mingw${_bitness}/share/doc + rm -rf ${_tmpdir}/mingw${_bitness}/var + # remove on the lib folder + rm -rf ${_tmpdir}/mingw${_bitness}/lib/locale/[abcdfghjklmnoprstuvwxz]* + rm -rf ${_tmpdir}/mingw${_bitness}/lib/terminfo + rm -rf ${_tmpdir}/mingw${_bitness}/lib/pkgconfig + rm -rf ${_tmpdir}/mingw${_bitness}/lib/peas-demo + # rimuovo i provider libgda non necessari + rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-firebird-client.dll* + rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-ldap.dll* + rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-mdb.dll* + rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-mysql.dll* + rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-oracle.dll* + rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-postgresql.dll* + rm -rf ${_tmpdir}/mingw${_bitness}/lib/libgda-5.0/providers/libgda-web.dll* + + cp -f sos.conf ${_tmpdir}/mingw${_bitness}/etc + + _7z_cmd="${_7z} a ${_thisdir}/${_filename_zip} ./${_tmpdir}/mingw${_bitness}/*" + cd ${_thisdir} + eval ${_7z_cmd} | tee $_log 2>&1 + _result=$? + if [ "$_result" -eq "0" ]; then + echo " archivegen succeeded. Created." + else + exit_cleanly "3" "archivegen failed. See $_log" + fi + cd - +} + +create_chroot_system() { + [ -d ${_tmpdir} ] && rm -rf ${_tmpdir} + mkdir -p "${_tmpdir}" + cd "${_tmpdir}" + + mkdir -p var/lib/pacman + mkdir -p var/log + mkdir -p tmp + + cd - + + pacman -Syu --root "${_tmpdir}" + pacman -S filesystem bash pacman --noconfirm --root "${_tmpdir}" + _result=$? + if [ "$_result" -ne "0" ]; then + exit_cleanly "1" "failed to create base data via command 'pacman -S filesystem bash pacman --noconfirm --root ${_tmpdir}'" + fi +} + +install_packages() { + pacman -S mingw-w64-${_arch}-librsvg mingw-w64-${_arch}-python2 mingw-w64-${_arch}-libautesmbldap mingw-w64-${_arch}-cancelleria mingw-w64-${_arch}-adwaita-icon-theme mingw-w64-${_arch}-libreptool --noconfirm --root "${_tmpdir}" + _result=$? + if [ "$_result" -ne "0" ]; then + exit_cleanly "1" "failed to create tmpdir via command 'pacman -S sos --noconfirm --root ${_tmpdir}'" + fi +} + +echo "Creating chroot system ${_tmpdir}" +create_chroot_system + +echo "Installing packages into ${_tmpdir}" +install_packages + +echo "Creating archive $_filename_zip" +[ -f $_filename_zip ] && rm -f $_filename_zip +create_archive + +echo "Creating installer $_filename_exe" +[ -f $_filename_exe ] && rm -f $_filename_exe + +# NSIS è solo a 32bit +if [ -d "/c/Program Files (x86)" ]; then + _programfiles="/c/Program Files (x86)" +else + _programfiles="/c/Program Files" +fi +"${_programfiles}/NSIS/makensis.exe" //DARCH=${_arch} //DVERSION=${_version} cancelleria.nsi + +[ -d ${_tmpdir} ] && rm -rf ${_tmpdir} + +exit_cleanly "0" "All done." diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..c9ff3cd --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,36 @@ +guidir = $(datadir)/$(PACKAGE)/gui +formdir = $(datadir)/$(PACKAGE)/form +imagesdir = $(datadir)/$(PACKAGE)/images +queryeditordir = $(datadir)/$(PACKAGE)/query_editor + +AM_CPPFLAGS = $(BCITYBE_CFLAGS) \ + -DGUIDIR=\""$(guidir)"\" \ + -DFORMDIR=\""$(formdir)"\" \ + -DIMAGESDIR=\""$(imagesdir)"\" \ + -DQUERYEDITORDIR=\""$(queryeditordir)"\" \ + -DLOCALEDIR=\"$(localedir)\" \ + -DSOLIPA_FOUND=1 + +LIBS = $(BCITYBE_LIBS) \ + -export-dynamic + +.rc.o: + $(WINDRES) $^ -o $@ + +resources.o: resources.rc + $(WINDRES) $^ -o $@ + +bin_PROGRAMS = bcity_be + +bcity_be_SOURCES = \ + commons.h \ + main.c + +if PLATFORM_WIN32 +EXTRALDFLAGS=-mconsole -mwindows +bcity_be_SOURCES += resources.rc +else +EXTRALDFLAGS= +endif + +bcity_be_LDFLAGS = $(EXTRALDFLAGS) diff --git a/src/commons.h b/src/commons.h new file mode 100644 index 0000000..87e6b06 --- /dev/null +++ b/src/commons.h @@ -0,0 +1,77 @@ +/* + * Copyright (C) 2016 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 __BCITYBE_COMMONS_H__ +#define __BCITYBE_COMMONS_H__ + + +#include + +#include + +#include +#include +#include +#include + +#include +#include + +typedef struct + { + gchar *guidir; + gchar *formdir; + gchar *imagesdir; + gchar *localedir; + gchar *queryeditordir; + + GtkBuilder *gtkbuilder; + + GdaEx *gdaex; + gulong hid_main_on_before_execute; + gulong hid_main_on_after_execute; + + const gchar *guifile; + + gchar *utente; + gchar *password; + + Autoz *autoz; + AutozIRole *role_utente; + + Solipa *solipa; + + TerritorioCommons *territorio_commons; + OrganigrammaCommons *organigramma_commons; + + gchar *smtp_uri; + gchar *visure_from; + gchar *visure_to; + CamelNetworkSecurityMethod visure_security_method; + gboolean smtp_use_auth; + gchar *visure_from_password; + + SoupSession *soup_session; + } BcityBECommons; + + +#endif /* __BCITYBE_COMMONS_H__ */ diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..e361004 --- /dev/null +++ b/src/main.c @@ -0,0 +1,801 @@ +/* + * Copyright (C) 2015 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 + +#ifdef G_OS_WIN32 + #include +#endif + +#include + +#include +#include + +#include + +#include "commons.h" +#include "articoli.h" +#include "categoriearticolo.h" +#include "fornitori.h" +#include "lstiva.h" +#include "ordini.h" +#include "tipiquantita.h" +#include "tipirecapito.h" +#include "uffici.h" + +static CancelleriaCommons *commons; + +GKeyFile *config; + +ZakAudit *audit; + +GtkWidget *w; +GtkWidget *vbx_body; +GObject *vbx_body_obj; +GtkWidget *vbx_body_child; + +GdkPixbuf *pxb_icon; + +static gboolean +main_gestione_permessi () +{ + if (!autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "cancelleria_rw"), FALSE) + && !autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "cancelleria_ro"), FALSE)) + { + solipa_message_dialog (w, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Non si è autorizzati all'utilizzo di questo programma."); + return FALSE; + } + + return TRUE; +} + +static void +main_on_before_execute (gpointer instance, gpointer gda_stmt, gpointer user_data) +{ + GdaStatement *stmt = (GdaStatement *)gda_stmt; + + if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_UPDATE) + { + zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_BEFORE_UPDATE, commons->utente, "cancelleria", stmt); + } + else if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_DELETE) + { + zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_DELETE, commons->utente, "cancelleria", stmt); + } +} + +static void +main_on_after_execute (gpointer instance, gpointer gda_stmt, gpointer user_data) +{ + GdaStatement *stmt = (GdaStatement *)gda_stmt; + + if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_INSERT) + { + zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_INSERT, commons->utente, "cancelleria", stmt); + } + else if (gda_statement_get_statement_type (stmt) == GDA_SQL_STATEMENT_UPDATE) + { + zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_AFTER_UPDATE, commons->utente, "cancelleria", stmt); + } +} + +static void +main_set_vbx_body_child (GObject *cur_obj, GtkWidget *child) +{ + if (G_IS_OBJECT (vbx_body_obj)) + { + g_object_unref (vbx_body_obj); + } + + 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_obj = cur_obj; + vbx_body_child = child; + gtk_box_pack_start (GTK_BOX (vbx_body), vbx_body_child, TRUE, TRUE, 0); +} + +G_MODULE_EXPORT void +on_mnu_tabelle_lst_iva_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + LstIva *a = lst_iva_new (commons, FALSE); + + vbx = lst_iva_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), vbx); +} + +G_MODULE_EXPORT void +on_mnu_tabelle_tipi_recapito_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + TipiRecapito *a = tipi_recapito_new (commons, FALSE); + + vbx = tipi_recapito_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), vbx); +} + +G_MODULE_EXPORT void +on_mnu_tabelle_fornitori_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + Fornitori *a = fornitori_new (commons, FALSE); + + vbx = fornitori_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), vbx); +} + +G_MODULE_EXPORT void +on_mnu_tabelle_categorie_articolo_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + CategorieArticolo *a = categorie_articolo_new (commons, FALSE); + + vbx = categorie_articolo_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), vbx); +} + +G_MODULE_EXPORT void +on_mnu_tabelle_articoli_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + Articoli *a = articoli_new (commons, FALSE); + + vbx = articoli_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), vbx); +} + +G_MODULE_EXPORT void +on_mnu_tabelle_tipi_quantita_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + TipiQuantita *a = tipi_quantita_new (commons, FALSE); + + vbx = tipi_quantita_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), vbx); +} + +G_MODULE_EXPORT void +on_mnu_tabelle_uffici_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + Uffici *a = uffici_new (commons, FALSE); + + vbx = uffici_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), vbx); +} + +G_MODULE_EXPORT void +on_mnu_view_ordini_activate (GtkMenuItem *menuitem, + gpointer user_data) +{ + GtkWidget *vbx; + + Ordini *a = ordini_new (commons, FALSE); + + vbx = ordini_get_widget (a); + + main_set_vbx_body_child (G_OBJECT (a), 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")); + + if (pxb_icon == NULL) + { + pxb_icon = gdk_pixbuf_new_from_file_at_size (g_build_filename (commons->imagesdir, PACKAGE ".ico", NULL), + 64, 64, + NULL); + } + if (pxb_icon != NULL) + { + gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (diag), pxb_icon); + } + + gtk_dialog_run (GTK_DIALOG (diag)); + gtk_widget_destroy (diag); +} + +int +main (int argc, char *argv[]) +{ + GError *error; + + GdaConnection *gdacon; + GOptionContext *context; + + gchar *password; + + Aute *aute; + gchar **aute_params; + gsize n_aute_params; + GSList *sl_aute_params; + + gchar *cnc_string; + + gchar *security_method; + + gchar *sql; + GdaDataModel *dm; + + gint i; + +#ifdef G_OS_WIN32 + if (g_getenv ("LANG") == NULL + || g_strcmp0 (g_getenv ("LANG"), "IT") == 0) + { + /* in windows >= vista non legge correttamente la lingua del sistema */ + g_setenv ("LANG", "it_IT", TRUE); + } +#endif + + gtk_init (&argc, &argv); + + gda_init (); + + + /* inizializzazione commons */ + commons = (CancelleriaCommons *)g_new0 (CancelleriaCommons, 1); + + commons->password = NULL; + + commons->territorio_commons = (TerritorioCommons *)g_new0 (TerritorioCommons, 1); + commons->organigramma_commons = (OrganigrammaCommons *)g_new0 (OrganigrammaCommons, 1); + + commons->organigramma_commons->territorio_commons = commons->territorio_commons; + + commons->soup_session = NULL; + + /* leggo la configurazione dal file */ + if (argc == 1) + { + g_error ("Occorre passare a riga di comando il file di configurazione."); + return 0; + } + + 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\n%s", argv[1], + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + return 0; + } + + /* 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."); + return 0; + } + + 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); + + password = NULL; + while (TRUE) + { + commons->utente = aute_autentica_get_password (aute, &password); + + if (commons->utente == NULL) + { + g_warning ("Nome utente o password non validi."); + } + else if (g_strcmp0 (commons->utente, "") == 0) + { + return 0; + } + else + { + break; + } + } + + commons->password = g_strdup (password); + g_free (password); + commons->territorio_commons->utente = g_strdup (commons->utente); + commons->organigramma_commons->utente = g_strdup (commons->utente); + + g_object_unref (aute); + + /* leggo i parametri per libautoz */ + error = NULL; + cnc_string = g_key_file_get_value (config, "AUTOZ", "cnc_string", &error); + if (cnc_string == NULL || error != NULL) + { + g_warning ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.", + 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 || error != NULL) + { + g_warning ("Impossibile creare la connessione al db per libautoz: %s.", + 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 nella configurazione di libautoz.", commons->utente); + return 0; + } + + autoz_set_role_name_prefix (commons->autoz, g_key_file_get_value (config, "AUTOZ", "role_name_prefix", NULL)); + autoz_set_resource_name_prefix (commons->autoz, g_key_file_get_value (config, "AUTOZ", "resource_name_prefix", NULL)); + + /* leggo i parametri per libzakaudit */ + error = NULL; + cnc_string = g_key_file_get_value (config, "AUDIT", "cnc_string", &error); + if (cnc_string == NULL) + { + g_warning ("Impossibile leggere la stringa di connessione per libaudit dal file di configurazione: %s.\n", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + return 0; + } + + audit = zak_audit_new_from_string (cnc_string); + if (audit == NULL) + { + g_warning ("Errore nella creazione dell'oggetto per libaudit.\n"); + return 0; + } + + commons->gtkbuilder = gtk_builder_new (); + commons->territorio_commons->gtkbuilder = gtk_builder_new (); + commons->organigramma_commons->gtkbuilder = gtk_builder_new (); + +#ifdef G_OS_WIN32 + + gchar *moddir; + gchar *p; + + moddir = g_win32_get_package_installation_directory_of_module (NULL); + + p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR)); + if (p != NULL + && (g_ascii_strcasecmp (p + 1, "src") == 0 + || g_ascii_strcasecmp (p + 1, ".libs") == 0)) + { + commons->guidir = g_strdup (GUIDIR); + commons->formdir = g_strdup (FORMDIR); + commons->imagesdir = g_strdup (IMAGESDIR); + commons->localedir = g_strdup (LOCALEDIR); + commons->queryeditordir = g_strdup (QUERYEDITORDIR); + } + else + { +#undef GUIDIR +#undef FORMDIR +#undef IMAGESDIR +#undef MODELLIDIR +#undef LOCALEDIR +#undef QUERYEDITORDIR + + commons->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL); + commons->formdir = g_build_filename (moddir, "share", PACKAGE, "form", NULL); + commons->imagesdir = g_build_filename (moddir, "share", PACKAGE, "images", NULL); + commons->localedir = g_build_filename (moddir, "share", PACKAGE, "images", NULL); + commons->queryeditordir = g_build_filename (moddir, "share", PACKAGE, "query_editor", NULL); + } + + g_free (moddir); + + moddir = g_win32_get_package_installation_directory_of_module (territorio_get_module_handle ()); + commons->territorio_commons->guidir = g_build_filename (moddir, "share", "territorio", "gui", NULL); + commons->territorio_commons->formdir = g_build_filename (moddir, "share", "territorio", "form", NULL); + + moddir = g_win32_get_package_installation_directory_of_module (organigramma_get_module_handle ()); + commons->organigramma_commons->guidir = g_build_filename (moddir, "share", "organigramma", "gui", NULL); + commons->organigramma_commons->formdir = g_build_filename (moddir, "share", "organigramma", "form", NULL); + + g_free (moddir); + +#else + + commons->guidir = g_strdup (GUIDIR); + commons->formdir = g_strdup (FORMDIR); + commons->imagesdir = g_strdup (IMAGESDIR); + commons->localedir = g_strdup (LOCALEDIR); + commons->queryeditordir = g_strdup (QUERYEDITORDIR); + commons->territorio_commons->guidir = g_build_filename ("/usr", "local", "share", "territorio", "gui", NULL); + commons->territorio_commons->formdir = g_build_filename ("/usr", "local", "share", "territorio", "form", NULL); + commons->organigramma_commons->guidir = g_build_filename ("/usr", "local", "share", "organigramma", "gui", NULL); + commons->organigramma_commons->formdir = g_build_filename ("/usr", "local", "share", "organigramma", "form", NULL); + +#endif + + commons->guifile = g_build_filename (commons->guidir, "cancelleria.ui", NULL); + commons->territorio_commons->guifile = g_build_filename (commons->territorio_commons->guidir, "territorio.gui", NULL); + commons->organigramma_commons->guifile = g_build_filename (commons->organigramma_commons->guidir, "organigramma.gui", NULL); + + bindtextdomain (GETTEXT_PACKAGE, commons->localedir); + textdomain (GETTEXT_PACKAGE); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + + /* 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) + { + g_warning ("Impossibile leggere la stringa di connessione dal file di configurazione: %s.", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio."); + return 0; + } + + commons->gdaex = gdaex_new_from_string (cnc_string); + if (commons->gdaex == NULL) + { + g_error ("Errore nella connessione al database: %s", cnc_string); + } + + commons->hid_main_on_before_execute = g_signal_connect (commons->gdaex, "before-execute", G_CALLBACK (main_on_before_execute), NULL); + commons->hid_main_on_after_execute = g_signal_connect (commons->gdaex, "after-execute", G_CALLBACK (main_on_after_execute), NULL); + + /* controllo la versione del database */ +#define DB_VERSION "0.0.1" + + sql = g_strdup_printf ("SELECT * FROM configurazioni WHERE id = 1"); + dm = gdaex_query (commons->gdaex, sql); + g_free (sql); + if (dm == NULL || gda_data_model_get_n_rows (dm) < 1) + { + g_warning ("La versione del database non è quella necessaria."); + return 0; + } + if (dm != NULL) + { + int cmp; + guint part; + + cmp = zak_utils_compare_version (gdaex_data_model_get_field_value_stringify_at (dm, 0, "db_version"), DB_VERSION, NULL, &part); + if (cmp < 0) + { + g_warning ("La versione del database non è quella necessaria."); + return 0; + } + else if (cmp > 0) + { + /* potrebbe adare bene anche se la versione del db è maggiore rispetto a quella del programma */ + if (part < 2) + { + g_warning ("La versione del database non è quella necessaria."); + return 0; + } + } + + g_object_unref (dm); + } + + /* leggo i parametri a riga di comando di libgdaex */ + error = NULL; + context = g_option_context_new ("Cancelleria"); + g_option_context_add_group (context, gdaex_get_option_group (commons->gdaex)); + if (!g_option_context_parse (context, &argc, &argv, &error)) + { + g_warning ("Errore nell'analisi della riga comandi: %s.", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + return 0; + } + + /* inizializzo solipa */ + commons->solipa = solipa_new (); + + /* leggo la stringa di connessione al db territorio */ + error = NULL; + cnc_string = g_key_file_get_value (config, "DB_TERRITORIO", "cnc_string", &error); + if (cnc_string == NULL) + { + g_error ("Impossibile leggere la stringa di connessione dal file di configurazione: %s.", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + } + + commons->territorio_commons->gdaex = gdaex_new_from_string (cnc_string); + if (commons->territorio_commons->gdaex == NULL) + { + g_error ("Errore nella connessione al database: %s", cnc_string); + } + + /* leggo i parametri per libautoz di territorio */ + error = NULL; + cnc_string = g_key_file_get_value (config, "AUTOZ_TERRITORIO", "cnc_string", &error); + if (cnc_string == NULL || error != NULL) + { + g_error ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.", + 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 || error != NULL) + { + g_error ("Impossibile creare la connessione al db per libautoz di territorio: %s.", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + return 0; + } + + commons->territorio_commons->autoz = autoz_new (); + if (commons->territorio_commons->autoz == NULL) + { + g_warning ("Impossibile creare l'oggetto per libautoz."); + return 0; + } + if (!autoz_load_from_db (commons->territorio_commons->autoz, gdacon, NULL, TRUE)) + { + g_warning ("Impossibile caricare la configurazione per libautoz dal db."); + return 0; + } + + commons->territorio_commons->role_utente = autoz_get_role_from_id (commons->territorio_commons->autoz, commons->territorio_commons->utente); + if (commons->territorio_commons->role_utente == NULL) + { + g_warning ("Utente «%s» non trovato nella configurazione di libautoz.", commons->territorio_commons->utente); + return 0; + } + + /* leggo la stringa di connessione al db organigramma */ + error = NULL; + cnc_string = g_key_file_get_value (config, "DB_ORGANIGRAMMA", "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->organigramma_commons->gdaex = gdaex_new_from_string (cnc_string); + if (commons->organigramma_commons->gdaex == NULL) + { + g_error ("Errore nella connessione al database: %s", cnc_string); + } + + /* leggo i parametri per libautoz di organigramma */ + error = NULL; + cnc_string = g_key_file_get_value (config, "AUTOZ_ORGANIGRAMMA", "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 di organigramma: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + return 0; + } + + commons->organigramma_commons->autoz = autoz_new (); + if (commons->organigramma_commons->autoz == NULL) + { + g_warning ("Impossibile creare l'oggetto per libautoz."); + return 0; + } + if (!autoz_load_from_db (commons->organigramma_commons->autoz, gdacon, NULL, TRUE)) + { + g_warning ("Impossibile caricare la configurazione per libautoz dal db."); + return 0; + } + + commons->organigramma_commons->role_utente = autoz_get_role_from_id (commons->organigramma_commons->autoz, commons->organigramma_commons->utente); + if (commons->organigramma_commons->role_utente == NULL) + { + g_warning ("Utente \"%s\" non trovato nell configurazione di libautoz.", commons->organigramma_commons->utente); + return 0; + } + + /* leggo i parametri per l'invio delle mail */ + error = NULL; + commons->smtp_uri = g_key_file_get_value (config, "MAIL", "smtp", &error); + if (commons->smtp_uri == NULL) + { + g_warning ("Impossibile leggere l'indirizzo del server smtp: %s.\n", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + } + + error = NULL; + security_method = g_key_file_get_value (config, "MAIL", "security_method", &error); + if (security_method == NULL) + { + commons->visure_security_method = CAMEL_NETWORK_SECURITY_METHOD_NONE; + } + else + { + commons->visure_security_method = strtol (security_method, NULL, 10); + } + + error = NULL; + security_method = g_key_file_get_value (config, "MAIL", "use_auth", &error); + if (security_method == NULL) + { + commons->smtp_use_auth = FALSE; + } + else + { + commons->smtp_use_auth = zak_utils_string_to_boolean (security_method); + } + + error = NULL; + commons->visure_from = g_key_file_get_value (config, "MAIL", "visure_from", &error); + if (commons->visure_from == NULL) + { + g_warning ("Impossibile leggere l'indirizzo del mittente per le email delle visure: %s.\n", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + } + + error = NULL; + commons->visure_to = g_key_file_get_value (config, "MAIL", "visure_to", &error); + if (commons->visure_to == NULL) + { + g_warning ("Impossibile leggere l'indirizzo del destinatario per le email delle visure: %s.\n", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + } + + /* GUI */ + error = NULL; + gtk_builder_add_objects_from_file (commons->gtkbuilder, commons->guifile, + g_strsplit_set ("w_main", "|", -1), + &error); + if (error != NULL) + { + g_warning ("Errore: %s\n", error->message); + return 0; + } + + 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; + + /* carico l'icona */ + gtk_window_set_default_icon_from_file (g_build_filename (commons->imagesdir, PACKAGE ".ico", NULL), + NULL); + + gtk_widget_show (w); + + if (main_gestione_permessi ()) + { + gtk_main (); + } + + g_object_unref (commons->solipa); + + /* TODO + * mettere una finestra con barra di avanzamento + */ + /* elimino i file temporanei */ + const gchar *tmp_dir_path; + const gchar *filename; + gchar *filename_full; + GDir *tmp_dir; + + error = NULL; + tmp_dir_path = g_get_tmp_dir (); + tmp_dir = g_dir_open (tmp_dir_path, 0, &error); + if (tmp_dir == NULL || error != NULL) + { + g_warning ("Impossibile eliminare i file temporanei: %s.", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + } + else + { + g_dir_rewind (tmp_dir); + while ((filename = g_dir_read_name (tmp_dir)) != NULL) + { + filename_full = g_build_filename (tmp_dir_path, filename, NULL); + if (!g_file_test (filename_full, G_FILE_TEST_IS_DIR) + && g_strncasecmp (filename, "cancelleria-", 7) == 0) + { + g_unlink (g_build_filename (tmp_dir_path, filename, NULL)); + } + } + } + + if (tmp_dir != NULL) + { + g_dir_close (tmp_dir); + } + g_free (tmp_dir); + + return 0; +} diff --git a/src/resources.rc.in b/src/resources.rc.in new file mode 100644 index 0000000..448544c --- /dev/null +++ b/src/resources.rc.in @@ -0,0 +1,25 @@ +AppIcon ICON "@top_srcdir@\\data\\bcity_be\\images\\bcity_be.ico" + +1 VERSIONINFO +FILEVERSION @V_MAJOR@,@V_MINOR@,@V_MICRO@,0 +PRODUCTVERSION @V_MAJOR@,@V_MINOR@,@V_MICRO@,0 +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904E4" + BEGIN + VALUE "CompanyName", "Andrea Zagli" + VALUE "FileDescription", "B-City" + VALUE "FileVersion", "@V_MAJOR@.@V_MINOR@.@V_MICRO@" + VALUE "InternalName", "bcity_be" + VALUE "LegalCopyright", "Copyright 2016 Andrea Zagli " + VALUE "OriginalFilename", "bcity_be.exe" + VALUE "ProductName", "B-City" + VALUE "ProductVersion", "@V_MAJOR@.@V_MINOR@.@V_MICRO@" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0410, 1252 + END +END