]> saetta.ns0.it Git - zakconfi/gui/commitdiff
Started migration to gtk3 and libgda5.
authorAndrea Zagli <azagli@libero.it>
Thu, 6 Nov 2014 10:01:12 +0000 (11:01 +0100)
committerAndrea Zagli <azagli@libero.it>
Thu, 6 Nov 2014 10:01:12 +0000 (11:01 +0100)
.gitignore [new file with mode: 0644]
.in [deleted file]
autogen.sh
configure.ac
data/gconfi/glade/gconfi.glade
src/main.c

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..29e3115
--- /dev/null
@@ -0,0 +1,55 @@
+compile
+*~
+*.rpath
+*.pot
+*.mo
+*.gmo
+*.o
+*.lo
+*.la
+*.bak
+*.stamp
+*.tar.gz
+*.pc
+*.sed
+*.sin
+*.header
+.libs
+.deps
+ABOUT-NLS
+INSTALL
+Makefile
+Makefile.in
+Makefile.in.in
+Makevars
+aclocal.m4
+autom4te.cache/
+config.guess
+config.log
+config.sub
+config.h.in
+configure
+depcomp
+gtk-doc.make
+install-sh
+ltmain.sh
+m4/
+missing
+config.h
+config.status
+docs/reference/version.xml
+docs/reference/html/
+docs/reference/xml/
+libtool
+stamp-h1
+tests/test
+POTFILES
+mkinstalldirs
+stamp-it
+intltool-*
+Rules-quot
+*.exe
+tests/test
+*.csv
+gtk-doc.m4
+COPYING
diff --git a/.in b/.in
deleted file mode 100644 (file)
index 0d1e77c..0000000
--- a/.in
+++ /dev/null
@@ -1,22 +0,0 @@
-/* .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
index 6b2c713c2c320d3a24bab1c1481a178270c7f877..3a7dd78d7bec63fa35ab4ef9a0fc750952deb3cd 100755 (executable)
@@ -1,70 +1,23 @@
-#!/bin/sh
+#!/bin/bash
 # 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
+PKG_NAME="gconfi"
 
-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
+(test -f $srcdir/configure.ac \
+  && test -d $srcdir/src \
+  && test -f $srcdir/src/main.c) || {
+    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+    echo " top-level gconfi directory"
+    exit 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
+which gnome-autogen.sh || {
+    echo "You need to install gnome-common from GNOME and make"
+    echo "sure the gnome-autogen.sh script is in your \$PATH."
+    exit 1
 }
 
-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
+USE_GNOME2_MACROS=1 . gnome-autogen.sh
index eb5a9cb90d478b52e1d3826d0d7b6bb8a3ea89fb..53b43aed7e3041ed14ee8eeb1184fa40a26196fe 100644 (file)
@@ -2,10 +2,13 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.59)
-AC_INIT([gConfi], [0.0.2], [azagli@inwind.it])
+AC_INIT([gConfi], [0.5.0], [azagli@libero.it])
 AC_CONFIG_SRCDIR([src/main.c])
 
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE(-Wall)
+
+m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+
 AM_MAINTAINER_MODE
 
 AC_CANONICAL_SYSTEM
@@ -14,10 +17,8 @@ AC_CANONICAL_SYSTEM
 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])
+PKG_CHECK_MODULES(GCONFI, [gtk+-3.0 >= 3.0.0
+                           libconfi >= 0.5.0])
 
 AC_SUBST(GCONFI_CFLAGS)
 AC_SUBST(GCONFI_LIBS)
index a18c28ee96cb2eccb141f05d781dabaa3706a166..202ce68b7c85b7bcea147d32777f9a60bc83d159 100644 (file)
-<?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
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated with glade 3.18.3 -->
+<interface>
+  <requires lib="gtk+" version="3.12"/>
+  <object class="GtkAccelGroup" id="accelgroup1"/>
+  <object class="GtkAboutDialog" id="diagAbout">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="type_hint">normal</property>
+    <property name="copyright" translatable="yes">Copyright (C) 2005-2014 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.
@@ -342,1213 +22,1164 @@ 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>
+    <property name="authors">Andrea Zagli &lt;azagli@libero.it&gt;</property>
+    <property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
+    <property name="logo_icon_name">image-missing</property>
+    <child internal-child="vbox">
+      <object class="GtkBox" id="dialog-vbox1">
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
+        <child internal-child="action_area">
+          <object class="GtkButtonBox" id="dialog-action_area1">
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkDialog" id="diagNewDbCfg">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">New - gConfi</property>
+    <property name="modal">True</property>
+    <property name="default_width">300</property>
+    <property name="type_hint">dialog</property>
+    <signal name="response" handler="gtk_widget_hide" swapped="no"/>
+    <child internal-child="vbox">
+      <object class="GtkBox" id="vbox2">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
+        <child internal-child="action_area">
+          <object class="GtkButtonBox" id="hbuttonbox1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button1">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="button2">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkTable" id="table4">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="border_width">3</property>
+            <property name="n_rows">4</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">3</property>
+            <property name="row_spacing">3</property>
+            <child>
+              <object class="GtkLabel" id="label12">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Provider ID</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label13">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">1° Connection String</property>
+              </object>
+              <packing>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkComboBox" id="cbProvider">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtCncString1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label14">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Database Name</property>
+              </object>
+              <packing>
+                <property name="top_attach">2</property>
+                <property name="bottom_attach">3</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtDbName">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <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"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label16">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">2° Connection String</property>
+              </object>
+              <packing>
+                <property name="top_attach">3</property>
+                <property name="bottom_attach">4</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtCncString2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <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"/>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+    <action-widgets>
+      <action-widget response="-6">button1</action-widget>
+      <action-widget response="-5">button2</action-widget>
+    </action-widgets>
+  </object>
+  <object class="GtkDialog" id="diagOpenDbCfg">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Open - gConfi</property>
+    <property name="modal">True</property>
+    <property name="default_width">300</property>
+    <property name="type_hint">dialog</property>
+    <signal name="response" handler="gtk_widget_hide" swapped="no"/>
+    <child internal-child="vbox">
+      <object class="GtkBox" id="dialog-vbox4">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
+        <child internal-child="action_area">
+          <object class="GtkButtonBox" id="dialog-action_area4">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="cancelbutton1">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="okbutton1">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkTable" id="table1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="border_width">3</property>
+            <property name="n_rows">3</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">3</property>
+            <property name="row_spacing">3</property>
+            <child>
+              <object class="GtkLabel" id="label1">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Provider ID</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label2">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Connection String</property>
+              </object>
+              <packing>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkComboBox" id="cbProvider1">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtCncString">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label15">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Configurations Filter</property>
+              </object>
+              <packing>
+                <property name="top_attach">2</property>
+                <property name="bottom_attach">3</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtConfigsFilter">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <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"/>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+    <action-widgets>
+      <action-widget response="-6">cancelbutton1</action-widget>
+      <action-widget response="-5">okbutton1</action-widget>
+    </action-widgets>
+  </object>
+  <object class="GtkImage" id="image2">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="stock">gtk-save-as</property>
+    <property name="icon_size">1</property>
+  </object>
+  <object class="GtkImage" id="image3">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="stock">gtk-save-as</property>
+    <property name="icon_size">1</property>
+  </object>
+  <object class="GtkWindow" id="wMain">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="border_width">1</property>
+    <property name="title" translatable="yes">gConfi</property>
+    <property name="default_width">600</property>
+    <property name="default_height">400</property>
+    <accel-groups>
+      <group name="accelgroup1"/>
+    </accel-groups>
+    <signal name="delete-event" handler="gtk_main_quit" swapped="no"/>
+    <child>
+      <object class="GtkVBox" id="vbox1">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <child>
+          <object class="GtkMenuBar" id="menubar1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <child>
+              <object class="GtkMenuItem" id="mnuDb">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">_Database</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="mnuDb_menu">
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuDbNew">
+                        <property name="label">gtk-new</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuDbNew_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuDbOpen">
+                        <property name="label">gtk-open</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuDbOpen_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuDbClose">
+                        <property name="label">gtk-close</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuDbClose_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkSeparatorMenuItem" id="separatormenuitem1">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuDbRefresh">
+                        <property name="label">gtk-refresh</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuDbRefresh_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkSeparatorMenuItem" id="separatore1">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuDbQuit">
+                        <property name="label">gtk-quit</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="gtk_main_quit" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="mnuConfigs">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">_Configuration</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="mnuConfigs_menu">
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuConfigsNew">
+                        <property name="label">gtk-new</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuConfigsNew_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="mnuConfigsNewFromSchema">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">New from _schema</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnuConfigsNewFromSchema_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuConfigsEdit">
+                        <property name="label">gtk-edit</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuConfigsEdit_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuConfigsDelete">
+                        <property name="label">gtk-delete</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuConfigsDelete_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuConfigsExport">
+                        <property name="label" translatable="yes">E_xport</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="image">image2</property>
+                        <property name="use_stock">False</property>
+                        <signal name="activate" handler="on_mnuConfigsExport_activate" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="mnuKeys">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">_Key</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="mnuKeys_menu">
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuKeysNew">
+                        <property name="label">gtk-new</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuKeysNew_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkMenuItem" id="mnuKeysNewFromSchema">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="label" translatable="yes">New from _schema</property>
+                        <property name="use_underline">True</property>
+                        <signal name="activate" handler="on_mnuKeysNewFromSchema_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuKeysEdit">
+                        <property name="label">gtk-edit</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuKeysEdit_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuKeysDelete">
+                        <property name="label">gtk-delete</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuKeysDelete_activate" swapped="no"/>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuKeysExport">
+                        <property name="label" translatable="yes">E_xport</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="image">image3</property>
+                        <property name="use_stock">False</property>
+                        <signal name="activate" handler="on_mnuKeysExport_activate" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+            <child>
+              <object class="GtkMenuItem" id="mnuHelp">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="label" translatable="yes">_Help</property>
+                <property name="use_underline">True</property>
+                <child type="submenu">
+                  <object class="GtkMenu" id="mnuHelp_menu">
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkImageMenuItem" id="mnuHelpAabout">
+                        <property name="label">gtk-about</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="use_underline">True</property>
+                        <property name="use_stock">True</property>
+                        <property name="accel_group">accelgroup1</property>
+                        <signal name="activate" handler="on_mnuHelpAbout_activate" swapped="no"/>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">False</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow1">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="shadow_type">in</property>
+            <child>
+              <object class="GtkTreeView" id="trFolders">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <signal name="button-press-event" handler="on_trFolders_button_press_event" swapped="no"/>
+                <signal name="popup-menu" handler="on_trFolders_popup_menu" swapped="no"/>
+                <signal name="row-activated" handler="on_trFolders_row_activated" swapped="no"/>
+                <child internal-child="selection">
+                  <object class="GtkTreeSelection" id="treeview-selection1"/>
+                </child>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkStatusbar" id="stbar">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">False</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+  <object class="GtkTextBuffer" id="textbuffer1"/>
+  <object class="GtkDialog" id="wConfiguration">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Configuration - gConfi</property>
+    <property name="modal">True</property>
+    <property name="type_hint">dialog</property>
+    <child internal-child="vbox">
+      <object class="GtkBox" id="dialog-vbox2">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
+        <child internal-child="action_area">
+          <object class="GtkButtonBox" id="dialog-action_area2">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="btnCancel">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="btnOk">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkTable" id="table2">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="border_width">3</property>
+            <property name="n_rows">3</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">3</property>
+            <property name="row_spacing">3</property>
+            <child>
+              <object class="GtkLabel" id="label3">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">ID</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label4">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Name</property>
+              </object>
+              <packing>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label5">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Description</property>
+              </object>
+              <packing>
+                <property name="top_attach">2</property>
+                <property name="bottom_attach">3</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtID">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="editable">False</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtName">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow2">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="shadow_type">in</property>
+                <child>
+                  <object class="GtkTextView" id="txtvDescription">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="wrap_mode">word</property>
+                    <property name="buffer">textbuffer1</property>
+                  </object>
+                </child>
+              </object>
+              <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">GTK_FILL</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+    <action-widgets>
+      <action-widget response="-6">btnCancel</action-widget>
+      <action-widget response="-5">btnOk</action-widget>
+    </action-widgets>
+  </object>
+  <object class="GtkTextBuffer" id="textbuffer2"/>
+  <object class="GtkDialog" id="wKey">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="title" translatable="yes">Key - gConfi</property>
+    <property name="modal">True</property>
+    <property name="type_hint">dialog</property>
+    <child internal-child="vbox">
+      <object class="GtkBox" id="dialog-vbox3">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
+        <child internal-child="action_area">
+          <object class="GtkButtonBox" id="dialog-action_area3">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="btnCancel1">
+                <property name="label">gtk-cancel</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkButton" id="btnOk1">
+                <property name="label">gtk-ok</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="can_default">True</property>
+                <property name="receives_default">False</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="pack_type">end</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkTable" id="table3">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="border_width">3</property>
+            <property name="n_rows">6</property>
+            <property name="n_columns">2</property>
+            <property name="column_spacing">3</property>
+            <property name="row_spacing">3</property>
+            <child>
+              <object class="GtkLabel" id="label6">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Configuration</property>
+              </object>
+              <packing>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label7">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">ID</property>
+              </object>
+              <packing>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label8">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Parent</property>
+              </object>
+              <packing>
+                <property name="top_attach">2</property>
+                <property name="bottom_attach">3</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtID1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="editable">False</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="bottom_attach">2</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label9">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Name</property>
+              </object>
+              <packing>
+                <property name="top_attach">3</property>
+                <property name="bottom_attach">4</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtName1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <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"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label10">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Value</property>
+              </object>
+              <packing>
+                <property name="top_attach">4</property>
+                <property name="bottom_attach">5</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="txtValue">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="primary_icon_activatable">False</property>
+                <property name="secondary_icon_activatable">False</property>
+              </object>
+              <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"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="label11">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <property name="xalign">0</property>
+                <property name="label" translatable="yes">Description</property>
+              </object>
+              <packing>
+                <property name="top_attach">5</property>
+                <property name="bottom_attach">6</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options"/>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkScrolledWindow" id="scrolledwindow3">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="shadow_type">in</property>
+                <child>
+                  <object class="GtkTextView" id="txtvDescription1">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="wrap_mode">word</property>
+                    <property name="buffer">textbuffer2</property>
+                  </object>
+                </child>
+              </object>
+              <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">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkHBox" id="hbox1">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <child>
+                  <object class="GtkEntry" id="txtIDParent">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="primary_icon_activatable">False</property>
+                    <property name="secondary_icon_activatable">False</property>
+                  </object>
+                  <packing>
+                    <property name="expand">False</property>
+                    <property name="fill">False</property>
+                    <property name="position">0</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkEntry" id="txtParent">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="primary_icon_activatable">False</property>
+                    <property name="secondary_icon_activatable">False</property>
+                  </object>
+                  <packing>
+                    <property name="expand">True</property>
+                    <property name="fill">True</property>
+                    <property name="position">1</property>
+                  </packing>
+                </child>
+              </object>
+              <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">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkHBox" id="hbox2">
+                <property name="visible">True</property>
+                <property name="can_focus">False</property>
+                <child>
+                  <object class="GtkEntry" id="txtIDConfig">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="primary_icon_activatable">False</property>
+                    <property name="secondary_icon_activatable">False</property>
+                  </object>
+                  <packing>
+                    <property name="expand">False</property>
+                    <property name="fill">False</property>
+                    <property name="position">0</property>
+                  </packing>
+                </child>
+                <child>
+                  <object class="GtkEntry" id="txtConfig">
+                    <property name="visible">True</property>
+                    <property name="can_focus">True</property>
+                    <property name="editable">False</property>
+                    <property name="primary_icon_activatable">False</property>
+                    <property name="secondary_icon_activatable">False</property>
+                  </object>
+                  <packing>
+                    <property name="expand">True</property>
+                    <property name="fill">True</property>
+                    <property name="position">1</property>
+                  </packing>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="right_attach">2</property>
+                <property name="x_options">GTK_FILL</property>
+                <property name="y_options">GTK_FILL</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">2</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+    <action-widgets>
+      <action-widget response="-6">btnCancel1</action-widget>
+      <action-widget response="-5">btnOk1</action-widget>
+    </action-widgets>
+  </object>
+</interface>
index ce25b1327e0df6a7a6ec783443940ee75793bf1f..df6380ff6ae14e9d858ecababbc7de86976f8aa8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2014 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -19,8 +19,7 @@
 #include <string.h>
 
 #include <gtk/gtk.h>
-#include <glade/glade.h>
-#include <libgda/libgda.h>
+#include <libgdaex/libgdaex.h>
 #include <libxml/tree.h>
 #include <libxml/xinclude.h>
 #include <libxml/xpath.h>
@@ -37,23 +36,22 @@ enum
        FOLDERS_COLS
 };
 
-static GtkWidget *w,
-                 *trFolders,
-                 *mnuConfigs,
-                 *mnuConfigsEdit,
-                 *mnuKeys,
-                 *mnuKeysEdit,
-                 *mnuDbClose,
-                 *mnuDbRefresh,
-                 *stbar;
+static GtkWidget *w;
+static GtkWidget *trFolders;
+static GtkWidget *mnuConfigs;
+static GtkWidget *mnuConfigsEdit;
+static GtkWidget *mnuKeys;
+static GtkWidget *mnuKeysEdit;
+static GtkWidget *mnuDbClose;
+static GtkWidget *mnuDbRefresh;
+static GtkWidget *stbar;
 
 static GtkTreeStore *storeFolders;
 
 static GtkTreeSelection *selFolders;
 
-static gchar *provider_id,
-             *cnc_string,
-             *filter;
+static gchar *cnc_string;
+static gchar *filter;
 
 void on_mnuConfigsNew_activate (GtkMenuItem *menuitem, gpointer user_data);
 void on_mnuConfigsEdit_activate (GtkMenuItem *menuitem, gpointer user_data);
@@ -122,12 +120,12 @@ fill_trFolders_Keys (GNode *node, GtkTreeIter parent)
 
                        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);
+                                           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);
 
@@ -136,11 +134,11 @@ fill_trFolders_Keys (GNode *node, GtkTreeIter parent)
 }
 
 static gboolean
-fill_trFolders (const gchar *provider_id, const gchar *cnc_string, const gchar *filter)
+fill_trFolders (const gchar *cnc_string, const gchar *filter)
 {
        gboolean ret = FALSE;
 
-       GList *lstConfigs = confi_get_configs_list (NULL, provider_id, cnc_string, filter);
+       GList *lstConfigs = confi_get_configs_list (cnc_string, filter);
 
        gtk_tree_store_clear (storeFolders);
 
@@ -150,8 +148,8 @@ fill_trFolders (const gchar *provider_id, const gchar *cnc_string, const gchar *
                        Confi *confi;
                        GdaDataModel *dmKeys;
                        gint id;
-                       gchar *name,
-                                               *description;
+                       gchar *name;
+                       gchar *description;
                        GNode *tree;
 
                        lstConfigs = g_list_first (lstConfigs);
@@ -160,18 +158,18 @@ fill_trFolders (const gchar *provider_id, const gchar *cnc_string, const gchar *
                                        confi = (Confi *)lstConfigs->data;
 
                                        g_object_get (G_OBJECT (confi),
-                                                                                               "id_config", &id,
-                                                                                               "name", &name,
-                                                                                               "description", &description,
-                                                                                               NULL);
+                                                     "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);
+                                                           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)
@@ -241,8 +239,8 @@ view_trFolders_popup_menu (GdkEventButton *event)
                        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));
+                                       (event != NULL) ? event->button : 0,
+                                                         gdk_event_get_time ((GdkEvent*)event));
                }
 }
 
@@ -384,7 +382,7 @@ create_config_from_xml (xmlNode *xnode, xmlXPathContextPtr xpcontext)
                        if (xnodeset->nodeNr == 1)
                                {
                                
-                                       confi = confi_new (NULL, provider_id, cnc_string,
+                                       confi = confi_new (cnc_string,
                                                           (const gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]), NULL, TRUE);
                                        if (confi != NULL)
                                                {
@@ -486,8 +484,8 @@ load_xml_configuration_schema (const gchar *filename)
                                                                                                                        Confi *confi;
                
                                                                                                                        gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
-                                                                                                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
-                                                                                                                                                                                                       -1);
+                                                                                                                                           FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                                           -1);
 
                                                                                                                        create_key_from_xml (confi, "", &iter, xnode, xpcontext);
                                                                                                                }
@@ -502,12 +500,12 @@ load_xml_configuration_schema (const gchar *filename)
                                                                                                                                        ConfiKey *ck;
 
                                                                                                                                        gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterConfi,
-                                                                                                                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
-                                                                                                                                                                                                                       -1);
+                                                                                                                                                           FOLDERS_COL_OBJPTR, &confi,
+                                                                                                                                                           -1);
 
                                                                                                                                        gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
-                                                                                                                                                                                                                       FOLDERS_COL_OBJPTR, &ck,
-                                                                                                                                                                                                                       -1);
+                                                                                                                                                           FOLDERS_COL_OBJPTR, &ck,
+                                                                                                                                                           -1);
                                                                                                                                
                                                                                                                                        if (IS_CONFI (confi))
                                                                                                                                                {
@@ -544,13 +542,13 @@ 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");
+       GtkBuilder *glaOpenDbCfg = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+       GtkWidget *diag = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "diagNewDbCfg"));
+
+       GtkWidget *cbProvider = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "cbProvider"));
+       GtkWidget *txtCncString1 = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "txtCncString1"));
+       GtkWidget *txtDbName = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "txtDbName"));
+       GtkWidget *txtCncString2 = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "txtCncString2"));
 
        GtkListStore *store;
        GtkTreeIter iter;
@@ -565,31 +563,31 @@ on_mnuDbNew_activate (GtkMenuItem *menuitem,
                                       "text", 0);
 
        /* fill providers list */
