Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLevi Bard <levibard@mono-cvs.ximian.com>2010-03-03 21:26:20 +0300
committerLevi Bard <levibard@mono-cvs.ximian.com>2010-03-03 21:26:20 +0300
commit093554faf3b3b8d4e527edcc6ce9fe9098fd2084 (patch)
tree433635a2d597bf0914f5e4730b7b02205fff4987 /main/src/addins/MonoDevelop.Autotools
parent421bf78d412b131412d16dfe3a071c4ffd06f184 (diff)
* MakefileData.cs: * gtk-gui/gui.stetic: * MakefileOptionPanelWidget.cs: * MakefileProjectServiceExtension.cs: * gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs: Add option for number of parallel build processes.
svn path=/trunk/monodevelop/; revision=152964
Diffstat (limited to 'main/src/addins/MonoDevelop.Autotools')
-rw-r--r--main/src/addins/MonoDevelop.Autotools/ChangeLog9
-rw-r--r--main/src/addins/MonoDevelop.Autotools/MakefileData.cs8
-rw-r--r--main/src/addins/MonoDevelop.Autotools/MakefileOptionPanelWidget.cs2
-rw-r--r--main/src/addins/MonoDevelop.Autotools/MakefileProjectServiceExtension.cs3
-rw-r--r--main/src/addins/MonoDevelop.Autotools/gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs587
-rw-r--r--main/src/addins/MonoDevelop.Autotools/gtk-gui/gui.stetic52
6 files changed, 381 insertions, 280 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/ChangeLog b/main/src/addins/MonoDevelop.Autotools/ChangeLog
index 65d270827d..207939715d 100644
--- a/main/src/addins/MonoDevelop.Autotools/ChangeLog
+++ b/main/src/addins/MonoDevelop.Autotools/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-03 Levi Bard <levi@unity3d.com>
+
+ * MakefileData.cs:
+ * gtk-gui/gui.stetic:
+ * MakefileOptionPanelWidget.cs:
+ * MakefileProjectServiceExtension.cs:
+ * gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs:
+ Add option for number of parallel build processes.
+
2010-02-17 Lluis Sanchez Gual <lluis@novell.com>
* MakefileData.cs: Fix assembly resolution issue when loading
diff --git a/main/src/addins/MonoDevelop.Autotools/MakefileData.cs b/main/src/addins/MonoDevelop.Autotools/MakefileData.cs
index f12e0baac3..9c1e49bc2e 100644
--- a/main/src/addins/MonoDevelop.Autotools/MakefileData.cs
+++ b/main/src/addins/MonoDevelop.Autotools/MakefileData.cs
@@ -68,6 +68,7 @@ namespace MonoDevelop.Autotools
buildTargetName = "all";
cleanTargetName = "clean";
executeTargetName = String.Empty;
+ ParallelProcesses = 1;
assemblyContext = GetMonoRuntimeContext ();
if (assemblyContext == null)
@@ -195,6 +196,12 @@ namespace MonoDevelop.Autotools
get { return executeTargetName; }
set { executeTargetName = value;}
}
+
+ /// <summary>
+ /// The number of parallel build processes to use
+ /// </summary>
+ [ItemProperty (DefaultValue = 1)]
+ public int ParallelProcesses { get; set; }
//Makefile variables
MakefileVar buildFilesVar;
@@ -480,6 +487,7 @@ namespace MonoDevelop.Autotools
data.BuildTargetName = this.BuildTargetName;
data.CleanTargetName = this.CleanTargetName;
data.ExecuteTargetName = this.ExecuteTargetName;
+ data.ParallelProcesses = this.ParallelProcesses;
data.BuildFilesVar = new MakefileVar (this.BuildFilesVar);
data.DeployFilesVar = new MakefileVar (this.DeployFilesVar);
diff --git a/main/src/addins/MonoDevelop.Autotools/MakefileOptionPanelWidget.cs b/main/src/addins/MonoDevelop.Autotools/MakefileOptionPanelWidget.cs
index 581a57b08f..d6e0deba5c 100644
--- a/main/src/addins/MonoDevelop.Autotools/MakefileOptionPanelWidget.cs
+++ b/main/src/addins/MonoDevelop.Autotools/MakefileOptionPanelWidget.cs
@@ -98,6 +98,7 @@ namespace MonoDevelop.Autotools
this.BuildTargetName.Text = data.BuildTargetName;
this.ExecuteTargetName.Text = data.ExecuteTargetName;
this.CleanTargetName.Text = data.CleanTargetName;
+ spinProcesses.Value = data.ParallelProcesses;
cbBuildTarget.Active = BuildTargetName.Sensitive = data.BuildTargetName != string.Empty;
cbRunTarget.Active = ExecuteTargetName.Sensitive = data.ExecuteTargetName != string.Empty;
@@ -194,6 +195,7 @@ namespace MonoDevelop.Autotools
data.BuildTargetName = this.BuildTargetName.Text.Trim ();
data.ExecuteTargetName = this.ExecuteTargetName.Text.Trim ();
data.CleanTargetName = this.CleanTargetName.Text.Trim ();
+ data.ParallelProcesses = this.spinProcesses.ValueAsInt;
data.MessageRegexName = GetActiveVar (comboMessageType);
if (data.MessageRegexName == "Custom") {
diff --git a/main/src/addins/MonoDevelop.Autotools/MakefileProjectServiceExtension.cs b/main/src/addins/MonoDevelop.Autotools/MakefileProjectServiceExtension.cs
index 90ec0f5ab9..a6b6f98842 100644
--- a/main/src/addins/MonoDevelop.Autotools/MakefileProjectServiceExtension.cs
+++ b/main/src/addins/MonoDevelop.Autotools/MakefileProjectServiceExtension.cs
@@ -163,6 +163,7 @@ namespace MonoDevelop.Autotools
try
{
string baseDir = project.BaseDirectory;
+ string args = string.Format ("-j {0} {1}", data.ParallelProcesses, data.BuildTargetName);
StringWriter swOutput = new StringWriter ();
LogTextWriter chainedOutput = new LogTextWriter ();
@@ -170,7 +171,7 @@ namespace MonoDevelop.Autotools
chainedOutput.ChainWriter (swOutput);
ProcessWrapper process = Runtime.ProcessService.StartProcess ("make",
- data.BuildTargetName,
+ args,
baseDir,
chainedOutput,
chainedOutput,
diff --git a/main/src/addins/MonoDevelop.Autotools/gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs b/main/src/addins/MonoDevelop.Autotools/gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs
index 471de4a64a..c9b3e34dff 100644
--- a/main/src/addins/MonoDevelop.Autotools/gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs
+++ b/main/src/addins/MonoDevelop.Autotools/gtk-gui/MonoDevelop.Autotools.MakefileOptionPanelWidget.cs
@@ -46,12 +46,16 @@ namespace MonoDevelop.Autotools
private global::Gtk.Label label8;
+ private global::Gtk.Label label9;
+
private global::Gtk.Label lblAssemblyNameVar;
private global::Gtk.Label lblMakefileName;
private global::Gtk.Label lblOutputDirVar;
+ private global::Gtk.SpinButton spinProcesses;
+
private global::Gtk.Label label1;
private global::Gtk.VBox vbox2;
@@ -197,7 +201,7 @@ namespace MonoDevelop.Autotools
w2.Expand = false;
w2.Fill = false;
// Container child vbox1.Gtk.Box+BoxChild
- this.table1 = new global::Gtk.Table (((uint)(8)), ((uint)(2)), false);
+ this.table1 = new global::Gtk.Table (((uint)(9)), ((uint)(2)), false);
this.table1.Name = "table1";
this.table1.RowSpacing = ((uint)(6));
this.table1.ColumnSpacing = ((uint)(6));
@@ -384,41 +388,68 @@ namespace MonoDevelop.Autotools
w18.XOptions = ((global::Gtk.AttachOptions)(4));
w18.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table1.Gtk.Table+TableChild
+ this.label9 = new global::Gtk.Label ();
+ this.label9.Name = "label9";
+ this.label9.Xalign = 1f;
+ this.label9.LabelProp = global::Mono.Unix.Catalog.GetString ("Build processes:");
+ this.table1.Add (this.label9);
+ global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table1[this.label9]));
+ w19.TopAttach = ((uint)(8));
+ w19.BottomAttach = ((uint)(9));
+ w19.XOptions = ((global::Gtk.AttachOptions)(4));
+ w19.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
this.lblAssemblyNameVar = new global::Gtk.Label ();
this.lblAssemblyNameVar.Name = "lblAssemblyNameVar";
this.lblAssemblyNameVar.Xalign = 0f;
this.lblAssemblyNameVar.LabelProp = global::Mono.Unix.Catalog.GetString ("Assembly Name variable:");
this.table1.Add (this.lblAssemblyNameVar);
- global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table1[this.lblAssemblyNameVar]));
- w19.TopAttach = ((uint)(6));
- w19.BottomAttach = ((uint)(7));
- w19.XOptions = ((global::Gtk.AttachOptions)(4));
- w19.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table1[this.lblAssemblyNameVar]));
+ w20.TopAttach = ((uint)(6));
+ w20.BottomAttach = ((uint)(7));
+ w20.XOptions = ((global::Gtk.AttachOptions)(4));
+ w20.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table1.Gtk.Table+TableChild
this.lblMakefileName = new global::Gtk.Label ();
this.lblMakefileName.Name = "lblMakefileName";
this.lblMakefileName.Xalign = 0f;
this.lblMakefileName.LabelProp = global::Mono.Unix.Catalog.GetString ("Makefile path:");
this.table1.Add (this.lblMakefileName);
- global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table1[this.lblMakefileName]));
- w20.XOptions = ((global::Gtk.AttachOptions)(4));
- w20.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.table1[this.lblMakefileName]));
+ w21.XOptions = ((global::Gtk.AttachOptions)(4));
+ w21.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table1.Gtk.Table+TableChild
this.lblOutputDirVar = new global::Gtk.Label ();
this.lblOutputDirVar.Name = "lblOutputDirVar";
this.lblOutputDirVar.Xalign = 0f;
this.lblOutputDirVar.LabelProp = global::Mono.Unix.Catalog.GetString ("Output directory variable:");
this.table1.Add (this.lblOutputDirVar);
- global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.table1[this.lblOutputDirVar]));
- w21.TopAttach = ((uint)(7));
- w21.BottomAttach = ((uint)(8));
- w21.XOptions = ((global::Gtk.AttachOptions)(4));
- w21.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.table1[this.lblOutputDirVar]));
+ w22.TopAttach = ((uint)(7));
+ w22.BottomAttach = ((uint)(8));
+ w22.XOptions = ((global::Gtk.AttachOptions)(4));
+ w22.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.spinProcesses = new global::Gtk.SpinButton (1, 64, 1);
+ this.spinProcesses.CanFocus = true;
+ this.spinProcesses.Name = "spinProcesses";
+ this.spinProcesses.Adjustment.PageIncrement = 1;
+ this.spinProcesses.ClimbRate = 1;
+ this.spinProcesses.Numeric = true;
+ this.spinProcesses.Value = 1;
+ this.table1.Add (this.spinProcesses);
+ global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.table1[this.spinProcesses]));
+ w23.TopAttach = ((uint)(8));
+ w23.BottomAttach = ((uint)(9));
+ w23.LeftAttach = ((uint)(1));
+ w23.RightAttach = ((uint)(2));
+ w23.XOptions = ((global::Gtk.AttachOptions)(4));
+ w23.YOptions = ((global::Gtk.AttachOptions)(4));
this.vbox1.Add (this.table1);
- global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.table1]));
- w22.Position = 2;
- w22.Expand = false;
- w22.Fill = false;
+ global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.table1]));
+ w24.Position = 2;
+ w24.Expand = false;
+ w24.Fill = false;
this.notebook1.Add (this.vbox1);
// Notebook tab
this.label1 = new global::Gtk.Label ();
@@ -439,18 +470,18 @@ namespace MonoDevelop.Autotools
this.cbFileSync.DrawIndicator = true;
this.cbFileSync.UseUnderline = true;
this.vbox2.Add (this.cbFileSync);
- global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.cbFileSync]));
- w24.Position = 0;
- w24.Expand = false;
- w24.Fill = false;
+ global::Gtk.Box.BoxChild w26 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.cbFileSync]));
+ w26.Position = 0;
+ w26.Expand = false;
+ w26.Fill = false;
// Container child vbox2.Gtk.Box+BoxChild
this.hseparator2 = new global::Gtk.HSeparator ();
this.hseparator2.Name = "hseparator2";
this.vbox2.Add (this.hseparator2);
- global::Gtk.Box.BoxChild w25 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hseparator2]));
- w25.Position = 1;
- w25.Expand = false;
- w25.Fill = false;
+ global::Gtk.Box.BoxChild w27 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hseparator2]));
+ w27.Position = 1;
+ w27.Expand = false;
+ w27.Fill = false;
// Container child vbox2.Gtk.Box+BoxChild
this.table3 = new global::Gtk.Table (((uint)(6)), ((uint)(3)), false);
this.table3.Name = "table3";
@@ -463,11 +494,11 @@ namespace MonoDevelop.Autotools
this.cbKeepDeployFilesSync.Label = global::Mono.Unix.Catalog.GetString ("Deployment files");
this.cbKeepDeployFilesSync.DrawIndicator = true;
this.table3.Add (this.cbKeepDeployFilesSync);
- global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepDeployFilesSync]));
- w26.TopAttach = ((uint)(4));
- w26.BottomAttach = ((uint)(5));
- w26.XOptions = ((global::Gtk.AttachOptions)(4));
- w26.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepDeployFilesSync]));
+ w28.TopAttach = ((uint)(4));
+ w28.BottomAttach = ((uint)(5));
+ w28.XOptions = ((global::Gtk.AttachOptions)(4));
+ w28.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.cbKeepFilesSync = new global::Gtk.CheckButton ();
this.cbKeepFilesSync.CanFocus = true;
@@ -475,11 +506,11 @@ namespace MonoDevelop.Autotools
this.cbKeepFilesSync.Label = global::Mono.Unix.Catalog.GetString ("Source code files");
this.cbKeepFilesSync.DrawIndicator = true;
this.table3.Add (this.cbKeepFilesSync);
- global::Gtk.Table.TableChild w27 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepFilesSync]));
- w27.TopAttach = ((uint)(2));
- w27.BottomAttach = ((uint)(3));
- w27.XOptions = ((global::Gtk.AttachOptions)(4));
- w27.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepFilesSync]));
+ w29.TopAttach = ((uint)(2));
+ w29.BottomAttach = ((uint)(3));
+ w29.XOptions = ((global::Gtk.AttachOptions)(4));
+ w29.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.cbKeepOthersSync = new global::Gtk.CheckButton ();
this.cbKeepOthersSync.CanFocus = true;
@@ -487,11 +518,11 @@ namespace MonoDevelop.Autotools
this.cbKeepOthersSync.Label = global::Mono.Unix.Catalog.GetString ("Other Files");
this.cbKeepOthersSync.DrawIndicator = true;
this.table3.Add (this.cbKeepOthersSync);
- global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepOthersSync]));
- w28.TopAttach = ((uint)(5));
- w28.BottomAttach = ((uint)(6));
- w28.XOptions = ((global::Gtk.AttachOptions)(4));
- w28.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepOthersSync]));
+ w30.TopAttach = ((uint)(5));
+ w30.BottomAttach = ((uint)(6));
+ w30.XOptions = ((global::Gtk.AttachOptions)(4));
+ w30.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.cbKeepResourcesSync = new global::Gtk.CheckButton ();
this.cbKeepResourcesSync.CanFocus = true;
@@ -499,55 +530,55 @@ namespace MonoDevelop.Autotools
this.cbKeepResourcesSync.Label = global::Mono.Unix.Catalog.GetString ("Resources");
this.cbKeepResourcesSync.DrawIndicator = true;
this.table3.Add (this.cbKeepResourcesSync);
- global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepResourcesSync]));
- w29.TopAttach = ((uint)(3));
- w29.BottomAttach = ((uint)(4));
- w29.XOptions = ((global::Gtk.AttachOptions)(4));
- w29.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.table3[this.cbKeepResourcesSync]));
+ w31.TopAttach = ((uint)(3));
+ w31.BottomAttach = ((uint)(4));
+ w31.XOptions = ((global::Gtk.AttachOptions)(4));
+ w31.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.comboDeployFilesVar = global::Gtk.ComboBox.NewText ();
this.comboDeployFilesVar.WidthRequest = 200;
this.comboDeployFilesVar.Name = "comboDeployFilesVar";
this.table3.Add (this.comboDeployFilesVar);
- global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.table3[this.comboDeployFilesVar]));
- w30.TopAttach = ((uint)(4));
- w30.BottomAttach = ((uint)(5));
- w30.LeftAttach = ((uint)(1));
- w30.RightAttach = ((uint)(2));
- w30.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.table3[this.comboDeployFilesVar]));
+ w32.TopAttach = ((uint)(4));
+ w32.BottomAttach = ((uint)(5));
+ w32.LeftAttach = ((uint)(1));
+ w32.RightAttach = ((uint)(2));
+ w32.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.comboFilesVar = global::Gtk.ComboBox.NewText ();
this.comboFilesVar.WidthRequest = 200;
this.comboFilesVar.Name = "comboFilesVar";
this.table3.Add (this.comboFilesVar);
- global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.table3[this.comboFilesVar]));
- w31.TopAttach = ((uint)(2));
- w31.BottomAttach = ((uint)(3));
- w31.LeftAttach = ((uint)(1));
- w31.RightAttach = ((uint)(2));
- w31.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.table3[this.comboFilesVar]));
+ w33.TopAttach = ((uint)(2));
+ w33.BottomAttach = ((uint)(3));
+ w33.LeftAttach = ((uint)(1));
+ w33.RightAttach = ((uint)(2));
+ w33.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.comboOthersVar = global::Gtk.ComboBox.NewText ();
this.comboOthersVar.WidthRequest = 200;
this.comboOthersVar.Name = "comboOthersVar";
this.table3.Add (this.comboOthersVar);
- global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.table3[this.comboOthersVar]));
- w32.TopAttach = ((uint)(5));
- w32.BottomAttach = ((uint)(6));
- w32.LeftAttach = ((uint)(1));
- w32.RightAttach = ((uint)(2));
- w32.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.table3[this.comboOthersVar]));
+ w34.TopAttach = ((uint)(5));
+ w34.BottomAttach = ((uint)(6));
+ w34.LeftAttach = ((uint)(1));
+ w34.RightAttach = ((uint)(2));
+ w34.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.comboResourcesVar = global::Gtk.ComboBox.NewText ();
this.comboResourcesVar.WidthRequest = 200;
this.comboResourcesVar.Name = "comboResourcesVar";
this.table3.Add (this.comboResourcesVar);
- global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.table3[this.comboResourcesVar]));
- w33.TopAttach = ((uint)(3));
- w33.BottomAttach = ((uint)(4));
- w33.LeftAttach = ((uint)(1));
- w33.RightAttach = ((uint)(2));
- w33.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.table3[this.comboResourcesVar]));
+ w35.TopAttach = ((uint)(3));
+ w35.BottomAttach = ((uint)(4));
+ w35.LeftAttach = ((uint)(1));
+ w35.RightAttach = ((uint)(2));
+ w35.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.entryDeployFilesPattern = new global::Gtk.Entry ();
this.entryDeployFilesPattern.CanFocus = true;
@@ -555,13 +586,13 @@ namespace MonoDevelop.Autotools
this.entryDeployFilesPattern.IsEditable = true;
this.entryDeployFilesPattern.InvisibleChar = '●';
this.table3.Add (this.entryDeployFilesPattern);
- global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.table3[this.entryDeployFilesPattern]));
- w34.TopAttach = ((uint)(4));
- w34.BottomAttach = ((uint)(5));
- w34.LeftAttach = ((uint)(2));
- w34.RightAttach = ((uint)(3));
- w34.XOptions = ((global::Gtk.AttachOptions)(4));
- w34.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.table3[this.entryDeployFilesPattern]));
+ w36.TopAttach = ((uint)(4));
+ w36.BottomAttach = ((uint)(5));
+ w36.LeftAttach = ((uint)(2));
+ w36.RightAttach = ((uint)(3));
+ w36.XOptions = ((global::Gtk.AttachOptions)(4));
+ w36.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.entryFilesPattern = new global::Gtk.Entry ();
this.entryFilesPattern.CanFocus = true;
@@ -569,13 +600,13 @@ namespace MonoDevelop.Autotools
this.entryFilesPattern.IsEditable = true;
this.entryFilesPattern.InvisibleChar = '●';
this.table3.Add (this.entryFilesPattern);
- global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.table3[this.entryFilesPattern]));
- w35.TopAttach = ((uint)(2));
- w35.BottomAttach = ((uint)(3));
- w35.LeftAttach = ((uint)(2));
- w35.RightAttach = ((uint)(3));
- w35.XOptions = ((global::Gtk.AttachOptions)(4));
- w35.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.table3[this.entryFilesPattern]));
+ w37.TopAttach = ((uint)(2));
+ w37.BottomAttach = ((uint)(3));
+ w37.LeftAttach = ((uint)(2));
+ w37.RightAttach = ((uint)(3));
+ w37.XOptions = ((global::Gtk.AttachOptions)(4));
+ w37.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.entryResourcesPattern = new global::Gtk.Entry ();
this.entryResourcesPattern.CanFocus = true;
@@ -583,13 +614,13 @@ namespace MonoDevelop.Autotools
this.entryResourcesPattern.IsEditable = true;
this.entryResourcesPattern.InvisibleChar = '●';
this.table3.Add (this.entryResourcesPattern);
- global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.table3[this.entryResourcesPattern]));
- w36.TopAttach = ((uint)(3));
- w36.BottomAttach = ((uint)(4));
- w36.LeftAttach = ((uint)(2));
- w36.RightAttach = ((uint)(3));
- w36.XOptions = ((global::Gtk.AttachOptions)(4));
- w36.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w38 = ((global::Gtk.Table.TableChild)(this.table3[this.entryResourcesPattern]));
+ w38.TopAttach = ((uint)(3));
+ w38.BottomAttach = ((uint)(4));
+ w38.LeftAttach = ((uint)(2));
+ w38.RightAttach = ((uint)(3));
+ w38.XOptions = ((global::Gtk.AttachOptions)(4));
+ w38.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.eventbox1 = new global::Gtk.EventBox ();
this.eventbox1.Name = "eventbox1";
@@ -601,13 +632,13 @@ namespace MonoDevelop.Autotools
this.entryOthersPattern.InvisibleChar = '●';
this.eventbox1.Add (this.entryOthersPattern);
this.table3.Add (this.eventbox1);
- global::Gtk.Table.TableChild w38 = ((global::Gtk.Table.TableChild)(this.table3[this.eventbox1]));
- w38.TopAttach = ((uint)(5));
- w38.BottomAttach = ((uint)(6));
- w38.LeftAttach = ((uint)(2));
- w38.RightAttach = ((uint)(3));
- w38.XOptions = ((global::Gtk.AttachOptions)(4));
- w38.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w40 = ((global::Gtk.Table.TableChild)(this.table3[this.eventbox1]));
+ w40.TopAttach = ((uint)(5));
+ w40.BottomAttach = ((uint)(6));
+ w40.LeftAttach = ((uint)(2));
+ w40.RightAttach = ((uint)(3));
+ w40.XOptions = ((global::Gtk.AttachOptions)(4));
+ w40.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.label5 = new global::Gtk.Label ();
this.label5.WidthRequest = 500;
@@ -616,45 +647,45 @@ namespace MonoDevelop.Autotools
this.label5.LabelProp = global::Mono.Unix.Catalog.GetString ("Select the kind of files you want to synchronize with the makefile. For each file kind please specify the makefile variable that holds the list and optionally a prefix to be prepended to each file name.");
this.label5.Wrap = true;
this.table3.Add (this.label5);
- global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.table3[this.label5]));
- w39.RightAttach = ((uint)(3));
- w39.YPadding = ((uint)(9));
- w39.XOptions = ((global::Gtk.AttachOptions)(4));
- w39.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.table3[this.label5]));
+ w41.RightAttach = ((uint)(3));
+ w41.YPadding = ((uint)(9));
+ w41.XOptions = ((global::Gtk.AttachOptions)(4));
+ w41.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.lblCol2 = new global::Gtk.Label ();
this.lblCol2.Name = "lblCol2";
this.lblCol2.Xalign = 0f;
this.lblCol2.LabelProp = global::Mono.Unix.Catalog.GetString ("Makefile variable name:");
this.table3.Add (this.lblCol2);
- global::Gtk.Table.TableChild w40 = ((global::Gtk.Table.TableChild)(this.table3[this.lblCol2]));
- w40.TopAttach = ((uint)(1));
- w40.BottomAttach = ((uint)(2));
- w40.LeftAttach = ((uint)(1));
- w40.RightAttach = ((uint)(2));
- w40.XOptions = ((global::Gtk.AttachOptions)(4));
- w40.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w42 = ((global::Gtk.Table.TableChild)(this.table3[this.lblCol2]));
+ w42.TopAttach = ((uint)(1));
+ w42.BottomAttach = ((uint)(2));
+ w42.LeftAttach = ((uint)(1));
+ w42.RightAttach = ((uint)(2));
+ w42.XOptions = ((global::Gtk.AttachOptions)(4));
+ w42.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table3.Gtk.Table+TableChild
this.lblCol3 = new global::Gtk.Label ();
this.lblCol3.Name = "lblCol3";
this.lblCol3.Xalign = 0f;
this.lblCol3.LabelProp = global::Mono.Unix.Catalog.GetString ("Prefix:");
this.table3.Add (this.lblCol3);
- global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.table3[this.lblCol3]));
- w41.TopAttach = ((uint)(1));
- w41.BottomAttach = ((uint)(2));
- w41.LeftAttach = ((uint)(2));
- w41.RightAttach = ((uint)(3));
- w41.XOptions = ((global::Gtk.AttachOptions)(4));
- w41.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.table3[this.lblCol3]));
+ w43.TopAttach = ((uint)(1));
+ w43.BottomAttach = ((uint)(2));
+ w43.LeftAttach = ((uint)(2));
+ w43.RightAttach = ((uint)(3));
+ w43.XOptions = ((global::Gtk.AttachOptions)(4));
+ w43.YOptions = ((global::Gtk.AttachOptions)(4));
this.vbox2.Add (this.table3);
- global::Gtk.Box.BoxChild w42 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.table3]));
- w42.Position = 2;
- w42.Expand = false;
- w42.Fill = false;
+ global::Gtk.Box.BoxChild w44 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.table3]));
+ w44.Position = 2;
+ w44.Expand = false;
+ w44.Fill = false;
this.notebook1.Add (this.vbox2);
- global::Gtk.Notebook.NotebookChild w43 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox2]));
- w43.Position = 1;
+ global::Gtk.Notebook.NotebookChild w45 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox2]));
+ w45.Position = 1;
// Notebook tab
this.label2 = new global::Gtk.Label ();
this.label2.Name = "label2";
@@ -673,18 +704,18 @@ namespace MonoDevelop.Autotools
this.cbKeepRefSync.Label = global::Mono.Unix.Catalog.GetString ("Enable references synchronization");
this.cbKeepRefSync.DrawIndicator = true;
this.vbox4.Add (this.cbKeepRefSync);
- global::Gtk.Box.BoxChild w44 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.cbKeepRefSync]));
- w44.Position = 0;
- w44.Expand = false;
- w44.Fill = false;
+ global::Gtk.Box.BoxChild w46 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.cbKeepRefSync]));
+ w46.Position = 0;
+ w46.Expand = false;
+ w46.Fill = false;
// Container child vbox4.Gtk.Box+BoxChild
this.hseparator5 = new global::Gtk.HSeparator ();
this.hseparator5.Name = "hseparator5";
this.vbox4.Add (this.hseparator5);
- global::Gtk.Box.BoxChild w45 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.hseparator5]));
- w45.Position = 1;
- w45.Expand = false;
- w45.Fill = false;
+ global::Gtk.Box.BoxChild w47 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.hseparator5]));
+ w47.Position = 1;
+ w47.Expand = false;
+ w47.Fill = false;
// Container child vbox4.Gtk.Box+BoxChild
this.table4 = new global::Gtk.Table (((uint)(8)), ((uint)(3)), false);
this.table4.Name = "table4";
@@ -697,44 +728,44 @@ namespace MonoDevelop.Autotools
this.cbAutotoolsProject.Label = global::Mono.Unix.Catalog.GetString ("Look for packages in configure.in");
this.cbAutotoolsProject.DrawIndicator = true;
this.table4.Add (this.cbAutotoolsProject);
- global::Gtk.Table.TableChild w46 = ((global::Gtk.Table.TableChild)(this.table4[this.cbAutotoolsProject]));
- w46.TopAttach = ((uint)(6));
- w46.BottomAttach = ((uint)(7));
- w46.RightAttach = ((uint)(3));
- w46.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w48 = ((global::Gtk.Table.TableChild)(this.table4[this.cbAutotoolsProject]));
+ w48.TopAttach = ((uint)(6));
+ w48.BottomAttach = ((uint)(7));
+ w48.RightAttach = ((uint)(3));
+ w48.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.comboAsmRefVar = global::Gtk.ComboBox.NewText ();
this.comboAsmRefVar.WidthRequest = 200;
this.comboAsmRefVar.Name = "comboAsmRefVar";
this.table4.Add (this.comboAsmRefVar);
- global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.table4[this.comboAsmRefVar]));
- w47.TopAttach = ((uint)(3));
- w47.BottomAttach = ((uint)(4));
- w47.LeftAttach = ((uint)(1));
- w47.RightAttach = ((uint)(2));
- w47.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.table4[this.comboAsmRefVar]));
+ w49.TopAttach = ((uint)(3));
+ w49.BottomAttach = ((uint)(4));
+ w49.LeftAttach = ((uint)(1));
+ w49.RightAttach = ((uint)(2));
+ w49.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.comboGacRefVar = global::Gtk.ComboBox.NewText ();
this.comboGacRefVar.WidthRequest = 200;
this.comboGacRefVar.Name = "comboGacRefVar";
this.table4.Add (this.comboGacRefVar);
- global::Gtk.Table.TableChild w48 = ((global::Gtk.Table.TableChild)(this.table4[this.comboGacRefVar]));
- w48.TopAttach = ((uint)(2));
- w48.BottomAttach = ((uint)(3));
- w48.LeftAttach = ((uint)(1));
- w48.RightAttach = ((uint)(2));
- w48.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w50 = ((global::Gtk.Table.TableChild)(this.table4[this.comboGacRefVar]));
+ w50.TopAttach = ((uint)(2));
+ w50.BottomAttach = ((uint)(3));
+ w50.LeftAttach = ((uint)(1));
+ w50.RightAttach = ((uint)(2));
+ w50.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.comboProjectRefVar = global::Gtk.ComboBox.NewText ();
this.comboProjectRefVar.WidthRequest = 200;
this.comboProjectRefVar.Name = "comboProjectRefVar";
this.table4.Add (this.comboProjectRefVar);
- global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.table4[this.comboProjectRefVar]));
- w49.TopAttach = ((uint)(4));
- w49.BottomAttach = ((uint)(5));
- w49.LeftAttach = ((uint)(1));
- w49.RightAttach = ((uint)(2));
- w49.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.table4[this.comboProjectRefVar]));
+ w51.TopAttach = ((uint)(4));
+ w51.BottomAttach = ((uint)(5));
+ w51.LeftAttach = ((uint)(1));
+ w51.RightAttach = ((uint)(2));
+ w51.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.entryAsmRefPattern = new global::Gtk.Entry ();
this.entryAsmRefPattern.CanFocus = true;
@@ -742,13 +773,13 @@ namespace MonoDevelop.Autotools
this.entryAsmRefPattern.IsEditable = true;
this.entryAsmRefPattern.InvisibleChar = '●';
this.table4.Add (this.entryAsmRefPattern);
- global::Gtk.Table.TableChild w50 = ((global::Gtk.Table.TableChild)(this.table4[this.entryAsmRefPattern]));
- w50.TopAttach = ((uint)(3));
- w50.BottomAttach = ((uint)(4));
- w50.LeftAttach = ((uint)(2));
- w50.RightAttach = ((uint)(3));
- w50.XOptions = ((global::Gtk.AttachOptions)(4));
- w50.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w52 = ((global::Gtk.Table.TableChild)(this.table4[this.entryAsmRefPattern]));
+ w52.TopAttach = ((uint)(3));
+ w52.BottomAttach = ((uint)(4));
+ w52.LeftAttach = ((uint)(2));
+ w52.RightAttach = ((uint)(3));
+ w52.XOptions = ((global::Gtk.AttachOptions)(4));
+ w52.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.entryGacRefPattern = new global::Gtk.Entry ();
this.entryGacRefPattern.CanFocus = true;
@@ -756,13 +787,13 @@ namespace MonoDevelop.Autotools
this.entryGacRefPattern.IsEditable = true;
this.entryGacRefPattern.InvisibleChar = '●';
this.table4.Add (this.entryGacRefPattern);
- global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.table4[this.entryGacRefPattern]));
- w51.TopAttach = ((uint)(2));
- w51.BottomAttach = ((uint)(3));
- w51.LeftAttach = ((uint)(2));
- w51.RightAttach = ((uint)(3));
- w51.XOptions = ((global::Gtk.AttachOptions)(4));
- w51.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.table4[this.entryGacRefPattern]));
+ w53.TopAttach = ((uint)(2));
+ w53.BottomAttach = ((uint)(3));
+ w53.LeftAttach = ((uint)(2));
+ w53.RightAttach = ((uint)(3));
+ w53.XOptions = ((global::Gtk.AttachOptions)(4));
+ w53.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.entryProjectRefPattern = new global::Gtk.Entry ();
this.entryProjectRefPattern.CanFocus = true;
@@ -770,34 +801,34 @@ namespace MonoDevelop.Autotools
this.entryProjectRefPattern.IsEditable = true;
this.entryProjectRefPattern.InvisibleChar = '●';
this.table4.Add (this.entryProjectRefPattern);
- global::Gtk.Table.TableChild w52 = ((global::Gtk.Table.TableChild)(this.table4[this.entryProjectRefPattern]));
- w52.TopAttach = ((uint)(4));
- w52.BottomAttach = ((uint)(5));
- w52.LeftAttach = ((uint)(2));
- w52.RightAttach = ((uint)(3));
- w52.XOptions = ((global::Gtk.AttachOptions)(4));
- w52.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w54 = ((global::Gtk.Table.TableChild)(this.table4[this.entryProjectRefPattern]));
+ w54.TopAttach = ((uint)(4));
+ w54.BottomAttach = ((uint)(5));
+ w54.LeftAttach = ((uint)(2));
+ w54.RightAttach = ((uint)(3));
+ w54.XOptions = ((global::Gtk.AttachOptions)(4));
+ w54.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.fileEntryConfigureInPath = new global::MonoDevelop.Components.FolderEntry ();
this.fileEntryConfigureInPath.Name = "fileEntryConfigureInPath";
this.table4.Add (this.fileEntryConfigureInPath);
- global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.table4[this.fileEntryConfigureInPath]));
- w53.TopAttach = ((uint)(7));
- w53.BottomAttach = ((uint)(8));
- w53.LeftAttach = ((uint)(1));
- w53.RightAttach = ((uint)(3));
- w53.XOptions = ((global::Gtk.AttachOptions)(4));
- w53.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.table4[this.fileEntryConfigureInPath]));
+ w55.TopAttach = ((uint)(7));
+ w55.BottomAttach = ((uint)(8));
+ w55.LeftAttach = ((uint)(1));
+ w55.RightAttach = ((uint)(3));
+ w55.XOptions = ((global::Gtk.AttachOptions)(4));
+ w55.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.hseparator1 = new global::Gtk.HSeparator ();
this.hseparator1.Name = "hseparator1";
this.table4.Add (this.hseparator1);
- global::Gtk.Table.TableChild w54 = ((global::Gtk.Table.TableChild)(this.table4[this.hseparator1]));
- w54.TopAttach = ((uint)(5));
- w54.BottomAttach = ((uint)(6));
- w54.RightAttach = ((uint)(3));
- w54.XOptions = ((global::Gtk.AttachOptions)(4));
- w54.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w56 = ((global::Gtk.Table.TableChild)(this.table4[this.hseparator1]));
+ w56.TopAttach = ((uint)(5));
+ w56.BottomAttach = ((uint)(6));
+ w56.RightAttach = ((uint)(3));
+ w56.XOptions = ((global::Gtk.AttachOptions)(4));
+ w56.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.label6 = new global::Gtk.Label ();
this.label6.WidthRequest = 500;
@@ -806,89 +837,89 @@ namespace MonoDevelop.Autotools
this.label6.LabelProp = global::Mono.Unix.Catalog.GetString ("Select the kind of references you want to synchronize with the makefile. For each reference type please specify the makefile variable that holds the list, and optionally a prefix to be prepended to each reference name. You can specify the same variable name for several types of references.");
this.label6.Wrap = true;
this.table4.Add (this.label6);
- global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.table4[this.label6]));
- w55.RightAttach = ((uint)(3));
- w55.YPadding = ((uint)(9));
- w55.XOptions = ((global::Gtk.AttachOptions)(4));
- w55.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.table4[this.label6]));
+ w57.RightAttach = ((uint)(3));
+ w57.YPadding = ((uint)(9));
+ w57.XOptions = ((global::Gtk.AttachOptions)(4));
+ w57.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.lblAsmRef = new global::Gtk.Label ();
this.lblAsmRef.Name = "lblAsmRef";
this.lblAsmRef.Xalign = 0f;
this.lblAsmRef.LabelProp = global::Mono.Unix.Catalog.GetString ("Assembly References");
this.table4.Add (this.lblAsmRef);
- global::Gtk.Table.TableChild w56 = ((global::Gtk.Table.TableChild)(this.table4[this.lblAsmRef]));
- w56.TopAttach = ((uint)(3));
- w56.BottomAttach = ((uint)(4));
- w56.XOptions = ((global::Gtk.AttachOptions)(4));
- w56.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w58 = ((global::Gtk.Table.TableChild)(this.table4[this.lblAsmRef]));
+ w58.TopAttach = ((uint)(3));
+ w58.BottomAttach = ((uint)(4));
+ w58.XOptions = ((global::Gtk.AttachOptions)(4));
+ w58.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.lblCol5 = new global::Gtk.Label ();
this.lblCol5.Name = "lblCol5";
this.lblCol5.Xalign = 0f;
this.lblCol5.LabelProp = global::Mono.Unix.Catalog.GetString ("Makefile variable name:");
this.table4.Add (this.lblCol5);
- global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.table4[this.lblCol5]));
- w57.TopAttach = ((uint)(1));
- w57.BottomAttach = ((uint)(2));
- w57.LeftAttach = ((uint)(1));
- w57.RightAttach = ((uint)(2));
- w57.XOptions = ((global::Gtk.AttachOptions)(4));
- w57.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.table4[this.lblCol5]));
+ w59.TopAttach = ((uint)(1));
+ w59.BottomAttach = ((uint)(2));
+ w59.LeftAttach = ((uint)(1));
+ w59.RightAttach = ((uint)(2));
+ w59.XOptions = ((global::Gtk.AttachOptions)(4));
+ w59.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.lblCol6 = new global::Gtk.Label ();
this.lblCol6.Name = "lblCol6";
this.lblCol6.Xalign = 0f;
this.lblCol6.LabelProp = global::Mono.Unix.Catalog.GetString ("Prefix:");
this.table4.Add (this.lblCol6);
- global::Gtk.Table.TableChild w58 = ((global::Gtk.Table.TableChild)(this.table4[this.lblCol6]));
- w58.TopAttach = ((uint)(1));
- w58.BottomAttach = ((uint)(2));
- w58.LeftAttach = ((uint)(2));
- w58.RightAttach = ((uint)(3));
- w58.XOptions = ((global::Gtk.AttachOptions)(4));
- w58.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w60 = ((global::Gtk.Table.TableChild)(this.table4[this.lblCol6]));
+ w60.TopAttach = ((uint)(1));
+ w60.BottomAttach = ((uint)(2));
+ w60.LeftAttach = ((uint)(2));
+ w60.RightAttach = ((uint)(3));
+ w60.XOptions = ((global::Gtk.AttachOptions)(4));
+ w60.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.lblConfigureInPath = new global::Gtk.Label ();
this.lblConfigureInPath.Name = "lblConfigureInPath";
this.lblConfigureInPath.Xalign = 0f;
this.lblConfigureInPath.LabelProp = global::Mono.Unix.Catalog.GetString ("Path for configure.in");
this.table4.Add (this.lblConfigureInPath);
- global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.table4[this.lblConfigureInPath]));
- w59.TopAttach = ((uint)(7));
- w59.BottomAttach = ((uint)(8));
- w59.XOptions = ((global::Gtk.AttachOptions)(4));
- w59.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.table4[this.lblConfigureInPath]));
+ w61.TopAttach = ((uint)(7));
+ w61.BottomAttach = ((uint)(8));
+ w61.XOptions = ((global::Gtk.AttachOptions)(4));
+ w61.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.lblGacRef = new global::Gtk.Label ();
this.lblGacRef.Name = "lblGacRef";
this.lblGacRef.Xalign = 0f;
this.lblGacRef.LabelProp = global::Mono.Unix.Catalog.GetString ("Package References");
this.table4.Add (this.lblGacRef);
- global::Gtk.Table.TableChild w60 = ((global::Gtk.Table.TableChild)(this.table4[this.lblGacRef]));
- w60.TopAttach = ((uint)(2));
- w60.BottomAttach = ((uint)(3));
- w60.XOptions = ((global::Gtk.AttachOptions)(4));
- w60.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w62 = ((global::Gtk.Table.TableChild)(this.table4[this.lblGacRef]));
+ w62.TopAttach = ((uint)(2));
+ w62.BottomAttach = ((uint)(3));
+ w62.XOptions = ((global::Gtk.AttachOptions)(4));
+ w62.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table4.Gtk.Table+TableChild
this.lblProjectRef = new global::Gtk.Label ();
this.lblProjectRef.Name = "lblProjectRef";
this.lblProjectRef.Xalign = 0f;
this.lblProjectRef.LabelProp = global::Mono.Unix.Catalog.GetString ("Project References");
this.table4.Add (this.lblProjectRef);
- global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.table4[this.lblProjectRef]));
- w61.TopAttach = ((uint)(4));
- w61.BottomAttach = ((uint)(5));
- w61.XOptions = ((global::Gtk.AttachOptions)(4));
- w61.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.table4[this.lblProjectRef]));
+ w63.TopAttach = ((uint)(4));
+ w63.BottomAttach = ((uint)(5));
+ w63.XOptions = ((global::Gtk.AttachOptions)(4));
+ w63.YOptions = ((global::Gtk.AttachOptions)(4));
this.vbox4.Add (this.table4);
- global::Gtk.Box.BoxChild w62 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.table4]));
- w62.Position = 2;
- w62.Expand = false;
- w62.Fill = false;
+ global::Gtk.Box.BoxChild w64 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.table4]));
+ w64.Position = 2;
+ w64.Expand = false;
+ w64.Fill = false;
this.notebook1.Add (this.vbox4);
- global::Gtk.Notebook.NotebookChild w63 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox4]));
- w63.Position = 2;
+ global::Gtk.Notebook.NotebookChild w65 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox4]));
+ w65.Position = 2;
// Notebook tab
this.label3 = new global::Gtk.Label ();
this.label3.Name = "label3";
@@ -908,11 +939,11 @@ namespace MonoDevelop.Autotools
this.label7.Wrap = true;
this.label7.Justify = ((global::Gtk.Justification)(3));
this.vbox3.Add (this.label7);
- global::Gtk.Box.BoxChild w64 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.label7]));
- w64.Position = 0;
- w64.Expand = false;
- w64.Fill = false;
- w64.Padding = ((uint)(6));
+ global::Gtk.Box.BoxChild w66 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.label7]));
+ w66.Position = 0;
+ w66.Expand = false;
+ w66.Fill = false;
+ w66.Padding = ((uint)(6));
// Container child vbox3.Gtk.Box+BoxChild
this.table2 = new global::Gtk.Table (((uint)(3)), ((uint)(3)), false);
this.table2.Name = "table2";
@@ -926,13 +957,13 @@ namespace MonoDevelop.Autotools
this.entryErrorRegex.IsEditable = true;
this.entryErrorRegex.InvisibleChar = '●';
this.table2.Add (this.entryErrorRegex);
- global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.table2[this.entryErrorRegex]));
- w65.TopAttach = ((uint)(1));
- w65.BottomAttach = ((uint)(2));
- w65.LeftAttach = ((uint)(1));
- w65.RightAttach = ((uint)(3));
- w65.XOptions = ((global::Gtk.AttachOptions)(4));
- w65.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.table2[this.entryErrorRegex]));
+ w67.TopAttach = ((uint)(1));
+ w67.BottomAttach = ((uint)(2));
+ w67.LeftAttach = ((uint)(1));
+ w67.RightAttach = ((uint)(3));
+ w67.XOptions = ((global::Gtk.AttachOptions)(4));
+ w67.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table2.Gtk.Table+TableChild
this.entryWarningRegex = new global::Gtk.Entry ();
this.entryWarningRegex.WidthRequest = 350;
@@ -941,13 +972,13 @@ namespace MonoDevelop.Autotools
this.entryWarningRegex.IsEditable = true;
this.entryWarningRegex.InvisibleChar = '●';
this.table2.Add (this.entryWarningRegex);
- global::Gtk.Table.TableChild w66 = ((global::Gtk.Table.TableChild)(this.table2[this.entryWarningRegex]));
- w66.TopAttach = ((uint)(2));
- w66.BottomAttach = ((uint)(3));
- w66.LeftAttach = ((uint)(1));
- w66.RightAttach = ((uint)(3));
- w66.XOptions = ((global::Gtk.AttachOptions)(4));
- w66.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w68 = ((global::Gtk.Table.TableChild)(this.table2[this.entryWarningRegex]));
+ w68.TopAttach = ((uint)(2));
+ w68.BottomAttach = ((uint)(3));
+ w68.LeftAttach = ((uint)(1));
+ w68.RightAttach = ((uint)(3));
+ w68.XOptions = ((global::Gtk.AttachOptions)(4));
+ w68.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table2.Gtk.Table+TableChild
this.hbox6 = new global::Gtk.HBox ();
this.hbox6.Name = "hbox6";
@@ -956,53 +987,53 @@ namespace MonoDevelop.Autotools
this.comboMessageType.WidthRequest = 150;
this.comboMessageType.Name = "comboMessageType";
this.hbox6.Add (this.comboMessageType);
- global::Gtk.Box.BoxChild w67 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.comboMessageType]));
- w67.Position = 0;
- w67.Expand = false;
- w67.Fill = false;
+ global::Gtk.Box.BoxChild w69 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.comboMessageType]));
+ w69.Position = 0;
+ w69.Expand = false;
+ w69.Fill = false;
this.table2.Add (this.hbox6);
- global::Gtk.Table.TableChild w68 = ((global::Gtk.Table.TableChild)(this.table2[this.hbox6]));
- w68.LeftAttach = ((uint)(1));
- w68.RightAttach = ((uint)(2));
- w68.XOptions = ((global::Gtk.AttachOptions)(4));
- w68.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w70 = ((global::Gtk.Table.TableChild)(this.table2[this.hbox6]));
+ w70.LeftAttach = ((uint)(1));
+ w70.RightAttach = ((uint)(2));
+ w70.XOptions = ((global::Gtk.AttachOptions)(4));
+ w70.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table2.Gtk.Table+TableChild
this.lblErrorRegex = new global::Gtk.Label ();
this.lblErrorRegex.Name = "lblErrorRegex";
this.lblErrorRegex.Xalign = 0f;
this.lblErrorRegex.LabelProp = global::Mono.Unix.Catalog.GetString ("Error regex :");
this.table2.Add (this.lblErrorRegex);
- global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.table2[this.lblErrorRegex]));
- w69.TopAttach = ((uint)(1));
- w69.BottomAttach = ((uint)(2));
- w69.XOptions = ((global::Gtk.AttachOptions)(4));
- w69.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.table2[this.lblErrorRegex]));
+ w71.TopAttach = ((uint)(1));
+ w71.BottomAttach = ((uint)(2));
+ w71.XOptions = ((global::Gtk.AttachOptions)(4));
+ w71.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table2.Gtk.Table+TableChild
this.lblMessageType = new global::Gtk.Label ();
this.lblMessageType.Name = "lblMessageType";
this.lblMessageType.Xalign = 0f;
this.lblMessageType.LabelProp = global::Mono.Unix.Catalog.GetString ("Compiler :");
this.table2.Add (this.lblMessageType);
- global::Gtk.Table.TableChild w70 = ((global::Gtk.Table.TableChild)(this.table2[this.lblMessageType]));
- w70.XOptions = ((global::Gtk.AttachOptions)(4));
- w70.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w72 = ((global::Gtk.Table.TableChild)(this.table2[this.lblMessageType]));
+ w72.XOptions = ((global::Gtk.AttachOptions)(4));
+ w72.YOptions = ((global::Gtk.AttachOptions)(4));
// Container child table2.Gtk.Table+TableChild
this.lblWarningRegex = new global::Gtk.Label ();
this.lblWarningRegex.Name = "lblWarningRegex";
this.lblWarningRegex.Xalign = 0f;
this.lblWarningRegex.LabelProp = global::Mono.Unix.Catalog.GetString ("Warnings regex :");
this.table2.Add (this.lblWarningRegex);
- global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.table2[this.lblWarningRegex]));
- w71.TopAttach = ((uint)(2));
- w71.BottomAttach = ((uint)(3));
- w71.XOptions = ((global::Gtk.AttachOptions)(4));
- w71.YOptions = ((global::Gtk.AttachOptions)(4));
+ global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.table2[this.lblWarningRegex]));
+ w73.TopAttach = ((uint)(2));
+ w73.BottomAttach = ((uint)(3));
+ w73.XOptions = ((global::Gtk.AttachOptions)(4));
+ w73.YOptions = ((global::Gtk.AttachOptions)(4));
this.vbox3.Add (this.table2);
- global::Gtk.Box.BoxChild w72 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.table2]));
- w72.Position = 1;
+ global::Gtk.Box.BoxChild w74 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.table2]));
+ w74.Position = 1;
this.notebook1.Add (this.vbox3);
- global::Gtk.Notebook.NotebookChild w73 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox3]));
- w73.Position = 3;
+ global::Gtk.Notebook.NotebookChild w75 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox3]));
+ w75.Position = 3;
// Notebook tab
this.label4 = new global::Gtk.Label ();
this.label4.Name = "label4";
diff --git a/main/src/addins/MonoDevelop.Autotools/gtk-gui/gui.stetic b/main/src/addins/MonoDevelop.Autotools/gtk-gui/gui.stetic
index a14ff7dd33..d91874ee71 100644
--- a/main/src/addins/MonoDevelop.Autotools/gtk-gui/gui.stetic
+++ b/main/src/addins/MonoDevelop.Autotools/gtk-gui/gui.stetic
@@ -56,7 +56,7 @@
<child>
<widget class="Gtk.Table" id="table1">
<property name="MemberName" />
- <property name="NRows">8</property>
+ <property name="NRows">9</property>
<property name="NColumns">2</property>
<property name="RowSpacing">6</property>
<property name="ColumnSpacing">6</property>
@@ -385,6 +385,26 @@
</packing>
</child>
<child>
+ <widget class="Gtk.Label" id="label9">
+ <property name="MemberName" />
+ <property name="Xalign">1</property>
+ <property name="LabelProp" translatable="yes">Build processes:</property>
+ </widget>
+ <packing>
+ <property name="TopAttach">8</property>
+ <property name="BottomAttach">9</property>
+ <property name="AutoSize">True</property>
+ <property name="XOptions">Fill</property>
+ <property name="YOptions">Fill</property>
+ <property name="XExpand">False</property>
+ <property name="XFill">True</property>
+ <property name="XShrink">False</property>
+ <property name="YExpand">False</property>
+ <property name="YFill">True</property>
+ <property name="YShrink">False</property>
+ </packing>
+ </child>
+ <child>
<widget class="Gtk.Label" id="lblAssemblyNameVar">
<property name="MemberName" />
<property name="Visible">False</property>
@@ -444,6 +464,34 @@
<property name="YShrink">False</property>
</packing>
</child>
+ <child>
+ <widget class="Gtk.SpinButton" id="spinProcesses">
+ <property name="MemberName">spinProcesses</property>
+ <property name="CanFocus">True</property>
+ <property name="Lower">1</property>
+ <property name="Upper">64</property>
+ <property name="PageIncrement">1</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="TopAttach">8</property>
+ <property name="BottomAttach">9</property>
+ <property name="LeftAttach">1</property>
+ <property name="RightAttach">2</property>
+ <property name="AutoSize">True</property>
+ <property name="XOptions">Fill</property>
+ <property name="YOptions">Fill</property>
+ <property name="XExpand">False</property>
+ <property name="XFill">True</property>
+ <property name="XShrink">False</property>
+ <property name="YExpand">False</property>
+ <property name="YFill">True</property>
+ <property name="YShrink">False</property>
+ </packing>
+ </child>
</widget>
<packing>
<property name="Position">2</property>
@@ -1521,6 +1569,7 @@
<property name="MemberName" />
<property name="CanFocus">True</property>
<property name="Label" translatable="yes">Use existing Makefiles</property>
+ <property name="Active">True</property>
<property name="DrawIndicator">True</property>
<property name="HasLabel">True</property>
<property name="UseUnderline">True</property>
@@ -1661,6 +1710,7 @@
<property name="MemberName" />
<property name="CanFocus">True</property>
<property name="Label" translatable="yes">Autotools based</property>
+ <property name="Active">True</property>
<property name="DrawIndicator">True</property>
<property name="HasLabel">False</property>
<property name="UseUnderline">True</property>