[Pkg-cli-apps-commits] [SCM] monobristol branch, master, updated. debian/0.60.2-1-4-g79c51ea

Stefan Ebner sebner at ubuntu.com
Wed Dec 22 01:42:00 UTC 2010


The following commit has been merged in the master branch:
commit 79c51eaa3168f8666ea3d0fac59a3b7704d0e77f
Author: Stefan Ebner <sebner at ubuntu.com>
Date:   Wed Dec 22 02:41:16 2010 +0100

    Revert "New upstream release"
    
    This reverts commit 3d9f4fd38596a8a30b2e61d6ed3fc851b677b995.

diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs
index f239f5e..d00e19c 100644
--- a/AssemblyInfo.cs
+++ b/AssemblyInfo.cs
@@ -21,7 +21,7 @@ using System.Runtime.CompilerServices;
 // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
 // If the build and revision are set to '*' they will be updated automatically.
 
-[assembly: AssemblyVersion("0.60.3")]
+[assembly: AssemblyVersion("0.60.2")]
 
 // The following attributes are used to specify the signing key for the assembly, 
 // if desired. See the Mono documentation for more information about signing.
diff --git a/MainWindow.cs b/MainWindow.cs
index 578d90a..2769521 100644
--- a/MainWindow.cs
+++ b/MainWindow.cs
@@ -21,7 +21,6 @@ public partial class MainWindow: Gtk.Window
 	public string config;
 	public string onladigui, onladiengine, onladiindex, ladiindex;
 	public string onnrpgui, onnrpengine, onnrpglobal, onnrpsize, nrpsize;
-	public string onstateasy, onstatadv, onmultieasy, onmultiadv, multieasy, multiadv;
 	
 	
 	public MainWindow (): base (Gtk.WindowType.Toplevel)
@@ -94,12 +93,6 @@ public partial class MainWindow: Gtk.Window
 				onnrpgui = actualNode["onnrpgui"].InnerText;
 				onnrpsize = actualNode["onnrpsize"].InnerText;
 				nrpsize = actualNode["nrpsize"].InnerText;
-				onstateasy = actualNode["onstateasy"].InnerText;
-				onstatadv = actualNode["onstatadv"].InnerText;
-				onmultiadv = actualNode["onmultiadv"].InnerText;
-				onmultieasy = actualNode["onmultieasy"].InnerText;
-				multiadv = actualNode["multiadv"].InnerText;
-				multieasy = actualNode["multieasy"].InnerText;
 				
 				
 			//set parameters and update GUI
@@ -137,8 +130,6 @@ public partial class MainWindow: Gtk.Window
 			entryvelocity.Text = velocity;
 			spinglide.Value = Convert.ToDouble(glide);
 			spinpitch.Value = Convert.ToDouble(pwd);
-			spinmultiadv.Value = Convert.ToDouble(multiadv);
-			spinmultieasy.Value = Convert.ToDouble(multieasy);
 			entryharmo.Text = harmo;
 			entryfract.Text = fract;
 			entryjsdelay.Text = jsdelay;
@@ -246,18 +237,6 @@ public partial class MainWindow: Gtk.Window
 			if (onfract == "1"){
 					chonfract.Active = true;
 				}
-			if (onmultieasy == "1"){
-					chmultieasy.Active = true;
-				}
-			if (onmultiadv == "1"){
-					chmultiadv.Active = true;
-				}
-			if (onstatadv == "1"){
-					chstatadv.Active = true;
-				}
-			if (onstateasy == "1"){
-					chstateasy.Active = true;
-				}
 				
 				
 			