-       GList *providers = gda_config_get_provider_list ();
+       GdaDataModel *providers = gda_config_list_providers ();
        if (providers != NULL)
                {
-                       do {
-                               GdaProviderInfo *pi = (GdaProviderInfo *)providers->data;
+                       int i;
+                       for (i = 0; i < gda_data_model_get_n_rows (providers); i++)
+                               {
+                                       GdaProviderInfo *pi = gda_config_get_provider_info (gdaex_data_model_get_value_stringify_at (providers, 0, 0));
 
-                               gtk_list_store_append (store, &iter);
-                               gtk_list_store_set (store, &iter, 0, pi->id, -1);
-                       } while ((providers = g_list_next (providers)) != NULL);
+                                       gtk_list_store_append (store, &iter);
+                                       gtk_list_store_set (store, &iter, 0, pi->id, -1);
+                               }
 
-                       gda_config_free_provider_list (providers);
+                       g_object_unref (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)
+                       if (strcmp (cnc_string, "") != 0)
                                {
-                                       GdaO *gdao = gdao_new_from_string (NULL, provider_id, cnc_string);
+                                       GdaEx *gdao = gdaex_new_from_string (cnc_string);
                                        if (gdao != NULL)
                                                {
-                                                       GdaConnection *gdaConn = (GdaConnection *)gdao_get_gdaconnection (gdao);
+                                                       GdaConnection *gdaConn = (GdaConnection *)gdaex_get_gdaconnection (gdao);
                                                        if (gdaConn == NULL)
                                                                {
                                                                        /* TO DO */
@@ -602,24 +600,24 @@ on_mnuDbNew_activate (GtkMenuItem *menuitem,
                                                                                        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))
+                                                                                                       GError *error;
+                                                                                                       GdaServerOperation *op =  gda_server_operation_prepare_create_database (gda_connection_get_provider_name (gdaConn), dbName, &error);
+                                                                                                       if (op == NULL || error != NULL)
                                                                                                                {
                                                                                                                        /* TO DO */
-                                                                                                                       g_fprintf(stderr,"error on database creation\n");
+                                                                                                                       g_fprintf(stderr,"error on database creation\n%s",
+                                                                                                                                 error != NULL && error->message != NULL ? error->message : "no details");
                                                                                                                        gdao = NULL;
                                                                                                                }
                                                                                                        else
                                                                                                                {
-                                                                                                                       if (!gda_connection_change_database (gdaConn, dbName))
+                                                                                                                       gda_connection_close (gdaConn);
+                                                                                                                       gdao = gdaex_new_from_string (cnc_string);
+                                                                                                                       if (gdao == NULL)
                                                                                                                                {
-                                                                                                                                       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;
-                                                                                                                                               }
+                                                                                                                                       /* TO DO */
+                                                                                                                                       g_fprintf(stderr,"error on second connection\n");
+                                                                                                                                       gdao = NULL;
                                                                                                                                }
                                                                                                                }
                                                                                                }
@@ -633,7 +631,7 @@ on_mnuDbNew_activate (GtkMenuItem *menuitem,
 
                                                                        if (gdao != NULL)
                                                                                {
-                                                                                       if (gdao_execute (gdao, "CREATE TABLE configs "
+                                                                                       if (gdaex_execute (gdao, "CREATE TABLE configs "
                                                                                                            "("
                                                                                                            " id integer NOT NULL, "
                                                                                                            " name varchar(100) DEFAULT '', "
@@ -650,11 +648,6 @@ on_mnuDbNew_activate (GtkMenuItem *menuitem,
                                                                                                        gchar chrquot = '\"';
                                                                                                        gchar *sql;
 
-                                                                                                       if (strcmp (provider_id, "MySQL") == 0)
-                                                                                                               {
-                                                                                                                       chrquot = '`';
-                                                                                                               }
-
                                                                                                        sql = g_strdup_printf ("CREATE TABLE %cvalues%c "
                                                                                                                                "("
                                                                                                                                " id_configs integer NOT NULL, "
@@ -668,14 +661,14 @@ on_mnuDbNew_activate (GtkMenuItem *menuitem,
                                                                                                                                ")",
                                                                                                                                chrquot, chrquot, chrquot, chrquot, chrquot, chrquot);
                                                                                                
-                                                                                                       if (gdao_execute (gdao, sql) == -1)
+                                                                                                       if (gdaex_execute (gdao, sql) == -1)
                                                                                                                {
                                                                                                                        /* TO DO */
                                                                                                                        gdao = NULL;
                                                                                                                }
                                                                                                        else
                                                                                                                {
-                                                                                                                       if (fill_trFolders (provider_id, cnc_string, NULL))
+                                                                                                                       if (fill_trFolders (cnc_string, NULL))
                                                                                                                                {
                                                                                                                                        gtk_widget_set_sensitive (mnuDbClose, TRUE);
                                                                                                                                        gtk_widget_set_sensitive (mnuDbRefresh, TRUE);
@@ -684,7 +677,7 @@ on_mnuDbNew_activate (GtkMenuItem *menuitem,
                
                                                                                                                                        gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
                                                                                                                                        gtk_statusbar_push (GTK_STATUSBAR (stbar), 0,
-                                                                                                                                                                                                                       g_strconcat ("Provider: ", provider_id, " - Connection string: ", cnc_string, NULL));
+                                                                                                                                                           g_strconcat ("Connection string: ", cnc_string, NULL));
                                                                                                                                }
                                                                                                                }
                                                                                                }
@@ -701,12 +694,12 @@ 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");
+       GtkBuilder *glaOpenDbCfg = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+       GtkWidget *diag = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "diagOpenDbCfg"));
 
-       GtkWidget *cbProvider = glade_xml_get_widget (glaOpenDbCfg, "cbProvider"),
-                                               *txtCncString = glade_xml_get_widget (glaOpenDbCfg, "txtCncString"),
-                 *txtConfigsFilter = glade_xml_get_widget (glaOpenDbCfg, "txtConfigsFilter");
+       GtkWidget *cbProvider = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "cbProvider"));
+       GtkWidget *txtCncString = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "txtCncString"));
+       GtkWidget *txtConfigsFilter = GTK_WIDGET (gtk_builder_get_object (glaOpenDbCfg, "txtConfigsFilter"));
 
        GtkListStore *store;
        GtkTreeIter iter;
@@ -721,28 +714,28 @@ on_mnuDbOpen_activate (GtkMenuItem *menuitem,
                                       "text", 0);
 
        /* fill providers list */
-       GList *providers = gda_config_get_provider_list ();
+       GdaDataModel *providers = gda_config_list_providers ();
        if (providers != NULL)
                {
-                       do {
-                               GdaProviderInfo *pi = (GdaProviderInfo *)providers->data;
+                       int i;
+                       for (i = 0; i < gda_data_model_get_n_rows (providers); i++)
+                               {
+                                       GdaProviderInfo *pi = gda_config_get_provider_info (gdaex_data_model_get_value_stringify_at (providers, 0, 0));
 
-                               gtk_list_store_append (store, &iter);
-                               gtk_list_store_set (store, &iter, 0, pi->id, -1);
-                       
-                       } while ((providers = g_list_next (providers)) != NULL);
+                                       gtk_list_store_append (store, &iter);
+                                       gtk_list_store_set (store, &iter, 0, pi->id, -1);
+                               }
 
-                       gda_config_free_provider_list (providers);
+                       g_object_unref (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)
+                       if (cnc_string != NULL)
                                {
                                        filter = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtConfigsFilter));
-                                       if (fill_trFolders (provider_id, cnc_string, filter))
+                                       if (fill_trFolders (cnc_string, filter))
                                                {
                                                        gtk_widget_set_sensitive (mnuDbClose, TRUE);
                                                        gtk_widget_set_sensitive (mnuDbRefresh, TRUE);
@@ -751,7 +744,7 @@ on_mnuDbOpen_activate (GtkMenuItem *menuitem,
 
                                                        gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
                                                        gtk_statusbar_push (GTK_STATUSBAR (stbar), 0,
-                                                                           g_strconcat ("Provider: ", provider_id, " - Connection string: ", cnc_string, NULL));
+                                                                           g_strconcat ("Connection string: ", cnc_string, NULL));
                                                }
                                }
                }
