]> saetta.ns0.it Git - zakconfi/gui/commitdiff
Initial import master gtk2 v0.0.2
authorroot <root@saetta.homelinux.org>
Wed, 20 May 2009 14:48:43 +0000 (16:48 +0200)
committerroot <root@saetta.homelinux.org>
Wed, 20 May 2009 14:48:43 +0000 (16:48 +0200)
20 files changed:
.in [new file with mode: 0644]
AUTHORS [new file with mode: 0644]
ChangeLog [new file with mode: 0644]
Makefile.am [new file with mode: 0644]
NEWS [new file with mode: 0644]
README [new file with mode: 0644]
TODO [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/gconfi/Makefile.am [new file with mode: 0644]
data/gconfi/glade/Makefile.am [new file with mode: 0644]
data/gconfi/glade/gconfi.glade [new file with mode: 0644]
schema_examples/config1.xml [new file with mode: 0644]
schema_examples/config2.xml [new file with mode: 0644]
schema_examples/gconfi.dtd [new file with mode: 0644]
schema_examples/key2.xml [new file with mode: 0644]
schema_examples/test.xml [new file with mode: 0644]
src/Makefile.am [new file with mode: 0644]
src/main.c [new file with mode: 0644]

diff --git a/.in b/.in
new file mode 100644 (file)
index 0000000..0d1e77c
--- /dev/null
+++ b/.in
@@ -0,0 +1,22 @@
+/* .in.  Generated from configure.ac by autoheader.  */
+
+/* Name of package */
+#undef PACKAGE
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
+
+/* Version number of package */
+#undef VERSION
diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..948556f
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1 @@
+Andrea Zagli <azagli@inwind.it>
diff --git a/ChangeLog b/ChangeLog
new file mode 100644 (file)
index 0000000..d47d1e4
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,5 @@
+2006-08-18 Andrea Zagli <azagli@inwind.it>
+
+       * configure.ac:
+       * src/Makefile.am: some improvement
+       * src/main.c: bugfixes on load_xml_configuration_schema()
diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..b37c6a6
--- /dev/null
@@ -0,0 +1,3 @@
+SUBDIRS = src data
+
+EXTRA_DIST = schema_examples
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..91bbd34
--- /dev/null
+++ b/README
@@ -0,0 +1,22 @@
+Configurations' database can be created with this sql commands
+
+CREATE TABLE configs (
+    id integer NOT NULL,
+    name varchar(100) DEFAULT '',
+    description varchar(255) DEFAULT '',
+    CONSTRAINT configs_pkey PRIMARY KEY (id),
+    CONSTRAINT name_unique UNIQUE (name)
+);
+
+CREATE TABLE "values" (
+    id_configs integer NOT NULL,
+    id integer NOT NULL,
+    id_parent integer,
+    "key" varchar(50) DEFAULT '',
+    value text DEFAULT '',
+    description varchar(255) DEFAULT '',
+    CONSTRAINT values_pkey PRIMARY KEY (id_configs, id),
+    CONSTRAINT values_name_unique UNIQUE (id_configs, id_parent, "key")
+);
+
+or from gConfi
diff --git a/TODO b/TODO
new file mode 100644 (file)
index 0000000..9ef0beb
--- /dev/null
+++ b/TODO
@@ -0,0 +1,5 @@
+- recent provider/connection string
+- gettext support
+- expand/shrink all; expand/shrink node
+- toolbar
+- copy/paste
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..6b2c713
--- /dev/null
@@ -0,0 +1,70 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
+PROJECT=gconfi
+TEST_TYPE=-f
+FILE=configure.ac
+
+DIE=0
+
+(autoconf --version) < /dev/null > /dev/null 2>&1 || {
+       echo
+       echo "You must have autoconf installed to compile $PROJECT."
+       echo "Install the appropriate package for your distribution,"
+       echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
+       DIE=1
+}
+
+if automake --version < /dev/null > /dev/null 2>&1 ; then
+    AUTOMAKE=automake
+    ACLOCAL=aclocal
+else
+       echo
+       echo "You must have automake 1.7.x installed to compile $PROJECT."
+       echo "Install the appropriate package for your distribution,"
+       echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
+       DIE=1
+fi
+
+if test "$DIE" -eq 1; then
+       exit 1
+fi
+
+test $TEST_TYPE $FILE || {
+       echo "You must run this script in the top-level $PROJECT directory"
+       exit 1
+}
+
+if test -z "$AUTOGEN_SUBDIR_MODE"; then
+        if test -z "$*"; then
+                echo "I am going to run ./configure with no arguments - if you wish "
+                echo "to pass any to it, please specify them on the $0 command line."
+        fi
+fi
+
+rm -rf autom4te.cache
+
+# README and INSTALL are required by automake, but may be deleted by clean
+# up rules. to get automake to work, simply touch these here, they will be
+# regenerated from their corresponding *.in files by ./configure anyway.
+touch README INSTALL
+
+$ACLOCAL || exit $?
+
+autoheader || exit $?
+
+$AUTOMAKE --add-missing || exit $?
+autoconf || exit $?
+cd $ORIGDIR || exit $?
+
+if test -z "$AUTOGEN_SUBDIR_MODE"; then
+        $srcdir/configure --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
+
+        echo 
+        echo "Now type 'make' to compile $PROJECT."
+fi
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..eb5a9cb
--- /dev/null
@@ -0,0 +1,39 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ(2.59)
+AC_INIT([gConfi], [0.0.2], [azagli@inwind.it])
+AC_CONFIG_SRCDIR([src/main.c])
+
+AM_INIT_AUTOMAKE
+AM_MAINTAINER_MODE
+
+AC_CANONICAL_SYSTEM
+
+# Checks for programs.
+AC_PROG_CC
+
+# Checks for libraries.
+PKG_CHECK_MODULES(GCONFI, [gtk+-2.0 >= 2.8.0
+                           libglade-2.0 >= 2.5.0
+                           libxml-2.0 >= 2.6.0
+                           libconfi >= 0.0.2])
+
+AC_SUBST(GCONFI_CFLAGS)
+AC_SUBST(GCONFI_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/gconfi/Makefile
+  data/gconfi/glade/Makefile
+])
+
+AC_OUTPUT
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644 (file)
index 0000000..36537bb
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = gconfi
diff --git a/data/gconfi/Makefile.am b/data/gconfi/Makefile.am
new file mode 100644 (file)
index 0000000..21cc77b
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = glade
diff --git a/data/gconfi/glade/Makefile.am b/data/gconfi/glade/Makefile.am
new file mode 100644 (file)
index 0000000..86969b6
--- /dev/null
@@ -0,0 +1,5 @@
+gladedir = $(datadir)/gconfi/glade
+
+glade_DATA = gconfi.glade
+
+EXTRA_DIST = $(glade_DATA)
diff --git a/data/gconfi/glade/gconfi.glade b/data/gconfi/glade/gconfi.glade
new file mode 100644 (file)
index 0000000..a18c28e
--- /dev/null
@@ -0,0 +1,1554 @@
+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
+<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
+
+<glade-interface>
+
+<widget class="GtkWindow" id="wMain">
+  <property name="border_width">1</property>
+  <property name="visible">True</property>
+  <property name="title" translatable="yes">gConfi</property>
+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
+  <property name="window_position">GTK_WIN_POS_NONE</property>
+  <property name="modal">False</property>
+  <property name="default_width">600</property>
+  <property name="default_height">400</property>
+  <property name="resizable">True</property>
+  <property name="destroy_with_parent">False</property>
+  <property name="icon_name"></property>
+  <property name="decorated">True</property>
+  <property name="skip_taskbar_hint">False</property>
+  <property name="skip_pager_hint">False</property>
+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
+  <property name="focus_on_map">True</property>
+  <property name="urgency_hint">False</property>
+  <signal name="delete_event" handler="gtk_main_quit" last_modification_time="Sun, 09 Apr 2006 14:58:54 GMT"/>
+
+  <child>
+    <widget class="GtkVBox" id="vbox1">
+      <property name="visible">True</property>
+      <property name="homogeneous">False</property>
+      <property name="spacing">0</property>
+
+      <child>
+       <widget class="GtkMenuBar" id="menubar1">
+         <property name="visible">True</property>
+         <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
+         <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
+
+         <child>
+           <widget class="GtkMenuItem" id="mnuDb">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">_Database</property>
+             <property name="use_underline">True</property>
+
+             <child>
+               <widget class="GtkMenu" id="mnuDb_menu">
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuDbNew">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-new</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuDbNew_activate" last_modification_time="Sun, 09 Apr 2006 14:30:13 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuDbOpen">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-open</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuDbOpen_activate" last_modification_time="Sun, 09 Apr 2006 14:29:24 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuDbClose">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-close</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuDbClose_activate" last_modification_time="Sun, 16 Apr 2006 15:24:16 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkSeparatorMenuItem" id="separatormenuitem1">
+                     <property name="visible">True</property>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuDbRefresh">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-refresh</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuDbRefresh_activate" last_modification_time="Fri, 28 Jul 2006 09:13:38 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkSeparatorMenuItem" id="separatore1">
+                     <property name="visible">True</property>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuDbQuit">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-quit</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="gtk_main_quit" last_modification_time="Sun, 09 Apr 2006 15:02:36 GMT"/>
+                   </widget>
+                 </child>
+               </widget>
+             </child>
+           </widget>
+         </child>
+
+         <child>
+           <widget class="GtkMenuItem" id="mnuConfigs">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">_Configuration</property>
+             <property name="use_underline">True</property>
+
+             <child>
+               <widget class="GtkMenu" id="mnuConfigs_menu">
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuConfigsNew">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-new</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuConfigsNew_activate" last_modification_time="Sun, 16 Apr 2006 08:23:04 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkMenuItem" id="mnuConfigsNewFromSchema">
+                     <property name="visible">True</property>
+                     <property name="label" translatable="yes">New from _schema</property>
+                     <property name="use_underline">True</property>
+                     <signal name="activate" handler="on_mnuConfigsNewFromSchema_activate" last_modification_time="Mon, 24 Apr 2006 17:17:34 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuConfigsEdit">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-edit</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuConfigsEdit_activate" last_modification_time="Mon, 17 Apr 2006 06:42:58 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuConfigsDelete">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-delete</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuConfigsDelete_activate" last_modification_time="Sun, 16 Apr 2006 08:23:12 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuConfigsExport">
+                     <property name="visible">True</property>
+                     <property name="label" translatable="yes">E_xport</property>
+                     <property name="use_underline">True</property>
+                     <signal name="activate" handler="on_mnuConfigsExport_activate" last_modification_time="Mon, 24 Apr 2006 13:50:03 GMT"/>
+
+                     <child internal-child="image">
+                       <widget class="GtkImage" id="image2">
+                         <property name="visible">True</property>
+                         <property name="stock">gtk-save-as</property>
+                         <property name="icon_size">1</property>
+                         <property name="xalign">0.5</property>
+                         <property name="yalign">0.5</property>
+                         <property name="xpad">0</property>
+                         <property name="ypad">0</property>
+                       </widget>
+                     </child>
+                   </widget>
+                 </child>
+               </widget>
+             </child>
+           </widget>
+         </child>
+
+         <child>
+           <widget class="GtkMenuItem" id="mnuKeys">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">_Key</property>
+             <property name="use_underline">True</property>
+
+             <child>
+               <widget class="GtkMenu" id="mnuKeys_menu">
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuKeysNew">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-new</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuKeysNew_activate" last_modification_time="Mon, 17 Apr 2006 06:43:49 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkMenuItem" id="mnuKeysNewFromSchema">
+                     <property name="visible">True</property>
+                     <property name="label" translatable="yes">New from _schema</property>
+                     <property name="use_underline">True</property>
+                     <signal name="activate" handler="on_mnuKeysNewFromSchema_activate" last_modification_time="Sat, 29 Apr 2006 09:47:02 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuKeysEdit">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-edit</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuKeysEdit_activate" last_modification_time="Mon, 17 Apr 2006 06:43:49 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuKeysDelete">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-delete</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuKeysDelete_activate" last_modification_time="Mon, 17 Apr 2006 06:43:49 GMT"/>
+                   </widget>
+                 </child>
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuKeysExport">
+                     <property name="visible">True</property>
+                     <property name="label" translatable="yes">E_xport</property>
+                     <property name="use_underline">True</property>
+                     <signal name="activate" handler="on_mnuKeysExport_activate" last_modification_time="Sat, 29 Jul 2006 07:39:01 GMT"/>
+
+                     <child internal-child="image">
+                       <widget class="GtkImage" id="image3">
+                         <property name="visible">True</property>
+                         <property name="stock">gtk-save-as</property>
+                         <property name="icon_size">1</property>
+                         <property name="xalign">0.5</property>
+                         <property name="yalign">0.5</property>
+                         <property name="xpad">0</property>
+                         <property name="ypad">0</property>
+                       </widget>
+                     </child>
+                   </widget>
+                 </child>
+               </widget>
+             </child>
+           </widget>
+         </child>
+
+         <child>
+           <widget class="GtkMenuItem" id="mnuHelp">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">_Help</property>
+             <property name="use_underline">True</property>
+
+             <child>
+               <widget class="GtkMenu" id="mnuHelp_menu">
+
+                 <child>
+                   <widget class="GtkImageMenuItem" id="mnuHelpAabout">
+                     <property name="visible">True</property>
+                     <property name="label">gtk-about</property>
+                     <property name="use_stock">True</property>
+                     <signal name="activate" handler="on_mnuHelpAbout_activate" last_modification_time="Sun, 09 Apr 2006 14:30:37 GMT"/>
+                   </widget>
+                 </child>
+               </widget>
+             </child>
+           </widget>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">False</property>
+         <property name="fill">False</property>
+       </packing>
+      </child>
+
+      <child>
+       <widget class="GtkScrolledWindow" id="scrolledwindow1">
+         <property name="visible">True</property>
+         <property name="can_focus">True</property>
+         <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
+         <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
+         <property name="shadow_type">GTK_SHADOW_IN</property>
+         <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
+
+         <child>
+           <widget class="GtkTreeView" id="trFolders">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="headers_visible">True</property>
+             <property name="rules_hint">False</property>
+             <property name="reorderable">False</property>
+             <property name="enable_search">True</property>
+             <property name="fixed_height_mode">False</property>
+             <property name="hover_selection">False</property>
+             <property name="hover_expand">False</property>
+             <signal name="button_press_event" handler="on_trFolders_button_press_event" last_modification_time="Sat, 22 Apr 2006 13:47:01 GMT"/>
+             <signal name="popup_menu" handler="on_trFolders_popup_menu" last_modification_time="Sat, 22 Apr 2006 13:47:11 GMT"/>
+             <signal name="row_activated" handler="on_trFolders_row_activated" last_modification_time="Sun, 10 Sep 2006 07:39:11 GMT"/>
+           </widget>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">True</property>
+         <property name="fill">True</property>
+       </packing>
+      </child>
+
+      <child>
+       <widget class="GtkStatusbar" id="stbar">
+         <property name="visible">True</property>
+         <property name="has_resize_grip">True</property>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">False</property>
+         <property name="fill">False</property>
+       </packing>
+      </child>
+    </widget>
+  </child>
+</widget>
+
+<widget class="GtkAboutDialog" id="diagAbout">
+  <property name="visible">True</property>
+  <property name="destroy_with_parent">False</property>
+  <property name="name" translatable="yes">gConfi</property>
+  <property name="copyright" translatable="yes">Copyright (C) 2005 Andrea Zagli</property>
+  <property name="license" translatable="yes">gConfi 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.
+
+gConfi 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.
+</property>
+  <property name="wrap_license">False</property>
+  <property name="authors">Andrea Zagli &lt;azagli@inwind.it&gt;</property>
+  <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
+</widget>
+
+<widget class="GtkDialog" id="diagOpenDbCfg">
+  <property name="visible">True</property>
+  <property name="title" translatable="yes">Open - gConfi</property>
+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
+  <property name="window_position">GTK_WIN_POS_NONE</property>
+  <property name="modal">True</property>
+  <property name="default_width">300</property>
+  <property name="resizable">True</property>
+  <property name="destroy_with_parent">False</property>
+  <property name="decorated">True</property>
+  <property name="skip_taskbar_hint">False</property>
+  <property name="skip_pager_hint">False</property>
+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
+  <property name="focus_on_map">True</property>
+  <property name="urgency_hint">False</property>
+  <property name="has_separator">True</property>
+  <signal name="response" handler="gtk_widget_hide" last_modification_time="Sun, 02 Oct 2005 13:27:30 GMT"/>
+
+  <child internal-child="vbox">
+    <widget class="GtkVBox" id="dialog-vbox1">
+      <property name="visible">True</property>
+      <property name="homogeneous">False</property>
+      <property name="spacing">0</property>
+
+      <child internal-child="action_area">
+       <widget class="GtkHButtonBox" id="dialog-action_area1">
+         <property name="visible">True</property>
+         <property name="layout_style">GTK_BUTTONBOX_END</property>
+
+         <child>
+           <widget class="GtkButton" id="cancelbutton1">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-cancel</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-6</property>
+           </widget>
+         </child>
+
+         <child>
+           <widget class="GtkButton" id="okbutton1">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-ok</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-5</property>
+           </widget>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">False</property>
+         <property name="fill">True</property>
+         <property name="pack_type">GTK_PACK_END</property>
+       </packing>
+      </child>
+
+      <child>
+       <widget class="GtkTable" id="table1">
+         <property name="border_width">3</property>
+         <property name="visible">True</property>
+         <property name="n_rows">3</property>
+         <property name="n_columns">2</property>
+         <property name="homogeneous">False</property>
+         <property name="row_spacing">3</property>
+         <property name="column_spacing">3</property>
+
+         <child>
+           <widget class="GtkLabel" id="label1">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Provider ID</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label2">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Connection String</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">1</property>
+             <property name="bottom_attach">2</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkComboBox" id="cbProvider">
+             <property name="visible">True</property>
+             <property name="add_tearoffs">False</property>
+             <property name="focus_on_click">True</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="y_options">fill</property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtCncString">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <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"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label15">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Configurations Filter</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtConfigsFilter">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">True</property>
+         <property name="fill">True</property>
+       </packing>
+      </child>
+    </widget>
+  </child>
+</widget>
+
+<widget class="GtkDialog" id="wConfiguration">
+  <property name="visible">True</property>
+  <property name="title" translatable="yes">Configuration - gConfi</property>
+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
+  <property name="window_position">GTK_WIN_POS_NONE</property>
+  <property name="modal">True</property>
+  <property name="resizable">True</property>
+  <property name="destroy_with_parent">False</property>
+  <property name="decorated">True</property>
+  <property name="skip_taskbar_hint">False</property>
+  <property name="skip_pager_hint">False</property>
+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
+  <property name="focus_on_map">True</property>
+  <property name="urgency_hint">False</property>
+  <property name="has_separator">True</property>
+
+  <child internal-child="vbox">
+    <widget class="GtkVBox" id="dialog-vbox2">
+      <property name="visible">True</property>
+      <property name="homogeneous">False</property>
+      <property name="spacing">0</property>
+
+      <child internal-child="action_area">
+       <widget class="GtkHButtonBox" id="dialog-action_area2">
+         <property name="visible">True</property>
+         <property name="layout_style">GTK_BUTTONBOX_END</property>
+
+         <child>
+           <widget class="GtkButton" id="btnCancel">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-cancel</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-6</property>
+           </widget>
+         </child>
+
+         <child>
+           <widget class="GtkButton" id="btnOk">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-ok</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-5</property>
+           </widget>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">False</property>
+         <property name="fill">True</property>
+         <property name="pack_type">GTK_PACK_END</property>
+       </packing>
+      </child>
+
+      <child>
+       <widget class="GtkTable" id="table2">
+         <property name="border_width">3</property>
+         <property name="visible">True</property>
+         <property name="n_rows">3</property>
+         <property name="n_columns">2</property>
+         <property name="homogeneous">False</property>
+         <property name="row_spacing">3</property>
+         <property name="column_spacing">3</property>
+
+         <child>
+           <widget class="GtkLabel" id="label3">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">ID</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label4">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Name</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">1</property>
+             <property name="bottom_attach">2</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label5">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Description</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtID">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">False</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtName">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <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"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkScrolledWindow" id="scrolledwindow2">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
+             <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
+             <property name="shadow_type">GTK_SHADOW_IN</property>
+             <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
+
+             <child>
+               <widget class="GtkTextView" id="txtvDescription">
+                 <property name="visible">True</property>
+                 <property name="can_focus">True</property>
+                 <property name="editable">True</property>
+                 <property name="overwrite">False</property>
+                 <property name="accepts_tab">True</property>
+                 <property name="justification">GTK_JUSTIFY_LEFT</property>
+                 <property name="wrap_mode">GTK_WRAP_WORD</property>
+                 <property name="cursor_visible">True</property>
+                 <property name="pixels_above_lines">0</property>
+                 <property name="pixels_below_lines">0</property>
+                 <property name="pixels_inside_wrap">0</property>
+                 <property name="left_margin">0</property>
+                 <property name="right_margin">0</property>
+                 <property name="indent">0</property>
+                 <property name="text" translatable="yes"></property>
+               </widget>
+             </child>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="x_options">fill</property>
+           </packing>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">True</property>
+         <property name="fill">True</property>
+       </packing>
+      </child>
+    </widget>
+  </child>
+</widget>
+
+<widget class="GtkDialog" id="wKey">
+  <property name="visible">True</property>
+  <property name="title" translatable="yes">Key - gConfi</property>
+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
+  <property name="window_position">GTK_WIN_POS_NONE</property>
+  <property name="modal">True</property>
+  <property name="resizable">True</property>
+  <property name="destroy_with_parent">False</property>
+  <property name="decorated">True</property>
+  <property name="skip_taskbar_hint">False</property>
+  <property name="skip_pager_hint">False</property>
+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
+  <property name="focus_on_map">True</property>
+  <property name="urgency_hint">False</property>
+  <property name="has_separator">True</property>
+
+  <child internal-child="vbox">
+    <widget class="GtkVBox" id="dialog-vbox3">
+      <property name="visible">True</property>
+      <property name="homogeneous">False</property>
+      <property name="spacing">0</property>
+
+      <child internal-child="action_area">
+       <widget class="GtkHButtonBox" id="dialog-action_area3">
+         <property name="visible">True</property>
+         <property name="layout_style">GTK_BUTTONBOX_END</property>
+
+         <child>
+           <widget class="GtkButton" id="btnCancel">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-cancel</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-6</property>
+           </widget>
+         </child>
+
+         <child>
+           <widget class="GtkButton" id="btnOk">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-ok</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-5</property>
+           </widget>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">False</property>
+         <property name="fill">True</property>
+         <property name="pack_type">GTK_PACK_END</property>
+       </packing>
+      </child>
+
+      <child>
+       <widget class="GtkTable" id="table3">
+         <property name="border_width">3</property>
+         <property name="visible">True</property>
+         <property name="n_rows">6</property>
+         <property name="n_columns">2</property>
+         <property name="homogeneous">False</property>
+         <property name="row_spacing">3</property>
+         <property name="column_spacing">3</property>
+
+         <child>
+           <widget class="GtkLabel" id="label6">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Configuration</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label7">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">ID</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">1</property>
+             <property name="bottom_attach">2</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label8">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Parent</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtID">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">False</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <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"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label9">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Name</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">3</property>
+             <property name="bottom_attach">4</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtName">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">3</property>
+             <property name="bottom_attach">4</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label10">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Value</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">4</property>
+             <property name="bottom_attach">5</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtValue">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">4</property>
+             <property name="bottom_attach">5</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label11">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Description</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">5</property>
+             <property name="bottom_attach">6</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkScrolledWindow" id="scrolledwindow3">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="hscrollbar_policy">GTK_POLICY_ALWAYS</property>
+             <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
+             <property name="shadow_type">GTK_SHADOW_IN</property>
+             <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
+
+             <child>
+               <widget class="GtkTextView" id="txtvDescription">
+                 <property name="visible">True</property>
+                 <property name="can_focus">True</property>
+                 <property name="editable">True</property>
+                 <property name="overwrite">False</property>
+                 <property name="accepts_tab">True</property>
+                 <property name="justification">GTK_JUSTIFY_LEFT</property>
+                 <property name="wrap_mode">GTK_WRAP_WORD</property>
+                 <property name="cursor_visible">True</property>
+                 <property name="pixels_above_lines">0</property>
+                 <property name="pixels_below_lines">0</property>
+                 <property name="pixels_inside_wrap">0</property>
+                 <property name="left_margin">0</property>
+                 <property name="right_margin">0</property>
+                 <property name="indent">0</property>
+                 <property name="text" translatable="yes"></property>
+               </widget>
+             </child>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">5</property>
+             <property name="bottom_attach">6</property>
+             <property name="x_options">fill</property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkHBox" id="hbox1">
+             <property name="visible">True</property>
+             <property name="homogeneous">False</property>
+             <property name="spacing">0</property>
+
+             <child>
+               <widget class="GtkEntry" id="txtIDParent">
+                 <property name="visible">True</property>
+                 <property name="can_focus">True</property>
+                 <property name="editable">False</property>
+                 <property name="visibility">True</property>
+                 <property name="max_length">0</property>
+                 <property name="text" translatable="yes"></property>
+                 <property name="has_frame">True</property>
+                 <property name="invisible_char">*</property>
+                 <property name="activates_default">False</property>
+               </widget>
+               <packing>
+                 <property name="padding">0</property>
+                 <property name="expand">False</property>
+                 <property name="fill">False</property>
+               </packing>
+             </child>
+
+             <child>
+               <widget class="GtkEntry" id="txtParent">
+                 <property name="visible">True</property>
+                 <property name="can_focus">True</property>
+                 <property name="editable">False</property>
+                 <property name="visibility">True</property>
+                 <property name="max_length">0</property>
+                 <property name="text" translatable="yes"></property>
+                 <property name="has_frame">True</property>
+                 <property name="invisible_char">*</property>
+                 <property name="activates_default">False</property>
+               </widget>
+               <packing>
+                 <property name="padding">0</property>
+                 <property name="expand">True</property>
+                 <property name="fill">True</property>
+               </packing>
+             </child>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="x_options">fill</property>
+             <property name="y_options">fill</property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkHBox" id="hbox2">
+             <property name="visible">True</property>
+             <property name="homogeneous">False</property>
+             <property name="spacing">0</property>
+
+             <child>
+               <widget class="GtkEntry" id="txtIDConfig">
+                 <property name="visible">True</property>
+                 <property name="can_focus">True</property>
+                 <property name="editable">False</property>
+                 <property name="visibility">True</property>
+                 <property name="max_length">0</property>
+                 <property name="text" translatable="yes"></property>
+                 <property name="has_frame">True</property>
+                 <property name="invisible_char">*</property>
+                 <property name="activates_default">False</property>
+               </widget>
+               <packing>
+                 <property name="padding">0</property>
+                 <property name="expand">False</property>
+                 <property name="fill">False</property>
+               </packing>
+             </child>
+
+             <child>
+               <widget class="GtkEntry" id="txtConfig">
+                 <property name="visible">True</property>
+                 <property name="can_focus">True</property>
+                 <property name="editable">False</property>
+                 <property name="visibility">True</property>
+                 <property name="max_length">0</property>
+                 <property name="text" translatable="yes"></property>
+                 <property name="has_frame">True</property>
+                 <property name="invisible_char">*</property>
+                 <property name="activates_default">False</property>
+               </widget>
+               <packing>
+                 <property name="padding">0</property>
+                 <property name="expand">True</property>
+                 <property name="fill">True</property>
+               </packing>
+             </child>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="x_options">fill</property>
+             <property name="y_options">fill</property>
+           </packing>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">True</property>
+         <property name="fill">True</property>
+       </packing>
+      </child>
+    </widget>
+  </child>
+</widget>
+
+<widget class="GtkDialog" id="diagNewDbCfg">
+  <property name="visible">True</property>
+  <property name="title" translatable="yes">New - gConfi</property>
+  <property name="type">GTK_WINDOW_TOPLEVEL</property>
+  <property name="window_position">GTK_WIN_POS_NONE</property>
+  <property name="modal">True</property>
+  <property name="default_width">300</property>
+  <property name="resizable">True</property>
+  <property name="destroy_with_parent">False</property>
+  <property name="decorated">True</property>
+  <property name="skip_taskbar_hint">False</property>
+  <property name="skip_pager_hint">False</property>
+  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
+  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
+  <property name="focus_on_map">True</property>
+  <property name="urgency_hint">False</property>
+  <property name="has_separator">True</property>
+  <signal name="response" handler="gtk_widget_hide" last_modification_time="Sun, 02 Oct 2005 13:27:30 GMT"/>
+
+  <child internal-child="vbox">
+    <widget class="GtkVBox" id="vbox2">
+      <property name="visible">True</property>
+      <property name="homogeneous">False</property>
+      <property name="spacing">0</property>
+
+      <child internal-child="action_area">
+       <widget class="GtkHButtonBox" id="hbuttonbox1">
+         <property name="visible">True</property>
+         <property name="layout_style">GTK_BUTTONBOX_END</property>
+
+         <child>
+           <widget class="GtkButton" id="button1">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-cancel</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-6</property>
+           </widget>
+         </child>
+
+         <child>
+           <widget class="GtkButton" id="button2">
+             <property name="visible">True</property>
+             <property name="can_default">True</property>
+             <property name="can_focus">True</property>
+             <property name="label">gtk-ok</property>
+             <property name="use_stock">True</property>
+             <property name="relief">GTK_RELIEF_NORMAL</property>
+             <property name="focus_on_click">True</property>
+             <property name="response_id">-5</property>
+           </widget>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">False</property>
+         <property name="fill">True</property>
+         <property name="pack_type">GTK_PACK_END</property>
+       </packing>
+      </child>
+
+      <child>
+       <widget class="GtkTable" id="table4">
+         <property name="border_width">3</property>
+         <property name="visible">True</property>
+         <property name="n_rows">4</property>
+         <property name="n_columns">2</property>
+         <property name="homogeneous">False</property>
+         <property name="row_spacing">3</property>
+         <property name="column_spacing">3</property>
+
+         <child>
+           <widget class="GtkLabel" id="label12">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Provider ID</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label13">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">1° Connection String</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">1</property>
+             <property name="bottom_attach">2</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkComboBox" id="cbProvider">
+             <property name="visible">True</property>
+             <property name="add_tearoffs">False</property>
+             <property name="focus_on_click">True</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">0</property>
+             <property name="bottom_attach">1</property>
+             <property name="y_options">fill</property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtCncString1">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <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"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label14">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">Database Name</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtDbName">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">2</property>
+             <property name="bottom_attach">3</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkLabel" id="label16">
+             <property name="visible">True</property>
+             <property name="label" translatable="yes">2° Connection String</property>
+             <property name="use_underline">False</property>
+             <property name="use_markup">False</property>
+             <property name="justify">GTK_JUSTIFY_LEFT</property>
+             <property name="wrap">False</property>
+             <property name="selectable">False</property>
+             <property name="xalign">0</property>
+             <property name="yalign">0.5</property>
+             <property name="xpad">0</property>
+             <property name="ypad">0</property>
+             <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+             <property name="width_chars">-1</property>
+             <property name="single_line_mode">False</property>
+             <property name="angle">0</property>
+           </widget>
+           <packing>
+             <property name="left_attach">0</property>
+             <property name="right_attach">1</property>
+             <property name="top_attach">3</property>
+             <property name="bottom_attach">4</property>
+             <property name="x_options">fill</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+
+         <child>
+           <widget class="GtkEntry" id="txtCncString2">
+             <property name="visible">True</property>
+             <property name="can_focus">True</property>
+             <property name="editable">True</property>
+             <property name="visibility">True</property>
+             <property name="max_length">0</property>
+             <property name="text" translatable="yes"></property>
+             <property name="has_frame">True</property>
+             <property name="invisible_char">*</property>
+             <property name="activates_default">False</property>
+           </widget>
+           <packing>
+             <property name="left_attach">1</property>
+             <property name="right_attach">2</property>
+             <property name="top_attach">3</property>
+             <property name="bottom_attach">4</property>
+             <property name="y_options"></property>
+           </packing>
+         </child>
+       </widget>
+       <packing>
+         <property name="padding">0</property>
+         <property name="expand">True</property>
+         <property name="fill">True</property>
+       </packing>
+      </child>
+    </widget>
+  </child>
+</widget>
+
+</glade-interface>
diff --git a/schema_examples/config1.xml b/schema_examples/config1.xml
new file mode 100644 (file)
index 0000000..4c4f2b7
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+<gconfi-configuration xmlns:xi="http://www.w3.org/2001/XInclude">
+       <name>configuration1</name>
+       <description>the configuration description</description>
+
+       <gconfi-key>
+               <name>key1</name>
+               <description>key number 1</description>
+               <value>the value of the key1</value>
+
+               <gconfi-key>
+                       <name>key1-1</name>
+                       <description>another</description>
+               </gconfi-key>
+       </gconfi-key>
+
+       <xi:include href="key2.xml"/>
+</gconfi-configuration>
diff --git a/schema_examples/config2.xml b/schema_examples/config2.xml
new file mode 100644 (file)
index 0000000..f4ad05c
--- /dev/null
@@ -0,0 +1,16 @@
+<?xml version="1.0"?>
+<gconfi-configuration>
+       <name>configuration2</name>
+       <description>the configuration description number 2</description>
+
+       <gconfi-key>
+               <name>key2cfg2</name>
+               <description>key number 2 of confg 2</description>
+       </gconfi-key>
+
+       <gconfi-key>
+               <name>key1cfg2</name>
+               <description>key number 1 of configuration 2</description>
+               <value>key1cfg2 value string</value>
+       </gconfi-key>
+</gconfi-configuration>
diff --git a/schema_examples/gconfi.dtd b/schema_examples/gconfi.dtd
new file mode 100644 (file)
index 0000000..c64fa49
--- /dev/null
@@ -0,0 +1,9 @@
+<!ELEMENT gconfi (gconfi-configuration*)>
+
+<!ELEMENT gconfi-configuration (name, description?, gconfi-key*)>
+
+<!ELEMENT gconfi-key (name, description?, value?)>
+
+<!ELEMENT name (#PCDATA)>
+<!ELEMENT description (#PCDATA)>
+<!ELEMENT value (#PCDATA)>
diff --git a/schema_examples/key2.xml b/schema_examples/key2.xml
new file mode 100644 (file)
index 0000000..0000007
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version="1.0"?>
+<gconfi-key>
+       <name>key2</name>
+       <description>key number 2</description>
+       <value>no value</value>
+</gconfi-key>
diff --git a/schema_examples/test.xml b/schema_examples/test.xml
new file mode 100644 (file)
index 0000000..1e892c2
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version="1.0" ?>
+<gconfi xmlns:xi="http://www.w3.org/2001/XInclude">
+       <xi:include href="config1.xml"/>
+       <xi:include href="config2.xml"/>
+</gconfi>
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644 (file)
index 0000000..0b63e72
--- /dev/null
@@ -0,0 +1,11 @@
+gladedir = $(datadir)/gconfi/glade
+
+AM_CPPFLAGS = $(GCONFI_CFLAGS) \
+              -DGLADEDIR=\""$(gladedir)"\"
+
+LIBS = $(GCONFI_LIBS) \
+       -export-dynamic
+
+bin_PROGRAMS = gconfi
+
+gconfi_SOURCES = main.c
diff --git a/src/main.c b/src/main.c
new file mode 100644 (file)
index 0000000..ce25b13
--- /dev/null
@@ -0,0 +1,1449 @@
+/*
+ * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.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.
+ */
+
+#include <string.h>
+
+#include <gtk/gtk.h>
+#include <glade/glade.h>
+#include <libgda/libgda.h>
+#include <libxml/tree.h>
+#include <libxml/xinclude.h>
+#include <libxml/xpath.h>
+
+#include <libconfi.h>
+
+enum
+{
+       FOLDERS_COL_ID,
+       FOLDERS_COL_NAME,
+       FOLDERS_COL_VALUE,
+       FOLDERS_COL_DESCRIPTION,
+       FOLDERS_COL_OBJPTR,
+       FOLDERS_COLS
+};
+
+static GtkWidget *w,
+                 *trFolders,
+                 *mnuConfigs,
+                 *mnuConfigsEdit,
+                 *mnuKeys,
+                 *mnuKeysEdit,
+                 *mnuDbClose,
+                 *mnuDbRefresh,
+                 *stbar;
+
+static GtkTreeStore *storeFolders;
+
+static GtkTreeSelection *selFolders;
+
+static gchar *provider_id,
+             *cnc_string,
+             *filter;
+
+void on_mnuConfigsNew_activate (GtkMenuItem *menuitem, gpointer user_data);
+void on_mnuConfigsEdit_activate (GtkMenuItem *menuitem, gpointer user_data);
+void on_mnuConfigsDelete_activate (GtkMenuItem *menuitem, gpointer user_data);
+void on_mnuKeysNew_activate (GtkMenuItem *menuitem, gpointer user_data);
+void on_mnuKeysEdit_activate (GtkMenuItem *menuitem, gpointer user_data);
+void on_mnuKeysDelete_activate (GtkMenuItem *menuitem, gpointer user_data);
+
+/* PRIVATE */
+static gboolean
+create_trFolders ()
+{
+       GtkCellRenderer *renderer;
+       GtkTreeViewColumn *column;
+
+       storeFolders = gtk_tree_store_new (FOLDERS_COLS,
+                                          G_TYPE_INT,
+                                          G_TYPE_STRING,
+                                          G_TYPE_STRING,
+                                          G_TYPE_STRING,
+                                          G_TYPE_POINTER);
+
+       gtk_tree_view_set_model (GTK_TREE_VIEW (trFolders), GTK_TREE_MODEL (storeFolders));
+
+       renderer = gtk_cell_renderer_text_new ();
+       column = gtk_tree_view_column_new_with_attributes ("Name",
+                                                     renderer,
+                                                     "text", FOLDERS_COL_NAME,
+                                                     NULL);
+       gtk_tree_view_column_set_resizable (column, TRUE);
+       gtk_tree_view_append_column (GTK_TREE_VIEW (trFolders), column);
+
+       renderer = gtk_cell_renderer_text_new ();
+       column = gtk_tree_view_column_new_with_attributes ("Value",
+                                                     renderer,
+                                                     "text", FOLDERS_COL_VALUE,
+                                                     NULL);
+       gtk_tree_view_column_set_resizable (column, TRUE);
+       gtk_tree_view_append_column (GTK_TREE_VIEW (trFolders), column);
+
+       renderer = gtk_cell_renderer_text_new ();
+       column = gtk_tree_view_column_new_with_attributes ("Description",
+                                                     renderer,
+                                                     "text", FOLDERS_COL_DESCRIPTION,
+                                                     NULL);
+       gtk_tree_view_column_set_resizable (column, TRUE);
+       gtk_tree_view_append_column (GTK_TREE_VIEW (trFolders), column);
+
+       selFolders = gtk_tree_view_get_selection (GTK_TREE_VIEW (trFolders));
+
+       gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (storeFolders), FOLDERS_COL_NAME, GTK_SORT_ASCENDING);
+}
+
+static void
+fill_trFolders_Keys (GNode *node, GtkTreeIter parent)
+{
+       GtkTreeIter child;
+       ConfiKey *ck;
+
+       if (node == NULL) return;
+
+       node = node->children;
+       while (node != NULL)
+               {
+                       ck = (ConfiKey *)node->data;
+
+                       gtk_tree_store_append (storeFolders, &child, &parent);
+                       gtk_tree_store_set (storeFolders, &child,
+                                                                                                       FOLDERS_COL_ID, ck->id,
+                                                                                                       FOLDERS_COL_NAME, ck->key,
+                                                                                                       FOLDERS_COL_DESCRIPTION, ck->description,
+                                                                                                       FOLDERS_COL_VALUE, ck->value,
+                                                                                                       FOLDERS_COL_OBJPTR, ck,
+                                                                                                       -1);
+
+                       fill_trFolders_Keys (node, child);
+
+                       node = node->next;
+               }
+}
+
+static gboolean
+fill_trFolders (const gchar *provider_id, const gchar *cnc_string, const gchar *filter)
+{
+       gboolean ret = FALSE;
+
+       GList *lstConfigs = confi_get_configs_list (NULL, provider_id, cnc_string, filter);
+
+       gtk_tree_store_clear (storeFolders);
+
+       if (lstConfigs != NULL)
+               {
+                       GtkTreeIter iter;
+                       Confi *confi;
+                       GdaDataModel *dmKeys;
+                       gint id;
+                       gchar *name,
+                                               *description;
+                       GNode *tree;
+
+                       lstConfigs = g_list_first (lstConfigs);
+                       while (lstConfigs && IS_CONFI (lstConfigs->data))
+                               {
+                                       confi = (Confi *)lstConfigs->data;
+
+                                       g_object_get (G_OBJECT (confi),
+                                                                                               "id_config", &id,
+                                                                                               "name", &name,
+                                                                                               "description", &description,
+                                                                                               NULL);
+
+                                       gtk_tree_store_append (storeFolders, &iter, NULL);
+                                       gtk_tree_store_set (storeFolders, &iter,
+                                                                                                                       FOLDERS_COL_ID, id,
+                                                                                                                       FOLDERS_COL_NAME, name,
+                                                                                                                       FOLDERS_COL_DESCRIPTION, description,
+                                                                                                                       FOLDERS_COL_OBJPTR, confi,
+                                                                                                                       -1);
+
+                                       tree = confi_get_tree (confi);
+                                       if (tree != NULL)
+                                               {
+                                                       fill_trFolders_Keys (tree, iter);
+                                               }
+
+                                       lstConfigs = g_list_next (lstConfigs);
+                               }
+
+                       ret = TRUE;
+               }
+
+       return ret;
+}
+
+static void
+view_trFolders_popup_menu (GdkEventButton *event)
+{
+       GtkWidget *menu = gtk_menu_new (),
+                 *mnuitem;
+
+       GtkTreeIter iter;
+
+       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+               {
+                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                       if (path != NULL)
+                               {
+                                       mnuitem = gtk_menu_item_new_with_mnemonic ("New _Config");
+                                       gtk_menu_shell_append (GTK_MENU_SHELL (menu), mnuitem);
+                                       g_signal_connect (G_OBJECT (mnuitem), "activate",
+                                                                                                               G_CALLBACK (on_mnuConfigsNew_activate), NULL);
+
+                                       mnuitem = gtk_menu_item_new_with_mnemonic ("New _Key");
+                                       gtk_menu_shell_append (GTK_MENU_SHELL (menu), mnuitem);
+                                       g_signal_connect (G_OBJECT (mnuitem), "activate",
+                                                                                                               G_CALLBACK (on_mnuKeysNew_activate), NULL);
+
+                                       mnuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_EDIT, NULL);
+                                       gtk_menu_shell_append (GTK_MENU_SHELL (menu), mnuitem);
+                                       if (gtk_tree_path_get_depth (path) == 1)
+                                               {
+                                                       g_signal_connect (G_OBJECT (mnuitem), "activate",
+                                                                         G_CALLBACK (on_mnuConfigsEdit_activate), NULL);
+                                               }
+                                       else
+                                               {
+                                                       g_signal_connect (G_OBJECT (mnuitem), "activate",
+                                                                         G_CALLBACK (on_mnuKeysEdit_activate), NULL);
+                                               }
+                                               
+                                       mnuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_DELETE, NULL);
+                                       gtk_menu_shell_append (GTK_MENU_SHELL (menu), mnuitem);
+                                       if (gtk_tree_path_get_depth (path) == 1)
+                                               {
+                                                       g_signal_connect (G_OBJECT (mnuitem), "activate",
+                                                                         G_CALLBACK (on_mnuConfigsDelete_activate), NULL);
+                                               }
+                                       else
+                                               {
+                                                       g_signal_connect (G_OBJECT (mnuitem), "activate",
+                                                                         G_CALLBACK (on_mnuKeysDelete_activate), NULL);
+                                               }
+                               }
+               
+                       gtk_widget_show_all (menu);
+               
+                       gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
+                                                                                       (event != NULL) ? event->button : 0,
+                                                                                       gdk_event_get_time ((GdkEvent*)event));
+               }
+}
+
+static void
+save_key_to_xml (Confi *confi, xmlNodePtr xnodeParent, GNode *node)
+{
+       xmlNodePtr xnodeChild;
+       ConfiKey *ck;
+
+       if (node == NULL) return;
+
+       node = node->children;
+       while (node != NULL)
+               {
+                       ck = (ConfiKey *)node->data;
+
+                       xnodeChild = xmlNewNode (NULL, (xmlChar *)"gconfi-key");
+                       xmlAddChild (xnodeParent, xnodeChild);
+
+                       xmlNewTextChild (xnodeChild, NULL, (xmlChar *)"name", (xmlChar *)ck->key);
+                       xmlNewTextChild (xnodeChild, NULL, (xmlChar *)"description", (xmlChar *)ck->description);
+
+                       save_key_to_xml (confi, xnodeChild, node);
+
+                       node = node->next;
+               }
+}
+
+static void
+save_configuration_to_xml (Confi *confi, xmlNodePtr xroot)
+{
+       xmlNodePtr xnode;
+       gchar *name,
+             *description;
+
+       g_object_get (G_OBJECT (confi),
+                     "name", &name,
+                     "description", &description,
+                     NULL);
+
+       xnode = xmlNewNode (NULL, (xmlChar *)"gconfi-configuration");
+       xmlAddChild (xroot, xnode);
+
+       xmlNewTextChild (xnode, NULL, (xmlChar *)"name", (xmlChar *)name);
+       xmlNewTextChild (xnode, NULL, (xmlChar *)"description", (xmlChar *)description);
+
+       GNode *tree = confi_get_tree (confi);
+       if (tree != NULL)
+               {
+                       save_key_to_xml (confi, xnode, tree);
+               }
+}
+
+static void
+create_key_from_xml (Confi *confi,
+                     const gchar *pathParent,
+                     GtkTreeIter *iterParent,
+                     xmlNode *xnode,
+                     xmlXPathContextPtr xpcontext)
+{
+       xmlXPathObjectPtr xpresult;
+       ConfiKey *ck;
+
+       xpcontext->node = xnode;
+
+       xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::name", xpcontext);
+       if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+               {
+                       xmlNodeSetPtr xnodeset = xpresult->nodesetval;
+                       if (xnodeset->nodeNr == 1)
+                               {
+                                       GtkTreeIter iter;
+
+                                       ck = confi_add_key (confi, pathParent, (const gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]));
+
+                                       xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::description", xpcontext);
+                                       if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+                                               {
+                                                       xnodeset = xpresult->nodesetval;
+                                                       if (xnodeset->nodeNr == 1)
+                                                               {
+                                                                       ck->description = g_strdup ((gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]));
+
+                                                                       confi_key_set_key (confi, ck);
+                                                               }
+                                               }
+                                                       
+                                       xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::value", xpcontext);
+                                       if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+                                               {
+                                                       xnodeset = xpresult->nodesetval;
+                                                       if (xnodeset->nodeNr == 1)
+                                                               {
+                                                                       ck->value = g_strdup ((gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]));
+
+                                                                       confi_key_set_key (confi, ck);
+                                                               }
+                                               }
+
+                                       gtk_tree_store_append (storeFolders, &iter, iterParent);
+                                       gtk_tree_store_set (storeFolders, &iter,
+                                                           FOLDERS_COL_ID, ck->id,
+                                                           FOLDERS_COL_NAME, ck->key,
+                                                           FOLDERS_COL_VALUE, ck->value,
+                                                           FOLDERS_COL_DESCRIPTION, ck->description,
+                                                           FOLDERS_COL_OBJPTR, ck,
+                                                           -1);
+                                       
+                                       xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::gconfi-key", xpcontext);
+                                       if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+                                               {
+                                                       gint i;
+
+                                                       xnodeset = xpresult->nodesetval;
+                                                       for (i = 0; i < xnodeset->nodeNr; i++)
+                                                               {
+                                                                       create_key_from_xml (confi,
+                                                                                            g_strjoin (NULL, ck->path, (strcmp (ck->path, "") == 0 ? "" : "/"), ck->key, NULL),
+                                                                                            &iter,
+                                                                                            xnodeset->nodeTab[i], xpcontext);
+                                                               }
+                                               }
+                               }
+               }
+}
+
+static void
+create_config_from_xml (xmlNode *xnode, xmlXPathContextPtr xpcontext)
+{
+       xmlXPathObjectPtr xpresult;
+       Confi *confi;
+
+       xpcontext->node = xnode;
+
+       xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::name", xpcontext);
+       if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+               {
+                       xmlNodeSetPtr xnodeset = xpresult->nodesetval;
+                       if (xnodeset->nodeNr == 1)
+                               {
+                               
+                                       confi = confi_new (NULL, provider_id, cnc_string,
+                                                          (const gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]), NULL, TRUE);
+                                       if (confi != NULL)
+                                               {
+                                                       GtkTreeIter iter;
+                                                       gint id;
+                                                       gchar *name,
+                                                                               *description;
+
+                                                       xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::description", xpcontext);
+                                                       if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+                                                               {
+                                                                       xnodeset = xpresult->nodesetval;
+                                                                       if (xnodeset->nodeNr == 1)
+                                                                               {
+                                                                                       g_object_set (G_OBJECT (confi),
+                                                                                                     "description", xmlNodeGetContent (xnodeset->nodeTab[0]),
+                                                                                                     NULL);
+                                                                               }
+                                                               }
+
+                                                       g_object_get (G_OBJECT (confi),
+                                                                     "id_config", &id,
+                                                                     "name", &name,
+                                                                     "description", &description,
+                                                                     NULL);
+
+                                                       gtk_tree_store_append (storeFolders, &iter, NULL);
+                                                       gtk_tree_store_set (storeFolders, &iter,
+                                                                                                                                       FOLDERS_COL_ID, id,
+                                                                                                                                       FOLDERS_COL_NAME, name,
+                                                                                                                                       FOLDERS_COL_DESCRIPTION, description,
+                                                                                                                                       FOLDERS_COL_OBJPTR, confi,
+                                                                                                                                       -1);
+
+                                                       xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::gconfi-key", xpcontext);
+                                                       if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+                                                               {
+                                                                       gint i;
+
+                                                                       xnodeset = xpresult->nodesetval;
+                                                                       for (i = 0; i < xnodeset->nodeNr; i++)
+                                                                               {
+                                                                                       create_key_from_xml (confi, "", &iter, xnodeset->nodeTab[i], xpcontext);
+                                                                               }
+                                                               }
+                                               }
+                               }
+               }
+}
+
+static void
+load_xml_configuration_schema (const gchar *filename)
+{
+       GNode *tree = NULL;
+
+       xmlDocPtr xdoc = xmlParseFile (filename);
+       if (xdoc != NULL)
+               {
+                       if (xmlXIncludeProcess (xdoc) == -1)
+                               {
+                                       g_warning ("Error on xmlXIncludeProcess.\n");
+                                       return;
+                               }
+               
+                       xmlXPathContextPtr xpcontext = xmlXPathNewContext (xdoc);
+                       if (xpcontext != NULL)
+                               {
+                                       xmlNode *xnode = xmlDocGetRootElement (xdoc);
+                                       if (xnode != NULL)
+                                               {
+                                                       if (strcmp (xnode->name, "gconfi") == 0)
+                                                               {
+                                                                       xnode = xnode->children;
+                                                                       while (xnode != NULL)
+                                                                               {
+                                                                                       if (strcmp (xnode->name, "gconfi-configuration") == 0)
+                                                                                               {
+                                                                                                       create_config_from_xml (xnode, xpcontext);
+                                                                                               }
+                               
+                                                                                       xnode = xnode->next;
+                                                                               }
+                                                               }
+                                                       else if (strcmp (xnode->name, "gconfi-configuration") == 0)
+                                                               {
+                                                                       create_config_from_xml (xnode, xpcontext);
+                                                               }
+                                                       else if (strcmp (xnode->name, "gconfi-key") == 0)
+                                                               {
+                                                                       GtkTreeIter iter;
+
+                                                                       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+                                                                               {
+                                                                                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                                                                                       if (path != NULL)
+                                                                                               {
+                                                                                                       if (gtk_tree_path_get_depth (path) == 1)
+                                                                                                               {
+                                                                                                                       Confi *confi;
+               
+                                                                                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                                                                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                                                                                                       -1);
+
+                                                                                                                       create_key_from_xml (confi, "", &iter, xnode, xpcontext);
+                                                                                                               }
+                                                                                                       else /* if (gtk_tree_path_get_depth (path) > 1 */
+                                                                                                               {
+                                                                                                                       GtkTreeIter iterConfi;
+
+                                                                                                                       if (gtk_tree_model_get_iter (GTK_TREE_MODEL (storeFolders), &iterConfi,
+                                                                                                                                                    gtk_tree_path_new_from_indices (gtk_tree_path_get_indices (path)[0], -1)))
+                                                                                                                               {
+                                                                                                                                       Confi *confi;
+                                                                                                                                       ConfiKey *ck;
+
+                                                                                                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterConfi,
+                                                                                                                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                                                                                                                       -1);
+
+                                                                                                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                                                                                                                                                                                       FOLDERS_COL_OBJPTR, &ck,
+                                                                                                                                                                                                                       -1);
+                                                                                                                               
+                                                                                                                                       if (IS_CONFI (confi))
+                                                                                                                                               {
+                                                                                                                                                       create_key_from_xml (confi, g_strconcat (ck->path, "/", ck->key, NULL), &iter, xnode, xpcontext);
+                                                                                                                                               }
+                                                                                                                               }
+                                                                                                               }
+                                                                                               }
+                                                                               }
+                                                               }
+                                                       else
+                                                               {
+                                                                       g_warning ("%s is not a valid gConfi schema for configurations.", filename);
+                                                               }
+                                               }
+                                       else
+                                               {
+                                                       g_warning ("%s is not a valid gConfi schema for configurations.", filename);
+                                               }
+                               }
+                       else
+                               {
+                                       g_warning ("Error on xmlXPathNewContext.");
+                               }
+               }
+       else
+               {
+                       g_warning ("Error on xml parsing file %s.", filename);
+               }
+}
+
+/* CALLBACKS */
+void
+on_mnuDbNew_activate (GtkMenuItem *menuitem,
+                      gpointer user_data)
+{
+       GladeXML *glaOpenDbCfg = glade_xml_new (GLADEDIR "/gconfi.glade", "diagNewDbCfg", NULL);
+       GtkWidget *diag = glade_xml_get_widget (glaOpenDbCfg, "diagNewDbCfg");
+       
+       GtkWidget *cbProvider = glade_xml_get_widget (glaOpenDbCfg, "cbProvider"),
+                                               *txtCncString1 = glade_xml_get_widget (glaOpenDbCfg, "txtCncString1"),
+                 *txtDbName = glade_xml_get_widget (glaOpenDbCfg, "txtDbName"),
+                 *txtCncString2 = glade_xml_get_widget (glaOpenDbCfg, "txtCncString2");
+
+       GtkListStore *store;
+       GtkTreeIter iter;
+       GtkCellRenderer *renderer;
+
+       store = gtk_list_store_new (1, G_TYPE_STRING);
+       gtk_combo_box_set_model (GTK_COMBO_BOX (cbProvider), GTK_TREE_MODEL (store));
+
+       renderer = gtk_cell_renderer_text_new ();
+       gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (cbProvider), renderer, FALSE);
+       gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (cbProvider), renderer,
+                                      "text", 0);
+
+       /* fill providers list */
+       GList *providers = gda_config_get_provider_list ();
+       if (providers != NULL)
+               {
+                       do {
+                               GdaProviderInfo *pi = (GdaProviderInfo *)providers->data;
+
+                               gtk_list_store_append (store, &iter);
+                               gtk_list_store_set (store, &iter, 0, pi->id, -1);
+                       } while ((providers = g_list_next (providers)) != NULL);
+
+                       gda_config_free_provider_list (providers);
+               }
+
+       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
+               {
+                       provider_id = g_strstrip (g_strdup (gtk_combo_box_get_active_text (GTK_COMBO_BOX (cbProvider))));
+                       cnc_string = g_strstrip (g_strdup (gtk_entry_get_text (GTK_ENTRY (txtCncString1))));
+                       gchar *dbName = g_strstrip (g_strdup (gtk_entry_get_text (GTK_ENTRY (txtDbName))));
+                       if (strcmp (provider_id, "") != 0 &&
+                           strcmp (cnc_string, "") != 0)
+                               {
+                                       GdaO *gdao = gdao_new_from_string (NULL, provider_id, cnc_string);
+                                       if (gdao != NULL)
+                                               {
+                                                       GdaConnection *gdaConn = (GdaConnection *)gdao_get_gdaconnection (gdao);
+                                                       if (gdaConn == NULL)
+                                                               {
+                                                                       /* TO DO */
+                                                                       g_fprintf(stderr,"error on first connection\n");
+                                                               }
+                                                       else
+                                                               {
+                                                                       if (strcmp (dbName, "") != 0)
+                                                                               {
+                                                                                       cnc_string = g_strstrip (g_strdup (gtk_entry_get_text (GTK_ENTRY (txtCncString2))));
+                                                                                       if (strcmp (cnc_string, "") != 0)
+                                                                                               {
+                                                                                                       if (!gda_connection_create_database (gdaConn, dbName))
+                                                                                                               {
+                                                                                                                       /* TO DO */
+                                                                                                                       g_fprintf(stderr,"error on database creation\n");
+                                                                                                                       gdao = NULL;
+                                                                                                               }
+                                                                                                       else
+                                                                                                               {
+                                                                                                                       if (!gda_connection_change_database (gdaConn, dbName))
+                                                                                                                               {
+                                                                                                                                       gda_connection_close (gdaConn);
+                                                                                                                                       gdao = gdao_new_from_string (NULL, provider_id, cnc_string);
+                                                                                                                                       if (gdao == NULL)
+                                                                                                                                               {
+                                                                                                                                                       /* TO DO */
+                                                                                                                                                       g_fprintf(stderr,"error on second connection\n");
+                                                                                                                                                       gdao = NULL;
+                                                                                                                                               }
+                                                                                                                               }
+                                                                                                               }
+                                                                                               }
+                                                                                       else
+                                                                                               {
+                                                                                                       /* TO DO */
+                                                                                                       g_fprintf(stderr,"second connection must be specified\n");
+                                                                                                       gdao = NULL;
+                                                                                               }
+                                                                               }
+
+                                                                       if (gdao != NULL)
+                                                                               {
+                                                                                       if (gdao_execute (gdao, "CREATE TABLE configs "
+                                                                                                           "("
+                                                                                                           " id integer NOT NULL, "
+                                                                                                           " name varchar(100) DEFAULT '', "
+                                                                                                           " description varchar(255) DEFAULT '', "
+                                                                                                           " CONSTRAINT configs_pkey PRIMARY KEY (id), "
+                                                                                                           " CONSTRAINT name_unique UNIQUE (name)"
+                                                                                                           ")") == -1)
+                                                                                               {
+                                                                                                       /* TO DO */
+                                                                                                       gdao = NULL;
+                                                                                               }
+                                                                                       else
+                                                                                               {
+                                                                                                       gchar chrquot = '\"';
+                                                                                                       gchar *sql;
+
+                                                                                                       if (strcmp (provider_id, "MySQL") == 0)
+                                                                                                               {
+                                                                                                                       chrquot = '`';
+                                                                                                               }
+
+                                                                                                       sql = g_strdup_printf ("CREATE TABLE %cvalues%c "
+                                                                                                                               "("
+                                                                                                                               " id_configs integer NOT NULL, "
+                                                                                                                               " id integer NOT NULL, "
+                                                                                                                               " id_parent integer, "
+                                                                                                                               " %ckey%c varchar(50) DEFAULT '', "
+                                                                                                                               " value text DEFAULT '', "
+                                                                                                                               " description varchar(255) DEFAULT '', "
+                                                                                                                               " CONSTRAINT values_pkey PRIMARY KEY (id_configs, id), "
+                                                                                                                               " CONSTRAINT values_name_unique UNIQUE (id_configs, id_parent, %ckey%c)"
+                                                                                                                               ")",
+                                                                                                                               chrquot, chrquot, chrquot, chrquot, chrquot, chrquot);
+                                                                                               
+                                                                                                       if (gdao_execute (gdao, sql) == -1)
+                                                                                                               {
+                                                                                                                       /* TO DO */
+                                                                                                                       gdao = NULL;
+                                                                                                               }
+                                                                                                       else
+                                                                                                               {
+                                                                                                                       if (fill_trFolders (provider_id, cnc_string, NULL))
+                                                                                                                               {
+                                                                                                                                       gtk_widget_set_sensitive (mnuDbClose, TRUE);
+                                                                                                                                       gtk_widget_set_sensitive (mnuDbRefresh, TRUE);
+                                                                                                                                       gtk_widget_set_sensitive (mnuConfigs, TRUE);
+                                                                                                                                       gtk_widget_set_sensitive (mnuKeys, TRUE);
+               
+                                                                                                                                       gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
+                                                                                                                                       gtk_statusbar_push (GTK_STATUSBAR (stbar), 0,
+                                                                                                                                                                                                                       g_strconcat ("Provider: ", provider_id, " - Connection string: ", cnc_string, NULL));
+                                                                                                                               }
+                                                                                                               }
+                                                                                               }
+                                                                               }
+                                                               }
+                                               }
+                               }
+               }
+
+       gtk_widget_destroy (diag);
+}
+
+void
+on_mnuDbOpen_activate (GtkMenuItem *menuitem,
+                       gpointer user_data)
+{
+       GladeXML *glaOpenDbCfg = glade_xml_new (GLADEDIR "/gconfi.glade", "diagOpenDbCfg", NULL);
+       GtkWidget *diag = glade_xml_get_widget (glaOpenDbCfg, "diagOpenDbCfg");
+
+       GtkWidget *cbProvider = glade_xml_get_widget (glaOpenDbCfg, "cbProvider"),
+                                               *txtCncString = glade_xml_get_widget (glaOpenDbCfg, "txtCncString"),
+                 *txtConfigsFilter = glade_xml_get_widget (glaOpenDbCfg, "txtConfigsFilter");
+
+       GtkListStore *store;
+       GtkTreeIter iter;
+       GtkCellRenderer *renderer;
+
+       store = gtk_list_store_new (1, G_TYPE_STRING);
+       gtk_combo_box_set_model (GTK_COMBO_BOX (cbProvider), GTK_TREE_MODEL (store));
+
+       renderer = gtk_cell_renderer_text_new ();
+       gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (cbProvider), renderer, FALSE);
+       gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (cbProvider), renderer,
+                                      "text", 0);
+
+       /* fill providers list */
+       GList *providers = gda_config_get_provider_list ();
+       if (providers != NULL)
+               {
+                       do {
+                               GdaProviderInfo *pi = (GdaProviderInfo *)providers->data;
+
+                               gtk_list_store_append (store, &iter);
+                               gtk_list_store_set (store, &iter, 0, pi->id, -1);
+                       
+                       } while ((providers = g_list_next (providers)) != NULL);
+
+                       gda_config_free_provider_list (providers);
+               }
+
+       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
+               {
+                       provider_id = g_strdup (gtk_combo_box_get_active_text (GTK_COMBO_BOX (cbProvider)));
+                       cnc_string = g_strdup (gtk_entry_get_text (GTK_ENTRY (txtCncString)));
+                       if (provider_id != NULL && cnc_string != NULL)
+                               {
+                                       filter = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtConfigsFilter));
+                                       if (fill_trFolders (provider_id, cnc_string, filter))
+                                               {
+                                                       gtk_widget_set_sensitive (mnuDbClose, TRUE);
+                                                       gtk_widget_set_sensitive (mnuDbRefresh, TRUE);
+                                                       gtk_widget_set_sensitive (mnuConfigs, TRUE);
+                                                       gtk_widget_set_sensitive (mnuKeys, TRUE);
+
+                                                       gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
+                                                       gtk_statusbar_push (GTK_STATUSBAR (stbar), 0,
+                                                                           g_strconcat ("Provider: ", provider_id, " - Connection string: ", cnc_string, NULL));
+                                               }
+                               }
+               }
+
+       gtk_widget_destroy (diag);
+}
+
+void
+on_mnuDbClose_activate (GtkMenuItem *menuitem,
+                        gpointer user_data)
+{
+       provider_id = g_strdup ("");
+       cnc_string = g_strdup ("");
+
+       /* TO DO */
+       /* deallocate first every Confi object */
+
+       gtk_tree_store_clear (storeFolders);
+
+       gtk_widget_set_sensitive (mnuDbClose, FALSE);
+       gtk_widget_set_sensitive (mnuDbRefresh, FALSE);
+       gtk_widget_set_sensitive (mnuConfigs, FALSE);
+       gtk_widget_set_sensitive (mnuKeys, FALSE);
+
+       gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
+}
+
+void
+on_mnuDbRefresh_activate (GtkMenuItem *menuitem,
+                          gpointer user_data)
+{
+       fill_trFolders (provider_id, cnc_string, filter);
+}
+
+void
+on_mnuConfigsNew_activate (GtkMenuItem *menuitem,
+                           gpointer user_data)
+{
+       GladeXML *glaCNew = glade_xml_new (GLADEDIR "/gconfi.glade", "wConfiguration", NULL);
+       GtkWidget *diag = glade_xml_get_widget (glaCNew, "wConfiguration");
+
+       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
+               {
+                       GtkWidget *txtName,
+                                 *txtvDescription,
+                                 *fcbSchema;
+                       GtkTextBuffer *buffer;
+                       GtkTextIter iter1, iter2;
+                       gchar *name,
+                             *description;
+                       Confi *confi;
+
+                       txtName = glade_xml_get_widget (glaCNew, "txtName");
+                       txtvDescription = glade_xml_get_widget (glaCNew, "txtvDescription");
+
+                       name = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtName));
+
+                       buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
+                       gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
+                       description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
+
+                       confi = confi_new (NULL, provider_id, cnc_string,
+                                          name,
+                                          NULL, TRUE);
+                       if (confi != NULL)
+                               {
+                                       GtkTreeIter iter;
+                                       gint id;
+
+                                       g_object_set (G_OBJECT (confi),
+                                                     "description", description,
+                                                     NULL);
+
+                                       g_object_get (G_OBJECT (confi),
+                                                     "id_config", &id,
+                                                     NULL);
+
+                                       gtk_tree_store_append (storeFolders, &iter, NULL);
+                                       gtk_tree_store_set (storeFolders, &iter,
+                                                           FOLDERS_COL_ID, id,
+                                                           FOLDERS_COL_NAME, name,
+                                                           FOLDERS_COL_DESCRIPTION, description,
+                                                           FOLDERS_COL_OBJPTR, confi,
+                                                           -1);
+                               }
+               }
+
+       gtk_widget_destroy (diag);
+}
+
+void
+on_mnuConfigsNewFromSchema_activate (GtkMenuItem *menuitem,
+                                     gpointer user_data)
+{
+       GtkWidget *diag = gtk_file_chooser_dialog_new ("Choose a schema file - gConfi",
+                                                      GTK_WINDOW (w),
+                                                      GTK_FILE_CHOOSER_ACTION_OPEN,
+                                                      GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
+                                                      GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
+                                                      NULL);
+
+       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_ACCEPT)
+               {
+                       const gchar *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (diag));
+                       load_xml_configuration_schema (filename);
+               }
+
+       gtk_widget_destroy (diag);
+}
+
+void
+on_mnuConfigsEdit_activate (GtkMenuItem *menuitem,
+                            gpointer user_data)
+{
+       GtkTreeIter iter;
+
+       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+               {
+                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                       if (path != NULL && gtk_tree_path_get_depth (path) == 1)
+                               {
+                                       Confi *confi;
+               
+                                       GladeXML *glaConfig = glade_xml_new (GLADEDIR "/gconfi.glade", "wConfiguration", NULL);
+                                       GtkWidget *diag = glade_xml_get_widget (glaConfig, "wConfiguration"),
+                                                                               *txtID = glade_xml_get_widget (glaConfig, "txtID"),
+                                                                               *txtName = glade_xml_get_widget (glaConfig, "txtName"),
+                                                                               *txtvDescription = glade_xml_get_widget (glaConfig, "txtvDescription");
+                                       GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
+
+                                       gint id;
+                                       gchar *name,
+                                                               *description;
+
+                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                       -1);
+
+                                       g_object_get (G_OBJECT (confi),
+                                                                                               "id_config", &id,
+                                                                                               "name", &name,
+                                                                                               "description", &description,
+                                                                                               NULL);
+
+                                       gtk_entry_set_text (GTK_ENTRY (txtID), g_strdup_printf ("%d", id));
+                                       gtk_entry_set_text (GTK_ENTRY (txtName), name);
+                                       gtk_text_buffer_set_text (buffer, description, strlen (description));
+
+                                       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
+                                               {
+                                                       GtkTextIter iter1, iter2;
+
+                                                       name = g_strdup (gtk_entry_get_text (GTK_ENTRY (txtName)));
+                                                       gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
+                                                       description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
+
+                                                       g_object_set (G_OBJECT (confi),
+                                                                                                               "name", name,
+                                                                                                               "description", description,
+                                                                                                               NULL);
+
+                                                       gtk_tree_store_set (storeFolders, &iter,
+                                                                                                                                       FOLDERS_COL_NAME, name,
+                                                                                                                                       FOLDERS_COL_DESCRIPTION, description,
+                                                                           FOLDERS_COL_OBJPTR, confi,
+                                                                                                                                       -1);
+                                               }
+
+                                       gtk_widget_destroy (diag);
+                               }
+               }
+}
+
+void
+on_mnuConfigsDelete_activate (GtkMenuItem *menuitem,
+                              gpointer user_data)
+{
+       GtkTreeIter iter;
+
+       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+               {
+                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                       if (path != NULL && gtk_tree_path_get_depth (path) == 1)
+                               {
+                                       Confi *confi;
+               
+                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                       -1);
+                                       if (IS_CONFI (confi))
+                                               {
+                                                       GtkWidget *diag = gtk_message_dialog_new (GTK_WINDOW (w),
+                                                                                                                                                                                                                               GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
+                                                                                                                                                                                                                               GTK_MESSAGE_QUESTION,
+                                                                                                                                                                                                                               GTK_BUTTONS_YES_NO,
+                                                                                                                                                                                                                               "Are you sure you want to delete the selected configuration from database?");
+                                                       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_YES)
+                                                               {
+                                                                       if (confi_remove (confi))
+                                                                               {
+                                                                                       gtk_tree_store_remove (storeFolders, &iter);
+                                                                               }
+                                                               }
+               
+                                                       gtk_widget_destroy (diag);
+                                               }
+                               }
+               }
+}
+
+void
+on_mnuConfigsExport_activate (GtkMenuItem *menuitem,
+                              gpointer user_data)
+{
+       GtkWidget *diag = gtk_file_chooser_dialog_new ("Export Configurations - gConfi",
+                                                      GTK_WINDOW (w),
+                                                      GTK_FILE_CHOOSER_ACTION_SAVE,
+                                                      GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
+                                                      GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
+                                                      NULL);
+
+       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_ACCEPT)
+               {
+                       Confi *confi;
+                       gchar *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (diag));
+
+                       GtkTreeIter iter;
+                       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+                               {
+                                       /* saving only selected configuration */
+                                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                                       if (gtk_tree_path_get_depth (path) > 1)
+                                               {
+                                                       path = gtk_tree_path_new_from_indices (gtk_tree_path_get_indices (path)[0], -1);
+                                                       gtk_tree_model_get_iter (GTK_TREE_MODEL (storeFolders), &iter, path);
+                                               }
+
+                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                           FOLDERS_COL_OBJPTR, &confi,
+                                                           -1);
+                                       if (IS_CONFI (confi))
+                                               {
+                                                       xmlDocPtr xdoc;
+                                                       xmlNodePtr xnode;
+
+                                                       xdoc = xmlNewDoc ((xmlChar *)"1.0");
+                                                       xnode = xmlNewNode (NULL, (xmlChar *)"gconfi");
+                                                       xmlDocSetRootElement (xdoc, xnode);
+
+                                                       save_configuration_to_xml (confi, xnode);
+
+                                                       xmlSaveFile (filename, xdoc);
+                                               }
+
+                                       gtk_tree_path_free (path);
+                               }
+                       else
+                               {
+                                       /* saving all configurations */
+                                       GList *configs = confi_get_configs_list (NULL, provider_id, cnc_string, filter);
+                                       if (configs != NULL)
+                                               {
+                                                       xmlDocPtr xdoc;
+                                                       xmlNodePtr xnode;
+
+                                                       xdoc = xmlNewDoc ((xmlChar *)"1.0");
+                                                       xnode = xmlNewNode (NULL, (xmlChar *)"gconfi");
+                                                       xmlDocSetRootElement (xdoc, xnode);
+
+                                                       configs = g_list_first (configs);
+                                                       while (configs != NULL)
+                                                               {
+                                                                       confi = (Confi *)configs->data;
+
+                                                                       save_configuration_to_xml (confi, xnode);
+
+                                                                       configs = g_list_next (configs);
+                                                               }
+
+                                                       xmlSaveFile (filename, xdoc);
+                                               }
+                               }
+               
+                       g_free (filename);
+               }
+
+       gtk_widget_destroy (diag);
+}
+
+void
+on_mnuKeysNew_activate (GtkMenuItem *menuitem,
+                        gpointer user_data)
+{
+       GtkTreeIter iter;
+
+       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+               {
+                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                       if (path != NULL)
+                               {
+                                       Confi *confi;
+                                       ConfiKey *ck;
+                                       GladeXML *glaKey = glade_xml_new (GLADEDIR "/gconfi.glade", "wKey", NULL);
+                                       GtkWidget *diag = glade_xml_get_widget (glaKey, "wKey"),
+                                                 *txtIDConfig = glade_xml_get_widget (glaKey, "txtIDConfig"),
+                                                 *txtConfig = glade_xml_get_widget (glaKey, "txtConfig"),
+                                                 *txtID = glade_xml_get_widget (glaKey, "txtID"),
+                                                 *txtIDParent = glade_xml_get_widget (glaKey, "txtIDParent"),
+                                                 *txtParent = glade_xml_get_widget (glaKey, "txtParent"),
+                                                 *txtName = glade_xml_get_widget (glaKey, "txtName"),
+                                                 *txtValue = glade_xml_get_widget (glaKey, "txtValue"),
+                                                 *txtvDescription = glade_xml_get_widget (glaKey, "txtvDescription");
+                                       GtkTreeIter iterConfi;
+                                       gint id_config;
+                                       gchar *name,
+                                                         *keyPath = "";
+
+                                       if (gtk_tree_path_get_depth (path) == 1)
+                                               {
+                                                       iterConfi = iter;
+                                                       gtk_entry_set_text (GTK_ENTRY (txtIDParent), "0");
+                                               }
+                                       else
+                                               {
+                                                       gtk_tree_model_get_iter (GTK_TREE_MODEL (storeFolders), &iterConfi,
+                                                                                                                                                        gtk_tree_path_new_from_indices (gtk_tree_path_get_indices (path)[0], -1));
+                                               
+                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                                                                                                       FOLDERS_COL_OBJPTR, &ck,
+                                                                                                                                       -1);
+
+                                                       keyPath = g_strjoin (NULL, ck->path, "/", ck->key, NULL);
+                                                       gtk_entry_set_text (GTK_ENTRY (txtIDParent), g_strdup_printf ("%d", ck->id));
+                                                       gtk_entry_set_text (GTK_ENTRY (txtParent), ck->key);
+                                               }
+
+               
+                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterConfi,
+                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                       -1);
+
+                                       g_object_get (G_OBJECT (confi),
+                                                                                               "id_config", &id_config,
+                                                                                               "name", &name,
+                                                                                               NULL);
+                               
+                                       gtk_entry_set_text (GTK_ENTRY (txtIDConfig), g_strdup_printf ("%d", id_config));
+                                       gtk_entry_set_text (GTK_ENTRY (txtConfig), name);
+
+                                       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
+                                               {
+                                                       GtkTextIter iter1, iter2;
+                                                       GtkTreeIter parent = iter;
+
+                                                       gint id;
+                                                       gchar *name = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtName)),
+                                                             *value = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtValue)),
+                                                             *description;
+                                                       GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
+
+                                                       gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
+                                                       description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
+
+                                                       ck = confi_add_key (confi, keyPath, name);
+                                                       if (ck != NULL)
+                                                               {
+                                                                       ck->value = value;
+                                                                       ck->description = description;
+                                                                       confi_key_set_key (confi, ck);
+
+                                                                       gtk_tree_store_append (storeFolders, &iter, &parent);
+                                                                       gtk_tree_store_set (storeFolders, &iter,
+                                                                                                                                                       FOLDERS_COL_ID, ck->id,
+                                                                                                                                                       FOLDERS_COL_NAME, name,
+                                                                                                                                                       FOLDERS_COL_VALUE, value,
+                                                                                                                                                       FOLDERS_COL_DESCRIPTION, description,
+                                                                                           FOLDERS_COL_OBJPTR, ck,
+                                                                                                                                                       -1);
+                                                               }
+                                               }
+
+                                       gtk_widget_destroy (diag);
+                               }
+               }
+}
+
+void
+on_mnuKeysNewFromSchema_activate (GtkMenuItem *menuitem,
+                                  gpointer user_data)
+{
+       GtkWidget *diag = gtk_file_chooser_dialog_new ("Choose a key's schema file - gConfi",
+                                                      GTK_WINDOW (w),
+                                                      GTK_FILE_CHOOSER_ACTION_OPEN,
+                                                      GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
+                                                      GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
+                                                      NULL);
+
+       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_ACCEPT)
+               {
+                       const gchar *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (diag));
+                       load_xml_configuration_schema (filename);
+               }
+
+       gtk_widget_destroy (diag);
+}
+
+void
+on_mnuKeysEdit_activate (GtkMenuItem *menuitem,
+                         gpointer user_data)
+{
+       GtkTreeIter iter;
+
+       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+               {
+                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                       if (path != NULL && gtk_tree_path_get_depth (path) > 1)
+                               {
+                                       Confi *confi;
+                                       GladeXML *glaKey = glade_xml_new (GLADEDIR "/gconfi.glade", "wKey", NULL);
+                                       GtkWidget *diag = glade_xml_get_widget (glaKey, "wKey"),
+                                                 *txtIDConfig = glade_xml_get_widget (glaKey, "txtIDConfig"),
+                                                 *txtConfig = glade_xml_get_widget (glaKey, "txtConfig"),
+                                                 *txtID = glade_xml_get_widget (glaKey, "txtID"),
+                                                 *txtIDParent = glade_xml_get_widget (glaKey, "txtIDParent"),
+                                                 *txtParent = glade_xml_get_widget (glaKey, "txtParent"),
+                                                 *txtName = glade_xml_get_widget (glaKey, "txtName"),
+                                                 *txtValue = glade_xml_get_widget (glaKey, "txtValue"),
+                                                 *txtvDescription = glade_xml_get_widget (glaKey, "txtvDescription");
+                                       GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
+
+                                       ConfiKey *ck;
+
+                                       GtkTreeIter iterConfi,
+                                                   iterParent;
+
+                                       if (gtk_tree_model_get_iter (GTK_TREE_MODEL (storeFolders), &iterConfi,
+                                                                    gtk_tree_path_new_from_indices (gtk_tree_path_get_indices (path)[0], -1)))
+                                               {
+                                                       gchar *name;
+
+                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterConfi,
+                                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                                       -1);
+
+                                                       g_object_get (G_OBJECT (confi),
+                                                                     "name", &name,
+                                                                     NULL);
+                                               
+                                                       gtk_entry_set_text (GTK_ENTRY (txtConfig), name);
+                                               }
+
+                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                           FOLDERS_COL_OBJPTR, &ck,
+                                                           -1);
+
+                                       if (ck != NULL)
+                                               {
+                                                       gtk_entry_set_text (GTK_ENTRY (txtIDConfig), g_strdup_printf ("%d", ck->id_config));
+                                                       gtk_entry_set_text (GTK_ENTRY (txtID), g_strdup_printf ("%d", ck->id));
+                                                       gtk_entry_set_text (GTK_ENTRY (txtIDParent), g_strdup_printf ("%d", ck->id_parent));
+                                                       gtk_entry_set_text (GTK_ENTRY (txtName), ck->key);
+                                                       gtk_entry_set_text (GTK_ENTRY (txtValue), ck->value);
+                                                       gtk_text_buffer_set_text (buffer, ck->description, strlen (ck->description));
+
+                                                       if (ck->id_parent > 0 && gtk_tree_model_iter_parent (GTK_TREE_MODEL (storeFolders), &iterParent, &iter))
+                                                               {
+                                                                       ConfiKey *ckParent;
+
+                                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterParent,
+                                                                                                                                                       FOLDERS_COL_OBJPTR, &ckParent,
+                                                                                           -1);
+
+                                                                       gtk_entry_set_text (GTK_ENTRY (txtParent), ckParent->key);
+                                                               }
+
+                                                       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
+                                                               {
+                                                                       GtkTextIter iter1, iter2;
+
+                                                                       ck->key = g_strdup (gtk_entry_get_text (GTK_ENTRY (txtName)));
+                                                                       ck->value = g_strdup (gtk_entry_get_text (GTK_ENTRY (txtValue)));
+
+                                                                       gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
+                                                                       ck->description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
+
+                                                                       confi_key_set_key (confi, ck);
+
+                                                                       gtk_tree_store_set (storeFolders, &iter,
+                                                                                           FOLDERS_COL_NAME, ck->key,
+                                                                                           FOLDERS_COL_VALUE, ck->value,
+                                                                                           FOLDERS_COL_DESCRIPTION, ck->description,
+                                                                                           FOLDERS_COL_OBJPTR, ck,
+                                                                                           -1);
+                                                               }
+                                               }
+
+                                       gtk_widget_destroy (diag);
+                               }
+               }
+}
+
+void
+on_mnuKeysDelete_activate (GtkMenuItem *menuitem,
+                           gpointer user_data)
+{
+       GtkTreeIter iter;
+
+       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+               {
+                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                       if (path != NULL && gtk_tree_path_get_depth (path) > 1)
+                               {
+                                       GtkWidget *diag = gtk_message_dialog_new (GTK_WINDOW (w),
+                                                                                                                                                                                                               GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
+                                                                                                                                                                                                               GTK_MESSAGE_QUESTION,
+                                                                                                                                                                                                               GTK_BUTTONS_YES_NO,
+                                                                                                                                                                                                               "Are you sure you want to delete the selected key from database?");
+                                       if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_YES)
+                                               {
+                                                       Confi *confi;
+                                               
+                                                       GtkTreeIter iterConfig;
+                                                       gtk_tree_model_get_iter (GTK_TREE_MODEL (storeFolders), &iterConfig,
+                                                                                gtk_tree_path_new_from_indices (gtk_tree_path_get_indices (path)[0], -1));
+
+                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterConfig,
+                                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                                       -1);
+
+                                                       if (IS_CONFI (confi))
+                                                               {
+                                                                       ConfiKey *ck;
+
+                                                                       gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
+                                                                                                                                                       FOLDERS_COL_OBJPTR, &ck,
+                                                                                                                                                       -1);
+
+                                                                       if (confi_remove_path (confi, g_strconcat (ck->path, "/", ck->key, NULL)))
+                                                                               {
+                                                                                       gtk_tree_store_remove (storeFolders, &iter);
+                                                                               }
+                                                               }
+                                               }
+                                       
+                                       gtk_widget_destroy (diag);
+                               }
+               }
+}
+
+void
+on_mnuKeysExport_activate (GtkMenuItem *menuitem,
+                           gpointer user_data)
+{
+}
+
+void
+on_mnuHelpAbout_activate (GtkMenuItem *menuitem,
+                          gpointer user_data)
+{
+       GladeXML *glaAbout = glade_xml_new (GLADEDIR "/gconfi.glade", "diagAbout", NULL);
+       GtkWidget *diag = glade_xml_get_widget (glaAbout, "diagAbout");
+       gtk_dialog_run (GTK_DIALOG (diag));
+       gtk_widget_destroy (diag);
+}
+
+gboolean
+on_trFolders_button_press_event (GtkWidget *widget,
+                                 GdkEventButton *event,
+                                 gpointer user_data)
+{
+       /* single click with the right mouse button? */
+       if (event->type == GDK_BUTTON_PRESS  &&  event->button == 3)
+               {
+                       /* select row if no row is selected */
+                       if (gtk_tree_selection_count_selected_rows (selFolders) <= 1)
+                               {
+                                       GtkTreePath *path;
+                                       if (gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (trFolders),
+                                                                          (gint) event->x,
+                                                                          (gint) event->y,
+                                                                          &path, NULL, NULL, NULL))
+                                               {
+                                                       gtk_tree_selection_unselect_all (selFolders);
+                                                       gtk_tree_selection_select_path (selFolders, path);
+                                                       gtk_tree_path_free (path);
+                                               }
+                               }
+
+                       view_trFolders_popup_menu (event);
+                       return TRUE;
+               }
+
+       return FALSE;
+}
+
+gboolean
+on_trFolders_popup_menu (GtkWidget *widget,
+                         gpointer user_data)
+{
+       view_trFolders_popup_menu (NULL);
+
+       return TRUE;
+}
+
+void
+on_trFolders_row_activated (GtkTreeView *tree_view,
+                            GtkTreePath *path,
+                            GtkTreeViewColumn *column,
+                            gpointer user_data)
+{
+       GtkTreeIter iter;
+
+       if (gtk_tree_selection_get_selected (selFolders, NULL, &iter))
+               {
+                       GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
+                       if (path != NULL)
+                               {
+                                       if (gtk_tree_path_get_depth (path) == 1)
+                                               {
+                                                       g_signal_emit_by_name (mnuConfigsEdit, "activate");
+                                               }
+                                       else
+                                               {
+                                                       g_signal_emit_by_name (mnuKeysEdit, "activate");
+                                               }
+                               }
+               }
+}
+
+int
+main (int argc, char **argv)
+{
+       GladeXML *glaMain;
+
+       GOptionEntry entries[] = 
+               {
+                       { "provider_id", 'p', 0, G_OPTION_ARG_STRING, &provider_id, "Provider ID", NULL },
+                       { "cnc_string", 'c', 0, G_OPTION_ARG_STRING, &cnc_string, "Connection string", NULL },
+                       { "filter", 'f', 0, G_OPTION_ARG_STRING, &filter, "Configurations filter", NULL },
+                       { NULL }
+               };
+
+       GOptionContext *context;
+       GError *error = NULL;
+
+       gtk_init (&argc, &argv);
+
+       glaMain = glade_xml_new (GLADEDIR "/gconfi.glade", "wMain", NULL);
+       glade_xml_signal_autoconnect (glaMain);
+
+       w = glade_xml_get_widget (glaMain, "wMain");
+       trFolders = glade_xml_get_widget (glaMain, "trFolders");
+       mnuDbClose = glade_xml_get_widget (glaMain, "mnuDbClose");
+       mnuDbRefresh = glade_xml_get_widget (glaMain, "mnuDbRefresh");
+       mnuConfigs = glade_xml_get_widget (glaMain, "mnuConfigs");
+       mnuConfigsEdit = glade_xml_get_widget (glaMain, "mnuConfigsEdit");
+       mnuKeys = glade_xml_get_widget (glaMain, "mnuKeys");
+       mnuKeysEdit = glade_xml_get_widget (glaMain, "mnuKeysEdit");
+       stbar = glade_xml_get_widget (glaMain, "stbar");
+
+       gtk_widget_set_sensitive (mnuDbClose, FALSE);
+       gtk_widget_set_sensitive (mnuDbRefresh, FALSE);
+       gtk_widget_set_sensitive (mnuConfigs, FALSE);
+       gtk_widget_set_sensitive (mnuKeys, FALSE);
+
+       create_trFolders ();
+
+       /* command line options */
+       context = g_option_context_new ("");
+       g_option_context_add_main_entries (context, entries, NULL);
+       if (!g_option_context_parse (context, &argc, &argv, &error))
+               {
+                       /* TO DO */
+                       return 0;
+               }
+
+       if (provider_id != NULL && cnc_string != NULL)
+               {
+                       if (fill_trFolders (provider_id, cnc_string, filter))
+                               {
+                                       gtk_widget_set_sensitive (mnuDbClose, TRUE);
+                                       gtk_widget_set_sensitive (mnuDbRefresh, TRUE);
+                                       gtk_widget_set_sensitive (mnuConfigs, TRUE);
+                                       gtk_widget_set_sensitive (mnuKeys, TRUE);
+
+                                       gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
+                                       gtk_statusbar_push (GTK_STATUSBAR (stbar), 0,
+                                                           g_strconcat ("Provider: ", provider_id, " - Connection string: ", cnc_string, NULL));
+                               }
+               }
+
+       gtk_main ();
+
+       return 0;
+}