@@ -295,18 +274,10 @@ public partial class MainWindow: Gtk.Window
 	{
 		if (mode == "easy") {
 			param = param + "-"+easydriver;
-			if (easydriver == "alsa"){
-				param = param+" -audiodev default ";
-			} else if (easydriver == "jack"){
+			if (easydriver == "jack"){
 				if (autoe == "1"){
 					param = param+" -autoconn";
 				}
-				if (onstateasy == "1"){
-					param = param+" -jackstats";
-				}
-				if (onmultieasy == "1"){
-					param = param+" -multi" + multieasy;
-				}
 				if (onjsdisable == "1"){
 					param = param+" -session";
 				}else{
@@ -325,18 +296,10 @@ public partial class MainWindow: Gtk.Window
 		
 		if (mode == "advanced") {
 			param = param + "-audio "+adriver+" -midi "+mdriver;
-			if (easydriver == "alsa"){
-				param = param+" -audiodev default ";
-			} if (adriver == "jack"){
+			if (adriver == "jack"){
 				if (autoa == "1"){
 					param = param+" -autoconn";
 				}
-				if (onstatadv == "1"){
-					param = param+" -jackstats";
-				}
-				if (onmultiadv == "1"){
-					param = param+" -multi" + multiadv;
-				}
 				if (onjsdisable == "1"){
 					param = param+" -session";
 				}else{
@@ -461,9 +424,6 @@ public partial class MainWindow: Gtk.Window
 		if (rbmjack.Active.ToString () == "True") {
 			mdriver = "jack";
 		}
-		
-		multiadv = spinmultiadv.Text.ToString ();
-		multieasy = spinmultieasy.Text.ToString ();
 		ogain = spingain.Text.ToString ();
 		igain = spiningain.Text.ToString ();
 		rate = entryrate.Text.ToString ();
@@ -651,26 +611,7 @@ public partial class MainWindow: Gtk.Window
 		}else{
 			onrate = "0";
 		}
-		if (chstateasy.Active.ToString () == "True"){
-			onstateasy = "1";
-		}else{
-			onstateasy = "0";
-		}
-		if (chstatadv.Active.ToString () == "True"){
-			onstatadv = "1";
-		}else{
-			onstatadv = "0";
-		}
-		if (chmultiadv.Active.ToString () == "True"){
-			onmultiadv = "1";
-		}else{
-			onmultiadv = "0";
-		}
-		if (chmultieasy.Active.ToString () == "True"){
-			onmultieasy = "1";
-		}else{
-			onmultieasy = "0";
-		}
+		
 		
 		
 		if (rbeasy.Active.ToString () == "True"){
@@ -701,7 +642,6 @@ public partial class MainWindow: Gtk.Window
 		config = config + "<onladiengine>"+onladiengine+"</onladiengine><onladigui>"+onladigui+"</onladigui><onladiindex>"+onladiindex+"</onladiindex><ladiindex>"+ladiindex+"</ladiindex>";
 		config = config + "<onnrpengine>"+onnrpengine+"</onnrpengine><onnrpgui>"+onnrpgui+"</onnrpgui><onnrpglobal>"+onnrpglobal+"</onnrpglobal><onnrpsize>"+onnrpsize+"</onnrpsize><nrpsize>"+nrpsize+"</nrpsize>";
 		config = config + "<onvoices>"+onvoices+"</onvoices><voices>"+voices+"</voices><tcp>"+tcp+"</tcp><host>"+host+"</host><onhost>"+onhost+"</onhost><ontcp>"+ontcp+"</ontcp><onpreload>"+onpreload+"</onpreload><preload>"+preload+"</preload>";
-		config = config + "<onmultieasy>"+onmultieasy+"</onmultieasy><onmultiadv>"+onmultiadv+"</onmultiadv><onstatadv>"+onstatadv+"</onstatadv><onstateasy>"+onstateasy+"</onstateasy><multiadv>"+multiadv+"</multiadv><multieasy>"+multieasy+"</multieasy>";
 		config = config + "</param></config>";
 		System.IO.File.WriteAllText (System.IO.Directory.GetCurrentDirectory() + "/.monobristol.xml", config);
 	}
@@ -1010,12 +950,6 @@ public partial class MainWindow: Gtk.Window
 		chontcpport.Active = false;
 		chonperiod.Active = false;
 		chonrate.Active = false;
-		chmultieasy.Active = false;
-		chmultiadv.Active = false;
-		chstatadv.Active = false;
-		chstateasy.Active = false;
-		spinmultiadv.Value = 1;
-		spinmultieasy.Value = 1;
 		
 	}
 
@@ -1036,12 +970,6 @@ public partial class MainWindow: Gtk.Window
 		rbejack.Show();
 		chautoadv.Hide ();
 		chautoeasy.Show ();
-		chstatadv.Hide ();
-		chmultiadv.Hide ();
-		chstateasy.Show ();
-		chmultieasy.Show ();
-		spinmultiadv.Hide ();
-		spinmultieasy.Show ();
 	}
 
 	protected virtual void OnRbadv1Clicked (object sender, System.EventArgs e)
@@ -1060,12 +988,6 @@ public partial class MainWindow: Gtk.Window
 		rbejack.Hide ();
 		chautoeasy.Hide ();
 		chautoadv.Show ();
-		chstatadv.Show ();
-		chmultiadv.Show ();
-		chstateasy.Hide ();
-		chmultieasy.Hide ();
-		spinmultiadv.Show ();
-		spinmultieasy.Hide ();
 	}
 
 	protected virtual void OnChnwfToggled (object sender, System.EventArgs e)
diff --git a/configure b/configure
index 08d6502..6234299 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.67 for monoBristol 0.60.3.
+# Generated by GNU Autoconf 2.67 for monoBristol 0.60.2.
 #
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -548,8 +548,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='monoBristol'
 PACKAGE_TARNAME='monobristol'
-PACKAGE_VERSION='0.60.3'
-PACKAGE_STRING='monoBristol 0.60.3'
+PACKAGE_VERSION='0.60.2'
+PACKAGE_STRING='monoBristol 0.60.2'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1197,7 +1197,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures monoBristol 0.60.3 to adapt to many kinds of systems.
+\`configure' configures monoBristol 0.60.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1263,7 +1263,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of monoBristol 0.60.3:";;
+     short | recursive ) echo "Configuration of monoBristol 0.60.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1273,8 +1273,8 @@ Optional Features:
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
   --enable-maintainer-mode  enable make rules and dependencies not useful
 			  (and sometimes confusing) to the casual installer
-  --enable-debug          Use 'DEBUG' Configuration [default=NO]
-  --enable-release        Use 'RELEASE' Configuration [default=YES]
+  --enable-debug          Use 'DEBUG' Configuration [default=YES]
+  --enable-release        Use 'RELEASE' Configuration [default=NO]
 
 Some influential environment variables:
   PKG_CONFIG  path to pkg-config utility
@@ -1361,7 +1361,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-monoBristol configure 0.60.3
+monoBristol configure 0.60.2
 generated by GNU Autoconf 2.67
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1378,7 +1378,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by monoBristol $as_me 0.60.3, which was
+It was created by monoBristol $as_me 0.60.2, which was
 generated by GNU Autoconf 2.67.  Invocation command line was
 
   $ $0 $@
@@ -2193,7 +2193,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='monobristol'
- VERSION='0.60.3'
+ VERSION='0.60.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2433,14 +2433,14 @@ if test "x$enable_release" = "xyes" ; then
 fi
 if test -z "$CONFIG_REQUESTED" ; then
 	 if true; then
-  ENABLE_RELEASE_TRUE=
-  ENABLE_RELEASE_FALSE='#'
+  ENABLE_DEBUG_TRUE=
+  ENABLE_DEBUG_FALSE='#'
 else
-  ENABLE_RELEASE_TRUE='#'
-  ENABLE_RELEASE_FALSE=
+  ENABLE_DEBUG_TRUE='#'
+  ENABLE_DEBUG_FALSE=
 fi
 
-	enable_release=yes
+	enable_debug=yes
 fi
 
 
@@ -2983,8 +2983,8 @@ if test -z "${ENABLE_RELEASE_TRUE}" && test -z "${ENABLE_RELEASE_FALSE}"; then
   as_fn_error $? "conditional \"ENABLE_RELEASE\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
-if test -z "${ENABLE_RELEASE_TRUE}" && test -z "${ENABLE_RELEASE_FALSE}"; then
-  as_fn_error $? "conditional \"ENABLE_RELEASE\" was never defined.
+if test -z "${ENABLE_DEBUG_TRUE}" && test -z "${ENABLE_DEBUG_FALSE}"; then
+  as_fn_error $? "conditional \"ENABLE_DEBUG\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 
@@ -3395,7 +3395,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by monoBristol $as_me 0.60.3, which was
+This file was extended by monoBristol $as_me 0.60.2, which was
 generated by GNU Autoconf 2.67.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3448,7 +3448,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-monoBristol config.status 0.60.3
+monoBristol config.status 0.60.2
 configured by $0, generated by GNU Autoconf 2.67,
   with options \\"\$ac_cs_config\\"
 
diff --git a/configure.ac b/configure.ac
index ffb9576..1c09814 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 dnl Warning: This is an automatically generated file, do not edit!
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ([2.54])
-AC_INIT([monoBristol], [0.60.3])
+AC_INIT([monoBristol], [0.60.2])
 AM_INIT_AUTOMAKE([foreign])
 AM_MAINTAINER_MODE
 
@@ -25,7 +25,7 @@ fi
 
 AC_ARG_ENABLE(debug,
 	AC_HELP_STRING([--enable-debug],
-		[Use 'DEBUG' Configuration [default=NO]]),
+		[Use 'DEBUG' Configuration [default=YES]]),
 		enable_debug=yes, enable_debug=no)
 AM_CONDITIONAL(ENABLE_DEBUG, test x$enable_debug = xyes)
 if test "x$enable_debug" = "xyes" ; then
@@ -33,15 +33,15 @@ if test "x$enable_debug" = "xyes" ; then
 fi
 AC_ARG_ENABLE(release,
 	AC_HELP_STRING([--enable-release],
-		[Use 'RELEASE' Configuration [default=YES]]),
+		[Use 'RELEASE' Configuration [default=NO]]),
 		enable_release=yes, enable_release=no)
 AM_CONDITIONAL(ENABLE_RELEASE, test x$enable_release = xyes)
 if test "x$enable_release" = "xyes" ; then
 	CONFIG_REQUESTED="yes"
 fi
 if test -z "$CONFIG_REQUESTED" ; then
-	AM_CONDITIONAL(ENABLE_RELEASE, true)
-	enable_release=yes
+	AM_CONDITIONAL(ENABLE_DEBUG, true)
+	enable_debug=yes
 fi
 
 
diff --git a/gtk-gui/MainWindow.cs b/gtk-gui/MainWindow.cs
index c228c53..cbc4d63 100644
--- a/gtk-gui/MainWindow.cs
+++ b/gtk-gui/MainWindow.cs
@@ -121,14 +121,6 @@ public partial class MainWindow
 
 	private global::Gtk.CheckButton chautoeasy;
 
-	private global::Gtk.CheckButton chstateasy;
-
-	private global::Gtk.HBox hbox2;
-
-	private global::Gtk.CheckButton chmultieasy;
-
-	private global::Gtk.SpinButton spinmultieasy;
-
 	private global::Gtk.Label GtkLabel72;
 
 	private global::Gtk.VSeparator vseparator3;
@@ -157,14 +149,6 @@ public partial class MainWindow
 
 	private global::Gtk.CheckButton chautoadv;
 
-	private global::Gtk.CheckButton chstatadv;
-
-	private global::Gtk.HBox hbox12;
-
-	private global::Gtk.CheckButton chmultiadv;
-
-	private global::Gtk.SpinButton spinmultiadv;
-
 	private global::Gtk.VSeparator vseparator12;
 
 	private global::Gtk.Label lmidi;
@@ -219,7 +203,7 @@ public partial class MainWindow
 
 	private global::Gtk.Entry entryjsdelay;
 
-	private global::Gtk.Label GtkLabel86;
+	private global::Gtk.Label GtkLabel83;
 
 	private global::Gtk.VSeparator vseparator20;
 
@@ -239,7 +223,7 @@ public partial class MainWindow
 
 	private global::Gtk.Entry entryladiindex;
 
-	private global::Gtk.Label GtkLabel90;
+	private global::Gtk.Label GtkLabel87;
 
 	private global::Gtk.VSeparator vseparator21;
 
@@ -261,7 +245,7 @@ public partial class MainWindow
 
 	private global::Gtk.Entry entrynrpsize;
 
-	private global::Gtk.Label GtkLabel95;
+	private global::Gtk.Label GtkLabel92;
 
 	private global::Gtk.VSeparator vseparator22;
 
@@ -283,7 +267,7 @@ public partial class MainWindow
 
 	private global::Gtk.Entry entrytcphost;
 
-	private global::Gtk.Label GtkLabel98;
+	private global::Gtk.Label GtkLabel94;
 
 	private global::Gtk.HSeparator hseparator5;
 
@@ -343,7 +327,7 @@ public partial class MainWindow
 
 	private global::Gtk.CheckButton chglwf;
 
-	private global::Gtk.Label GtkLabel71;
+	private global::Gtk.Label GtkLabel69;
 
 	private global::Gtk.VSeparator vseparator16;
 
@@ -385,7 +369,7 @@ public partial class MainWindow
 
 	private global::Gtk.Entry entryfract;
 
-	private global::Gtk.Label GtkLabel80;
+	private global::Gtk.Label GtkLabel78;
 
 	private global::Gtk.Label lconfig;
 
@@ -409,7 +393,7 @@ public partial class MainWindow
 		this.notebook1 = new global::Gtk.Notebook ();
 		this.notebook1.CanFocus = true;
 		this.notebook1.Name = "notebook1";
-		this.notebook1.CurrentPage = 2;
+		this.notebook1.CurrentPage = 0;
 		// Container child notebook1.Gtk.Notebook+NotebookChild
 		this.table1 = new global::Gtk.Table (((uint)(10)), ((uint)(4)), true);
 		this.table1.Name = "table1";
@@ -1082,50 +1066,6 @@ public partial class MainWindow
 		w52.Position = 3;
 		w52.Expand = false;
 		w52.Fill = false;
-		// Container child vbox10.Gtk.Box+BoxChild
-		this.chstateasy = new global::Gtk.CheckButton ();
-		this.chstateasy.CanFocus = true;
-		this.chstateasy.Name = "chstateasy";
-		this.chstateasy.Label = global::Mono.Unix.Catalog.GetString ("Jack stats");
-		this.chstateasy.DrawIndicator = true;
-		this.chstateasy.UseUnderline = true;
-		this.vbox10.Add (this.chstateasy);
-		global::Gtk.Box.BoxChild w53 = ((global::Gtk.Box.BoxChild)(this.vbox10[this.chstateasy]));
-		w53.Position = 4;
-		w53.Expand = false;
-		w53.Fill = false;
-		// Container child vbox10.Gtk.Box+BoxChild
-		this.hbox2 = new global::Gtk.HBox ();
-		this.hbox2.Name = "hbox2";
-		this.hbox2.Spacing = 6;
-		// Container child hbox2.Gtk.Box+BoxChild
-		this.chmultieasy = new global::Gtk.CheckButton ();
-		this.chmultieasy.CanFocus = true;
-		this.chmultieasy.Name = "chmultieasy";
-		this.chmultieasy.Label = global::Mono.Unix.Catalog.GetString ("Multiple IO port requests:");
-		this.chmultieasy.DrawIndicator = true;
-		this.chmultieasy.UseUnderline = true;
-		this.hbox2.Add (this.chmultieasy);
-		global::Gtk.Box.BoxChild w54 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.chmultieasy]));
-		w54.Position = 0;
-		// Container child hbox2.Gtk.Box+BoxChild
-		this.spinmultieasy = new global::Gtk.SpinButton (1, 100, 1);
-		this.spinmultieasy.CanFocus = true;
-		this.spinmultieasy.Name = "spinmultieasy";
-		this.spinmultieasy.Adjustment.PageIncrement = 10;
-		this.spinmultieasy.ClimbRate = 1;
-		this.spinmultieasy.Numeric = true;
-		this.spinmultieasy.Value = 1;
-		this.hbox2.Add (this.spinmultieasy);
-		global::Gtk.Box.BoxChild w55 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.spinmultieasy]));
-		w55.Position = 1;
-		w55.Expand = false;
-		w55.Fill = false;
-		this.vbox10.Add (this.hbox2);
-		global::Gtk.Box.BoxChild w56 = ((global::Gtk.Box.BoxChild)(this.vbox10[this.hbox2]));
-		w56.Position = 5;
-		w56.Expand = false;
-		w56.Fill = false;
 		this.GtkAlignment1.Add (this.vbox10);
 		this.frame2.Add (this.GtkAlignment1);
 		this.GtkLabel72 = new global::Gtk.Label ();
@@ -1134,18 +1074,18 @@ public partial class MainWindow
 		this.GtkLabel72.UseMarkup = true;
 		this.frame2.LabelWidget = this.GtkLabel72;
 		this.hbox8.Add (this.frame2);
-		global::Gtk.Box.BoxChild w59 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.frame2]));
-		w59.Position = 1;
-		w59.Expand = false;
-		w59.Fill = false;
+		global::Gtk.Box.BoxChild w55 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.frame2]));
+		w55.Position = 1;
+		w55.Expand = false;
+		w55.Fill = false;
 		// Container child hbox8.Gtk.Box+BoxChild
 		this.vseparator3 = new global::Gtk.VSeparator ();
 		this.vseparator3.Name = "vseparator3";
 		this.hbox8.Add (this.vseparator3);
-		global::Gtk.Box.BoxChild w60 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.vseparator3]));
-		w60.Position = 2;
-		w60.Expand = false;
-		w60.Fill = false;
+		global::Gtk.Box.BoxChild w56 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.vseparator3]));
+		w56.Position = 2;
+		w56.Expand = false;
+		w56.Fill = false;
 		// Container child hbox8.Gtk.Box+BoxChild
 		this.frame1 = new global::Gtk.Frame ();
 		this.frame1.Name = "frame1";
@@ -1166,18 +1106,18 @@ public partial class MainWindow
 		this.rbadv1.UseUnderline = true;
 		this.rbadv1.Group = this.rbeasy.Group;
 		this.vbox7.Add (this.rbadv1);
-		global::Gtk.Box.BoxChild w61 = ((global::Gtk.Box.BoxChild)(this.vbox7[this.rbadv1]));
-		w61.Position = 0;
-		w61.Expand = false;
-		w61.Fill = false;
+		global::Gtk.Box.BoxChild w57 = ((global::Gtk.Box.BoxChild)(this.vbox7[this.rbadv1]));
+		w57.Position = 0;
+		w57.Expand = false;
+		w57.Fill = false;
 		// Container child vbox7.Gtk.Box+BoxChild
 		this.hseparator3 = new global::Gtk.HSeparator ();
 		this.hseparator3.Name = "hseparator3";
 		this.vbox7.Add (this.hseparator3);
-		global::Gtk.Box.BoxChild w62 = ((global::Gtk.Box.BoxChild)(this.vbox7[this.hseparator3]));
-		w62.Position = 1;
-		w62.Expand = false;
-		w62.Fill = false;
+		global::Gtk.Box.BoxChild w58 = ((global::Gtk.Box.BoxChild)(this.vbox7[this.hseparator3]));
+		w58.Position = 1;
+		w58.Expand = false;
+		w58.Fill = false;
 		// Container child vbox7.Gtk.Box+BoxChild
 		this.hbox7 = new global::Gtk.HBox ();
 		this.hbox7.Name = "hbox7";
@@ -1187,10 +1127,10 @@ public partial class MainWindow
 		this.laudio.Name = "laudio";
 		this.laudio.LabelProp = global::Mono.Unix.Catalog.GetString ("Audio driver:");
 		this.hbox7.Add (this.laudio);
-		global::Gtk.Box.BoxChild w63 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.laudio]));
-		w63.Position = 0;
-		w63.Expand = false;
-		w63.Fill = false;
+		global::Gtk.Box.BoxChild w59 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.laudio]));
+		w59.Position = 0;
+		w59.Expand = false;
+		w59.Fill = false;
 		// Container child hbox7.Gtk.Box+BoxChild
 		this.vbox8 = new global::Gtk.VBox ();
 		this.vbox8.Name = "vbox8";
@@ -1203,10 +1143,10 @@ public partial class MainWindow
 		this.rbaalsa.UseUnderline = true;
 		this.rbaalsa.Group = new global::GLib.SList (global::System.IntPtr.Zero);
 		this.vbox8.Add (this.rbaalsa);
-		global::Gtk.Box.BoxChild w64 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.rbaalsa]));
-		w64.Position = 0;
-		w64.Expand = false;
-		w64.Fill = false;
+		global::Gtk.Box.BoxChild w60 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.rbaalsa]));
+		w60.Position = 0;
+		w60.Expand = false;
+		w60.Fill = false;
 		// Container child vbox8.Gtk.Box+BoxChild
 		this.rbaoss = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("OSS"));
 		this.rbaoss.CanFocus = true;
@@ -1215,10 +1155,10 @@ public partial class MainWindow
 		this.rbaoss.UseUnderline = true;
 		this.rbaoss.Group = this.rbaalsa.Group;
 		this.vbox8.Add (this.rbaoss);
-		global::Gtk.Box.BoxChild w65 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.rbaoss]));
-		w65.Position = 1;
-		w65.Expand = false;
-		w65.Fill = false;
+		global::Gtk.Box.BoxChild w61 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.rbaoss]));
+		w61.Position = 1;
+		w61.Expand = false;
+		w61.Fill = false;
 		// Container child vbox8.Gtk.Box+BoxChild
 		this.rbajack = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Jack"));
 		this.rbajack.CanFocus = true;
@@ -1227,10 +1167,10 @@ public partial class MainWindow
 		this.rbajack.UseUnderline = true;
 		this.rbajack.Group = this.rbaalsa.Group;
 		this.vbox8.Add (this.rbajack);
-		global::Gtk.Box.BoxChild w66 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.rbajack]));
-		w66.Position = 2;
-		w66.Expand = false;
-		w66.Fill = false;
+		global::Gtk.Box.BoxChild w62 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.rbajack]));
+		w62.Position = 2;
+		w62.Expand = false;
+		w62.Fill = false;
 		// Container child vbox8.Gtk.Box+BoxChild
 		this.chautoadv = new global::Gtk.CheckButton ();
 		this.chautoadv.CanFocus = true;
@@ -1239,74 +1179,30 @@ public partial class MainWindow
 		this.chautoadv.DrawIndicator = true;
 		this.chautoadv.UseUnderline = true;
 		this.vbox8.Add (this.chautoadv);
-		global::Gtk.Box.BoxChild w67 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.chautoadv]));
-		w67.Position = 3;
-		w67.Expand = false;
-		w67.Fill = false;
-		// Container child vbox8.Gtk.Box+BoxChild
-		this.chstatadv = new global::Gtk.CheckButton ();
-		this.chstatadv.CanFocus = true;
-		this.chstatadv.Name = "chstatadv";
-		this.chstatadv.Label = global::Mono.Unix.Catalog.GetString ("Jack stats");
-		this.chstatadv.DrawIndicator = true;
-		this.chstatadv.UseUnderline = true;
-		this.vbox8.Add (this.chstatadv);
-		global::Gtk.Box.BoxChild w68 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.chstatadv]));
-		w68.Position = 4;
-		w68.Expand = false;
-		w68.Fill = false;
-		// Container child vbox8.Gtk.Box+BoxChild
-		this.hbox12 = new global::Gtk.HBox ();
-		this.hbox12.Name = "hbox12";
-		this.hbox12.Spacing = 6;
-		// Container child hbox12.Gtk.Box+BoxChild
-		this.chmultiadv = new global::Gtk.CheckButton ();
-		this.chmultiadv.CanFocus = true;
-		this.chmultiadv.Name = "chmultiadv";
-		this.chmultiadv.Label = global::Mono.Unix.Catalog.GetString ("Multiple IO port requests:");
-		this.chmultiadv.DrawIndicator = true;
-		this.chmultiadv.UseUnderline = true;
-		this.hbox12.Add (this.chmultiadv);
-		global::Gtk.Box.BoxChild w69 = ((global::Gtk.Box.BoxChild)(this.hbox12[this.chmultiadv]));
-		w69.Position = 0;
-		// Container child hbox12.Gtk.Box+BoxChild
-		this.spinmultiadv = new global::Gtk.SpinButton (1, 100, 1);
-		this.spinmultiadv.CanFocus = true;
-		this.spinmultiadv.Name = "spinmultiadv";
-		this.spinmultiadv.Adjustment.PageIncrement = 10;
-		this.spinmultiadv.ClimbRate = 1;
-		this.spinmultiadv.Numeric = true;
-		this.spinmultiadv.Value = 1;
-		this.hbox12.Add (this.spinmultiadv);
-		global::Gtk.Box.BoxChild w70 = ((global::Gtk.Box.BoxChild)(this.hbox12[this.spinmultiadv]));
-		w70.Position = 1;
-		w70.Expand = false;
-		w70.Fill = false;
-		this.vbox8.Add (this.hbox12);
-		global::Gtk.Box.BoxChild w71 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.hbox12]));
-		w71.Position = 5;
-		w71.Expand = false;
-		w71.Fill = false;
+		global::Gtk.Box.BoxChild w63 = ((global::Gtk.Box.BoxChild)(this.vbox8[this.chautoadv]));
+		w63.Position = 3;
+		w63.Expand = false;
+		w63.Fill = false;
 		this.hbox7.Add (this.vbox8);
-		global::Gtk.Box.BoxChild w72 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.vbox8]));
-		w72.Position = 1;
+		global::Gtk.Box.BoxChild w64 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.vbox8]));
+		w64.Position = 1;
 		// Container child hbox7.Gtk.Box+BoxChild
 		this.vseparator12 = new global::Gtk.VSeparator ();
 		this.vseparator12.Name = "vseparator12";
 		this.hbox7.Add (this.vseparator12);
-		global::Gtk.Box.BoxChild w73 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.vseparator12]));
-		w73.Position = 2;
-		w73.Expand = false;
-		w73.Fill = false;
+		global::Gtk.Box.BoxChild w65 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.vseparator12]));
+		w65.Position = 2;
+		w65.Expand = false;
+		w65.Fill = false;
 		// Container child hbox7.Gtk.Box+BoxChild
 		this.lmidi = new global::Gtk.Label ();
 		this.lmidi.Name = "lmidi";
 		this.lmidi.LabelProp = global::Mono.Unix.Catalog.GetString ("Midi driver:");
 		this.hbox7.Add (this.lmidi);
-		global::Gtk.Box.BoxChild w74 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.lmidi]));
-		w74.Position = 3;
-		w74.Expand = false;
-		w74.Fill = false;
+		global::Gtk.Box.BoxChild w66 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.lmidi]));
+		w66.Position = 3;
+		w66.Expand = false;
+		w66.Fill = false;
 		// Container child hbox7.Gtk.Box+BoxChild
 		this.vbox9 = new global::Gtk.VBox ();
 		this.vbox9.Name = "vbox9";
@@ -1319,10 +1215,10 @@ public partial class MainWindow
 		this.rbmalsa.UseUnderline = true;
 		this.rbmalsa.Group = new global::GLib.SList (global::System.IntPtr.Zero);
 		this.vbox9.Add (this.rbmalsa);
-		global::Gtk.Box.BoxChild w75 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmalsa]));
-		w75.Position = 0;
-		w75.Expand = false;
-		w75.Fill = false;
+		global::Gtk.Box.BoxChild w67 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmalsa]));
+		w67.Position = 0;
+		w67.Expand = false;
+		w67.Fill = false;
 		// Container child vbox9.Gtk.Box+BoxChild
 		this.rbmoss = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("OSS"));
 		this.rbmoss.CanFocus = true;
@@ -1331,10 +1227,10 @@ public partial class MainWindow
 		this.rbmoss.UseUnderline = true;
 		this.rbmoss.Group = this.rbmalsa.Group;
 		this.vbox9.Add (this.rbmoss);
-		global::Gtk.Box.BoxChild w76 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmoss]));
-		w76.Position = 1;
-		w76.Expand = false;
-		w76.Fill = false;
+		global::Gtk.Box.BoxChild w68 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmoss]));
+		w68.Position = 1;
+		w68.Expand = false;
+		w68.Fill = false;
 		// Container child vbox9.Gtk.Box+BoxChild
 		this.rbmseq = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Seq"));
 		this.rbmseq.CanFocus = true;
@@ -1343,10 +1239,10 @@ public partial class MainWindow
 		this.rbmseq.UseUnderline = true;
 		this.rbmseq.Group = this.rbmalsa.Group;
 		this.vbox9.Add (this.rbmseq);
-		global::Gtk.Box.BoxChild w77 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmseq]));
-		w77.Position = 2;
-		w77.Expand = false;
-		w77.Fill = false;
+		global::Gtk.Box.BoxChild w69 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmseq]));
+		w69.Position = 2;
+		w69.Expand = false;
+		w69.Fill = false;
 		// Container child vbox9.Gtk.Box+BoxChild
 		this.rbmjack = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Jack"));
 		this.rbmjack.CanFocus = true;
@@ -1355,18 +1251,18 @@ public partial class MainWindow
 		this.rbmjack.UseUnderline = true;
 		this.rbmjack.Group = this.rbmalsa.Group;
 		this.vbox9.Add (this.rbmjack);
-		global::Gtk.Box.BoxChild w78 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmjack]));
-		w78.Position = 3;
-		w78.Expand = false;
-		w78.Fill = false;
+		global::Gtk.Box.BoxChild w70 = ((global::Gtk.Box.BoxChild)(this.vbox9[this.rbmjack]));
+		w70.Position = 3;
+		w70.Expand = false;
+		w70.Fill = false;
 		this.hbox7.Add (this.vbox9);
-		global::Gtk.Box.BoxChild w79 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.vbox9]));
-		w79.Position = 4;
+		global::Gtk.Box.BoxChild w71 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.vbox9]));
+		w71.Position = 4;
 		this.vbox7.Add (this.hbox7);
-		global::Gtk.Box.BoxChild w80 = ((global::Gtk.Box.BoxChild)(this.vbox7[this.hbox7]));
-		w80.Position = 2;
-		w80.Expand = false;
-		w80.Fill = false;
+		global::Gtk.Box.BoxChild w72 = ((global::Gtk.Box.BoxChild)(this.vbox7[this.hbox7]));
+		w72.Position = 2;
+		w72.Expand = false;
+		w72.Fill = false;
 		this.GtkAlignment2.Add (this.vbox7);
 		this.frame1.Add (this.GtkAlignment2);
 		this.GtkLabel82 = new global::Gtk.Label ();
@@ -1375,10 +1271,10 @@ public partial class MainWindow
 		this.GtkLabel82.UseMarkup = true;
 		this.frame1.LabelWidget = this.GtkLabel82;
 		this.hbox8.Add (this.frame1);
-		global::Gtk.Box.BoxChild w83 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.frame1]));
-		w83.Position = 3;
-		w83.Expand = false;
-		w83.Fill = false;
+		global::Gtk.Box.BoxChild w75 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.frame1]));
+		w75.Position = 3;
+		w75.Expand = false;
+		w75.Fill = false;
 		// Container child hbox8.Gtk.Box+BoxChild
 		this.vbox11 = new global::Gtk.VBox ();
 		this.vbox11.Name = "vbox11";
@@ -1391,10 +1287,10 @@ public partial class MainWindow
 		this.bapply.UseUnderline = true;
 		this.bapply.Label = "gtk-apply";
 		this.vbox11.Add (this.bapply);
-		global::Gtk.Box.BoxChild w84 = ((global::Gtk.Box.BoxChild)(this.vbox11[this.bapply]));
-		w84.Position = 0;
-		w84.Expand = false;
-		w84.Fill = false;
+		global::Gtk.Box.BoxChild w76 = ((global::Gtk.Box.BoxChild)(this.vbox11[this.bapply]));
+		w76.Position = 0;
+		w76.Expand = false;
+		w76.Fill = false;
 		// Container child vbox11.Gtk.Box+BoxChild
 		this.bdefault = new global::Gtk.Button ();
 		this.bdefault.CanFocus = true;
@@ -1402,47 +1298,47 @@ public partial class MainWindow
 		this.bdefault.UseUnderline = true;
 		this.bdefault.Label = global::Mono.Unix.Catalog.GetString ("Default settings");
 		this.vbox11.Add (this.bdefault);
-		global::Gtk.Box.BoxChild w85 = ((global::Gtk.Box.BoxChild)(this.vbox11[this.bdefault]));
-		w85.Position = 1;
-		w85.Expand = false;
-		w85.Fill = false;
+		global::Gtk.Box.BoxChild w77 = ((global::Gtk.Box.BoxChild)(this.vbox11[this.bdefault]));
+		w77.Position = 1;
+		w77.Expand = false;
+		w77.Fill = false;
 		this.hbox8.Add (this.vbox11);
-		global::Gtk.Box.BoxChild w86 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.vbox11]));
-		w86.PackType = ((global::Gtk.PackType)(1));
-		w86.Position = 4;
-		w86.Expand = false;
-		w86.Fill = false;
+		global::Gtk.Box.BoxChild w78 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.vbox11]));
+		w78.PackType = ((global::Gtk.PackType)(1));
+		w78.Position = 4;
+		w78.Expand = false;
+		w78.Fill = false;
 		// Container child hbox8.Gtk.Box+BoxChild
 		this.vseparator11 = new global::Gtk.VSeparator ();
 		this.vseparator11.Name = "vseparator11";
 		this.hbox8.Add (this.vseparator11);
-		global::Gtk.Box.BoxChild w87 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.vseparator11]));
-		w87.PackType = ((global::Gtk.PackType)(1));
-		w87.Position = 5;
-		w87.Expand = false;
-		w87.Fill = false;
+		global::Gtk.Box.BoxChild w79 = ((global::Gtk.Box.BoxChild)(this.hbox8[this.vseparator11]));
+		w79.PackType = ((global::Gtk.PackType)(1));
+		w79.Position = 5;
+		w79.Expand = false;
+		w79.Fill = false;
 		this.vbox1.Add (this.hbox8);
-		global::Gtk.Box.BoxChild w88 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox8]));
-		w88.Position = 2;
-		w88.Expand = false;
-		w88.Fill = false;
+		global::Gtk.Box.BoxChild w80 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox8]));
+		w80.Position = 2;
+		w80.Expand = false;
+		w80.Fill = false;
 		// Container child vbox1.Gtk.Box+BoxChild
 		this.hseparator2 = new global::Gtk.HSeparator ();
 		this.hseparator2.Name = "hseparator2";
 		this.vbox1.Add (this.hseparator2);
-		global::Gtk.Box.BoxChild w89 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hseparator2]));
-		w89.Position = 3;
-		w89.Expand = false;
-		w89.Fill = false;
+		global::Gtk.Box.BoxChild w81 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hseparator2]));
+		w81.Position = 3;
+		w81.Expand = false;
+		w81.Fill = false;
 		// Container child vbox1.Gtk.Box+BoxChild
 		this.hseparator6 = new global::Gtk.HSeparator ();
 		this.hseparator6.Name = "hseparator6";
 		this.vbox1.Add (this.hseparator6);
-		global::Gtk.Box.BoxChild w90 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hseparator6]));
-		w90.PackType = ((global::Gtk.PackType)(1));
-		w90.Position = 4;
-		w90.Expand = false;
-		w90.Fill = false;
+		global::Gtk.Box.BoxChild w82 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hseparator6]));
+		w82.PackType = ((global::Gtk.PackType)(1));
+		w82.Position = 4;
+		w82.Expand = false;
+		w82.Fill = false;
 		// Container child vbox1.Gtk.Box+BoxChild
 		this.hbox6 = new global::Gtk.HBox ();
 		this.hbox6.Name = "hbox6";
@@ -1467,8 +1363,8 @@ public partial class MainWindow
 		this.chonjsdisable.DrawIndicator = true;
 		this.chonjsdisable.UseUnderline = true;
 		this.hbox1.Add (this.chonjsdisable);
-		global::Gtk.Box.BoxChild w91 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.chonjsdisable]));
-		w91.Position = 0;
+		global::Gtk.Box.BoxChild w83 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.chonjsdisable]));
+		w83.Position = 0;
 		// Container child hbox1.Gtk.Box+BoxChild
 		this.vbox3 = new global::Gtk.VBox ();
 		this.vbox3.Name = "vbox3";
@@ -1481,9 +1377,9 @@ public partial class MainWindow
 		this.chonjsuuid.DrawIndicator = true;
 		this.chonjsuuid.UseUnderline = true;
 		this.vbox3.Add (this.chonjsuuid);
-		global::Gtk.Box.BoxChild w92 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.chonjsuuid]));
-		w92.Position = 0;
-		w92.Fill = false;
+		global::Gtk.Box.BoxChild w84 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.chonjsuuid]));
+		w84.Position = 0;
+		w84.Fill = false;
 		// Container child vbox3.Gtk.Box+BoxChild
 		this.chonjspath = new global::Gtk.CheckButton ();
 		this.chonjspath.CanFocus = true;
@@ -1492,9 +1388,9 @@ public partial class MainWindow
 		this.chonjspath.DrawIndicator = true;
 		this.chonjspath.UseUnderline = true;
 		this.vbox3.Add (this.chonjspath);
-		global::Gtk.Box.BoxChild w93 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.chonjspath]));
-		w93.Position = 1;
-		w93.Fill = false;
+		global::Gtk.Box.BoxChild w85 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.chonjspath]));
+		w85.Position = 1;
+		w85.Fill = false;
 		// Container child vbox3.Gtk.Box+BoxChild
 		this.chonjsdelay = new global::Gtk.CheckButton ();
 		this.chonjsdelay.CanFocus = true;
@@ -1503,12 +1399,12 @@ public partial class MainWindow
 		this.chonjsdelay.DrawIndicator = true;
 		this.chonjsdelay.UseUnderline = true;
 		this.vbox3.Add (this.chonjsdelay);
-		global::Gtk.Box.BoxChild w94 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.chonjsdelay]));
-		w94.Position = 2;
-		w94.Fill = false;
+		global::Gtk.Box.BoxChild w86 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.chonjsdelay]));
+		w86.Position = 2;
+		w86.Fill = false;
 		this.hbox1.Add (this.vbox3);
-		global::Gtk.Box.BoxChild w95 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vbox3]));
-		w95.Position = 1;
+		global::Gtk.Box.BoxChild w87 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vbox3]));
+		w87.Position = 1;
 		// Container child hbox1.Gtk.Box+BoxChild
 		this.vbox17 = new global::Gtk.VBox ();
 		this.vbox17.Name = "vbox17";
@@ -1521,9 +1417,9 @@ public partial class MainWindow
 		this.entryjsuuid.WidthChars = 7;
 		this.entryjsuuid.InvisibleChar = '●';
 		this.vbox17.Add (this.entryjsuuid);
-		global::Gtk.Box.BoxChild w96 = ((global::Gtk.Box.BoxChild)(this.vbox17[this.entryjsuuid]));
-		w96.Position = 0;
-		w96.Fill = false;
+		global::Gtk.Box.BoxChild w88 = ((global::Gtk.Box.BoxChild)(this.vbox17[this.entryjsuuid]));
+		w88.Position = 0;
+		w88.Fill = false;
 		// Container child vbox17.Gtk.Box+BoxChild
 		this.entryjspath = new global::Gtk.Entry ();
 		this.entryjspath.CanFocus = true;
@@ -1532,9 +1428,9 @@ public partial class MainWindow
 		this.entryjspath.WidthChars = 7;
 		this.entryjspath.InvisibleChar = '●';
 		this.vbox17.Add (this.entryjspath);
-		global::Gtk.Box.BoxChild w97 = ((global::Gtk.Box.BoxChild)(this.vbox17[this.entryjspath]));
-		w97.Position = 1;
-		w97.Fill = false;
+		global::Gtk.Box.BoxChild w89 = ((global::Gtk.Box.BoxChild)(this.vbox17[this.entryjspath]));
+		w89.Position = 1;
+		w89.Fill = false;
 		// Container child vbox17.Gtk.Box+BoxChild
 		this.entryjsdelay = new global::Gtk.Entry ();
 		this.entryjsdelay.CanFocus = true;
@@ -1544,32 +1440,32 @@ public partial class MainWindow
 		this.entryjsdelay.WidthChars = 7;
 		this.entryjsdelay.InvisibleChar = '●';
 		this.vbox17.Add (this.entryjsdelay);
-		global::Gtk.Box.BoxChild w98 = ((global::Gtk.Box.BoxChild)(this.vbox17[this.entryjsdelay]));
-		w98.Position = 2;
-		w98.Fill = false;
+		global::Gtk.Box.BoxChild w90 = ((global::Gtk.Box.BoxChild)(this.vbox17[this.entryjsdelay]));
+		w90.Position = 2;
+		w90.Fill = false;
 		this.hbox1.Add (this.vbox17);
-		global::Gtk.Box.BoxChild w99 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vbox17]));
-		w99.Position = 2;
+		global::Gtk.Box.BoxChild w91 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vbox17]));
+		w91.Position = 2;
 		this.GtkAlignment6.Add (this.hbox1);
 		this.frjack.Add (this.GtkAlignment6);
-		this.GtkLabel86 = new global::Gtk.Label ();
-		this.GtkLabel86.Name = "GtkLabel86";
-		this.GtkLabel86.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Jack session</b>");
-		this.GtkLabel86.UseMarkup = true;
-		this.frjack.LabelWidget = this.GtkLabel86;
+		this.GtkLabel83 = new global::Gtk.Label ();
+		this.GtkLabel83.Name = "GtkLabel83";
+		this.GtkLabel83.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Jack session</b>");
+		this.GtkLabel83.UseMarkup = true;
+		this.frjack.LabelWidget = this.GtkLabel83;
 		this.hbox6.Add (this.frjack);
-		global::Gtk.Box.BoxChild w102 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frjack]));
-		w102.Position = 0;
-		w102.Expand = false;
-		w102.Fill = false;
+		global::Gtk.Box.BoxChild w94 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frjack]));
+		w94.Position = 0;
+		w94.Expand = false;
+		w94.Fill = false;
 		// Container child hbox6.Gtk.Box+BoxChild
 		this.vseparator20 = new global::Gtk.VSeparator ();
 		this.vseparator20.Name = "vseparator20";
 		this.hbox6.Add (this.vseparator20);
-		global::Gtk.Box.BoxChild w103 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.vseparator20]));
-		w103.Position = 1;
-		w103.Expand = false;
-		w103.Fill = false;
+		global::Gtk.Box.BoxChild w95 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.vseparator20]));
+		w95.Position = 1;
+		w95.Expand = false;
+		w95.Fill = false;
 		// Container child hbox6.Gtk.Box+BoxChild
 		this.frladi = new global::Gtk.Frame ();
 		this.frladi.Name = "frladi";
@@ -1590,10 +1486,10 @@ public partial class MainWindow
 		this.chonladigui.DrawIndicator = true;
 		this.chonladigui.UseUnderline = true;
 		this.vbox18.Add (this.chonladigui);
-		global::Gtk.Box.BoxChild w104 = ((global::Gtk.Box.BoxChild)(this.vbox18[this.chonladigui]));
-		w104.Position = 0;
-		w104.Expand = false;
-		w104.Fill = false;
+		global::Gtk.Box.BoxChild w96 = ((global::Gtk.Box.BoxChild)(this.vbox18[this.chonladigui]));
+		w96.Position = 0;
+		w96.Expand = false;
+		w96.Fill = false;
 		// Container child vbox18.Gtk.Box+BoxChild
 		this.chonladiengine = new global::Gtk.CheckButton ();
 		this.chonladiengine.CanFocus = true;
@@ -1602,10 +1498,10 @@ public partial class MainWindow
 		this.chonladiengine.DrawIndicator = true;
 		this.chonladiengine.UseUnderline = true;
 		this.vbox18.Add (this.chonladiengine);
-		global::Gtk.Box.BoxChild w105 = ((global::Gtk.Box.BoxChild)(this.vbox18[this.chonladiengine]));
-		w105.Position = 1;
-		w105.Expand = false;
-		w105.Fill = false;
+		global::Gtk.Box.BoxChild w97 = ((global::Gtk.Box.BoxChild)(this.vbox18[this.chonladiengine]));
+		w97.Position = 1;
+		w97.Expand = false;
+		w97.Fill = false;
 		// Container child vbox18.Gtk.Box+BoxChild
 		this.hbox3 = new global::Gtk.HBox ();
 		this.hbox3.Name = "hbox3";
@@ -1618,8 +1514,8 @@ public partial class MainWindow
 		this.chonladiindex.DrawIndicator = true;
 		this.chonladiindex.UseUnderline = true;
 		this.hbox3.Add (this.chonladiindex);
-		global::Gtk.Box.BoxChild w106 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.chonladiindex]));
-		w106.Position = 0;
+		global::Gtk.Box.BoxChild w98 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.chonladiindex]));
+		w98.Position = 0;
 		// Container child hbox3.Gtk.Box+BoxChild
 		this.entryladiindex = new global::Gtk.Entry ();
 		this.entryladiindex.CanFocus = true;
@@ -1629,33 +1525,33 @@ public partial class MainWindow
 		this.entryladiindex.WidthChars = 7;
 		this.entryladiindex.InvisibleChar = '●';
 		this.hbox3.Add (this.entryladiindex);
-		global::Gtk.Box.BoxChild w107 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.entryladiindex]));
-		w107.Position = 1;
+		global::Gtk.Box.BoxChild w99 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.entryladiindex]));
+		w99.Position = 1;
 		this.vbox18.Add (this.hbox3);
-		global::Gtk.Box.BoxChild w108 = ((global::Gtk.Box.BoxChild)(this.vbox18[this.hbox3]));
-		w108.Position = 2;
-		w108.Expand = false;
-		w108.Fill = false;
+		global::Gtk.Box.BoxChild w100 = ((global::Gtk.Box.BoxChild)(this.vbox18[this.hbox3]));
+		w100.Position = 2;
+		w100.Expand = false;
+		w100.Fill = false;
 		this.GtkAlignment7.Add (this.vbox18);
 		this.frladi.Add (this.GtkAlignment7);
-		this.GtkLabel90 = new global::Gtk.Label ();
-		this.GtkLabel90.Name = "GtkLabel90";
-		this.GtkLabel90.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>LADI</b>");
-		this.GtkLabel90.UseMarkup = true;
-		this.frladi.LabelWidget = this.GtkLabel90;
+		this.GtkLabel87 = new global::Gtk.Label ();
+		this.GtkLabel87.Name = "GtkLabel87";
+		this.GtkLabel87.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>LADI</b>");
+		this.GtkLabel87.UseMarkup = true;
+		this.frladi.LabelWidget = this.GtkLabel87;
 		this.hbox6.Add (this.frladi);
-		global::Gtk.Box.BoxChild w111 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frladi]));
-		w111.Position = 2;
-		w111.Expand = false;
-		w111.Fill = false;
+		global::Gtk.Box.BoxChild w103 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frladi]));
+		w103.Position = 2;
+		w103.Expand = false;
+		w103.Fill = false;
 		// Container child hbox6.Gtk.Box+BoxChild
 		this.vseparator21 = new global::Gtk.VSeparator ();
 		this.vseparator21.Name = "vseparator21";
 		this.hbox6.Add (this.vseparator21);
-		global::Gtk.Box.BoxChild w112 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.vseparator21]));
-		w112.Position = 3;
-		w112.Expand = false;
-		w112.Fill = false;
+		global::Gtk.Box.BoxChild w104 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.vseparator21]));
+		w104.Position = 3;
+		w104.Expand = false;
+		w104.Fill = false;
 		// Container child hbox6.Gtk.Box+BoxChild
 		this.frnrp = new global::Gtk.Frame ();
 		this.frnrp.Name = "frnrp";
@@ -1676,10 +1572,10 @@ public partial class MainWindow
 		this.chonnrpglobal.DrawIndicator = true;
 		this.chonnrpglobal.UseUnderline = true;
 		this.vbox19.Add (this.chonnrpglobal);
-		global::Gtk.Box.BoxChild w113 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.chonnrpglobal]));
-		w113.Position = 0;
-		w113.Expand = false;
-		w113.Fill = false;
+		global::Gtk.Box.BoxChild w105 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.chonnrpglobal]));
+		w105.Position = 0;
+		w105.Expand = false;
+		w105.Fill = false;
 		// Container child vbox19.Gtk.Box+BoxChild
 		this.chonnrpengine = new global::Gtk.CheckButton ();
 		this.chonnrpengine.CanFocus = true;
@@ -1688,10 +1584,10 @@ public partial class MainWindow
 		this.chonnrpengine.DrawIndicator = true;
 		this.chonnrpengine.UseUnderline = true;
 		this.vbox19.Add (this.chonnrpengine);
-		global::Gtk.Box.BoxChild w114 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.chonnrpengine]));
-		w114.Position = 1;
-		w114.Expand = false;
-		w114.Fill = false;
+		global::Gtk.Box.BoxChild w106 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.chonnrpengine]));
+		w106.Position = 1;
+		w106.Expand = false;
+		w106.Fill = false;
 		// Container child vbox19.Gtk.Box+BoxChild
 		this.chonnrpgui = new global::Gtk.CheckButton ();
 		this.chonnrpgui.CanFocus = true;
@@ -1700,10 +1596,10 @@ public partial class MainWindow
 		this.chonnrpgui.DrawIndicator = true;
 		this.chonnrpgui.UseUnderline = true;
 		this.vbox19.Add (this.chonnrpgui);
-		global::Gtk.Box.BoxChild w115 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.chonnrpgui]));
-		w115.Position = 2;
-		w115.Expand = false;
-		w115.Fill = false;
+		global::Gtk.Box.BoxChild w107 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.chonnrpgui]));
+		w107.Position = 2;
+		w107.Expand = false;
+		w107.Fill = false;
 		// Container child vbox19.Gtk.Box+BoxChild
 		this.hbox4 = new global::Gtk.HBox ();
 		this.hbox4.Name = "hbox4";
@@ -1716,8 +1612,8 @@ public partial class MainWindow
 		this.chonnrpsize.DrawIndicator = true;
 		this.chonnrpsize.UseUnderline = true;
 		this.hbox4.Add (this.chonnrpsize);
-		global::Gtk.Box.BoxChild w116 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.chonnrpsize]));
-		w116.Position = 0;
+		global::Gtk.Box.BoxChild w108 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.chonnrpsize]));
+		w108.Position = 0;
 		// Container child hbox4.Gtk.Box+BoxChild
 		this.entrynrpsize = new global::Gtk.Entry ();
 		this.entrynrpsize.CanFocus = true;
@@ -1727,33 +1623,33 @@ public partial class MainWindow
 		this.entrynrpsize.WidthChars = 5;
 		this.entrynrpsize.InvisibleChar = '●';
 		this.hbox4.Add (this.entrynrpsize);
-		global::Gtk.Box.BoxChild w117 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.entrynrpsize]));
-		w117.Position = 1;
+		global::Gtk.Box.BoxChild w109 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.entrynrpsize]));
+		w109.Position = 1;
 		this.vbox19.Add (this.hbox4);
-		global::Gtk.Box.BoxChild w118 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.hbox4]));
-		w118.Position = 3;
-		w118.Expand = false;
-		w118.Fill = false;
+		global::Gtk.Box.BoxChild w110 = ((global::Gtk.Box.BoxChild)(this.vbox19[this.hbox4]));
+		w110.Position = 3;
+		w110.Expand = false;
+		w110.Fill = false;
 		this.GtkAlignment8.Add (this.vbox19);
 		this.frnrp.Add (this.GtkAlignment8);
-		this.GtkLabel95 = new global::Gtk.Label ();
-		this.GtkLabel95.Name = "GtkLabel95";
-		this.GtkLabel95.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>NRP</b>");
-		this.GtkLabel95.UseMarkup = true;
-		this.frnrp.LabelWidget = this.GtkLabel95;
+		this.GtkLabel92 = new global::Gtk.Label ();
+		this.GtkLabel92.Name = "GtkLabel92";
+		this.GtkLabel92.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>NRP</b>");
+		this.GtkLabel92.UseMarkup = true;
+		this.frnrp.LabelWidget = this.GtkLabel92;
 		this.hbox6.Add (this.frnrp);
-		global::Gtk.Box.BoxChild w121 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frnrp]));
-		w121.Position = 4;
-		w121.Expand = false;
-		w121.Fill = false;
+		global::Gtk.Box.BoxChild w113 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frnrp]));
+		w113.Position = 4;
+		w113.Expand = false;
+		w113.Fill = false;
 		// Container child hbox6.Gtk.Box+BoxChild
 		this.vseparator22 = new global::Gtk.VSeparator ();
 		this.vseparator22.Name = "vseparator22";
 		this.hbox6.Add (this.vseparator22);
-		global::Gtk.Box.BoxChild w122 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.vseparator22]));
-		w122.Position = 5;
-		w122.Expand = false;
-		w122.Fill = false;
+		global::Gtk.Box.BoxChild w114 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.vseparator22]));
+		w114.Position = 5;
+		w114.Expand = false;
+		w114.Fill = false;
 		// Container child hbox6.Gtk.Box+BoxChild
 		this.frhost = new global::Gtk.Frame ();
 		this.frhost.Name = "frhost";
@@ -1778,9 +1674,9 @@ public partial class MainWindow
 		this.chontcpport.DrawIndicator = true;
 		this.chontcpport.UseUnderline = true;
 		this.vbox6.Add (this.chontcpport);
-		global::Gtk.Box.BoxChild w123 = ((global::Gtk.Box.BoxChild)(this.vbox6[this.chontcpport]));
-		w123.Position = 0;
-		w123.Fill = false;
+		global::Gtk.Box.BoxChild w115 = ((global::Gtk.Box.BoxChild)(this.vbox6[this.chontcpport]));
+		w115.Position = 0;
+		w115.Fill = false;
 		// Container child vbox6.Gtk.Box+BoxChild
 		this.chontcphost = new global::Gtk.CheckButton ();
 		this.chontcphost.CanFocus = true;
@@ -1789,12 +1685,12 @@ public partial class MainWindow
 		this.chontcphost.DrawIndicator = true;
 		this.chontcphost.UseUnderline = true;
 		this.vbox6.Add (this.chontcphost);
-		global::Gtk.Box.BoxChild w124 = ((global::Gtk.Box.BoxChild)(this.vbox6[this.chontcphost]));
-		w124.Position = 1;
-		w124.Fill = false;
+		global::Gtk.Box.BoxChild w116 = ((global::Gtk.Box.BoxChild)(this.vbox6[this.chontcphost]));
+		w116.Position = 1;
+		w116.Fill = false;
 		this.hbox5.Add (this.vbox6);
-		global::Gtk.Box.BoxChild w125 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.vbox6]));
-		w125.Position = 0;
+		global::Gtk.Box.BoxChild w117 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.vbox6]));
+		w117.Position = 0;
 		// Container child hbox5.Gtk.Box+BoxChild
 		this.vbox14 = new global::Gtk.VBox ();
 		this.vbox14.Name = "vbox14";
@@ -1808,9 +1704,9 @@ public partial class MainWindow
 		this.entrytcp1.WidthChars = 8;
 		this.entrytcp1.InvisibleChar = '●';
 		this.vbox14.Add (this.entrytcp1);
-		global::Gtk.Box.BoxChild w126 = ((global::Gtk.Box.BoxChild)(this.vbox14[this.entrytcp1]));
-		w126.Position = 0;
-		w126.Fill = false;
+		global::Gtk.Box.BoxChild w118 = ((global::Gtk.Box.BoxChild)(this.vbox14[this.entrytcp1]));
+		w118.Position = 0;
+		w118.Fill = false;
 		// Container child vbox14.Gtk.Box+BoxChild
 		this.entrytcphost = new global::Gtk.Entry ();
 		this.entrytcphost.CanFocus = true;
@@ -1820,39 +1716,39 @@ public partial class MainWindow
 		this.entrytcphost.WidthChars = 17;
 		this.entrytcphost.InvisibleChar = '●';
 		this.vbox14.Add (this.entrytcphost);
-		global::Gtk.Box.BoxChild w127 = ((global::Gtk.Box.BoxChild)(this.vbox14[this.entrytcphost]));
-		w127.Position = 1;
-		w127.Fill = false;
+		global::Gtk.Box.BoxChild w119 = ((global::Gtk.Box.BoxChild)(this.vbox14[this.entrytcphost]));
+		w119.Position = 1;
+		w119.Fill = false;
 		this.hbox5.Add (this.vbox14);
-		global::Gtk.Box.BoxChild w128 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.vbox14]));
-		w128.Position = 1;
+		global::Gtk.Box.BoxChild w120 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.vbox14]));
+		w120.Position = 1;
 		this.GtkAlignment9.Add (this.hbox5);
 		this.frhost.Add (this.GtkAlignment9);
-		this.GtkLabel98 = new global::Gtk.Label ();
-		this.GtkLabel98.Name = "GtkLabel98";
-		this.GtkLabel98.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Host</b>");
-		this.GtkLabel98.UseMarkup = true;
-		this.frhost.LabelWidget = this.GtkLabel98;
+		this.GtkLabel94 = new global::Gtk.Label ();
+		this.GtkLabel94.Name = "GtkLabel94";
+		this.GtkLabel94.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Host</b>");
+		this.GtkLabel94.UseMarkup = true;
+		this.frhost.LabelWidget = this.GtkLabel94;
 		this.hbox6.Add (this.frhost);
-		global::Gtk.Box.BoxChild w131 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frhost]));
-		w131.Position = 6;
-		w131.Expand = false;
-		w131.Fill = false;
+		global::Gtk.Box.BoxChild w123 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.frhost]));
+		w123.Position = 6;
+		w123.Expand = false;
+		w123.Fill = false;
 		this.vbox1.Add (this.hbox6);
-		global::Gtk.Box.BoxChild w132 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox6]));
-		w132.PackType = ((global::Gtk.PackType)(1));
-		w132.Position = 5;
-		w132.Expand = false;
-		w132.Fill = false;
+		global::Gtk.Box.BoxChild w124 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox6]));
+		w124.PackType = ((global::Gtk.PackType)(1));
+		w124.Position = 5;
+		w124.Expand = false;
+		w124.Fill = false;
 		// Container child vbox1.Gtk.Box+BoxChild
 		this.hseparator5 = new global::Gtk.HSeparator ();
 		this.hseparator5.Name = "hseparator5";
 		this.vbox1.Add (this.hseparator5);
-		global::Gtk.Box.BoxChild w133 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hseparator5]));
-		w133.PackType = ((global::Gtk.PackType)(1));
-		w133.Position = 6;
-		w133.Expand = false;
-		w133.Fill = false;
+		global::Gtk.Box.BoxChild w125 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hseparator5]));
+		w125.PackType = ((global::Gtk.PackType)(1));
+		w125.Position = 6;
+		w125.Expand = false;
+		w125.Fill = false;
 		// Container child vbox1.Gtk.Box+BoxChild
 		this.hbox9 = new global::Gtk.HBox ();
 		this.hbox9.Name = "hbox9";
@@ -1881,9 +1777,9 @@ public partial class MainWindow
 		this.chonvoices.DrawIndicator = true;
 		this.chonvoices.UseUnderline = true;
 		this.vbox2.Add (this.chonvoices);
-		global::Gtk.Box.BoxChild w134 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonvoices]));
-		w134.Position = 0;
-		w134.Fill = false;
+		global::Gtk.Box.BoxChild w126 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonvoices]));
+		w126.Position = 0;
+		w126.Fill = false;
 		// Container child vbox2.Gtk.Box+BoxChild
 		this.chonchannel = new global::Gtk.CheckButton ();
 		this.chonchannel.CanFocus = true;
@@ -1892,9 +1788,9 @@ public partial class MainWindow
 		this.chonchannel.DrawIndicator = true;
 		this.chonchannel.UseUnderline = true;
 		this.vbox2.Add (this.chonchannel);
-		global::Gtk.Box.BoxChild w135 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonchannel]));
-		w135.Position = 1;
-		w135.Fill = false;
+		global::Gtk.Box.BoxChild w127 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonchannel]));
+		w127.Position = 1;
+		w127.Fill = false;
 		// Container child vbox2.Gtk.Box+BoxChild
 		this.choningain = new global::Gtk.CheckButton ();
 		this.choningain.CanFocus = true;
@@ -1903,9 +1799,9 @@ public partial class MainWindow
 		this.choningain.DrawIndicator = true;
 		this.choningain.UseUnderline = true;
 		this.vbox2.Add (this.choningain);
-		global::Gtk.Box.BoxChild w136 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.choningain]));
-		w136.Position = 2;
-		w136.Fill = false;
+		global::Gtk.Box.BoxChild w128 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.choningain]));
+		w128.Position = 2;
+		w128.Fill = false;
 		// Container child vbox2.Gtk.Box+BoxChild
 		this.chonogain = new global::Gtk.CheckButton ();
 		this.chonogain.CanFocus = true;
@@ -1914,9 +1810,9 @@ public partial class MainWindow
 		this.chonogain.DrawIndicator = true;
 		this.chonogain.UseUnderline = true;
 		this.vbox2.Add (this.chonogain);
-		global::Gtk.Box.BoxChild w137 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonogain]));
-		w137.Position = 3;
-		w137.Fill = false;
+		global::Gtk.Box.BoxChild w129 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonogain]));
+		w129.Position = 3;
+		w129.Fill = false;
 		// Container child vbox2.Gtk.Box+BoxChild
 		this.chondetune = new global::Gtk.CheckButton ();
 		this.chondetune.CanFocus = true;
@@ -1925,9 +1821,9 @@ public partial class MainWindow
 		this.chondetune.DrawIndicator = true;
 		this.chondetune.UseUnderline = true;
 		this.vbox2.Add (this.chondetune);
-		global::Gtk.Box.BoxChild w138 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chondetune]));
-		w138.Position = 4;
-		w138.Fill = false;
+		global::Gtk.Box.BoxChild w130 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chondetune]));
+		w130.Position = 4;
+		w130.Fill = false;
 		// Container child vbox2.Gtk.Box+BoxChild
 		this.chonpitch = new global::Gtk.CheckButton ();
 		this.chonpitch.CanFocus = true;
@@ -1936,12 +1832,12 @@ public partial class MainWindow
 		this.chonpitch.DrawIndicator = true;
 		this.chonpitch.UseUnderline = true;
 		this.vbox2.Add (this.chonpitch);
-		global::Gtk.Box.BoxChild w139 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonpitch]));
-		w139.Position = 5;
-		w139.Fill = false;
+		global::Gtk.Box.BoxChild w131 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.chonpitch]));
+		w131.Position = 5;
+		w131.Fill = false;
 		this.hbox10.Add (this.vbox2);
-		global::Gtk.Box.BoxChild w140 = ((global::Gtk.Box.BoxChild)(this.hbox10[this.vbox2]));
-		w140.Position = 0;
+		global::Gtk.Box.BoxChild w132 = ((global::Gtk.Box.BoxChild)(this.hbox10[this.vbox2]));
+		w132.Position = 0;
 		// Container child hbox10.Gtk.Box+BoxChild
 		this.vbox4 = new global::Gtk.VBox ();
 		this.vbox4.Name = "vbox4";
@@ -1955,9 +1851,9 @@ public partial class MainWindow
 		this.spinvoices1.Numeric = true;
 		this.spinvoices1.Value = 16;
 		this.vbox4.Add (this.spinvoices1);
-		global::Gtk.Box.BoxChild w141 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spinvoices1]));
-		w141.Position = 0;
-		w141.Fill = false;
+		global::Gtk.Box.BoxChild w133 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spinvoices1]));
+		w133.Position = 0;
+		w133.Fill = false;
 		// Container child vbox4.Gtk.Box+BoxChild
 		this.spinchannel1 = new global::Gtk.SpinButton (0, 100, 1);
 		this.spinchannel1.CanFocus = true;
@@ -1967,9 +1863,9 @@ public partial class MainWindow
 		this.spinchannel1.Numeric = true;
 		this.spinchannel1.Value = 1;
 		this.vbox4.Add (this.spinchannel1);
-		global::Gtk.Box.BoxChild w142 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spinchannel1]));
-		w142.Position = 1;
-		w142.Fill = false;
+		global::Gtk.Box.BoxChild w134 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spinchannel1]));
+		w134.Position = 1;
+		w134.Fill = false;
 		// Container child vbox4.Gtk.Box+BoxChild
 		this.spiningain = new global::Gtk.SpinButton (0, 100, 1);
 		this.spiningain.CanFocus = true;
@@ -1979,9 +1875,9 @@ public partial class MainWindow
 		this.spiningain.Numeric = true;
 		this.spiningain.Value = 4;
 		this.vbox4.Add (this.spiningain);
-		global::Gtk.Box.BoxChild w143 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spiningain]));
-		w143.Position = 2;
-		w143.Fill = false;
+		global::Gtk.Box.BoxChild w135 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spiningain]));
+		w135.Position = 2;
+		w135.Fill = false;
 		// Container child vbox4.Gtk.Box+BoxChild
 		this.spingain = new global::Gtk.SpinButton (0, 100, 1);
 		this.spingain.CanFocus = true;
@@ -1991,9 +1887,9 @@ public partial class MainWindow
 		this.spingain.Numeric = true;
 		this.spingain.Value = 4;
 		this.vbox4.Add (this.spingain);
-		global::Gtk.Box.BoxChild w144 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spingain]));
-		w144.Position = 3;
-		w144.Fill = false;
+		global::Gtk.Box.BoxChild w136 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spingain]));
+		w136.Position = 3;
+		w136.Fill = false;
 		// Container child vbox4.Gtk.Box+BoxChild
 		this.spindetune = new global::Gtk.SpinButton (0, 100, 1);
 		this.spindetune.CanFocus = true;
@@ -2002,9 +1898,9 @@ public partial class MainWindow
 		this.spindetune.ClimbRate = 1;
 		this.spindetune.Numeric = true;
 		this.vbox4.Add (this.spindetune);
-		global::Gtk.Box.BoxChild w145 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spindetune]));
-		w145.Position = 4;
-		w145.Fill = false;
+		global::Gtk.Box.BoxChild w137 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spindetune]));
+		w137.Position = 4;
+		w137.Fill = false;
 		// Container child vbox4.Gtk.Box+BoxChild
 		this.spinpitch = new global::Gtk.SpinButton (0, 100, 1);
 		this.spinpitch.CanFocus = true;
@@ -2014,14 +1910,14 @@ public partial class MainWindow
 		this.spinpitch.Numeric = true;
 		this.spinpitch.SnapToTicks = true;
 		this.vbox4.Add (this.spinpitch);
-		global::Gtk.Box.BoxChild w146 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spinpitch]));
-		w146.Position = 5;
-		w146.Fill = false;
+		global::Gtk.Box.BoxChild w138 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.spinpitch]));
+		w138.Position = 5;
+		w138.Fill = false;
 		this.hbox10.Add (this.vbox4);
-		global::Gtk.Box.BoxChild w147 = ((global::Gtk.Box.BoxChild)(this.hbox10[this.vbox4]));
-		w147.Position = 1;
-		w147.Expand = false;
-		w147.Fill = false;
+		global::Gtk.Box.BoxChild w139 = ((global::Gtk.Box.BoxChild)(this.hbox10[this.vbox4]));
+		w139.Position = 1;
+		w139.Expand = false;
+		w139.Fill = false;
 		this.GtkAlignment3.Add (this.hbox10);
 		this.frbasic.Add (this.GtkAlignment3);
 		this.GtkLabel68 = new global::Gtk.Label ();
@@ -2030,18 +1926,18 @@ public partial class MainWindow
 		this.GtkLabel68.UseMarkup = true;
 		this.frbasic.LabelWidget = this.GtkLabel68;
 		this.hbox9.Add (this.frbasic);
-		global::Gtk.Box.BoxChild w150 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.frbasic]));
-		w150.Position = 0;
-		w150.Expand = false;
-		w150.Fill = false;
+		global::Gtk.Box.BoxChild w142 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.frbasic]));
+		w142.Position = 0;
+		w142.Expand = false;
+		w142.Fill = false;
 		// Container child hbox9.Gtk.Box+BoxChild
 		this.vseparator15 = new global::Gtk.VSeparator ();
 		this.vseparator15.Name = "vseparator15";
 		this.hbox9.Add (this.vseparator15);
-		global::Gtk.Box.BoxChild w151 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.vseparator15]));
-		w151.Position = 1;
-		w151.Expand = false;
-		w151.Fill = false;
+		global::Gtk.Box.BoxChild w143 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.vseparator15]));
+		w143.Position = 1;
+		w143.Expand = false;
+		w143.Fill = false;
 		// Container child hbox9.Gtk.Box+BoxChild
 		this.frfilters = new global::Gtk.Frame ();
 		this.frfilters.Name = "frfilters";
@@ -2062,10 +1958,10 @@ public partial class MainWindow
 		this.chnwf.DrawIndicator = true;
 		this.chnwf.UseUnderline = true;
 		this.vbox5.Add (this.chnwf);
-		global::Gtk.Box.BoxChild w152 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chnwf]));
-		w152.Position = 0;
-		w152.Expand = false;
-		w152.Fill = false;
+		global::Gtk.Box.BoxChild w144 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chnwf]));
+		w144.Position = 0;
+		w144.Expand = false;
+		w144.Fill = false;
 		// Container child vbox5.Gtk.Box+BoxChild
 		this.chlwf = new global::Gtk.CheckButton ();
 		this.chlwf.CanFocus = true;
@@ -2074,10 +1970,10 @@ public partial class MainWindow
 		this.chlwf.DrawIndicator = true;
 		this.chlwf.UseUnderline = true;
 		this.vbox5.Add (this.chlwf);
-		global::Gtk.Box.BoxChild w153 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chlwf]));
-		w153.Position = 1;
-		w153.Expand = false;
-		w153.Fill = false;
+		global::Gtk.Box.BoxChild w145 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chlwf]));
+		w145.Position = 1;
+		w145.Expand = false;
+		w145.Fill = false;
 		// Container child vbox5.Gtk.Box+BoxChild
 		this.chhwf = new global::Gtk.CheckButton ();
 		this.chhwf.CanFocus = true;
@@ -2086,10 +1982,10 @@ public partial class MainWindow
 		this.chhwf.DrawIndicator = true;
 		this.chhwf.UseUnderline = true;
 		this.vbox5.Add (this.chhwf);
-		global::Gtk.Box.BoxChild w154 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chhwf]));
-		w154.Position = 2;
-		w154.Expand = false;
-		w154.Fill = false;
+		global::Gtk.Box.BoxChild w146 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chhwf]));
+		w146.Position = 2;
+		w146.Expand = false;
+		w146.Fill = false;
 		// Container child vbox5.Gtk.Box+BoxChild
 		this.chwwf = new global::Gtk.CheckButton ();
 		this.chwwf.CanFocus = true;
@@ -2098,10 +1994,10 @@ public partial class MainWindow
 		this.chwwf.DrawIndicator = true;
 		this.chwwf.UseUnderline = true;
 		this.vbox5.Add (this.chwwf);
-		global::Gtk.Box.BoxChild w155 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chwwf]));
-		w155.Position = 3;
-		w155.Expand = false;
-		w155.Fill = false;
+		global::Gtk.Box.BoxChild w147 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chwwf]));
+		w147.Position = 3;
+		w147.Expand = false;
+		w147.Fill = false;
 		// Container child vbox5.Gtk.Box+BoxChild
 		this.chglwf = new global::Gtk.CheckButton ();
 		this.chglwf.CanFocus = true;
@@ -2110,30 +2006,30 @@ public partial class MainWindow
 		this.chglwf.DrawIndicator = true;
 		this.chglwf.UseUnderline = true;
 		this.vbox5.Add (this.chglwf);
-		global::Gtk.Box.BoxChild w156 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chglwf]));
-		w156.Position = 4;
-		w156.Expand = false;
-		w156.Fill = false;
+		global::Gtk.Box.BoxChild w148 = ((global::Gtk.Box.BoxChild)(this.vbox5[this.chglwf]));
+		w148.Position = 4;
+		w148.Expand = false;
+		w148.Fill = false;
 		this.GtkAlignment4.Add (this.vbox5);
 		this.frfilters.Add (this.GtkAlignment4);
-		this.GtkLabel71 = new global::Gtk.Label ();
-		this.GtkLabel71.Name = "GtkLabel71";
-		this.GtkLabel71.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Filters</b>");
-		this.GtkLabel71.UseMarkup = true;
-		this.frfilters.LabelWidget = this.GtkLabel71;
+		this.GtkLabel69 = new global::Gtk.Label ();
+		this.GtkLabel69.Name = "GtkLabel69";
+		this.GtkLabel69.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Filters</b>");
+		this.GtkLabel69.UseMarkup = true;
+		this.frfilters.LabelWidget = this.GtkLabel69;
 		this.hbox9.Add (this.frfilters);
-		global::Gtk.Box.BoxChild w159 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.frfilters]));
-		w159.Position = 2;
-		w159.Expand = false;
-		w159.Fill = false;
+		global::Gtk.Box.BoxChild w151 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.frfilters]));
+		w151.Position = 2;
+		w151.Expand = false;
+		w151.Fill = false;
 		// Container child hbox9.Gtk.Box+BoxChild
 		this.vseparator16 = new global::Gtk.VSeparator ();
 		this.vseparator16.Name = "vseparator16";
 		this.hbox9.Add (this.vseparator16);
-		global::Gtk.Box.BoxChild w160 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.vseparator16]));
-		w160.Position = 3;
-		w160.Expand = false;
-		w160.Fill = false;
+		global::Gtk.Box.BoxChild w152 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.vseparator16]));
+		w152.Position = 3;
+		w152.Expand = false;
+		w152.Fill = false;
 		// Container child hbox9.Gtk.Box+BoxChild
 		this.frothers = new global::Gtk.Frame ();
 		this.frothers.Name = "frothers";
@@ -2158,9 +2054,9 @@ public partial class MainWindow
 		this.chonrate.DrawIndicator = true;
 		this.chonrate.UseUnderline = true;
 		this.vbox15.Add (this.chonrate);
-		global::Gtk.Box.BoxChild w161 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonrate]));
-		w161.Position = 0;
-		w161.Fill = false;
+		global::Gtk.Box.BoxChild w153 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonrate]));
+		w153.Position = 0;
+		w153.Fill = false;
 		// Container child vbox15.Gtk.Box+BoxChild
 		this.chonperiod = new global::Gtk.CheckButton ();
 		this.chonperiod.CanFocus = true;
@@ -2169,9 +2065,9 @@ public partial class MainWindow
 		this.chonperiod.DrawIndicator = true;
 		this.chonperiod.UseUnderline = true;
 		this.vbox15.Add (this.chonperiod);
-		global::Gtk.Box.BoxChild w162 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonperiod]));
-		w162.Position = 1;
-		w162.Fill = false;
+		global::Gtk.Box.BoxChild w154 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonperiod]));
+		w154.Position = 1;
+		w154.Fill = false;
 		// Container child vbox15.Gtk.Box+BoxChild
 		this.chonpreload = new global::Gtk.CheckButton ();
 		this.chonpreload.CanFocus = true;
@@ -2180,9 +2076,9 @@ public partial class MainWindow
 		this.chonpreload.DrawIndicator = true;
 		this.chonpreload.UseUnderline = true;
 		this.vbox15.Add (this.chonpreload);
-		global::Gtk.Box.BoxChild w163 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonpreload]));
-		w163.Position = 2;
-		w163.Fill = false;
+		global::Gtk.Box.BoxChild w155 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonpreload]));
+		w155.Position = 2;
+		w155.Fill = false;
 		// Container child vbox15.Gtk.Box+BoxChild
 		this.chonvelocity = new global::Gtk.CheckButton ();
 		this.chonvelocity.CanFocus = true;
@@ -2191,9 +2087,9 @@ public partial class MainWindow
 		this.chonvelocity.DrawIndicator = true;
 		this.chonvelocity.UseUnderline = true;
 		this.vbox15.Add (this.chonvelocity);
-		global::Gtk.Box.BoxChild w164 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonvelocity]));
-		w164.Position = 3;
-		w164.Fill = false;
+		global::Gtk.Box.BoxChild w156 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonvelocity]));
+		w156.Position = 3;
+		w156.Fill = false;
 		// Container child vbox15.Gtk.Box+BoxChild
 		this.chonglide = new global::Gtk.CheckButton ();
 		this.chonglide.CanFocus = true;
@@ -2202,9 +2098,9 @@ public partial class MainWindow
 		this.chonglide.DrawIndicator = true;
 		this.chonglide.UseUnderline = true;
 		this.vbox15.Add (this.chonglide);
-		global::Gtk.Box.BoxChild w165 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonglide]));
-		w165.Position = 4;
-		w165.Fill = false;
+		global::Gtk.Box.BoxChild w157 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonglide]));
+		w157.Position = 4;
+		w157.Fill = false;
 		// Container child vbox15.Gtk.Box+BoxChild
 		this.chonharmonics = new global::Gtk.CheckButton ();
 		this.chonharmonics.CanFocus = true;
@@ -2213,9 +2109,9 @@ public partial class MainWindow
 		this.chonharmonics.DrawIndicator = true;
 		this.chonharmonics.UseUnderline = true;
 		this.vbox15.Add (this.chonharmonics);
-		global::Gtk.Box.BoxChild w166 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonharmonics]));
-		w166.Position = 5;
-		w166.Fill = false;
+		global::Gtk.Box.BoxChild w158 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonharmonics]));
+		w158.Position = 5;
+		w158.Fill = false;
 		// Container child vbox15.Gtk.Box+BoxChild
 		this.chonfract = new global::Gtk.CheckButton ();
 		this.chonfract.CanFocus = true;
@@ -2224,12 +2120,12 @@ public partial class MainWindow
 		this.chonfract.DrawIndicator = true;
 		this.chonfract.UseUnderline = true;
 		this.vbox15.Add (this.chonfract);
-		global::Gtk.Box.BoxChild w167 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonfract]));
-		w167.Position = 6;
-		w167.Fill = false;
+		global::Gtk.Box.BoxChild w159 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.chonfract]));
+		w159.Position = 6;
+		w159.Fill = false;
 		this.hbox11.Add (this.vbox15);
-		global::Gtk.Box.BoxChild w168 = ((global::Gtk.Box.BoxChild)(this.hbox11[this.vbox15]));
-		w168.Position = 0;
+		global::Gtk.Box.BoxChild w160 = ((global::Gtk.Box.BoxChild)(this.hbox11[this.vbox15]));
+		w160.Position = 0;
 		// Container child hbox11.Gtk.Box+BoxChild
 		this.vbox16 = new global::Gtk.VBox ();
 		this.vbox16.Name = "vbox16";
@@ -2243,9 +2139,9 @@ public partial class MainWindow
 		this.entryrate.WidthChars = 5;
 		this.entryrate.InvisibleChar = '●';
 		this.vbox16.Add (this.entryrate);
-		global::Gtk.Box.BoxChild w169 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryrate]));
-		w169.Position = 0;
-		w169.Fill = false;
+		global::Gtk.Box.BoxChild w161 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryrate]));
+		w161.Position = 0;
+		w161.Fill = false;
 		// Container child vbox16.Gtk.Box+BoxChild
 		this.entrycount = new global::Gtk.Entry ();
 		this.entrycount.CanFocus = true;
@@ -2255,9 +2151,9 @@ public partial class MainWindow
 		this.entrycount.WidthChars = 5;
 		this.entrycount.InvisibleChar = '●';
 		this.vbox16.Add (this.entrycount);
-		global::Gtk.Box.BoxChild w170 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entrycount]));
-		w170.Position = 1;
-		w170.Fill = false;
+		global::Gtk.Box.BoxChild w162 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entrycount]));
+		w162.Position = 1;
+		w162.Fill = false;
 		// Container child vbox16.Gtk.Box+BoxChild
 		this.spinpreload = new global::Gtk.SpinButton (0, 100, 1);
 		this.spinpreload.CanFocus = true;
@@ -2267,9 +2163,9 @@ public partial class MainWindow
 		this.spinpreload.Numeric = true;
 		this.spinpreload.Value = 10;
 		this.vbox16.Add (this.spinpreload);
-		global::Gtk.Box.BoxChild w171 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.spinpreload]));
-		w171.Position = 2;
-		w171.Fill = false;
+		global::Gtk.Box.BoxChild w163 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.spinpreload]));
+		w163.Position = 2;
+		w163.Fill = false;
 		// Container child vbox16.Gtk.Box+BoxChild
 		this.entryvelocity = new global::Gtk.Entry ();
 		this.entryvelocity.CanFocus = true;
@@ -2279,9 +2175,9 @@ public partial class MainWindow
 		this.entryvelocity.WidthChars = 4;
 		this.entryvelocity.InvisibleChar = '●';
 		this.vbox16.Add (this.entryvelocity);
-		global::Gtk.Box.BoxChild w172 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryvelocity]));
-		w172.Position = 3;
-		w172.Fill = false;
+		global::Gtk.Box.BoxChild w164 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryvelocity]));
+		w164.Position = 3;
+		w164.Fill = false;
 		// Container child vbox16.Gtk.Box+BoxChild
 		this.spinglide = new global::Gtk.SpinButton (0, 100, 1);
 		this.spinglide.CanFocus = true;
@@ -2291,9 +2187,9 @@ public partial class MainWindow
 		this.spinglide.Numeric = true;
 		this.spinglide.Value = 5;
 		this.vbox16.Add (this.spinglide);
-		global::Gtk.Box.BoxChild w173 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.spinglide]));
-		w173.Position = 4;
-		w173.Fill = false;
+		global::Gtk.Box.BoxChild w165 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.spinglide]));
+		w165.Position = 4;
+		w165.Fill = false;
 		// Container child vbox16.Gtk.Box+BoxChild
 		this.entryharmo = new global::Gtk.Entry ();
 		this.entryharmo.CanFocus = true;
@@ -2303,9 +2199,9 @@ public partial class MainWindow
 		this.entryharmo.WidthChars = 3;
 		this.entryharmo.InvisibleChar = '●';
 		this.vbox16.Add (this.entryharmo);
-		global::Gtk.Box.BoxChild w174 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryharmo]));
-		w174.Position = 5;
-		w174.Fill = false;
+		global::Gtk.Box.BoxChild w166 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryharmo]));
+		w166.Position = 5;
+		w166.Fill = false;
 		// Container child vbox16.Gtk.Box+BoxChild
 		this.entryfract = new global::Gtk.Entry ();
 		this.entryfract.CanFocus = true;
@@ -2315,36 +2211,36 @@ public partial class MainWindow
 		this.entryfract.WidthChars = 3;
 		this.entryfract.InvisibleChar = '●';
 		this.vbox16.Add (this.entryfract);
-		global::Gtk.Box.BoxChild w175 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryfract]));
-		w175.Position = 6;
-		w175.Fill = false;
+		global::Gtk.Box.BoxChild w167 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.entryfract]));
+		w167.Position = 6;
+		w167.Fill = false;
 		this.hbox11.Add (this.vbox16);
-		global::Gtk.Box.BoxChild w176 = ((global::Gtk.Box.BoxChild)(this.hbox11[this.vbox16]));
-		w176.Position = 1;
-		w176.Expand = false;
-		w176.Fill = false;
+		global::Gtk.Box.BoxChild w168 = ((global::Gtk.Box.BoxChild)(this.hbox11[this.vbox16]));
+		w168.Position = 1;
+		w168.Expand = false;
+		w168.Fill = false;
 		this.GtkAlignment5.Add (this.hbox11);
 		this.frothers.Add (this.GtkAlignment5);
-		this.GtkLabel80 = new global::Gtk.Label ();
-		this.GtkLabel80.Name = "GtkLabel80";
-		this.GtkLabel80.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Others</b>");
-		this.GtkLabel80.UseMarkup = true;
-		this.frothers.LabelWidget = this.GtkLabel80;
+		this.GtkLabel78 = new global::Gtk.Label ();
+		this.GtkLabel78.Name = "GtkLabel78";
+		this.GtkLabel78.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Others</b>");
+		this.GtkLabel78.UseMarkup = true;
+		this.frothers.LabelWidget = this.GtkLabel78;
 		this.hbox9.Add (this.frothers);
-		global::Gtk.Box.BoxChild w179 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.frothers]));
-		w179.Position = 4;
-		w179.Expand = false;
-		w179.Fill = false;
+		global::Gtk.Box.BoxChild w171 = ((global::Gtk.Box.BoxChild)(this.hbox9[this.frothers]));
+		w171.Position = 4;
+		w171.Expand = false;
+		w171.Fill = false;
 		this.vbox1.Add (this.hbox9);
-		global::Gtk.Box.BoxChild w180 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox9]));
-		w180.PackType = ((global::Gtk.PackType)(1));
-		w180.Position = 7;
-		w180.Expand = false;
-		w180.Fill = false;
+		global::Gtk.Box.BoxChild w172 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox9]));
+		w172.PackType = ((global::Gtk.PackType)(1));
+		w172.Position = 7;
+		w172.Expand = false;
+		w172.Fill = false;
 		this.notebook1.Add (this.vbox1);
-		global::Gtk.Notebook.NotebookChild w181 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox1]));
-		w181.Position = 1;
-		w181.TabFill = false;
+		global::Gtk.Notebook.NotebookChild w173 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox1]));
+		w173.Position = 1;
+		w173.TabFill = false;
 		// Notebook tab
 		this.lconfig = new global::Gtk.Label ();
 		this.lconfig.Name = "lconfig";
@@ -2354,11 +2250,11 @@ public partial class MainWindow
 		// Container child notebook1.Gtk.Notebook+NotebookChild
 		this.labout2 = new global::Gtk.Label ();
 		this.labout2.Name = "labout2";
-		this.labout2.LabelProp = global::Mono.Unix.Catalog.GetString ("monoBristol\nversion 0.60.3\nGui for Bristol (>=0.60.1)\n\nMade by: David \"Dacr\" Horvath\nMail: dacr at dacr.hu\nWeb: http://www.dacr.hu/monobristol\n\nBristol web: http://bristol.sourceforge.net\nBristol mail: nickycopeland at hotmail.com\nAuthor: Nick Copeland");
+		this.labout2.LabelProp = global::Mono.Unix.Catalog.GetString ("monoBristol\nversion 0.60.2\nGui for Bristol (>=0.60.1)\n\nMade by: David \"Dacr\" Horvath\nMail: dacr at dacr.hu\nWeb: http://www.dacr.hu/monobristol\n\nBristol web: http://bristol.sourceforge.net\nBristol mail: nickycopeland at hotmail.com\nAuthor: Nick Copeland");
 		this.labout2.Wrap = true;
 		this.notebook1.Add (this.labout2);
-		global::Gtk.Notebook.NotebookChild w182 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.labout2]));
-		w182.Position = 2;
+		global::Gtk.Notebook.NotebookChild w174 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.labout2]));
+		w174.Position = 2;
 		// Notebook tab
 		this.labout = new global::Gtk.Label ();
 		this.labout.Name = "labout";
diff --git a/gtk-gui/gui.stetic b/gtk-gui/gui.stetic
index 21c0c3d..3bd132c 100644
--- a/gtk-gui/gui.stetic
+++ b/gtk-gui/gui.stetic
@@ -8,7 +8,7 @@
     <widget-library name="glade-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
     <widget-library name="../bin/Debug/monoBristol.exe" internal="true" />
   </import>
-  <widget class="Gtk.Window" id="MainWindow" design-size="1056 725">
+  <widget class="Gtk.Window" id="MainWindow" design-size="1056 717">
     <property name="MemberName" />
     <property name="Title" translatable="yes">monoBristol</property>
     <property name="Icon">resource:monoBristol.monobristol.ico</property>
@@ -22,7 +22,7 @@
       <widget class="Gtk.Notebook" id="notebook1">
         <property name="MemberName" />
         <property name="CanFocus">True</property>
-        <property name="CurrentPage">2</property>
+        <property name="CurrentPage">0</property>
         <child>
           <widget class="Gtk.Table" id="table1">
             <property name="MemberName" />
@@ -1187,67 +1187,6 @@
                                 <property name="Fill">False</property>
                               </packing>
                             </child>
-                            <child>
-                              <widget class="Gtk.CheckButton" id="chstateasy">
-                                <property name="MemberName" />
-                                <property name="CanFocus">True</property>
-                                <property name="Label" translatable="yes">Jack stats</property>
-                                <property name="DrawIndicator">True</property>
-                                <property name="HasLabel">True</property>
-                                <property name="UseUnderline">True</property>
-                              </widget>
-                              <packing>
-                                <property name="Position">4</property>
-                                <property name="AutoSize">True</property>
-                                <property name="Expand">False</property>
-                                <property name="Fill">False</property>
-                              </packing>
-                            </child>
-                            <child>
-                              <widget class="Gtk.HBox" id="hbox2">
-                                <property name="MemberName" />
-                                <property name="Spacing">6</property>
-                                <child>
-                                  <widget class="Gtk.CheckButton" id="chmultieasy">
-                                    <property name="MemberName" />
-                                    <property name="CanFocus">True</property>
-                                    <property name="Label" translatable="yes">Multiple IO port requests:</property>
-                                    <property name="DrawIndicator">True</property>
-                                    <property name="HasLabel">True</property>
-                                    <property name="UseUnderline">True</property>
-                                  </widget>
-                                  <packing>
-                                    <property name="Position">0</property>
-                                    <property name="AutoSize">True</property>
-                                  </packing>
-                                </child>
-                                <child>
-                                  <widget class="Gtk.SpinButton" id="spinmultieasy">
-                                    <property name="MemberName" />
-                                    <property name="CanFocus">True</property>
-                                    <property name="Lower">1</property>
-                                    <property name="Upper">100</property>
-                                    <property name="PageIncrement">10</property>
-                                    <property name="StepIncrement">1</property>
-                                    <property name="ClimbRate">1</property>
-                                    <property name="Numeric">True</property>
-                                    <property name="Value">1</property>
-                                  </widget>
-                                  <packing>
-                                    <property name="Position">1</property>
-                                    <property name="AutoSize">True</property>
-                                    <property name="Expand">False</property>
-                                    <property name="Fill">False</property>
-                                  </packing>
-                                </child>
-                              </widget>
-                              <packing>
-                                <property name="Position">5</property>
-                                <property name="AutoSize">True</property>
-                                <property name="Expand">False</property>
-                                <property name="Fill">False</property>
-                              </packing>
-                            </child>
                           </widget>
                         </child>
                       </widget>
@@ -1412,67 +1351,6 @@
                                         <property name="Fill">False</property>
                                       </packing>
                                     </child>
-                                    <child>
-                                      <widget class="Gtk.CheckButton" id="chstatadv">
-                                        <property name="MemberName" />
-                                        <property name="CanFocus">True</property>
-                                        <property name="Label" translatable="yes">Jack stats</property>
-                                        <property name="DrawIndicator">True</property>
-                                        <property name="HasLabel">True</property>
-                                        <property name="UseUnderline">True</property>
-                                      </widget>
-                                      <packing>
-                                        <property name="Position">4</property>
-                                        <property name="AutoSize">True</property>
-                                        <property name="Expand">False</property>
-                                        <property name="Fill">False</property>
-                                      </packing>
-                                    </child>
-                                    <child>
-                                      <widget class="Gtk.HBox" id="hbox12">
-                                        <property name="MemberName" />
-                                        <property name="Spacing">6</property>
-                                        <child>
-                                          <widget class="Gtk.CheckButton" id="chmultiadv">
-                                            <property name="MemberName" />
-                                            <property name="CanFocus">True</property>
-                                            <property name="Label" translatable="yes">Multiple IO port requests:</property>
-                                            <property name="DrawIndicator">True</property>
-                                            <property name="HasLabel">True</property>
-                                            <property name="UseUnderline">True</property>
-                                          </widget>
-                                          <packing>
-                                            <property name="Position">0</property>
-                                            <property name="AutoSize">True</property>
-                                          </packing>
-                                        </child>
-                                        <child>
-                                          <widget class="Gtk.SpinButton" id="spinmultiadv">
-                                            <property name="MemberName" />
-                                            <property name="CanFocus">True</property>
-                                            <property name="Lower">1</property>
-                                            <property name="Upper">100</property>
-                                            <property name="PageIncrement">10</property>
-                                            <property name="StepIncrement">1</property>
-                                            <property name="ClimbRate">1</property>
-                                            <property name="Numeric">True</property>
-                                            <property name="Value">1</property>
-                                          </widget>
-                                          <packing>
-                                            <property name="Position">1</property>
-                                            <property name="AutoSize">True</property>
-                                            <property name="Expand">False</property>
-                                            <property name="Fill">False</property>
-                                          </packing>
-                                        </child>
-                                      </widget>
-                                      <packing>
-                                        <property name="Position">5</property>
-                                        <property name="AutoSize">True</property>
-                                        <property name="Expand">False</property>
-                                        <property name="Fill">False</property>
-                                      </packing>
-                                    </child>
                                   </widget>
                                   <packing>
                                     <property name="Position">1</property>
@@ -1851,7 +1729,7 @@ management   </property>
                       </widget>
                     </child>
                     <child>
-                      <widget class="Gtk.Label" id="GtkLabel86">
+                      <widget class="Gtk.Label" id="GtkLabel83">
                         <property name="MemberName" />
                         <property name="LabelProp" translatable="yes">&lt;b&gt;Jack session&lt;/b&gt;</property>
                         <property name="UseMarkup">True</property>
@@ -1973,7 +1851,7 @@ management   </property>
                       </widget>
                     </child>
                     <child>
-                      <widget class="Gtk.Label" id="GtkLabel90">
+                      <widget class="Gtk.Label" id="GtkLabel87">
                         <property name="MemberName" />
                         <property name="LabelProp" translatable="yes">&lt;b&gt;LADI&lt;/b&gt;</property>
                         <property name="UseMarkup">True</property>
@@ -2112,7 +1990,7 @@ management   </property>
                       </widget>
                     </child>
                     <child>
-                      <widget class="Gtk.Label" id="GtkLabel95">
+                      <widget class="Gtk.Label" id="GtkLabel92">
                         <property name="MemberName" />
                         <property name="LabelProp" translatable="yes">&lt;b&gt;NRP&lt;/b&gt;</property>
                         <property name="UseMarkup">True</property>
@@ -2239,7 +2117,7 @@ management   </property>
                       </widget>
                     </child>
                     <child>
-                      <widget class="Gtk.Label" id="GtkLabel98">
+                      <widget class="Gtk.Label" id="GtkLabel94">
                         <property name="MemberName" />
                         <property name="LabelProp" translatable="yes">&lt;b&gt;Host&lt;/b&gt;</property>
                         <property name="UseMarkup">True</property>
@@ -2645,7 +2523,7 @@ management   </property>
                       </widget>
                     </child>
                     <child>
-                      <widget class="Gtk.Label" id="GtkLabel71">
+                      <widget class="Gtk.Label" id="GtkLabel69">
                         <property name="MemberName" />
                         <property name="LabelProp" translatable="yes">&lt;b&gt;Filters&lt;/b&gt;</property>
                         <property name="UseMarkup">True</property>
@@ -2928,7 +2806,7 @@ management   </property>
                       </widget>
                     </child>
                     <child>
-                      <widget class="Gtk.Label" id="GtkLabel80">
+                      <widget class="Gtk.Label" id="GtkLabel78">
                         <property name="MemberName" />
                         <property name="LabelProp" translatable="yes">&lt;b&gt;Others&lt;/b&gt;</property>
                         <property name="UseMarkup">True</property>
@@ -2973,7 +2851,7 @@ management   </property>
           <widget class="Gtk.Label" id="labout2">
             <property name="MemberName" />
             <property name="LabelProp" translatable="yes">monoBristol
-version 0.60.3
+version 0.60.2
 Gui for Bristol (&gt;=0.60.1)
 
 Made by: David "Dacr" Horvath
diff --git a/monoBristol.desktop b/monoBristol.desktop
deleted file mode 100644
index 95bff9d..0000000
--- a/monoBristol.desktop
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env xdg-open
-[Desktop Entry]
-Name=monoBristol
-Comment=GUI for Bristol
-Comment[ru]=Графический интерфейс к синтезатору Bristol
-Exec=monobristol
-Icon=monobristol.png
-Terminal=0
-Type=Application
-Encoding=UTF-8
-Categories=Application;AudioVideo;Audio;

-- 
monobristol



More information about the Pkg-cli-apps-commits mailing list