@@ -763,7 +756,6 @@ void
 on_mnuDbClose_activate (GtkMenuItem *menuitem,
                         gpointer user_data)
 {
-       provider_id = g_strdup ("");
        cnc_string = g_strdup ("");
 
        /* TO DO */
@@ -783,29 +775,29 @@ void
 on_mnuDbRefresh_activate (GtkMenuItem *menuitem,
                           gpointer user_data)
 {
-       fill_trFolders (provider_id, cnc_string, filter);
+       fill_trFolders (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");
+       GtkBuilder *glaCNew = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+       GtkWidget *diag = GTK_WIDGET (gtk_builder_get_object (glaCNew, "wConfiguration"));
 
        if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_OK)
                {
-                       GtkWidget *txtName,
-                                 *txtvDescription,
-                                 *fcbSchema;
+                       GtkWidget *txtName;
+                       GtkWidget *txtvDescription;
+                       GtkWidget *fcbSchema;
                        GtkTextBuffer *buffer;
                        GtkTextIter iter1, iter2;
-                       gchar *name,
-                             *description;
+                       gchar *name;
+                       gchar *description;
                        Confi *confi;
 
-                       txtName = glade_xml_get_widget (glaCNew, "txtName");
-                       txtvDescription = glade_xml_get_widget (glaCNew, "txtvDescription");
+                       txtName = GTK_WIDGET (gtk_builder_get_object (glaCNew, "txtName"));
+                       txtvDescription = GTK_WIDGET (gtk_builder_get_object (glaCNew, "txtvDescription"));
 
                        name = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtName));
 
@@ -813,7 +805,7 @@ on_mnuConfigsNew_activate (GtkMenuItem *menuitem,
                        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,
+                       confi = confi_new (cnc_string,
                                           name,
                                           NULL, TRUE);
                        if (confi != NULL)
@@ -875,26 +867,26 @@ on_mnuConfigsEdit_activate (GtkMenuItem *menuitem,
                                {
                                        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");
+                                       GtkBuilder *glaConfig = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+                                       GtkWidget *diag = GTK_WIDGET (gtk_builder_get_object (glaConfig, "wConfiguration"));
+                                       GtkWidget *txtID = GTK_WIDGET (gtk_builder_get_object (glaConfig, "txtID"));
+                                       GtkWidget *txtName = GTK_WIDGET (gtk_builder_get_object (glaConfig, "txtName"));
+                                       GtkWidget *txtvDescription = GTK_WIDGET (gtk_builder_get_object (glaConfig, "txtvDescription"));
                                        GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
 
                                        gint id;
-                                       gchar *name,
-                                                               *description;
+                                       gchar *name;
+                                       gchar *description;
 
                                        gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
-                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
-                                                                                                                       -1);
+                                                           FOLDERS_COL_OBJPTR, &confi,
+                                                           -1);
 
                                        g_object_get (G_OBJECT (confi),
-                                                                                               "id_config", &id,
-                                                                                               "name", &name,
-                                                                                               "description", &description,
-                                                                                               NULL);
+                                                     "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);
@@ -909,15 +901,15 @@ on_mnuConfigsEdit_activate (GtkMenuItem *menuitem,
                                                        description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
 
                                                        g_object_set (G_OBJECT (confi),
-                                                                                                               "name", name,
-                                                                                                               "description", description,
-                                                                                                               NULL);
+                                                                     "name", name,
+                                                                     "description", description,
+                                                                     NULL);
 
                                                        gtk_tree_store_set (storeFolders, &iter,
-                                                                                                                                       FOLDERS_COL_NAME, name,
-                                                                                                                                       FOLDERS_COL_DESCRIPTION, description,
+                                                                           FOLDERS_COL_NAME, name,
+                                                                           FOLDERS_COL_DESCRIPTION, description,
                                                                            FOLDERS_COL_OBJPTR, confi,
-                                                                                                                                       -1);
+                                                                           -1);
                                                }
 
                                        gtk_widget_destroy (diag);
