]> saetta.ns0.it Git - zakautho/gui/commitdiff
Initial import.
authorAndrea Zagli <azagli@libero.it>
Wed, 8 Jun 2011 14:36:07 +0000 (16:36 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 8 Jun 2011 14:36:07 +0000 (16:36 +0200)
16 files changed:
.gitignore [new file with mode: 0644]
AUTHORS [new file with mode: 0644]
Makefile.am [new file with mode: 0644]
NEWS [new file with mode: 0644]
README [new file with mode: 0644]
autogen.sh [new file with mode: 0755]
configure.ac [new file with mode: 0644]
data/Makefile.am [new file with mode: 0644]
data/autoz-gui/Makefile.am [new file with mode: 0644]
data/autoz-gui/gui/Makefile.am [new file with mode: 0644]
data/autoz-gui/gui/autoz-gui.ui [new file with mode: 0644]
src/Makefile.am [new file with mode: 0644]
src/commons.h [new file with mode: 0644]
src/main.c [new file with mode: 0644]
src/openauditds.c [new file with mode: 0644]
src/openauditds.h [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..aee532a
--- /dev/null
@@ -0,0 +1,23 @@
+*.o
+*~
+*.in
+src/autoz-gui
+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 (file)
index 0000000..ad1de0f
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1 @@
+Andrea Zagli <azagli@libero.it>
diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..a91794b
--- /dev/null
@@ -0,0 +1,22 @@
+SUBDIRS = src data
+
+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 (file)
index 0000000..e69de29
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..81a7991
--- /dev/null
@@ -0,0 +1,23 @@
+#!/bin/bash
+# Run this to generate all the initial makefiles, etc.
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+PKG_NAME="autoz-gui"
+
+(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 autoz-gui 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 (file)
index 0000000..e0acc21
--- /dev/null
@@ -0,0 +1,39 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ([2.65])
+AC_INIT([autoz-gui], [0.0.1], [azagli@libero.it])
+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
+
+# Checks for programs.
+AC_PROG_CC
+
+# Checks for libraries.
+PKG_CHECK_MODULES(AUTOZGUI, [libgda-ui-4.0 >= 4.1.0])
+
+AC_SUBST(AUTOZGUI_CFLAGS)
+AC_SUBST(AUTOZGUI_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/autoz-gui/Makefile
+       data/autoz-gui/gui/Makefile
+])
+AC_OUTPUT
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644 (file)
index 0000000..4cd2946
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = autoz-gui
diff --git a/data/autoz-gui/Makefile.am b/data/autoz-gui/Makefile.am
new file mode 100644 (file)
index 0000000..13c2b3d
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = gui
diff --git a/data/autoz-gui/gui/Makefile.am b/data/autoz-gui/gui/Makefile.am
new file mode 100644 (file)
index 0000000..a73fe1d
--- /dev/null
@@ -0,0 +1,5 @@
+guidir = $(datadir)/$(PACKAGE)/gui
+
+gui_DATA = autoz-gui.gui
+
+EXTRA_DIST = $(gui_DATA)
diff --git a/data/autoz-gui/gui/autoz-gui.ui b/data/autoz-gui/gui/autoz-gui.ui
new file mode 100644 (file)
index 0000000..5d8a3d2
--- /dev/null
@@ -0,0 +1,792 @@
+<?xml version="1.0"?>
+<interface>
+  <requires lib="gtk+" version="2.16"/>
+  <!-- interface-naming-policy project-wide -->
+  <object class="GtkWindow" id="w_main">
+    <property name="title" translatable="yes">Autoz GUI</property>
+    <property name="window_position">center</property>
+    <property name="default_width">600</property>
+    <property name="default_height">400</property>
+    <signal name="destroy" handler="gtk_main_quit"/>
+    <child>
+      <object class="GtkVBox" id="vbox1">
+        <property name="visible">True</property>
+        <property name="orientation">vertical</property>
+        <child>
+          <object class="GtkMenuBar" id="menubar1">
+            <property name="visible">True</property>
+            <child>
+              <object class="GtkMenuItem" id="menuitem1">
+                <property name="visible">True</property>
+                <property name="label" translatable="yes">_File</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="menu1">
+                    <property name="visible">True</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="imagemenuitem2">
+                        <property name="label">gtk-open</property>
+                        <property name="visible">True</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <signal name="activate" handler="on_mnu_file_open_audit_ds_activate"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="menuitem2">
+                        <property name="label">gtk-close</property>
+                        <property name="visible">True</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <signal name="activate" handler="on_mnu_file_close_activate"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkSeparatorMenuItem" id="separatormenuitem1">
+                        <property name="visible">True</property>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="imagemenuitem5">
+                        <property name="label">gtk-quit</property>
+                        <property name="visible">True</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <signal name="activate" handler="gtk_main_quit"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="menuitem3">
+                <property name="visible">True</property>
+                <property name="label" translatable="yes">_View</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="menu2">
+                    <property name="visible">True</property>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem5">
+                        <property name="visible">True</property>
+                        <property name="label" translatable="yes">_Roles</property>
+                        <property name="use_underline">True</property>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem6">
+                        <property name="visible">True</property>
+                        <property name="label" translatable="yes">Re_sources</property>
+                        <property name="use_underline">True</property>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="menuitem7">
+                        <property name="visible">True</property>
+                        <property name="label" translatable="yes">_Authorizations</property>
+                        <property name="use_underline">True</property>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="menuitem4">
+                <property name="visible">True</property>
+                <property name="label" translatable="yes">A_iuto</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="menu3">
+                    <property name="visible">True</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="imagemenuitem10">
+                        <property name="label">gtk-about</property>
+                        <property name="visible">True</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <signal name="activate" handler="on_mnu_help_about_activate"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkVBox" id="vbx_body">
+            <property name="visible">True</property>
+            <property name="orientation">vertical</property>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkStatusbar" id="statusbar1">
+            <property name="visible">True</property>
+            <property name="spacing">2</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkAboutDialog" id="dlg_about">
+    <property name="border_width">5</property>
+    <property name="title" translatable="yes">Informazioni su...</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="destroy_with_parent">True</property>
+    <property name="type_hint">normal</property>
+    <property name="transient_for">w_main</property>
+    <property name="has_separator">True</property>
+    <property name="program_name">Autoz GUI</property>
+    <property name="version">0.0.1</property>
+    <property name="copyright" translatable="yes">Andrea Zagli 2011</property>
+    <property name="authors">Andrea Zagli &lt;azagli@libero.it&gt;</property>
+    <property name="wrap_license">True</property>
+    <child internal-child="vbox">
+      <object class="GtkVBox" id="dialog-vbox1">
+        <property name="visible">True</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">2</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child internal-child="action_area">
+          <object class="GtkHButtonBox" id="dialog-action_area1">
+            <property name="visible">True</property>
+            <property name="layout_style">end</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_open_autoz_datasource">
+    <property name="title" translatable="yes">Open Autoz Datasource - Autoz GUI</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkVBox" id="vbox2">
+        <property name="visible">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <placeholder/>
+        </child>
+        <child>
+          <object class="GtkHButtonBox" id="hbuttonbox1">
+            <property name="visible">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button1">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button2">
+                <property name="label">gtk-open</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_role">
+    <property name="title" translatable="yes">Role - Autoz GUI</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkVBox" id="vbox3">
+        <property name="visible">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkTable" id="table1">
+            <property name="visible">True</property>
+            <property name="n_rows">3</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">5</property>
+            <property name="row_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label1">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">ID</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label2">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label3">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Name</property>
+              </object>
+              <packing>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">30</property>
+                <property name="invisible_char">&#x25CF;</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkHButtonBox" id="hbuttonbox2">
+            <property name="visible">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button3">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button4">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkListStore" id="lstore_roles">
+    <columns>
+      <!-- column-name id -->
+      <column type="guint"/>
+      <!-- column-name name -->
+      <column type="gchararray"/>
+    </columns>
+  </object>
+  <object class="GtkListStore" id="lstore_resources">
+    <columns>
+      <!-- column-name id -->
+      <column type="guint"/>
+      <!-- column-name name -->
+      <column type="gchararray"/>
+    </columns>
+  </object>
+  <object class="GtkWindow" id="w_roles">
+    <property name="title" translatable="yes">Roles - Autoz GUI</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkVBox" id="vbox5">
+        <property name="visible">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow2">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="hscrollbar_policy">automatic</property>
+            <property name="vscrollbar_policy">automatic</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <object class="GtkTreeView" id="treeview2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="model">lstore_roles</property>
+                <property name="headers_clickable">False</property>
+                <property name="rules_hint">True</property>
+                <property name="search_column">1</property>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn5">
+                    <property name="title">Roles</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext3"/>
+                      <attributes>
+                        <attribute name="text">1</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkHButtonBox" id="hbuttonbox4">
+            <property name="visible">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button7">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button9">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button8">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button10">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button13">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_progress">
+    <property name="title" translatable="yes">Audit GUI</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="default_width">550</property>
+    <property name="destroy_with_parent">True</property>
+    <property name="decorated">False</property>
+    <child>
+      <object class="GtkVBox" id="vbox6">
+        <property name="visible">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkLabel" id="label10">
+            <property name="visible">True</property>
+            <property name="label" translatable="yes">label</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkProgressBar" id="progressbar1">
+            <property name="visible">True</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_resource">
+    <property name="title" translatable="yes">Resource - Autoz GUI</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkVBox" id="vbox4">
+        <property name="visible">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkTable" id="table2">
+            <property name="visible">True</property>
+            <property name="n_rows">3</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">5</property>
+            <property name="row_spacing">5</property>
+            <child>
+              <object class="GtkLabel" id="label4">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">ID</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label5">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">lbl_id</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label6">
+                <property name="visible">True</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Name</property>
+              </object>
+              <packing>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="entry2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="max_length">30</property>
+                <property name="invisible_char">&#x2022;</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+            <child>
+              <placeholder/>
+            </child>
+          </object>
+          <packing>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkHButtonBox" id="hbuttonbox3">
+            <property name="visible">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button5">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button6">
+                <property name="label">gtk-save</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkWindow" id="w_resources">
+    <property name="title" translatable="yes">Resources - Autoz GUI</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkVBox" id="vbox7">
+        <property name="visible">True</property>
+        <property name="border_width">5</property>
+        <property name="orientation">vertical</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow1">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="hscrollbar_policy">automatic</property>
+            <property name="vscrollbar_policy">automatic</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <object class="GtkTreeView" id="treeview1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="model">lstore_resources</property>
+                <property name="headers_clickable">False</property>
+                <property name="rules_hint">True</property>
+                <property name="search_column">1</property>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn1">
+                    <property name="title">Resources</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext1"/>
+                      <attributes>
+                        <attribute name="text">1</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkHButtonBox" id="hbuttonbox5">
+            <property name="visible">True</property>
+            <property name="spacing">5</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button11">
+                <property name="label">gtk-new</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_underline">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button12">
+                <property name="label">gtk-edit</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button14">
+                <property name="label">gtk-delete</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button15">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">3</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button16">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">4</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+</interface>
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644 (file)
index 0000000..5c053d6
--- /dev/null
@@ -0,0 +1,15 @@
+guidir = $(datadir)/$(PACKAGE)/gui
+
+AM_CPPFLAGS = $(AUDITGUI_CFLAGS) \
+              -DGUIDIR=\""$(guidir)"\"
+
+LIBS = $(AUDITGUI_LIBS) \
+       -export-dynamic
+
+bin_PROGRAMS = autoz-gui
+
+autoz_gui_SOURCES = \
+                commons.h \
+                main.c \
+                openauditds.c \
+                openauditds.h
diff --git a/src/commons.h b/src/commons.h
new file mode 100644 (file)
index 0000000..0fc225b
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2011 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 <gtk/gtk.h>
+
+#include <libgda/libgda.h>
+
+typedef struct
+       {
+               const gchar *guidir;
+               const gchar *guifile;
+
+               GtkBuilder *gtkbuilder;
+
+               GdaConnection *gdacon;
+               GdaSqlParser *gdaparser;
+       } Commons;
+
+#endif /* __COMMONS_H__ */
diff --git a/src/main.c b/src/main.c
new file mode 100644 (file)
index 0000000..0e8b23d
--- /dev/null
@@ -0,0 +1,230 @@
+/*
+ * Copyright (C) 2011 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
+
+#include <string.h>
+
+#include <gtk/gtk.h>
+
+#include <libgda/libgda.h>
+#include <sql-parser/gda-sql-parser.h>
+
+#include "commons.h"
+#include "openauditds.h"
+
+G_MODULE_EXPORT void on_mnu_file_close_activate (GtkMenuItem *menuitem,
+                            gpointer user_data);
+
+static Commons *commons;
+
+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);
+}
+
+static void
+main_on_ds_opened (gpointer instance, const gchar *arg1, gpointer user_data)
+{
+       GtkWidget *vbx;
+       GError *error;
+
+       gchar *cnc;
+       gchar *pos;
+
+       if (arg1 == NULL)
+               {
+                       return;
+               }
+
+       cnc = g_strstrip (g_strdup (arg1));
+       if (g_strcmp0 (cnc, "") == 0)
+               {
+                       return;
+               }
+
+       error = NULL;
+       commons->gdacon = gda_connection_open_from_string (NULL, cnc, NULL,
+                                                          GDA_CONNECTION_OPTIONS_NONE,
+                                                          &error);
+       if (!commons->gdacon || error != NULL)
+               {
+                       GtkWidget *dialog;
+                       dialog = gtk_message_dialog_new (GTK_WINDOW (w),
+                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
+                                                        GTK_MESSAGE_WARNING,
+                                                        GTK_BUTTONS_OK,
+                                                        "Unable to connect to the choosen autoz db.\n\n%s\n\n%s",
+                                                        arg1, 
+                                                        (error != NULL && error->message != NULL ? error->message : "No details."));
+                       gtk_dialog_run (GTK_DIALOG (dialog));
+                       gtk_widget_destroy (dialog);
+                       return;
+               }
+
+       commons->gdaparser = gda_connection_create_parser (commons->gdacon);
+       if (!commons->gdaparser)
+               {
+                       /* @cnc doe snot provide its own parser => use default one */
+                       commons->gdaparser = gda_sql_parser_new ();
+               }
+
+       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "menuitem2")), TRUE);
+
+       g_free (cnc);
+}
+
+G_MODULE_EXPORT void
+on_mnu_file_open_audit_ds_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkWidget *vbx;
+
+       if (vbx_body_child != NULL)
+               {
+                       on_mnu_file_close_activate (NULL, user_data);
+               }
+
+       OpenAuditDS *m = open_audit_ds_new (commons);
+
+       vbx = open_audit_ds_get_widget (m);
+
+       g_signal_connect (G_OBJECT (m), "opened",
+                         G_CALLBACK (main_on_ds_opened), NULL);
+
+       gtk_window_set_transient_for (GTK_WINDOW (vbx), GTK_WINDOW (w));
+       gtk_widget_show_all (vbx);
+}
+
+G_MODULE_EXPORT void
+on_mnu_file_close_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       gtk_widget_destroy (vbx_body_child);
+       vbx_body_child = NULL;
+
+       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "menuitem2")), FALSE);
+}
+
+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;
+
+       gtk_init (&argc, &argv);
+
+       gda_init ();
+
+       /* inizializzazione commons */
+       commons = g_malloc0 (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)
+               {
+                       commons->guidir = g_strdup (GUIDIR);
+               }
+       else
+               {
+                       commons->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
+               }
+
+#else
+
+       commons->guidir = g_strdup (GUIDIR);
+
+#endif
+
+       commons->guifile = g_build_filename (commons->guidir, "autoz-gui.ui", NULL);
+
+       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_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "menuitem2")), FALSE);
+
+       if (argc > 0)
+               {
+                       /* try to use the first argument of command line as a cnc_string */
+                       main_on_ds_opened (NULL, argv[1], NULL);
+               }
+
+       gtk_main ();
+
+       return 0;
+}
diff --git a/src/openauditds.c b/src/openauditds.c
new file mode 100644 (file)
index 0000000..e7aa48f
--- /dev/null
@@ -0,0 +1,240 @@
+/* 
+ * Copyright (C) 2011 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 <libgda-ui/libgda-ui.h>
+
+#include "openauditds.h"
+
+static void open_audit_ds_class_init (OpenAuditDSClass *klass);
+static void open_audit_ds_init (OpenAuditDS *open_audit_ds);
+
+static void open_audit_ds_set_property (GObject *object,
+                                     guint property_id,
+                                     const GValue *value,
+                                     GParamSpec *pspec);
+static void open_audit_ds_get_property (GObject *object,
+                                     guint property_id,
+                                     GValue *value,
+                                     GParamSpec *pspec);
+
+static void open_audit_ds_on_wlogin_changed (GdauiLogin *gdauilogin,
+                                             gboolean arg1,
+                                             gpointer user_data);
+
+static void open_audit_ds_on_btn_cancel_clicked (GtkButton *button,
+                                    gpointer user_data);
+static void open_audit_ds_on_btn_open_clicked (GtkButton *button,
+                                  gpointer user_data);
+
+#define OPEN_AUDIT_DS_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_OPEN_AUDIT_DS, OpenAuditDSPrivate))
+
+typedef struct _OpenAuditDSPrivate OpenAuditDSPrivate;
+struct _OpenAuditDSPrivate
+       {
+               Commons *commons;
+
+               GtkWidget *w;
+               GtkWidget *wlogin;
+       };
+
+G_DEFINE_TYPE (OpenAuditDS, open_audit_ds, G_TYPE_OBJECT)
+
+static void
+open_audit_ds_class_init (OpenAuditDSClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+       g_type_class_add_private (object_class, sizeof (OpenAuditDSPrivate));
+
+       object_class->set_property = open_audit_ds_set_property;
+       object_class->get_property = open_audit_ds_get_property;
+
+       /**
+        * OpenAuditDS::opened:
+        * @open_audit_ds:
+        *
+        */
+       klass->opened_signal_id = g_signal_new ("opened",
+                                               G_TYPE_FROM_CLASS (object_class),
+                                               G_SIGNAL_RUN_LAST,
+                                               0,
+                                               NULL,
+                                               NULL,
+                                               g_cclosure_marshal_VOID__STRING,
+                                               G_TYPE_NONE,
+                                               1, G_TYPE_STRING);
+}
+
+static void
+open_audit_ds_init (OpenAuditDS *open_audit_ds)
+{
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (open_audit_ds);
+}
+
+/**
+ * open_audit_ds_new:
+ * @commons:
+ * @id:
+ *
+ * Returns: the newly created #OpenAuditDS object.
+ */
+OpenAuditDS
+*open_audit_ds_new (Commons *commons)
+{
+       GError *error;
+
+       GdauiLoginMode mode;
+
+       OpenAuditDS *a = OPEN_AUDIT_DS (g_object_new (open_audit_ds_get_type (), NULL));
+
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (a);
+
+       priv->commons = commons;
+
+       error = NULL;
+       gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile,
+                                          g_strsplit ("w_open_audit_datasource", "|", -1),
+                                          &error);
+       if (error != NULL)
+               {
+                       g_warning ("Errore: %s.", error->message);
+                       return NULL;
+               }
+
+       priv->w = GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_open_audit_datasource"));
+
+       g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button1"),
+                         "clicked", G_CALLBACK (open_audit_ds_on_btn_cancel_clicked), (gpointer *)a);
+       g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button2"),
+                         "clicked", G_CALLBACK (open_audit_ds_on_btn_open_clicked), (gpointer *)a);
+
+       /* creating login widget */
+       priv->wlogin = gdaui_login_new (NULL);
+
+       g_object_get (G_OBJECT (priv->wlogin), "mode", &mode, NULL);
+       mode |= GDA_UI_LOGIN_HIDE_DSN_SELECTION_MODE;
+       gdaui_login_set_mode (GDAUI_LOGIN (priv->wlogin), mode);
+
+       g_signal_connect (G_OBJECT (priv->wlogin), "changed",
+                         G_CALLBACK (open_audit_ds_on_wlogin_changed), (gpointer *)a);
+
+       gtk_box_pack_start (GTK_BOX (gtk_builder_get_object (priv->commons->gtkbuilder, "vbox2")),
+                           priv->wlogin, TRUE, TRUE, 0);
+       gtk_box_reorder_child (GTK_BOX (gtk_builder_get_object (priv->commons->gtkbuilder, "vbox2")),
+                              priv->wlogin, 0);
+
+       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button2")), FALSE);
+
+       return a;
+}
+
+/**
+ * open_audit_ds_get_widget:
+ * @open_audit_ds:
+ *
+ */
+GtkWidget
+*open_audit_ds_get_widget (OpenAuditDS *open_audit_ds)
+{
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (open_audit_ds);
+
+       return priv->w;
+}
+
+/* PRIVATE */
+static void
+open_audit_ds_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+       OpenAuditDS *open_audit_ds = OPEN_AUDIT_DS (object);
+
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (open_audit_ds);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+static void
+open_audit_ds_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+       OpenAuditDS *open_audit_ds = OPEN_AUDIT_DS (object);
+
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (open_audit_ds);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+/* CALLBACK */
+static void
+open_audit_ds_on_wlogin_changed (GdauiLogin *gdauilogin,
+                                 gboolean arg1,
+                                 gpointer user_data)
+{
+       OpenAuditDS *open_audit_ds = (OpenAuditDS *)user_data;
+
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (open_audit_ds);
+
+       gboolean is_valid;
+
+       g_object_get (G_OBJECT (priv->wlogin), "valid", &is_valid, NULL);
+       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "button2")),
+                                 is_valid);
+}
+
+static void
+open_audit_ds_on_btn_cancel_clicked (GtkButton *button,
+                                     gpointer user_data)
+{
+       OpenAuditDS *open_audit_ds = (OpenAuditDS *)user_data;
+
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (open_audit_ds);
+
+       gtk_widget_destroy (priv->w);
+}
+
+static void
+open_audit_ds_on_btn_open_clicked (GtkButton *button,
+                                   gpointer user_data)
+{
+       OpenAuditDS *open_audit_ds = (OpenAuditDS *)user_data;
+       OpenAuditDSPrivate *priv = OPEN_AUDIT_DS_GET_PRIVATE (open_audit_ds);
+       OpenAuditDSClass *klass = OPEN_AUDIT_DS_GET_CLASS (open_audit_ds);
+
+       gchar *cncstring;
+
+       const GdaDsnInfo *info;
+       info = gdaui_login_get_connection_information (GDAUI_LOGIN (priv->wlogin));
+
+       cncstring = g_strconcat (info->provider, "://",
+                                (info->auth_string != NULL ? g_strdup_printf ("%s;", info->auth_string) : ""),
+                                info->cnc_string,
+                                NULL);
+
+       g_signal_emit (open_audit_ds, klass->opened_signal_id, 0, cncstring);
+
+       gtk_widget_destroy (priv->w);
+}
diff --git a/src/openauditds.h b/src/openauditds.h
new file mode 100644 (file)
index 0000000..dced370
--- /dev/null
@@ -0,0 +1,65 @@
+/* 
+ * Copyright (C) 2010-2011 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
+ *
+ */
+
+#ifndef __OPEN_AUDIT_DS_H__
+#define __OPEN_AUDIT_DS_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+#include <gtk/gtk.h>
+
+#include "commons.h"
+
+G_BEGIN_DECLS
+
+
+#define TYPE_OPEN_AUDIT_DS                 (open_audit_ds_get_type ())
+#define OPEN_AUDIT_DS(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_OPEN_AUDIT_DS, OpenAuditDS))
+#define OPEN_AUDIT_DS_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_OPEN_AUDIT_DS, OpenAuditDSClass))
+#define IS_OPEN_AUDIT_DS(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_OPEN_AUDIT_DS))
+#define IS_OPEN_AUDIT_DS_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_OPEN_AUDIT_DS))
+#define OPEN_AUDIT_DS_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_OPEN_AUDIT_DS, OpenAuditDSClass))
+
+
+typedef struct _OpenAuditDS OpenAuditDS;
+typedef struct _OpenAuditDSClass OpenAuditDSClass;
+
+struct _OpenAuditDS
+       {
+               GObject parent;
+       };
+
+struct _OpenAuditDSClass
+       {
+               GObjectClass parent_class;
+
+               guint opened_signal_id;
+       };
+
+GType open_audit_ds_get_type (void) G_GNUC_CONST;
+
+OpenAuditDS *open_audit_ds_new (Commons *commons);
+
+GtkWidget *open_audit_ds_get_widget (OpenAuditDS *open_audit_ds);
+
+
+G_END_DECLS
+
+#endif /* __OPEN_AUDIT_DS_H__ */