<?xml version="1.0"?>
<anjuta>
+ <plugin name="Terminal" mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="anjuta-terminal:TerminalPlugin"/>
+ </plugin>
+ <plugin name="API Help" mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="anjuta-devhelp:AnjutaDevhelp"/>
+ </plugin>
<plugin name="Git" mandatory="no">
<require group="Anjuta Plugin"
attribute="Location"
Maximized=1
Geometry=1024x687+0+24
+[Project Manager]
+Shortcut=messi//src//messi
+Expand=messi%%%messi
+
[File Loader]
-Files=../../src/main.c#19%%%../../configure.ac#6
+Files=../../src/main.c#2%%%../../src/commons.h#66%%%../../configure.ac#30%%%../../src/commons.c#21
[Document Manager]
bookmarks=<?xml version="1.0" encoding="UTF-8"?>\n<bookmarks/>\n
-[Project Manager]
-Shortcut=messi//src//messi
-Expand=messi
-
[Execution]
Run in terminal=2
Working directories=../../../messi
<?xml version="1.0"?>
-<dock-layout>
-
-<layout name="__default__"><dock name="__dock_1" floating="no" width="-1" height="-1" floatx="0" floaty="0"><paned orientation="horizontal" locked="no" position="266"><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaFileManager" orientation="vertical" locked="no"/><item name="AnjutaProjectManager" orientation="vertical" locked="no"/><item name="AnjutaSymbolDB" orientation="vertical" locked="no"/></notebook><item name="AnjutaDocumentManager" orientation="vertical" locked="no"/></paned></dock></layout></dock-layout>
+<dock-layout><layout name="__default__"><dock name="__dock_1" floating="no" width="-1" height="-1" floatx="0" floaty="0"><paned orientation="horizontal" locked="no" position="277"><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaFileManager" orientation="vertical" locked="no"/><item name="AnjutaProjectManager" orientation="vertical" locked="no"/><item name="AnjutaSymbolDB" orientation="vertical" locked="no"/><item name="AnjutaDevhelpIndex" orientation="vertical" locked="no"/></notebook><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaDocumentManager" orientation="vertical" locked="no"/><item name="AnjutaDevhelpDisplay" orientation="vertical" locked="no"/><item name="AnjutaTerminal" orientation="vertical" locked="no"/></notebook></paned></dock></layout></dock-layout>
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
-PKG_NAME="opengov"
+PKG_NAME="messi"
(test -f $srcdir/configure.ac \
&& test -d $srcdir/src \
# Checks for libraries.
PKG_CHECK_MODULES([MESSI], [gtk+-2.0 >= 2.12.0
- libgtkform >= 0.1.0])
+ libgtkform >= 0.4.0
+ libgtkformui >= 0.4.0
+ libaute >= 0.0.2
+ libautoz >= 0.0.1
+ libautozgui >= 0.0.1
+ libsolipa >= 0.3.1
+ liborganigramma >= 0.0.1
+ libzakaudit >= 0.0.2
+ libreptool >= 0.2.2])
AC_SUBST(MESSI_CFLAGS)
AC_SUBST(MESSI_LIBS)
-formdir = $(datadir)/messi/form
+formdir = $(datadir)/$(PACKAGE)/form
form_DATA =
-guidir = $(datadir)/messi/gui
+guidir = $(datadir)/$(PACKAGE)/gui
gui_DATA = messi.gui
-guidir = $(datadir)/messi/gui
-formdir = $(datadir)/messi/form
+guidir = $(datadir)/$(PACKAGE)/gui
+formdir = $(datadir)/$(PACKAGE)/form
AM_CPPFLAGS = $(MESSI_CFLAGS) \
-DGUIDIR=\""$(guidir)"\" \
LIBS = $(MESSI_LIBS) \
-export-dynamic
+if PLATFORM_WIN32
+AM_CPPFLAGS += -I/programmi/PostgreSQL/8.4/include
+LIBS += -L/programmi/PostgreSQL/8.4/lib -lpq
+else
+AM_CPPFLAGS += -I`pg_config --includedir`
+LIBS += -L`pg_config --libdir` -lpq
+endif
+
bin_PROGRAMS = messi
messi_SOURCES = \
+ commons.c \
+ commons.h \
main.c
--- /dev/null
+/*
+ * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#include "commons.h"
+
--- /dev/null
+/*
+ * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+ *
+ * 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 <config.h>
+#endif
+
+#ifndef __COMMONS_H__
+#define __COMMONS_H__
+
+#include <libpq-fe.h>
+
+#include <gtk/gtk.h>
+
+#include <libgdaex/libgdaex.h>
+#include <libautoz/autoz.h>
+#include <libautoz/role_interface.h>
+#include <libsolipa/libsolipa.h>
+
+#include <libterritorio/commons.h>
+#include <liborganigramma/commons.h>
+#include <libautozgui/commons.h>
+
+typedef struct
+ {
+ gchar *guidir;
+ gchar *formdir;
+
+ GtkBuilder *gtkbuilder;
+
+ GdaEx *gdaex;
+ GdaEx *gdaex_autozgui;
+
+ PGconn *pgcon;
+
+ const gchar *guifile;
+
+ const gchar *utente;
+ Autoz *autoz;
+ AutozIRole *role_utente;
+
+ Solipa *solipa;
+
+ TerritorioCommons *territorio_commons;
+ OrganigrammaCommons *organigramma_commons;
+ AutozGuiCommons *autozgui_commons;
+
+ guint pr_cod_prat;
+ } Commons;
+
+
+#endif /* __COMMONS_H__ */
/*
- * Copyright (C) 2009 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
*
* 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