@@ -939,15 +931,15 @@ on_mnuConfigsDelete_activate (GtkMenuItem *menuitem,
                                        Confi *confi;
                
                                        gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
-                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
-                                                                                                                       -1);
+                                                           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?");
+                                                                                                 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))
@@ -1011,7 +1003,7 @@ on_mnuConfigsExport_activate (GtkMenuItem *menuitem,
                        else
                                {
                                        /* saving all configurations */
-                                       GList *configs = confi_get_configs_list (NULL, provider_id, cnc_string, filter);
+                                       GList *configs = confi_get_configs_list (cnc_string, filter);
                                        if (configs != NULL)
                                                {
                                                        xmlDocPtr xdoc;
@@ -1054,20 +1046,20 @@ on_mnuKeysNew_activate (GtkMenuItem *menuitem,
                                {
                                        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");
+                                       GtkBuilder *glaKey = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+                                       GtkWidget *diag = GTK_WIDGET (gtk_builder_get_object (glaKey, "wKey"));
+                                       GtkWidget *txtIDConfig = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtIDConfig"));
+                                       GtkWidget *txtConfig = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtConfig"));
+                                       GtkWidget *txtID = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtID"));
+                                       GtkWidget *txtIDParent = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtIDParent"));
+                                       GtkWidget *txtParent = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtParent"));
+                                       GtkWidget *txtName = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtName"));
+                                       GtkWidget *txtValue = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtValue"));
+                                       GtkWidget *txtvDescription = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtvDescription"));
                                        GtkTreeIter iterConfi;
                                        gint id_config;
-                                       gchar *name,
-                                                         *keyPath = "";
+                                       gchar *name;
+                                       gchar *keyPath = "";
 
                                        if (gtk_tree_path_get_depth (path) == 1)
                                                {
@@ -1077,27 +1069,26 @@ on_mnuKeysNew_activate (GtkMenuItem *menuitem,
                                        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_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);
+                                                                           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);
+                                                           FOLDERS_COL_OBJPTR, &confi,
+                                                           -1);
 
                                        g_object_get (G_OBJECT (confi),
-                                                                                               "id_config", &id_config,
-                                                                                               "name", &name,
-                                                                                               NULL);
-                               
+                                                     "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);
 
@@ -1107,9 +1098,9 @@ on_mnuKeysNew_activate (GtkMenuItem *menuitem,
                                                        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;
+                                                       gchar *name = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtName));
+                                                       gchar *value = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtValue));
+                                                       gchar *description;
                                                        GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
 
                                                        gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
@@ -1124,12 +1115,12 @@ on_mnuKeysNew_activate (GtkMenuItem *menuitem,
 
                                                                        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_ID, ck->id,
+                                                                                           FOLDERS_COL_NAME, name,
+                                                                                           FOLDERS_COL_VALUE, value,
+                                                                                           FOLDERS_COL_DESCRIPTION, description,
                                                                                            FOLDERS_COL_OBJPTR, ck,
-                                                                                                                                                       -1);
+                                                                                           -1);
                                                                }
                                                }
 
@@ -1170,22 +1161,22 @@ on_mnuKeysEdit_activate (GtkMenuItem *menuitem,
                        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");
+                                       GtkBuilder *glaKey = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+                                       GtkWidget *diag = GTK_WIDGET (gtk_builder_get_object (glaKey, "wKey"));
+                                       GtkWidget *txtIDConfig = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtIDConfig"));
+                                       GtkWidget *txtConfig = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtConfig"));
+                                       GtkWidget *txtID = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtID"));
+                                       GtkWidget *txtIDParent = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtIDParent"));
+                                       GtkWidget *txtParent = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtParent"));
+                                       GtkWidget *txtName = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtName"));
+                                       GtkWidget *txtValue = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtValue"));
+                                       GtkWidget *txtvDescription = GTK_WIDGET (gtk_builder_get_object (glaKey, "txtvDescription"));
                                        GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
 
                                        ConfiKey *ck;
 
-                                       GtkTreeIter iterConfi,
-                                                   iterParent;
+                                       GtkTreeIter iterConfi;
+                                       GtkTreeIter 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)))
@@ -1193,8 +1184,8 @@ on_mnuKeysEdit_activate (GtkMenuItem *menuitem,
                                                        gchar *name;
 
                                                        gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterConfi,
-                                                                                                                                       FOLDERS_COL_OBJPTR, &confi,
-                                                                                                                                       -1);
+                                                                           FOLDERS_COL_OBJPTR, &confi,
+                                                                           -1);
 
                                                        g_object_get (G_OBJECT (confi),
                                                                      "name", &name,
@@ -1221,7 +1212,7 @@ on_mnuKeysEdit_activate (GtkMenuItem *menuitem,
                                                                        ConfiKey *ckParent;
 
                                                                        gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterParent,
-                                                                                                                                                       FOLDERS_COL_OBJPTR, &ckParent,
+                                                                                           FOLDERS_COL_OBJPTR, &ckParent,
                                                                                            -1);
 
                                                                        gtk_entry_set_text (GTK_ENTRY (txtParent), ckParent->key);
@@ -1265,10 +1256,10 @@ on_mnuKeysDelete_activate (GtkMenuItem *menuitem,
                        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?");
+                                                                                 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;
@@ -1278,16 +1269,16 @@ on_mnuKeysDelete_activate (GtkMenuItem *menuitem,
                                                                                 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);
+                                                                           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);
+                                                                                           FOLDERS_COL_OBJPTR, &ck,
+                                                                                           -1);
 
                                                                        if (confi_remove_path (confi, g_strconcat (ck->path, "/", ck->key, NULL)))
                                                                                {
@@ -1311,8 +1302,8 @@ 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");
+       GtkBuilder *glaAbout = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+       GtkWidget *diag = GTK_WIDGET (gtk_builder_get_object (glaAbout, "diagAbout"));
        gtk_dialog_run (GTK_DIALOG (diag));
        gtk_widget_destroy (diag);
 }
@@ -1384,11 +1375,10 @@ on_trFolders_row_activated (GtkTreeView *tree_view,
 int
 main (int argc, char **argv)
 {
-       GladeXML *glaMain;
+       GtkBuilder *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 }
@@ -1399,18 +1389,18 @@ main (int argc, char **argv)
 
        gtk_init (&argc, &argv);
 
-       glaMain = glade_xml_new (GLADEDIR "/gconfi.glade", "wMain", NULL);
-       glade_xml_signal_autoconnect (glaMain);
+       glaMain = gtk_builder_new_from_file (GLADEDIR "/gconfi.glade");
+       gtk_builder_connect_signals (glaMain, NULL);
 
-       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");
+       w = GTK_WIDGET (gtk_builder_get_object (glaMain, "wMain"));
+       trFolders = GTK_WIDGET (gtk_builder_get_object (glaMain, "trFolders"));
+       mnuDbClose = GTK_WIDGET (gtk_builder_get_object (glaMain, "mnuDbClose"));
+       mnuDbRefresh = GTK_WIDGET (gtk_builder_get_object (glaMain, "mnuDbRefresh"));
+       mnuConfigs = GTK_WIDGET (gtk_builder_get_object (glaMain, "mnuConfigs"));
+       mnuConfigsEdit = GTK_WIDGET (gtk_builder_get_object (glaMain, "mnuConfigsEdit"));
+       mnuKeys = GTK_WIDGET (gtk_builder_get_object (glaMain, "mnuKeys"));
+       mnuKeysEdit = GTK_WIDGET (gtk_builder_get_object (glaMain, "mnuKeysEdit"));
+       stbar = GTK_WIDGET (gtk_builder_get_object (glaMain, "stbar"));
 
        gtk_widget_set_sensitive (mnuDbClose, FALSE);
        gtk_widget_set_sensitive (mnuDbRefresh, FALSE);
@@ -1428,9 +1418,9 @@ main (int argc, char **argv)
                        return 0;
                }
 
-       if (provider_id != NULL && cnc_string != NULL)
+       if (cnc_string != NULL)
                {
-                       if (fill_trFolders (provider_id, cnc_string, filter))
+                       if (fill_trFolders (cnc_string, filter))
                                {
                                        gtk_widget_set_sensitive (mnuDbClose, TRUE);
                                        gtk_widget_set_sensitive (mnuDbRefresh, TRUE);
@@ -1439,7 +1429,7 @@ main (int argc, char **argv)
 
                                        gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
                                        gtk_statusbar_push (GTK_STATUSBAR (stbar), 0,
-                                                           g_strconcat ("Provider: ", provider_id, " - Connection string: ", cnc_string, NULL));
+                                                           g_strconcat ("Connection string: ", cnc_string, NULL));
                                }
                }