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:
-rw-r--r--main/src/addins/MonoDevelop.Refactoring/MonoDevelop.CodeGeneration/ToStringGenerator.cs2
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.GotoLineNumberWidget.cs174
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel.cs560
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.cs544
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.cs598
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel.cs442
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.MarkerPanel.cs450
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.cs300
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.PrintSettingsWidget.cs38
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.SearchAndReplaceWidget.cs456
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/generated.cs235
-rw-r--r--main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/RepositoryStatus.cs37
-rw-r--r--main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ObjectValueAdaptor.cs131
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Text/TextFile.cs2
14 files changed, 2006 insertions, 1963 deletions
diff --git a/main/src/addins/MonoDevelop.Refactoring/MonoDevelop.CodeGeneration/ToStringGenerator.cs b/main/src/addins/MonoDevelop.Refactoring/MonoDevelop.CodeGeneration/ToStringGenerator.cs
index 46118a899f..8513411762 100644
--- a/main/src/addins/MonoDevelop.Refactoring/MonoDevelop.CodeGeneration/ToStringGenerator.cs
+++ b/main/src/addins/MonoDevelop.Refactoring/MonoDevelop.CodeGeneration/ToStringGenerator.cs
@@ -116,7 +116,7 @@ namespace MonoDevelop.CodeGeneration
// methodDeclaration.ReturnType = DomReturnType.String.ConvertToTypeReference ();
// methodDeclaration.Modifiers = ICSharpCode.NRefactory.CSharp.Modifiers.Public | ICSharpCode.NRefactory.CSharp.Modifiers.Override;
// methodDeclaration.Body = new BlockStatement ();
-// MemberReferenceExpression formatReference = new MemberReferenceExpression (new TypeReferenceExpression (methodDeclaration.ReturnType), "Format");
+// MemberReferenceExpression formatReference = new MemberReferenceExpression (new TypeReferenceExpression (methodDeclaration.ReturnType.Clone ()), "Format");
// List<Expression> arguments = new List<Expression> ();
// arguments.Add (new PrimitiveExpression (format.ToString ()));
//
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.GotoLineNumberWidget.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.GotoLineNumberWidget.cs
index 9aad8e86da..ee7bcbb99c 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.GotoLineNumberWidget.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.GotoLineNumberWidget.cs
@@ -1,87 +1,87 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor
-{
- internal partial class GotoLineNumberWidget
- {
- private global::Gtk.HBox hbox1;
- private global::Gtk.Entry entryLineNumber;
- private global::Gtk.Button buttonGoToLine;
- private global::Gtk.EventBox eventbox2;
- private global::Gtk.Image image2;
- private global::Gtk.Button closeButton;
- private global::Gtk.EventBox eventbox1;
- private global::Gtk.Image image1;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.GotoLineNumberWidget
- global::Stetic.BinContainer.Attach (this);
- this.Name = "MonoDevelop.SourceEditor.GotoLineNumberWidget";
- // Container child MonoDevelop.SourceEditor.GotoLineNumberWidget.Gtk.Container+ContainerChild
- this.hbox1 = new global::Gtk.HBox ();
- this.hbox1.Name = "hbox1";
- // Container child hbox1.Gtk.Box+BoxChild
- this.entryLineNumber = new global::Gtk.Entry ();
- this.entryLineNumber.CanFocus = true;
- this.entryLineNumber.Name = "entryLineNumber";
- this.entryLineNumber.IsEditable = true;
- this.entryLineNumber.InvisibleChar = '●';
- this.hbox1.Add (this.entryLineNumber);
- global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.entryLineNumber]));
- w1.Position = 0;
- w1.Expand = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.buttonGoToLine = new global::Gtk.Button ();
- this.buttonGoToLine.CanDefault = true;
- this.buttonGoToLine.CanFocus = true;
- this.buttonGoToLine.Name = "buttonGoToLine";
- this.buttonGoToLine.Relief = ((global::Gtk.ReliefStyle)(2));
- // Container child buttonGoToLine.Gtk.Container+ContainerChild
- this.eventbox2 = new global::Gtk.EventBox ();
- this.eventbox2.Name = "eventbox2";
- this.eventbox2.AboveChild = true;
- this.eventbox2.VisibleWindow = false;
- // Container child eventbox2.Gtk.Container+ContainerChild
- this.image2 = new global::Gtk.Image ();
- this.image2.Name = "image2";
- this.image2.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-jump-to", global::Gtk.IconSize.Menu);
- this.eventbox2.Add (this.image2);
- this.buttonGoToLine.Add (this.eventbox2);
- this.buttonGoToLine.Label = null;
- this.hbox1.Add (this.buttonGoToLine);
- global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonGoToLine]));
- w4.Position = 1;
- w4.Expand = false;
- w4.Fill = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.closeButton = new global::Gtk.Button ();
- this.closeButton.CanFocus = true;
- this.closeButton.Name = "closeButton";
- this.closeButton.Relief = ((global::Gtk.ReliefStyle)(2));
- // Container child closeButton.Gtk.Container+ContainerChild
- this.eventbox1 = new global::Gtk.EventBox ();
- this.eventbox1.Name = "eventbox1";
- this.eventbox1.AboveChild = true;
- this.eventbox1.VisibleWindow = false;
- // Container child eventbox1.Gtk.Container+ContainerChild
- this.image1 = new global::Gtk.Image ();
- this.image1.Name = "image1";
- this.image1.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-close", global::Gtk.IconSize.Menu);
- this.eventbox1.Add (this.image1);
- this.closeButton.Add (this.eventbox1);
- this.closeButton.Label = null;
- this.hbox1.Add (this.closeButton);
- global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.closeButton]));
- w7.Position = 2;
- w7.Expand = false;
- w7.Fill = false;
- this.Add (this.hbox1);
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor
+{
+ internal partial class GotoLineNumberWidget
+ {
+ private global::Gtk.HBox hbox1;
+ private global::Gtk.Entry entryLineNumber;
+ private global::Gtk.Button buttonGoToLine;
+ private global::Gtk.EventBox eventbox2;
+ private global::Gtk.Image image2;
+ private global::Gtk.Button closeButton;
+ private global::Gtk.EventBox eventbox1;
+ private global::Gtk.Image image1;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.GotoLineNumberWidget
+ global::Stetic.BinContainer.Attach (this);
+ this.Name = "MonoDevelop.SourceEditor.GotoLineNumberWidget";
+ // Container child MonoDevelop.SourceEditor.GotoLineNumberWidget.Gtk.Container+ContainerChild
+ this.hbox1 = new global::Gtk.HBox ();
+ this.hbox1.Name = "hbox1";
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.entryLineNumber = new global::Gtk.Entry ();
+ this.entryLineNumber.CanFocus = true;
+ this.entryLineNumber.Name = "entryLineNumber";
+ this.entryLineNumber.IsEditable = true;
+ this.entryLineNumber.InvisibleChar = '●';
+ this.hbox1.Add (this.entryLineNumber);
+ global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.entryLineNumber]));
+ w1.Position = 0;
+ w1.Expand = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.buttonGoToLine = new global::Gtk.Button ();
+ this.buttonGoToLine.CanDefault = true;
+ this.buttonGoToLine.CanFocus = true;
+ this.buttonGoToLine.Name = "buttonGoToLine";
+ this.buttonGoToLine.Relief = ((global::Gtk.ReliefStyle)(2));
+ // Container child buttonGoToLine.Gtk.Container+ContainerChild
+ this.eventbox2 = new global::Gtk.EventBox ();
+ this.eventbox2.Name = "eventbox2";
+ this.eventbox2.AboveChild = true;
+ this.eventbox2.VisibleWindow = false;
+ // Container child eventbox2.Gtk.Container+ContainerChild
+ this.image2 = new global::Gtk.Image ();
+ this.image2.Name = "image2";
+ this.image2.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-jump-to", global::Gtk.IconSize.Menu);
+ this.eventbox2.Add (this.image2);
+ this.buttonGoToLine.Add (this.eventbox2);
+ this.buttonGoToLine.Label = null;
+ this.hbox1.Add (this.buttonGoToLine);
+ global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonGoToLine]));
+ w4.Position = 1;
+ w4.Expand = false;
+ w4.Fill = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.closeButton = new global::Gtk.Button ();
+ this.closeButton.CanFocus = true;
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Relief = ((global::Gtk.ReliefStyle)(2));
+ // Container child closeButton.Gtk.Container+ContainerChild
+ this.eventbox1 = new global::Gtk.EventBox ();
+ this.eventbox1.Name = "eventbox1";
+ this.eventbox1.AboveChild = true;
+ this.eventbox1.VisibleWindow = false;
+ // Container child eventbox1.Gtk.Container+ContainerChild
+ this.image1 = new global::Gtk.Image ();
+ this.image1.Name = "image1";
+ this.image1.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-close", global::Gtk.IconSize.Menu);
+ this.eventbox1.Add (this.image1);
+ this.closeButton.Add (this.eventbox1);
+ this.closeButton.Label = null;
+ this.hbox1.Add (this.closeButton);
+ global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.closeButton]));
+ w7.Position = 2;
+ w7.Expand = false;
+ w7.Fill = false;
+ this.Add (this.hbox1);
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel.cs
index a68ff868d8..118f2ef71e 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel.cs
@@ -1,280 +1,280 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor.OptionPanels
-{
- public partial class BehaviorPanel
- {
- private global::Gtk.VBox vbox1;
- private global::Gtk.Label GtkLabel5;
- private global::Gtk.Alignment alignment3;
- private global::Gtk.VBox vbox4;
- private global::Gtk.CheckButton autoInsertBraceCheckbutton;
- private global::Gtk.HBox hbox2;
- private global::Gtk.Label fixed1;
- private global::Gtk.CheckButton smartSemicolonPlaceCheckbutton;
- private global::Gtk.CheckButton checkbuttonOnTheFlyFormatting;
- private global::Gtk.CheckButton checkbuttonFormatOnSave;
- private global::Gtk.CheckButton checkbuttonAutoSetSearchPatternCasing;
- private global::Gtk.Label GtkLabel6;
- private global::Gtk.Alignment GtkAlignment;
- private global::Gtk.VBox vbox2;
- private global::Gtk.HBox hbox1;
- private global::Gtk.Label label1;
- private global::Gtk.ComboBox indentationCombobox;
- private global::Gtk.CheckButton tabAsReindentCheckbutton;
- private global::Gtk.Label GtkLabel8;
- private global::Gtk.Alignment alignment4;
- private global::Gtk.VBox vbox5;
- private global::Gtk.CheckButton useViModesCheck;
- private global::Gtk.HBox hbox3;
- private global::Gtk.Label label2;
- private global::Gtk.ComboBox controlLeftRightCombobox;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel
- global::Stetic.BinContainer.Attach (this);
- this.Name = "MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel";
- // Container child MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel.Gtk.Container+ContainerChild
- this.vbox1 = new global::Gtk.VBox ();
- this.vbox1.Name = "vbox1";
- this.vbox1.Spacing = 6;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel5 = new global::Gtk.Label ();
- this.GtkLabel5.Name = "GtkLabel5";
- this.GtkLabel5.Xalign = 0F;
- this.GtkLabel5.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Automatic behaviors</b>");
- this.GtkLabel5.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel5);
- global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel5]));
- w1.Position = 0;
- w1.Expand = false;
- w1.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.alignment3 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
- this.alignment3.Name = "alignment3";
- this.alignment3.LeftPadding = ((uint)(12));
- // Container child alignment3.Gtk.Container+ContainerChild
- this.vbox4 = new global::Gtk.VBox ();
- this.vbox4.Name = "vbox4";
- this.vbox4.Spacing = 6;
- // Container child vbox4.Gtk.Box+BoxChild
- this.autoInsertBraceCheckbutton = new global::Gtk.CheckButton ();
- this.autoInsertBraceCheckbutton.CanFocus = true;
- this.autoInsertBraceCheckbutton.Name = "autoInsertBraceCheckbutton";
- this.autoInsertBraceCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Insert matching brace");
- this.autoInsertBraceCheckbutton.DrawIndicator = true;
- this.autoInsertBraceCheckbutton.UseUnderline = true;
- this.vbox4.Add (this.autoInsertBraceCheckbutton);
- global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.autoInsertBraceCheckbutton]));
- w2.Position = 0;
- w2.Expand = false;
- w2.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.hbox2 = new global::Gtk.HBox ();
- this.hbox2.Name = "hbox2";
- this.hbox2.Spacing = 6;
- // Container child hbox2.Gtk.Box+BoxChild
- this.fixed1 = new global::Gtk.Label ();
- this.fixed1.Name = "fixed1";
- this.hbox2.Add (this.fixed1);
- global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.fixed1]));
- w3.Position = 0;
- w3.Expand = false;
- w3.Fill = false;
- w3.Padding = ((uint)(6));
- // Container child hbox2.Gtk.Box+BoxChild
- this.smartSemicolonPlaceCheckbutton = new global::Gtk.CheckButton ();
- this.smartSemicolonPlaceCheckbutton.CanFocus = true;
- this.smartSemicolonPlaceCheckbutton.Name = "smartSemicolonPlaceCheckbutton";
- this.smartSemicolonPlaceCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Smart semicolon placement");
- this.smartSemicolonPlaceCheckbutton.Active = true;
- this.smartSemicolonPlaceCheckbutton.DrawIndicator = true;
- this.smartSemicolonPlaceCheckbutton.UseUnderline = true;
- this.hbox2.Add (this.smartSemicolonPlaceCheckbutton);
- global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.smartSemicolonPlaceCheckbutton]));
- w4.Position = 1;
- this.vbox4.Add (this.hbox2);
- global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox2]));
- w5.Position = 1;
- w5.Expand = false;
- w5.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.checkbuttonOnTheFlyFormatting = new global::Gtk.CheckButton ();
- this.checkbuttonOnTheFlyFormatting.CanFocus = true;
- this.checkbuttonOnTheFlyFormatting.Name = "checkbuttonOnTheFlyFormatting";
- this.checkbuttonOnTheFlyFormatting.Label = global::Mono.Unix.Catalog.GetString ("_Enable on the fly code formatting");
- this.checkbuttonOnTheFlyFormatting.DrawIndicator = true;
- this.checkbuttonOnTheFlyFormatting.UseUnderline = true;
- this.vbox4.Add (this.checkbuttonOnTheFlyFormatting);
- global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.checkbuttonOnTheFlyFormatting]));
- w6.Position = 2;
- w6.Expand = false;
- w6.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.checkbuttonFormatOnSave = new global::Gtk.CheckButton ();
- this.checkbuttonFormatOnSave.CanFocus = true;
- this.checkbuttonFormatOnSave.Name = "checkbuttonFormatOnSave";
- this.checkbuttonFormatOnSave.Label = global::Mono.Unix.Catalog.GetString ("_Format document on save");
- this.checkbuttonFormatOnSave.DrawIndicator = true;
- this.checkbuttonFormatOnSave.UseUnderline = true;
- this.vbox4.Add (this.checkbuttonFormatOnSave);
- global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.checkbuttonFormatOnSave]));
- w7.Position = 3;
- w7.Expand = false;
- w7.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.checkbuttonAutoSetSearchPatternCasing = new global::Gtk.CheckButton ();
- this.checkbuttonAutoSetSearchPatternCasing.CanFocus = true;
- this.checkbuttonAutoSetSearchPatternCasing.Name = "checkbuttonAutoSetSearchPatternCasing";
- this.checkbuttonAutoSetSearchPatternCasing.Label = global::Mono.Unix.Catalog.GetString ("_Automatically set search pattern case sensitivity");
- this.checkbuttonAutoSetSearchPatternCasing.DrawIndicator = true;
- this.checkbuttonAutoSetSearchPatternCasing.UseUnderline = true;
- this.vbox4.Add (this.checkbuttonAutoSetSearchPatternCasing);
- global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.checkbuttonAutoSetSearchPatternCasing]));
- w8.Position = 4;
- w8.Expand = false;
- w8.Fill = false;
- this.alignment3.Add (this.vbox4);
- this.vbox1.Add (this.alignment3);
- global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment3]));
- w10.Position = 1;
- w10.Expand = false;
- w10.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel6 = new global::Gtk.Label ();
- this.GtkLabel6.Name = "GtkLabel6";
- this.GtkLabel6.Xalign = 0F;
- this.GtkLabel6.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Indentation</b>");
- this.GtkLabel6.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel6);
- global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel6]));
- w11.Position = 2;
- w11.Expand = false;
- w11.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkAlignment = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
- this.GtkAlignment.Name = "GtkAlignment";
- this.GtkAlignment.LeftPadding = ((uint)(12));
- // Container child GtkAlignment.Gtk.Container+ContainerChild
- this.vbox2 = new global::Gtk.VBox ();
- this.vbox2.Name = "vbox2";
- this.vbox2.Spacing = 6;
- // Container child vbox2.Gtk.Box+BoxChild
- this.hbox1 = new global::Gtk.HBox ();
- this.hbox1.Name = "hbox1";
- this.hbox1.Spacing = 6;
- // Container child hbox1.Gtk.Box+BoxChild
- this.label1 = new global::Gtk.Label ();
- this.label1.Name = "label1";
- this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Indentation mode:");
- this.label1.UseUnderline = true;
- this.hbox1.Add (this.label1);
- global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label1]));
- w12.Position = 0;
- w12.Expand = false;
- w12.Fill = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.indentationCombobox = global::Gtk.ComboBox.NewText ();
- this.indentationCombobox.Name = "indentationCombobox";
- this.hbox1.Add (this.indentationCombobox);
- global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.indentationCombobox]));
- w13.Position = 1;
- w13.Expand = false;
- w13.Fill = false;
- this.vbox2.Add (this.hbox1);
- global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox1]));
- w14.Position = 0;
- w14.Expand = false;
- w14.Fill = false;
- // Container child vbox2.Gtk.Box+BoxChild
- this.tabAsReindentCheckbutton = new global::Gtk.CheckButton ();
- this.tabAsReindentCheckbutton.CanFocus = true;
- this.tabAsReindentCheckbutton.Name = "tabAsReindentCheckbutton";
- this.tabAsReindentCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Interpret tab _keystroke as reindent command");
- this.tabAsReindentCheckbutton.DrawIndicator = true;
- this.tabAsReindentCheckbutton.UseUnderline = true;
- this.vbox2.Add (this.tabAsReindentCheckbutton);
- global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.tabAsReindentCheckbutton]));
- w15.Position = 1;
- w15.Expand = false;
- w15.Fill = false;
- this.GtkAlignment.Add (this.vbox2);
- this.vbox1.Add (this.GtkAlignment);
- global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkAlignment]));
- w17.Position = 3;
- w17.Expand = false;
- w17.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel8 = new global::Gtk.Label ();
- this.GtkLabel8.Name = "GtkLabel8";
- this.GtkLabel8.Xalign = 0F;
- this.GtkLabel8.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Navigation</b>");
- this.GtkLabel8.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel8);
- global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel8]));
- w18.Position = 4;
- w18.Expand = false;
- w18.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.alignment4 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
- this.alignment4.Name = "alignment4";
- this.alignment4.LeftPadding = ((uint)(12));
- // Container child alignment4.Gtk.Container+ContainerChild
- this.vbox5 = new global::Gtk.VBox ();
- this.vbox5.Name = "vbox5";
- this.vbox5.Spacing = 6;
- // Container child vbox5.Gtk.Box+BoxChild
- this.useViModesCheck = new global::Gtk.CheckButton ();
- this.useViModesCheck.CanFocus = true;
- this.useViModesCheck.Name = "useViModesCheck";
- this.useViModesCheck.Label = global::Mono.Unix.Catalog.GetString ("Use _Vi modes");
- this.useViModesCheck.DrawIndicator = true;
- this.useViModesCheck.UseUnderline = true;
- this.vbox5.Add (this.useViModesCheck);
- global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.useViModesCheck]));
- w19.Position = 0;
- w19.Expand = false;
- w19.Fill = false;
- // Container child vbox5.Gtk.Box+BoxChild
- this.hbox3 = new global::Gtk.HBox ();
- this.hbox3.Name = "hbox3";
- this.hbox3.Spacing = 6;
- // Container child hbox3.Gtk.Box+BoxChild
- this.label2 = new global::Gtk.Label ();
- this.label2.Name = "label2";
- this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("Word _break mode:");
- this.label2.UseUnderline = true;
- this.hbox3.Add (this.label2);
- global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.label2]));
- w20.Position = 0;
- w20.Expand = false;
- w20.Fill = false;
- // Container child hbox3.Gtk.Box+BoxChild
- this.controlLeftRightCombobox = global::Gtk.ComboBox.NewText ();
- this.controlLeftRightCombobox.Name = "controlLeftRightCombobox";
- this.hbox3.Add (this.controlLeftRightCombobox);
- global::Gtk.Box.BoxChild w21 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.controlLeftRightCombobox]));
- w21.Position = 1;
- w21.Expand = false;
- w21.Fill = false;
- this.vbox5.Add (this.hbox3);
- global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.hbox3]));
- w22.Position = 1;
- w22.Expand = false;
- w22.Fill = false;
- this.alignment4.Add (this.vbox5);
- this.vbox1.Add (this.alignment4);
- global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment4]));
- w24.Position = 5;
- w24.Expand = false;
- w24.Fill = false;
- this.Add (this.vbox1);
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor.OptionPanels
+{
+ public partial class BehaviorPanel
+ {
+ private global::Gtk.VBox vbox1;
+ private global::Gtk.Label GtkLabel5;
+ private global::Gtk.Alignment alignment3;
+ private global::Gtk.VBox vbox4;
+ private global::Gtk.CheckButton autoInsertBraceCheckbutton;
+ private global::Gtk.HBox hbox2;
+ private global::Gtk.Label fixed1;
+ private global::Gtk.CheckButton smartSemicolonPlaceCheckbutton;
+ private global::Gtk.CheckButton checkbuttonOnTheFlyFormatting;
+ private global::Gtk.CheckButton checkbuttonFormatOnSave;
+ private global::Gtk.CheckButton checkbuttonAutoSetSearchPatternCasing;
+ private global::Gtk.Label GtkLabel6;
+ private global::Gtk.Alignment GtkAlignment;
+ private global::Gtk.VBox vbox2;
+ private global::Gtk.HBox hbox1;
+ private global::Gtk.Label label1;
+ private global::Gtk.ComboBox indentationCombobox;
+ private global::Gtk.CheckButton tabAsReindentCheckbutton;
+ private global::Gtk.Label GtkLabel8;
+ private global::Gtk.Alignment alignment4;
+ private global::Gtk.VBox vbox5;
+ private global::Gtk.CheckButton useViModesCheck;
+ private global::Gtk.HBox hbox3;
+ private global::Gtk.Label label2;
+ private global::Gtk.ComboBox controlLeftRightCombobox;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel
+ global::Stetic.BinContainer.Attach (this);
+ this.Name = "MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel";
+ // Container child MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel.Gtk.Container+ContainerChild
+ this.vbox1 = new global::Gtk.VBox ();
+ this.vbox1.Name = "vbox1";
+ this.vbox1.Spacing = 6;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel5 = new global::Gtk.Label ();
+ this.GtkLabel5.Name = "GtkLabel5";
+ this.GtkLabel5.Xalign = 0F;
+ this.GtkLabel5.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Automatic behaviors</b>");
+ this.GtkLabel5.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel5);
+ global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel5]));
+ w1.Position = 0;
+ w1.Expand = false;
+ w1.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.alignment3 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
+ this.alignment3.Name = "alignment3";
+ this.alignment3.LeftPadding = ((uint)(12));
+ // Container child alignment3.Gtk.Container+ContainerChild
+ this.vbox4 = new global::Gtk.VBox ();
+ this.vbox4.Name = "vbox4";
+ this.vbox4.Spacing = 6;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.autoInsertBraceCheckbutton = new global::Gtk.CheckButton ();
+ this.autoInsertBraceCheckbutton.CanFocus = true;
+ this.autoInsertBraceCheckbutton.Name = "autoInsertBraceCheckbutton";
+ this.autoInsertBraceCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Insert matching brace");
+ this.autoInsertBraceCheckbutton.DrawIndicator = true;
+ this.autoInsertBraceCheckbutton.UseUnderline = true;
+ this.vbox4.Add (this.autoInsertBraceCheckbutton);
+ global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.autoInsertBraceCheckbutton]));
+ w2.Position = 0;
+ w2.Expand = false;
+ w2.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.hbox2 = new global::Gtk.HBox ();
+ this.hbox2.Name = "hbox2";
+ this.hbox2.Spacing = 6;
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.fixed1 = new global::Gtk.Label ();
+ this.fixed1.Name = "fixed1";
+ this.hbox2.Add (this.fixed1);
+ global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.fixed1]));
+ w3.Position = 0;
+ w3.Expand = false;
+ w3.Fill = false;
+ w3.Padding = ((uint)(6));
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.smartSemicolonPlaceCheckbutton = new global::Gtk.CheckButton ();
+ this.smartSemicolonPlaceCheckbutton.CanFocus = true;
+ this.smartSemicolonPlaceCheckbutton.Name = "smartSemicolonPlaceCheckbutton";
+ this.smartSemicolonPlaceCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Smart semicolon placement");
+ this.smartSemicolonPlaceCheckbutton.Active = true;
+ this.smartSemicolonPlaceCheckbutton.DrawIndicator = true;
+ this.smartSemicolonPlaceCheckbutton.UseUnderline = true;
+ this.hbox2.Add (this.smartSemicolonPlaceCheckbutton);
+ global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.smartSemicolonPlaceCheckbutton]));
+ w4.Position = 1;
+ this.vbox4.Add (this.hbox2);
+ global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox2]));
+ w5.Position = 1;
+ w5.Expand = false;
+ w5.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.checkbuttonOnTheFlyFormatting = new global::Gtk.CheckButton ();
+ this.checkbuttonOnTheFlyFormatting.CanFocus = true;
+ this.checkbuttonOnTheFlyFormatting.Name = "checkbuttonOnTheFlyFormatting";
+ this.checkbuttonOnTheFlyFormatting.Label = global::Mono.Unix.Catalog.GetString ("_Enable on the fly code formatting");
+ this.checkbuttonOnTheFlyFormatting.DrawIndicator = true;
+ this.checkbuttonOnTheFlyFormatting.UseUnderline = true;
+ this.vbox4.Add (this.checkbuttonOnTheFlyFormatting);
+ global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.checkbuttonOnTheFlyFormatting]));
+ w6.Position = 2;
+ w6.Expand = false;
+ w6.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.checkbuttonFormatOnSave = new global::Gtk.CheckButton ();
+ this.checkbuttonFormatOnSave.CanFocus = true;
+ this.checkbuttonFormatOnSave.Name = "checkbuttonFormatOnSave";
+ this.checkbuttonFormatOnSave.Label = global::Mono.Unix.Catalog.GetString ("_Format document on save");
+ this.checkbuttonFormatOnSave.DrawIndicator = true;
+ this.checkbuttonFormatOnSave.UseUnderline = true;
+ this.vbox4.Add (this.checkbuttonFormatOnSave);
+ global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.checkbuttonFormatOnSave]));
+ w7.Position = 3;
+ w7.Expand = false;
+ w7.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.checkbuttonAutoSetSearchPatternCasing = new global::Gtk.CheckButton ();
+ this.checkbuttonAutoSetSearchPatternCasing.CanFocus = true;
+ this.checkbuttonAutoSetSearchPatternCasing.Name = "checkbuttonAutoSetSearchPatternCasing";
+ this.checkbuttonAutoSetSearchPatternCasing.Label = global::Mono.Unix.Catalog.GetString ("_Automatically set search pattern case sensitivity");
+ this.checkbuttonAutoSetSearchPatternCasing.DrawIndicator = true;
+ this.checkbuttonAutoSetSearchPatternCasing.UseUnderline = true;
+ this.vbox4.Add (this.checkbuttonAutoSetSearchPatternCasing);
+ global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.checkbuttonAutoSetSearchPatternCasing]));
+ w8.Position = 4;
+ w8.Expand = false;
+ w8.Fill = false;
+ this.alignment3.Add (this.vbox4);
+ this.vbox1.Add (this.alignment3);
+ global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment3]));
+ w10.Position = 1;
+ w10.Expand = false;
+ w10.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel6 = new global::Gtk.Label ();
+ this.GtkLabel6.Name = "GtkLabel6";
+ this.GtkLabel6.Xalign = 0F;
+ this.GtkLabel6.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Indentation</b>");
+ this.GtkLabel6.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel6);
+ global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel6]));
+ w11.Position = 2;
+ w11.Expand = false;
+ w11.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkAlignment = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
+ this.GtkAlignment.Name = "GtkAlignment";
+ this.GtkAlignment.LeftPadding = ((uint)(12));
+ // Container child GtkAlignment.Gtk.Container+ContainerChild
+ this.vbox2 = new global::Gtk.VBox ();
+ this.vbox2.Name = "vbox2";
+ this.vbox2.Spacing = 6;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.hbox1 = new global::Gtk.HBox ();
+ this.hbox1.Name = "hbox1";
+ this.hbox1.Spacing = 6;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.label1 = new global::Gtk.Label ();
+ this.label1.Name = "label1";
+ this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Indentation mode:");
+ this.label1.UseUnderline = true;
+ this.hbox1.Add (this.label1);
+ global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label1]));
+ w12.Position = 0;
+ w12.Expand = false;
+ w12.Fill = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.indentationCombobox = global::Gtk.ComboBox.NewText ();
+ this.indentationCombobox.Name = "indentationCombobox";
+ this.hbox1.Add (this.indentationCombobox);
+ global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.indentationCombobox]));
+ w13.Position = 1;
+ w13.Expand = false;
+ w13.Fill = false;
+ this.vbox2.Add (this.hbox1);
+ global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox1]));
+ w14.Position = 0;
+ w14.Expand = false;
+ w14.Fill = false;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.tabAsReindentCheckbutton = new global::Gtk.CheckButton ();
+ this.tabAsReindentCheckbutton.CanFocus = true;
+ this.tabAsReindentCheckbutton.Name = "tabAsReindentCheckbutton";
+ this.tabAsReindentCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Interpret tab _keystroke as reindent command");
+ this.tabAsReindentCheckbutton.DrawIndicator = true;
+ this.tabAsReindentCheckbutton.UseUnderline = true;
+ this.vbox2.Add (this.tabAsReindentCheckbutton);
+ global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.tabAsReindentCheckbutton]));
+ w15.Position = 1;
+ w15.Expand = false;
+ w15.Fill = false;
+ this.GtkAlignment.Add (this.vbox2);
+ this.vbox1.Add (this.GtkAlignment);
+ global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkAlignment]));
+ w17.Position = 3;
+ w17.Expand = false;
+ w17.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel8 = new global::Gtk.Label ();
+ this.GtkLabel8.Name = "GtkLabel8";
+ this.GtkLabel8.Xalign = 0F;
+ this.GtkLabel8.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Navigation</b>");
+ this.GtkLabel8.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel8);
+ global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel8]));
+ w18.Position = 4;
+ w18.Expand = false;
+ w18.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.alignment4 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
+ this.alignment4.Name = "alignment4";
+ this.alignment4.LeftPadding = ((uint)(12));
+ // Container child alignment4.Gtk.Container+ContainerChild
+ this.vbox5 = new global::Gtk.VBox ();
+ this.vbox5.Name = "vbox5";
+ this.vbox5.Spacing = 6;
+ // Container child vbox5.Gtk.Box+BoxChild
+ this.useViModesCheck = new global::Gtk.CheckButton ();
+ this.useViModesCheck.CanFocus = true;
+ this.useViModesCheck.Name = "useViModesCheck";
+ this.useViModesCheck.Label = global::Mono.Unix.Catalog.GetString ("Use _Vi modes");
+ this.useViModesCheck.DrawIndicator = true;
+ this.useViModesCheck.UseUnderline = true;
+ this.vbox5.Add (this.useViModesCheck);
+ global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.useViModesCheck]));
+ w19.Position = 0;
+ w19.Expand = false;
+ w19.Fill = false;
+ // Container child vbox5.Gtk.Box+BoxChild
+ this.hbox3 = new global::Gtk.HBox ();
+ this.hbox3.Name = "hbox3";
+ this.hbox3.Spacing = 6;
+ // Container child hbox3.Gtk.Box+BoxChild
+ this.label2 = new global::Gtk.Label ();
+ this.label2.Name = "label2";
+ this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("Word _break mode:");
+ this.label2.UseUnderline = true;
+ this.hbox3.Add (this.label2);
+ global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.label2]));
+ w20.Position = 0;
+ w20.Expand = false;
+ w20.Fill = false;
+ // Container child hbox3.Gtk.Box+BoxChild
+ this.controlLeftRightCombobox = global::Gtk.ComboBox.NewText ();
+ this.controlLeftRightCombobox.Name = "controlLeftRightCombobox";
+ this.hbox3.Add (this.controlLeftRightCombobox);
+ global::Gtk.Box.BoxChild w21 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.controlLeftRightCombobox]));
+ w21.Position = 1;
+ w21.Expand = false;
+ w21.Fill = false;
+ this.vbox5.Add (this.hbox3);
+ global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.hbox3]));
+ w22.Position = 1;
+ w22.Expand = false;
+ w22.Fill = false;
+ this.alignment4.Add (this.vbox5);
+ this.vbox1.Add (this.alignment4);
+ global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment4]));
+ w24.Position = 5;
+ w24.Expand = false;
+ w24.Fill = false;
+ this.Add (this.vbox1);
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.cs
index aa43e947e5..73733c0707 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.cs
@@ -1,272 +1,272 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor.OptionPanels
-{
- public partial class ColorShemeEditor
- {
- private global::Gtk.HBox hbox1;
- private global::Gtk.Label label2;
- private global::Gtk.Entry entryName;
- private global::Gtk.Label label3;
- private global::Gtk.Entry entryDescription;
- private global::Gtk.HPaned hpaned1;
- private global::Gtk.VBox vbox2;
- private global::Gtk.Label label1;
- private global::Gtk.ScrolledWindow GtkScrolledWindow;
- private global::Gtk.TreeView treeviewColors;
- private global::Gtk.VBox vbox3;
- private global::Gtk.Table table1;
- private global::Gtk.ColorButton colorbuttonBg;
- private global::Gtk.ColorButton colorbuttonFg;
- private global::Gtk.Label label4;
- private global::Gtk.Label label5;
- private global::Gtk.CheckButton checkbuttonBold;
- private global::Gtk.CheckButton checkbuttonItalic;
- private global::Gtk.Label label6;
- private global::Gtk.ScrolledWindow scrolledwindowTextEditor;
- private global::Gtk.Button buttonCancel;
- private global::Gtk.Button buttonOk;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor
- this.Name = "MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor";
- this.Title = global::Mono.Unix.Catalog.GetString ("Edit color sheme");
- this.WindowPosition = ((global::Gtk.WindowPosition)(4));
- this.BorderWidth = ((uint)(6));
- // Internal child MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.VBox
- global::Gtk.VBox w1 = this.VBox;
- w1.Name = "dialog1_VBox";
- w1.BorderWidth = ((uint)(2));
- // Container child dialog1_VBox.Gtk.Box+BoxChild
- this.hbox1 = new global::Gtk.HBox ();
- this.hbox1.Name = "hbox1";
- this.hbox1.Spacing = 6;
- this.hbox1.BorderWidth = ((uint)(6));
- // Container child hbox1.Gtk.Box+BoxChild
- this.label2 = new global::Gtk.Label ();
- this.label2.Name = "label2";
- this.label2.Xalign = 0F;
- this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("_Name:");
- this.label2.UseUnderline = true;
- this.hbox1.Add (this.label2);
- global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label2]));
- w2.Position = 0;
- w2.Expand = false;
- w2.Fill = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.entryName = new global::Gtk.Entry ();
- this.entryName.CanFocus = true;
- this.entryName.Name = "entryName";
- this.entryName.IsEditable = true;
- this.entryName.InvisibleChar = '●';
- this.hbox1.Add (this.entryName);
- global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.entryName]));
- w3.Position = 1;
- // Container child hbox1.Gtk.Box+BoxChild
- this.label3 = new global::Gtk.Label ();
- this.label3.Name = "label3";
- this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("_Description:");
- this.label3.UseUnderline = true;
- this.hbox1.Add (this.label3);
- global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label3]));
- w4.Position = 2;
- w4.Expand = false;
- w4.Fill = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.entryDescription = new global::Gtk.Entry ();
- this.entryDescription.CanFocus = true;
- this.entryDescription.Name = "entryDescription";
- this.entryDescription.IsEditable = true;
- this.entryDescription.InvisibleChar = '●';
- this.hbox1.Add (this.entryDescription);
- global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.entryDescription]));
- w5.Position = 3;
- w1.Add (this.hbox1);
- global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(w1 [this.hbox1]));
- w6.Position = 0;
- w6.Expand = false;
- w6.Fill = false;
- // Container child dialog1_VBox.Gtk.Box+BoxChild
- this.hpaned1 = new global::Gtk.HPaned ();
- this.hpaned1.CanFocus = true;
- this.hpaned1.Name = "hpaned1";
- this.hpaned1.Position = 415;
- // Container child hpaned1.Gtk.Paned+PanedChild
- this.vbox2 = new global::Gtk.VBox ();
- this.vbox2.Name = "vbox2";
- this.vbox2.Spacing = 6;
- // Container child vbox2.Gtk.Box+BoxChild
- this.label1 = new global::Gtk.Label ();
- this.label1.Name = "label1";
- this.label1.Xalign = 0F;
- this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Colors");
- this.label1.UseUnderline = true;
- this.vbox2.Add (this.label1);
- global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.label1]));
- w7.Position = 0;
- w7.Expand = false;
- w7.Fill = false;
- // Container child vbox2.Gtk.Box+BoxChild
- this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
- this.GtkScrolledWindow.Name = "GtkScrolledWindow";
- this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
- // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
- this.treeviewColors = new global::Gtk.TreeView ();
- this.treeviewColors.CanFocus = true;
- this.treeviewColors.Name = "treeviewColors";
- this.GtkScrolledWindow.Add (this.treeviewColors);
- this.vbox2.Add (this.GtkScrolledWindow);
- global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.GtkScrolledWindow]));
- w9.Position = 1;
- this.hpaned1.Add (this.vbox2);
- global::Gtk.Paned.PanedChild w10 = ((global::Gtk.Paned.PanedChild)(this.hpaned1 [this.vbox2]));
- w10.Resize = false;
- // Container child hpaned1.Gtk.Paned+PanedChild
- this.vbox3 = new global::Gtk.VBox ();
- this.vbox3.Name = "vbox3";
- this.vbox3.Spacing = 6;
- // Container child vbox3.Gtk.Box+BoxChild
- this.table1 = new global::Gtk.Table (((uint)(2)), ((uint)(2)), false);
- this.table1.Name = "table1";
- this.table1.RowSpacing = ((uint)(6));
- this.table1.ColumnSpacing = ((uint)(6));
- // Container child table1.Gtk.Table+TableChild
- this.colorbuttonBg = new global::Gtk.ColorButton ();
- this.colorbuttonBg.CanFocus = true;
- this.colorbuttonBg.Events = ((global::Gdk.EventMask)(784));
- this.colorbuttonBg.Name = "colorbuttonBg";
- this.table1.Add (this.colorbuttonBg);
- global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table1 [this.colorbuttonBg]));
- w11.TopAttach = ((uint)(1));
- w11.BottomAttach = ((uint)(2));
- w11.LeftAttach = ((uint)(1));
- w11.RightAttach = ((uint)(2));
- w11.XOptions = ((global::Gtk.AttachOptions)(4));
- w11.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.colorbuttonFg = new global::Gtk.ColorButton ();
- this.colorbuttonFg.CanFocus = true;
- this.colorbuttonFg.Events = ((global::Gdk.EventMask)(784));
- this.colorbuttonFg.Name = "colorbuttonFg";
- this.table1.Add (this.colorbuttonFg);
- global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.table1 [this.colorbuttonFg]));
- w12.LeftAttach = ((uint)(1));
- w12.RightAttach = ((uint)(2));
- w12.XOptions = ((global::Gtk.AttachOptions)(4));
- w12.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.label4 = new global::Gtk.Label ();
- this.label4.Name = "label4";
- this.label4.LabelProp = global::Mono.Unix.Catalog.GetString ("_Foreground:");
- this.label4.UseUnderline = true;
- this.table1.Add (this.label4);
- global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table1 [this.label4]));
- w13.XOptions = ((global::Gtk.AttachOptions)(4));
- w13.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.label5 = new global::Gtk.Label ();
- this.label5.Name = "label5";
- this.label5.LabelProp = global::Mono.Unix.Catalog.GetString ("_Background:");
- this.label5.UseUnderline = true;
- this.table1.Add (this.label5);
- global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table1 [this.label5]));
- w14.TopAttach = ((uint)(1));
- w14.BottomAttach = ((uint)(2));
- w14.XOptions = ((global::Gtk.AttachOptions)(4));
- w14.YOptions = ((global::Gtk.AttachOptions)(4));
- this.vbox3.Add (this.table1);
- global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.table1]));
- w15.Position = 0;
- w15.Expand = false;
- w15.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.checkbuttonBold = new global::Gtk.CheckButton ();
- this.checkbuttonBold.CanFocus = true;
- this.checkbuttonBold.Name = "checkbuttonBold";
- this.checkbuttonBold.Label = global::Mono.Unix.Catalog.GetString ("B_old");
- this.checkbuttonBold.DrawIndicator = true;
- this.checkbuttonBold.UseUnderline = true;
- this.vbox3.Add (this.checkbuttonBold);
- global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.checkbuttonBold]));
- w16.Position = 1;
- w16.Expand = false;
- w16.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.checkbuttonItalic = new global::Gtk.CheckButton ();
- this.checkbuttonItalic.CanFocus = true;
- this.checkbuttonItalic.Name = "checkbuttonItalic";
- this.checkbuttonItalic.Label = global::Mono.Unix.Catalog.GetString ("Italic");
- this.checkbuttonItalic.DrawIndicator = true;
- this.checkbuttonItalic.UseUnderline = true;
- this.vbox3.Add (this.checkbuttonItalic);
- global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.checkbuttonItalic]));
- w17.Position = 2;
- w17.Expand = false;
- w17.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.label6 = new global::Gtk.Label ();
- this.label6.Name = "label6";
- this.label6.Xalign = 0F;
- this.label6.LabelProp = global::Mono.Unix.Catalog.GetString ("_Preview:");
- this.label6.UseUnderline = true;
- this.vbox3.Add (this.label6);
- global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.label6]));
- w18.Position = 3;
- w18.Expand = false;
- w18.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.scrolledwindowTextEditor = new global::Gtk.ScrolledWindow ();
- this.scrolledwindowTextEditor.CanFocus = true;
- this.scrolledwindowTextEditor.Name = "scrolledwindowTextEditor";
- this.scrolledwindowTextEditor.ShadowType = ((global::Gtk.ShadowType)(1));
- this.vbox3.Add (this.scrolledwindowTextEditor);
- global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.scrolledwindowTextEditor]));
- w19.Position = 4;
- this.hpaned1.Add (this.vbox3);
- w1.Add (this.hpaned1);
- global::Gtk.Box.BoxChild w21 = ((global::Gtk.Box.BoxChild)(w1 [this.hpaned1]));
- w21.Position = 1;
- // Internal child MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.ActionArea
- global::Gtk.HButtonBox w22 = this.ActionArea;
- w22.Name = "dialog1_ActionArea";
- w22.Spacing = 10;
- w22.BorderWidth = ((uint)(5));
- w22.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
- // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
- this.buttonCancel = new global::Gtk.Button ();
- this.buttonCancel.CanDefault = true;
- this.buttonCancel.CanFocus = true;
- this.buttonCancel.Name = "buttonCancel";
- this.buttonCancel.UseStock = true;
- this.buttonCancel.UseUnderline = true;
- this.buttonCancel.Label = "gtk-cancel";
- this.AddActionWidget (this.buttonCancel, -6);
- global::Gtk.ButtonBox.ButtonBoxChild w23 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w22 [this.buttonCancel]));
- w23.Expand = false;
- w23.Fill = false;
- // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
- this.buttonOk = new global::Gtk.Button ();
- this.buttonOk.CanDefault = true;
- this.buttonOk.CanFocus = true;
- this.buttonOk.Name = "buttonOk";
- this.buttonOk.UseStock = true;
- this.buttonOk.UseUnderline = true;
- this.buttonOk.Label = "gtk-ok";
- this.AddActionWidget (this.buttonOk, -5);
- global::Gtk.ButtonBox.ButtonBoxChild w24 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w22 [this.buttonOk]));
- w24.Position = 1;
- w24.Expand = false;
- w24.Fill = false;
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.DefaultWidth = 760;
- this.DefaultHeight = 458;
- this.label2.MnemonicWidget = this.entryName;
- this.label3.MnemonicWidget = this.entryDescription;
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor.OptionPanels
+{
+ public partial class ColorShemeEditor
+ {
+ private global::Gtk.HBox hbox1;
+ private global::Gtk.Label label2;
+ private global::Gtk.Entry entryName;
+ private global::Gtk.Label label3;
+ private global::Gtk.Entry entryDescription;
+ private global::Gtk.HPaned hpaned1;
+ private global::Gtk.VBox vbox2;
+ private global::Gtk.Label label1;
+ private global::Gtk.ScrolledWindow GtkScrolledWindow;
+ private global::Gtk.TreeView treeviewColors;
+ private global::Gtk.VBox vbox3;
+ private global::Gtk.Table table1;
+ private global::Gtk.ColorButton colorbuttonBg;
+ private global::Gtk.ColorButton colorbuttonFg;
+ private global::Gtk.Label label4;
+ private global::Gtk.Label label5;
+ private global::Gtk.CheckButton checkbuttonBold;
+ private global::Gtk.CheckButton checkbuttonItalic;
+ private global::Gtk.Label label6;
+ private global::Gtk.ScrolledWindow scrolledwindowTextEditor;
+ private global::Gtk.Button buttonCancel;
+ private global::Gtk.Button buttonOk;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor
+ this.Name = "MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor";
+ this.Title = global::Mono.Unix.Catalog.GetString ("Edit color sheme");
+ this.WindowPosition = ((global::Gtk.WindowPosition)(4));
+ this.BorderWidth = ((uint)(6));
+ // Internal child MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.VBox
+ global::Gtk.VBox w1 = this.VBox;
+ w1.Name = "dialog1_VBox";
+ w1.BorderWidth = ((uint)(2));
+ // Container child dialog1_VBox.Gtk.Box+BoxChild
+ this.hbox1 = new global::Gtk.HBox ();
+ this.hbox1.Name = "hbox1";
+ this.hbox1.Spacing = 6;
+ this.hbox1.BorderWidth = ((uint)(6));
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.label2 = new global::Gtk.Label ();
+ this.label2.Name = "label2";
+ this.label2.Xalign = 0F;
+ this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("_Name:");
+ this.label2.UseUnderline = true;
+ this.hbox1.Add (this.label2);
+ global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label2]));
+ w2.Position = 0;
+ w2.Expand = false;
+ w2.Fill = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.entryName = new global::Gtk.Entry ();
+ this.entryName.CanFocus = true;
+ this.entryName.Name = "entryName";
+ this.entryName.IsEditable = true;
+ this.entryName.InvisibleChar = '●';
+ this.hbox1.Add (this.entryName);
+ global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.entryName]));
+ w3.Position = 1;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.label3 = new global::Gtk.Label ();
+ this.label3.Name = "label3";
+ this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("_Description:");
+ this.label3.UseUnderline = true;
+ this.hbox1.Add (this.label3);
+ global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label3]));
+ w4.Position = 2;
+ w4.Expand = false;
+ w4.Fill = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.entryDescription = new global::Gtk.Entry ();
+ this.entryDescription.CanFocus = true;
+ this.entryDescription.Name = "entryDescription";
+ this.entryDescription.IsEditable = true;
+ this.entryDescription.InvisibleChar = '●';
+ this.hbox1.Add (this.entryDescription);
+ global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.entryDescription]));
+ w5.Position = 3;
+ w1.Add (this.hbox1);
+ global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(w1 [this.hbox1]));
+ w6.Position = 0;
+ w6.Expand = false;
+ w6.Fill = false;
+ // Container child dialog1_VBox.Gtk.Box+BoxChild
+ this.hpaned1 = new global::Gtk.HPaned ();
+ this.hpaned1.CanFocus = true;
+ this.hpaned1.Name = "hpaned1";
+ this.hpaned1.Position = 415;
+ // Container child hpaned1.Gtk.Paned+PanedChild
+ this.vbox2 = new global::Gtk.VBox ();
+ this.vbox2.Name = "vbox2";
+ this.vbox2.Spacing = 6;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.label1 = new global::Gtk.Label ();
+ this.label1.Name = "label1";
+ this.label1.Xalign = 0F;
+ this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Colors");
+ this.label1.UseUnderline = true;
+ this.vbox2.Add (this.label1);
+ global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.label1]));
+ w7.Position = 0;
+ w7.Expand = false;
+ w7.Fill = false;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
+ this.GtkScrolledWindow.Name = "GtkScrolledWindow";
+ this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
+ // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
+ this.treeviewColors = new global::Gtk.TreeView ();
+ this.treeviewColors.CanFocus = true;
+ this.treeviewColors.Name = "treeviewColors";
+ this.GtkScrolledWindow.Add (this.treeviewColors);
+ this.vbox2.Add (this.GtkScrolledWindow);
+ global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.GtkScrolledWindow]));
+ w9.Position = 1;
+ this.hpaned1.Add (this.vbox2);
+ global::Gtk.Paned.PanedChild w10 = ((global::Gtk.Paned.PanedChild)(this.hpaned1 [this.vbox2]));
+ w10.Resize = false;
+ // Container child hpaned1.Gtk.Paned+PanedChild
+ this.vbox3 = new global::Gtk.VBox ();
+ this.vbox3.Name = "vbox3";
+ this.vbox3.Spacing = 6;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.table1 = new global::Gtk.Table (((uint)(2)), ((uint)(2)), false);
+ this.table1.Name = "table1";
+ this.table1.RowSpacing = ((uint)(6));
+ this.table1.ColumnSpacing = ((uint)(6));
+ // Container child table1.Gtk.Table+TableChild
+ this.colorbuttonBg = new global::Gtk.ColorButton ();
+ this.colorbuttonBg.CanFocus = true;
+ this.colorbuttonBg.Events = ((global::Gdk.EventMask)(784));
+ this.colorbuttonBg.Name = "colorbuttonBg";
+ this.table1.Add (this.colorbuttonBg);
+ global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table1 [this.colorbuttonBg]));
+ w11.TopAttach = ((uint)(1));
+ w11.BottomAttach = ((uint)(2));
+ w11.LeftAttach = ((uint)(1));
+ w11.RightAttach = ((uint)(2));
+ w11.XOptions = ((global::Gtk.AttachOptions)(4));
+ w11.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.colorbuttonFg = new global::Gtk.ColorButton ();
+ this.colorbuttonFg.CanFocus = true;
+ this.colorbuttonFg.Events = ((global::Gdk.EventMask)(784));
+ this.colorbuttonFg.Name = "colorbuttonFg";
+ this.table1.Add (this.colorbuttonFg);
+ global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.table1 [this.colorbuttonFg]));
+ w12.LeftAttach = ((uint)(1));
+ w12.RightAttach = ((uint)(2));
+ w12.XOptions = ((global::Gtk.AttachOptions)(4));
+ w12.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.label4 = new global::Gtk.Label ();
+ this.label4.Name = "label4";
+ this.label4.LabelProp = global::Mono.Unix.Catalog.GetString ("_Foreground:");
+ this.label4.UseUnderline = true;
+ this.table1.Add (this.label4);
+ global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table1 [this.label4]));
+ w13.XOptions = ((global::Gtk.AttachOptions)(4));
+ w13.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.label5 = new global::Gtk.Label ();
+ this.label5.Name = "label5";
+ this.label5.LabelProp = global::Mono.Unix.Catalog.GetString ("_Background:");
+ this.label5.UseUnderline = true;
+ this.table1.Add (this.label5);
+ global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table1 [this.label5]));
+ w14.TopAttach = ((uint)(1));
+ w14.BottomAttach = ((uint)(2));
+ w14.XOptions = ((global::Gtk.AttachOptions)(4));
+ w14.YOptions = ((global::Gtk.AttachOptions)(4));
+ this.vbox3.Add (this.table1);
+ global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.table1]));
+ w15.Position = 0;
+ w15.Expand = false;
+ w15.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.checkbuttonBold = new global::Gtk.CheckButton ();
+ this.checkbuttonBold.CanFocus = true;
+ this.checkbuttonBold.Name = "checkbuttonBold";
+ this.checkbuttonBold.Label = global::Mono.Unix.Catalog.GetString ("B_old");
+ this.checkbuttonBold.DrawIndicator = true;
+ this.checkbuttonBold.UseUnderline = true;
+ this.vbox3.Add (this.checkbuttonBold);
+ global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.checkbuttonBold]));
+ w16.Position = 1;
+ w16.Expand = false;
+ w16.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.checkbuttonItalic = new global::Gtk.CheckButton ();
+ this.checkbuttonItalic.CanFocus = true;
+ this.checkbuttonItalic.Name = "checkbuttonItalic";
+ this.checkbuttonItalic.Label = global::Mono.Unix.Catalog.GetString ("Italic");
+ this.checkbuttonItalic.DrawIndicator = true;
+ this.checkbuttonItalic.UseUnderline = true;
+ this.vbox3.Add (this.checkbuttonItalic);
+ global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.checkbuttonItalic]));
+ w17.Position = 2;
+ w17.Expand = false;
+ w17.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.label6 = new global::Gtk.Label ();
+ this.label6.Name = "label6";
+ this.label6.Xalign = 0F;
+ this.label6.LabelProp = global::Mono.Unix.Catalog.GetString ("_Preview:");
+ this.label6.UseUnderline = true;
+ this.vbox3.Add (this.label6);
+ global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.label6]));
+ w18.Position = 3;
+ w18.Expand = false;
+ w18.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.scrolledwindowTextEditor = new global::Gtk.ScrolledWindow ();
+ this.scrolledwindowTextEditor.CanFocus = true;
+ this.scrolledwindowTextEditor.Name = "scrolledwindowTextEditor";
+ this.scrolledwindowTextEditor.ShadowType = ((global::Gtk.ShadowType)(1));
+ this.vbox3.Add (this.scrolledwindowTextEditor);
+ global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.scrolledwindowTextEditor]));
+ w19.Position = 4;
+ this.hpaned1.Add (this.vbox3);
+ w1.Add (this.hpaned1);
+ global::Gtk.Box.BoxChild w21 = ((global::Gtk.Box.BoxChild)(w1 [this.hpaned1]));
+ w21.Position = 1;
+ // Internal child MonoDevelop.SourceEditor.OptionPanels.ColorShemeEditor.ActionArea
+ global::Gtk.HButtonBox w22 = this.ActionArea;
+ w22.Name = "dialog1_ActionArea";
+ w22.Spacing = 10;
+ w22.BorderWidth = ((uint)(5));
+ w22.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
+ // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
+ this.buttonCancel = new global::Gtk.Button ();
+ this.buttonCancel.CanDefault = true;
+ this.buttonCancel.CanFocus = true;
+ this.buttonCancel.Name = "buttonCancel";
+ this.buttonCancel.UseStock = true;
+ this.buttonCancel.UseUnderline = true;
+ this.buttonCancel.Label = "gtk-cancel";
+ this.AddActionWidget (this.buttonCancel, -6);
+ global::Gtk.ButtonBox.ButtonBoxChild w23 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w22 [this.buttonCancel]));
+ w23.Expand = false;
+ w23.Fill = false;
+ // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
+ this.buttonOk = new global::Gtk.Button ();
+ this.buttonOk.CanDefault = true;
+ this.buttonOk.CanFocus = true;
+ this.buttonOk.Name = "buttonOk";
+ this.buttonOk.UseStock = true;
+ this.buttonOk.UseUnderline = true;
+ this.buttonOk.Label = "gtk-ok";
+ this.AddActionWidget (this.buttonOk, -5);
+ global::Gtk.ButtonBox.ButtonBoxChild w24 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w22 [this.buttonOk]));
+ w24.Position = 1;
+ w24.Expand = false;
+ w24.Fill = false;
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.DefaultWidth = 760;
+ this.DefaultHeight = 458;
+ this.label2.MnemonicWidget = this.entryName;
+ this.label3.MnemonicWidget = this.entryDescription;
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.cs
index ee8a90d168..ec7a183824 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.cs
@@ -1,299 +1,299 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor.OptionPanels
-{
- internal partial class GeneralOptionsPanel
- {
- private global::Gtk.VBox vbox1;
- private global::Gtk.Label GtkLabel13;
- private global::Gtk.Alignment alignment2;
- private global::Gtk.VBox vbox4;
- private global::Gtk.CheckButton codeCompletioncheckbutton;
- private global::Gtk.HBox hbox2;
- private global::Gtk.Fixed fixed1;
- private global::Gtk.CheckButton autoCodeCompletionCheckbutton;
- private global::Gtk.HBox hbox3;
- private global::Gtk.Fixed fixed2;
- private global::Gtk.CheckButton spaceOrPunctiuationCheckbutton;
- private global::Gtk.HBox hbox4;
- private global::Gtk.Fixed fixed3;
- private global::Gtk.CheckButton enableParameterInsightCheckbutton;
- private global::Gtk.HBox hbox1;
- private global::Gtk.Label label1;
- private global::Gtk.ComboBox comboboxLineEndings;
- private global::Gtk.Label GtkLabel14;
- private global::Gtk.Alignment alignment3;
- private global::Gtk.VBox vbox5;
- private global::Gtk.CheckButton foldingCheckbutton;
- private global::Gtk.CheckButton foldregionsCheckbutton;
- private global::Gtk.CheckButton foldCommentsCheckbutton;
- private global::Gtk.Label GtkLabel15;
- private global::Gtk.Alignment alignment4;
- private global::Gtk.VBox vbox6;
- private global::Gtk.CheckButton antiAliasingCheckbutton;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel
- global::Stetic.BinContainer.Attach (this);
- this.Name = "MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel";
- // Container child MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.Gtk.Container+ContainerChild
- this.vbox1 = new global::Gtk.VBox ();
- this.vbox1.Name = "vbox1";
- this.vbox1.Spacing = 6;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel13 = new global::Gtk.Label ();
- this.GtkLabel13.Name = "GtkLabel13";
- this.GtkLabel13.Xalign = 0F;
- this.GtkLabel13.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Coding</b>");
- this.GtkLabel13.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel13);
- global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel13]));
- w1.Position = 0;
- w1.Expand = false;
- w1.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.alignment2 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
- this.alignment2.Name = "alignment2";
- this.alignment2.LeftPadding = ((uint)(12));
- // Container child alignment2.Gtk.Container+ContainerChild
- this.vbox4 = new global::Gtk.VBox ();
- this.vbox4.Name = "vbox4";
- this.vbox4.Spacing = 6;
- // Container child vbox4.Gtk.Box+BoxChild
- this.codeCompletioncheckbutton = new global::Gtk.CheckButton ();
- this.codeCompletioncheckbutton.CanFocus = true;
- this.codeCompletioncheckbutton.Name = "codeCompletioncheckbutton";
- this.codeCompletioncheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Enable _code completion");
- this.codeCompletioncheckbutton.DrawIndicator = true;
- this.codeCompletioncheckbutton.UseUnderline = true;
- this.vbox4.Add (this.codeCompletioncheckbutton);
- global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.codeCompletioncheckbutton]));
- w2.Position = 0;
- w2.Expand = false;
- w2.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.hbox2 = new global::Gtk.HBox ();
- this.hbox2.Name = "hbox2";
- this.hbox2.Spacing = 6;
- // Container child hbox2.Gtk.Box+BoxChild
- this.fixed1 = new global::Gtk.Fixed ();
- this.fixed1.Name = "fixed1";
- this.fixed1.HasWindow = false;
- this.hbox2.Add (this.fixed1);
- global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.fixed1]));
- w3.Position = 0;
- w3.Expand = false;
- w3.Padding = ((uint)(6));
- // Container child hbox2.Gtk.Box+BoxChild
- this.autoCodeCompletionCheckbutton = new global::Gtk.CheckButton ();
- this.autoCodeCompletionCheckbutton.CanFocus = true;
- this.autoCodeCompletionCheckbutton.Name = "autoCodeCompletionCheckbutton";
- this.autoCodeCompletionCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Aggressively trigger code completion list");
- this.autoCodeCompletionCheckbutton.DrawIndicator = true;
- this.autoCodeCompletionCheckbutton.UseUnderline = true;
- this.hbox2.Add (this.autoCodeCompletionCheckbutton);
- global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.autoCodeCompletionCheckbutton]));
- w4.Position = 1;
- this.vbox4.Add (this.hbox2);
- global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox2]));
- w5.Position = 1;
- w5.Expand = false;
- w5.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.hbox3 = new global::Gtk.HBox ();
- this.hbox3.Name = "hbox3";
- this.hbox3.Spacing = 6;
- // Container child hbox3.Gtk.Box+BoxChild
- this.fixed2 = new global::Gtk.Fixed ();
- this.fixed2.Name = "fixed2";
- this.fixed2.HasWindow = false;
- this.hbox3.Add (this.fixed2);
- global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.fixed2]));
- w6.Position = 0;
- w6.Expand = false;
- w6.Padding = ((uint)(6));
- // Container child hbox3.Gtk.Box+BoxChild
- this.spaceOrPunctiuationCheckbutton = new global::Gtk.CheckButton ();
- this.spaceOrPunctiuationCheckbutton.CanFocus = true;
- this.spaceOrPunctiuationCheckbutton.Name = "spaceOrPunctiuationCheckbutton";
- this.spaceOrPunctiuationCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Commit completion list selection with space or punctuation.");
- this.spaceOrPunctiuationCheckbutton.DrawIndicator = true;
- this.spaceOrPunctiuationCheckbutton.UseUnderline = true;
- this.hbox3.Add (this.spaceOrPunctiuationCheckbutton);
- global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.spaceOrPunctiuationCheckbutton]));
- w7.Position = 1;
- this.vbox4.Add (this.hbox3);
- global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox3]));
- w8.Position = 2;
- w8.Expand = false;
- w8.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.hbox4 = new global::Gtk.HBox ();
- this.hbox4.Name = "hbox4";
- this.hbox4.Spacing = 6;
- // Container child hbox4.Gtk.Box+BoxChild
- this.fixed3 = new global::Gtk.Fixed ();
- this.fixed3.Name = "fixed3";
- this.fixed3.HasWindow = false;
- this.hbox4.Add (this.fixed3);
- global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.fixed3]));
- w9.Position = 0;
- w9.Expand = false;
- w9.Padding = ((uint)(6));
- // Container child hbox4.Gtk.Box+BoxChild
- this.enableParameterInsightCheckbutton = new global::Gtk.CheckButton ();
- this.enableParameterInsightCheckbutton.CanFocus = true;
- this.enableParameterInsightCheckbutton.Name = "enableParameterInsightCheckbutton";
- this.enableParameterInsightCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Enable _parameter insight");
- this.enableParameterInsightCheckbutton.DrawIndicator = true;
- this.enableParameterInsightCheckbutton.UseUnderline = true;
- this.hbox4.Add (this.enableParameterInsightCheckbutton);
- global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.enableParameterInsightCheckbutton]));
- w10.Position = 1;
- this.vbox4.Add (this.hbox4);
- global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox4]));
- w11.Position = 3;
- w11.Expand = false;
- w11.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.hbox1 = new global::Gtk.HBox ();
- this.hbox1.Name = "hbox1";
- this.hbox1.Spacing = 6;
- // Container child hbox1.Gtk.Box+BoxChild
- this.label1 = new global::Gtk.Label ();
- this.label1.Name = "label1";
- this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Line ending conversion:");
- this.label1.UseUnderline = true;
- this.hbox1.Add (this.label1);
- global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label1]));
- w12.Position = 0;
- w12.Expand = false;
- w12.Fill = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.comboboxLineEndings = global::Gtk.ComboBox.NewText ();
- this.comboboxLineEndings.Name = "comboboxLineEndings";
- this.hbox1.Add (this.comboboxLineEndings);
- global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.comboboxLineEndings]));
- w13.Position = 1;
- w13.Expand = false;
- w13.Fill = false;
- this.vbox4.Add (this.hbox1);
- global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox1]));
- w14.Position = 4;
- w14.Expand = false;
- w14.Fill = false;
- this.alignment2.Add (this.vbox4);
- this.vbox1.Add (this.alignment2);
- global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment2]));
- w16.Position = 1;
- w16.Expand = false;
- w16.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel14 = new global::Gtk.Label ();
- this.GtkLabel14.Name = "GtkLabel14";
- this.GtkLabel14.Xalign = 0F;
- this.GtkLabel14.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Code Folding</b>");
- this.GtkLabel14.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel14);
- global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel14]));
- w17.Position = 2;
- w17.Expand = false;
- w17.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.alignment3 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
- this.alignment3.Name = "alignment3";
- this.alignment3.LeftPadding = ((uint)(12));
- // Container child alignment3.Gtk.Container+ContainerChild
- this.vbox5 = new global::Gtk.VBox ();
- this.vbox5.Name = "vbox5";
- this.vbox5.Spacing = 6;
- // Container child vbox5.Gtk.Box+BoxChild
- this.foldingCheckbutton = new global::Gtk.CheckButton ();
- this.foldingCheckbutton.CanFocus = true;
- this.foldingCheckbutton.Name = "foldingCheckbutton";
- this.foldingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Enable code _folding");
- this.foldingCheckbutton.DrawIndicator = true;
- this.foldingCheckbutton.UseUnderline = true;
- this.vbox5.Add (this.foldingCheckbutton);
- global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.foldingCheckbutton]));
- w18.Position = 0;
- w18.Expand = false;
- w18.Fill = false;
- // Container child vbox5.Gtk.Box+BoxChild
- this.foldregionsCheckbutton = new global::Gtk.CheckButton ();
- this.foldregionsCheckbutton.CanFocus = true;
- this.foldregionsCheckbutton.Name = "foldregionsCheckbutton";
- this.foldregionsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Fold #_regions by default");
- this.foldregionsCheckbutton.DrawIndicator = true;
- this.foldregionsCheckbutton.UseUnderline = true;
- this.vbox5.Add (this.foldregionsCheckbutton);
- global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.foldregionsCheckbutton]));
- w19.Position = 1;
- w19.Expand = false;
- w19.Fill = false;
- // Container child vbox5.Gtk.Box+BoxChild
- this.foldCommentsCheckbutton = new global::Gtk.CheckButton ();
- this.foldCommentsCheckbutton.CanFocus = true;
- this.foldCommentsCheckbutton.Name = "foldCommentsCheckbutton";
- this.foldCommentsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Fold _comments by default");
- this.foldCommentsCheckbutton.DrawIndicator = true;
- this.foldCommentsCheckbutton.UseUnderline = true;
- this.vbox5.Add (this.foldCommentsCheckbutton);
- global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.foldCommentsCheckbutton]));
- w20.Position = 2;
- w20.Expand = false;
- w20.Fill = false;
- this.alignment3.Add (this.vbox5);
- this.vbox1.Add (this.alignment3);
- global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment3]));
- w22.Position = 3;
- w22.Expand = false;
- w22.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel15 = new global::Gtk.Label ();
- this.GtkLabel15.Name = "GtkLabel15";
- this.GtkLabel15.Xalign = 0F;
- this.GtkLabel15.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Appearance</b>");
- this.GtkLabel15.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel15);
- global::Gtk.Box.BoxChild w23 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel15]));
- w23.Position = 4;
- w23.Expand = false;
- w23.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.alignment4 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
- this.alignment4.Name = "alignment4";
- this.alignment4.LeftPadding = ((uint)(12));
- // Container child alignment4.Gtk.Container+ContainerChild
- this.vbox6 = new global::Gtk.VBox ();
- this.vbox6.Name = "vbox6";
- this.vbox6.Spacing = 6;
- // Container child vbox6.Gtk.Box+BoxChild
- this.antiAliasingCheckbutton = new global::Gtk.CheckButton ();
- this.antiAliasingCheckbutton.CanFocus = true;
- this.antiAliasingCheckbutton.Name = "antiAliasingCheckbutton";
- this.antiAliasingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Use anti aliasing");
- this.antiAliasingCheckbutton.DrawIndicator = true;
- this.antiAliasingCheckbutton.UseUnderline = true;
- this.vbox6.Add (this.antiAliasingCheckbutton);
- global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.antiAliasingCheckbutton]));
- w24.Position = 0;
- w24.Expand = false;
- w24.Fill = false;
- this.alignment4.Add (this.vbox6);
- this.vbox1.Add (this.alignment4);
- global::Gtk.Box.BoxChild w26 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment4]));
- w26.Position = 5;
- w26.Expand = false;
- w26.Fill = false;
- this.Add (this.vbox1);
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.label1.MnemonicWidget = this.comboboxLineEndings;
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor.OptionPanels
+{
+ internal partial class GeneralOptionsPanel
+ {
+ private global::Gtk.VBox vbox1;
+ private global::Gtk.Label GtkLabel13;
+ private global::Gtk.Alignment alignment2;
+ private global::Gtk.VBox vbox4;
+ private global::Gtk.CheckButton codeCompletioncheckbutton;
+ private global::Gtk.HBox hbox2;
+ private global::Gtk.Fixed fixed1;
+ private global::Gtk.CheckButton autoCodeCompletionCheckbutton;
+ private global::Gtk.HBox hbox3;
+ private global::Gtk.Fixed fixed2;
+ private global::Gtk.CheckButton spaceOrPunctiuationCheckbutton;
+ private global::Gtk.HBox hbox4;
+ private global::Gtk.Fixed fixed3;
+ private global::Gtk.CheckButton enableParameterInsightCheckbutton;
+ private global::Gtk.HBox hbox1;
+ private global::Gtk.Label label1;
+ private global::Gtk.ComboBox comboboxLineEndings;
+ private global::Gtk.Label GtkLabel14;
+ private global::Gtk.Alignment alignment3;
+ private global::Gtk.VBox vbox5;
+ private global::Gtk.CheckButton foldingCheckbutton;
+ private global::Gtk.CheckButton foldregionsCheckbutton;
+ private global::Gtk.CheckButton foldCommentsCheckbutton;
+ private global::Gtk.Label GtkLabel15;
+ private global::Gtk.Alignment alignment4;
+ private global::Gtk.VBox vbox6;
+ private global::Gtk.CheckButton antiAliasingCheckbutton;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel
+ global::Stetic.BinContainer.Attach (this);
+ this.Name = "MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel";
+ // Container child MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel.Gtk.Container+ContainerChild
+ this.vbox1 = new global::Gtk.VBox ();
+ this.vbox1.Name = "vbox1";
+ this.vbox1.Spacing = 6;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel13 = new global::Gtk.Label ();
+ this.GtkLabel13.Name = "GtkLabel13";
+ this.GtkLabel13.Xalign = 0F;
+ this.GtkLabel13.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Coding</b>");
+ this.GtkLabel13.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel13);
+ global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel13]));
+ w1.Position = 0;
+ w1.Expand = false;
+ w1.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.alignment2 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
+ this.alignment2.Name = "alignment2";
+ this.alignment2.LeftPadding = ((uint)(12));
+ // Container child alignment2.Gtk.Container+ContainerChild
+ this.vbox4 = new global::Gtk.VBox ();
+ this.vbox4.Name = "vbox4";
+ this.vbox4.Spacing = 6;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.codeCompletioncheckbutton = new global::Gtk.CheckButton ();
+ this.codeCompletioncheckbutton.CanFocus = true;
+ this.codeCompletioncheckbutton.Name = "codeCompletioncheckbutton";
+ this.codeCompletioncheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Enable _code completion");
+ this.codeCompletioncheckbutton.DrawIndicator = true;
+ this.codeCompletioncheckbutton.UseUnderline = true;
+ this.vbox4.Add (this.codeCompletioncheckbutton);
+ global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.codeCompletioncheckbutton]));
+ w2.Position = 0;
+ w2.Expand = false;
+ w2.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.hbox2 = new global::Gtk.HBox ();
+ this.hbox2.Name = "hbox2";
+ this.hbox2.Spacing = 6;
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.fixed1 = new global::Gtk.Fixed ();
+ this.fixed1.Name = "fixed1";
+ this.fixed1.HasWindow = false;
+ this.hbox2.Add (this.fixed1);
+ global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.fixed1]));
+ w3.Position = 0;
+ w3.Expand = false;
+ w3.Padding = ((uint)(6));
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.autoCodeCompletionCheckbutton = new global::Gtk.CheckButton ();
+ this.autoCodeCompletionCheckbutton.CanFocus = true;
+ this.autoCodeCompletionCheckbutton.Name = "autoCodeCompletionCheckbutton";
+ this.autoCodeCompletionCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Aggressively trigger code completion list");
+ this.autoCodeCompletionCheckbutton.DrawIndicator = true;
+ this.autoCodeCompletionCheckbutton.UseUnderline = true;
+ this.hbox2.Add (this.autoCodeCompletionCheckbutton);
+ global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.autoCodeCompletionCheckbutton]));
+ w4.Position = 1;
+ this.vbox4.Add (this.hbox2);
+ global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox2]));
+ w5.Position = 1;
+ w5.Expand = false;
+ w5.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.hbox3 = new global::Gtk.HBox ();
+ this.hbox3.Name = "hbox3";
+ this.hbox3.Spacing = 6;
+ // Container child hbox3.Gtk.Box+BoxChild
+ this.fixed2 = new global::Gtk.Fixed ();
+ this.fixed2.Name = "fixed2";
+ this.fixed2.HasWindow = false;
+ this.hbox3.Add (this.fixed2);
+ global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.fixed2]));
+ w6.Position = 0;
+ w6.Expand = false;
+ w6.Padding = ((uint)(6));
+ // Container child hbox3.Gtk.Box+BoxChild
+ this.spaceOrPunctiuationCheckbutton = new global::Gtk.CheckButton ();
+ this.spaceOrPunctiuationCheckbutton.CanFocus = true;
+ this.spaceOrPunctiuationCheckbutton.Name = "spaceOrPunctiuationCheckbutton";
+ this.spaceOrPunctiuationCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Commit completion list selection with space or punctuation.");
+ this.spaceOrPunctiuationCheckbutton.DrawIndicator = true;
+ this.spaceOrPunctiuationCheckbutton.UseUnderline = true;
+ this.hbox3.Add (this.spaceOrPunctiuationCheckbutton);
+ global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.spaceOrPunctiuationCheckbutton]));
+ w7.Position = 1;
+ this.vbox4.Add (this.hbox3);
+ global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox3]));
+ w8.Position = 2;
+ w8.Expand = false;
+ w8.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.hbox4 = new global::Gtk.HBox ();
+ this.hbox4.Name = "hbox4";
+ this.hbox4.Spacing = 6;
+ // Container child hbox4.Gtk.Box+BoxChild
+ this.fixed3 = new global::Gtk.Fixed ();
+ this.fixed3.Name = "fixed3";
+ this.fixed3.HasWindow = false;
+ this.hbox4.Add (this.fixed3);
+ global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.fixed3]));
+ w9.Position = 0;
+ w9.Expand = false;
+ w9.Padding = ((uint)(6));
+ // Container child hbox4.Gtk.Box+BoxChild
+ this.enableParameterInsightCheckbutton = new global::Gtk.CheckButton ();
+ this.enableParameterInsightCheckbutton.CanFocus = true;
+ this.enableParameterInsightCheckbutton.Name = "enableParameterInsightCheckbutton";
+ this.enableParameterInsightCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Enable _parameter insight");
+ this.enableParameterInsightCheckbutton.DrawIndicator = true;
+ this.enableParameterInsightCheckbutton.UseUnderline = true;
+ this.hbox4.Add (this.enableParameterInsightCheckbutton);
+ global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.enableParameterInsightCheckbutton]));
+ w10.Position = 1;
+ this.vbox4.Add (this.hbox4);
+ global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox4]));
+ w11.Position = 3;
+ w11.Expand = false;
+ w11.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.hbox1 = new global::Gtk.HBox ();
+ this.hbox1.Name = "hbox1";
+ this.hbox1.Spacing = 6;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.label1 = new global::Gtk.Label ();
+ this.label1.Name = "label1";
+ this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Line ending conversion:");
+ this.label1.UseUnderline = true;
+ this.hbox1.Add (this.label1);
+ global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label1]));
+ w12.Position = 0;
+ w12.Expand = false;
+ w12.Fill = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.comboboxLineEndings = global::Gtk.ComboBox.NewText ();
+ this.comboboxLineEndings.Name = "comboboxLineEndings";
+ this.hbox1.Add (this.comboboxLineEndings);
+ global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.comboboxLineEndings]));
+ w13.Position = 1;
+ w13.Expand = false;
+ w13.Fill = false;
+ this.vbox4.Add (this.hbox1);
+ global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox1]));
+ w14.Position = 4;
+ w14.Expand = false;
+ w14.Fill = false;
+ this.alignment2.Add (this.vbox4);
+ this.vbox1.Add (this.alignment2);
+ global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment2]));
+ w16.Position = 1;
+ w16.Expand = false;
+ w16.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel14 = new global::Gtk.Label ();
+ this.GtkLabel14.Name = "GtkLabel14";
+ this.GtkLabel14.Xalign = 0F;
+ this.GtkLabel14.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Code Folding</b>");
+ this.GtkLabel14.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel14);
+ global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel14]));
+ w17.Position = 2;
+ w17.Expand = false;
+ w17.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.alignment3 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
+ this.alignment3.Name = "alignment3";
+ this.alignment3.LeftPadding = ((uint)(12));
+ // Container child alignment3.Gtk.Container+ContainerChild
+ this.vbox5 = new global::Gtk.VBox ();
+ this.vbox5.Name = "vbox5";
+ this.vbox5.Spacing = 6;
+ // Container child vbox5.Gtk.Box+BoxChild
+ this.foldingCheckbutton = new global::Gtk.CheckButton ();
+ this.foldingCheckbutton.CanFocus = true;
+ this.foldingCheckbutton.Name = "foldingCheckbutton";
+ this.foldingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Enable code _folding");
+ this.foldingCheckbutton.DrawIndicator = true;
+ this.foldingCheckbutton.UseUnderline = true;
+ this.vbox5.Add (this.foldingCheckbutton);
+ global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.foldingCheckbutton]));
+ w18.Position = 0;
+ w18.Expand = false;
+ w18.Fill = false;
+ // Container child vbox5.Gtk.Box+BoxChild
+ this.foldregionsCheckbutton = new global::Gtk.CheckButton ();
+ this.foldregionsCheckbutton.CanFocus = true;
+ this.foldregionsCheckbutton.Name = "foldregionsCheckbutton";
+ this.foldregionsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Fold #_regions by default");
+ this.foldregionsCheckbutton.DrawIndicator = true;
+ this.foldregionsCheckbutton.UseUnderline = true;
+ this.vbox5.Add (this.foldregionsCheckbutton);
+ global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.foldregionsCheckbutton]));
+ w19.Position = 1;
+ w19.Expand = false;
+ w19.Fill = false;
+ // Container child vbox5.Gtk.Box+BoxChild
+ this.foldCommentsCheckbutton = new global::Gtk.CheckButton ();
+ this.foldCommentsCheckbutton.CanFocus = true;
+ this.foldCommentsCheckbutton.Name = "foldCommentsCheckbutton";
+ this.foldCommentsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Fold _comments by default");
+ this.foldCommentsCheckbutton.DrawIndicator = true;
+ this.foldCommentsCheckbutton.UseUnderline = true;
+ this.vbox5.Add (this.foldCommentsCheckbutton);
+ global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.foldCommentsCheckbutton]));
+ w20.Position = 2;
+ w20.Expand = false;
+ w20.Fill = false;
+ this.alignment3.Add (this.vbox5);
+ this.vbox1.Add (this.alignment3);
+ global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment3]));
+ w22.Position = 3;
+ w22.Expand = false;
+ w22.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel15 = new global::Gtk.Label ();
+ this.GtkLabel15.Name = "GtkLabel15";
+ this.GtkLabel15.Xalign = 0F;
+ this.GtkLabel15.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Appearance</b>");
+ this.GtkLabel15.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel15);
+ global::Gtk.Box.BoxChild w23 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel15]));
+ w23.Position = 4;
+ w23.Expand = false;
+ w23.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.alignment4 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
+ this.alignment4.Name = "alignment4";
+ this.alignment4.LeftPadding = ((uint)(12));
+ // Container child alignment4.Gtk.Container+ContainerChild
+ this.vbox6 = new global::Gtk.VBox ();
+ this.vbox6.Name = "vbox6";
+ this.vbox6.Spacing = 6;
+ // Container child vbox6.Gtk.Box+BoxChild
+ this.antiAliasingCheckbutton = new global::Gtk.CheckButton ();
+ this.antiAliasingCheckbutton.CanFocus = true;
+ this.antiAliasingCheckbutton.Name = "antiAliasingCheckbutton";
+ this.antiAliasingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Use anti aliasing");
+ this.antiAliasingCheckbutton.DrawIndicator = true;
+ this.antiAliasingCheckbutton.UseUnderline = true;
+ this.vbox6.Add (this.antiAliasingCheckbutton);
+ global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.antiAliasingCheckbutton]));
+ w24.Position = 0;
+ w24.Expand = false;
+ w24.Fill = false;
+ this.alignment4.Add (this.vbox6);
+ this.vbox1.Add (this.alignment4);
+ global::Gtk.Box.BoxChild w26 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment4]));
+ w26.Position = 5;
+ w26.Expand = false;
+ w26.Fill = false;
+ this.Add (this.vbox1);
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.label1.MnemonicWidget = this.comboboxLineEndings;
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel.cs
index 5ebaba41d3..8409bc4a0c 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel.cs
@@ -1,221 +1,221 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor.OptionPanels
-{
- public partial class HighlightingPanel
- {
- private global::Gtk.VBox vbox4;
- private global::Gtk.Label GtkLabel4;
- private global::Gtk.Alignment GtkAlignment3;
- private global::Gtk.VBox vbox6;
- private global::Gtk.CheckButton enableHighlightingCheckbutton;
- private global::Gtk.CheckButton enableSemanticHighlightingCheckbutton;
- private global::Gtk.Label GtkLabel5;
- private global::Gtk.Alignment GtkAlignment;
- private global::Gtk.VBox vbox5;
- private global::Gtk.HBox hbox1;
- private global::Gtk.ScrolledWindow scrolledwindow1;
- private global::Gtk.TreeView styleTreeview;
- private global::Gtk.VBox vbox1;
- private global::Gtk.Button buttonNew;
- private global::Gtk.Button buttonEdit;
- private global::Gtk.HBox hbox2;
- private global::Gtk.Button addButton;
- private global::Gtk.Button removeButton;
- private global::Gtk.Button buttonExport;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel
- global::Stetic.BinContainer.Attach (this);
- this.Name = "MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel";
- // Container child MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel.Gtk.Container+ContainerChild
- this.vbox4 = new global::Gtk.VBox ();
- this.vbox4.Name = "vbox4";
- this.vbox4.Spacing = 6;
- // Container child vbox4.Gtk.Box+BoxChild
- this.GtkLabel4 = new global::Gtk.Label ();
- this.GtkLabel4.Name = "GtkLabel4";
- this.GtkLabel4.Xalign = 0F;
- this.GtkLabel4.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Syntax highlighting</b>");
- this.GtkLabel4.UseMarkup = true;
- this.vbox4.Add (this.GtkLabel4);
- global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkLabel4]));
- w1.Position = 0;
- w1.Expand = false;
- w1.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.GtkAlignment3 = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
- this.GtkAlignment3.Name = "GtkAlignment3";
- this.GtkAlignment3.LeftPadding = ((uint)(12));
- // Container child GtkAlignment3.Gtk.Container+ContainerChild
- this.vbox6 = new global::Gtk.VBox ();
- this.vbox6.Name = "vbox6";
- this.vbox6.Spacing = 6;
- // Container child vbox6.Gtk.Box+BoxChild
- this.enableHighlightingCheckbutton = new global::Gtk.CheckButton ();
- this.enableHighlightingCheckbutton.CanFocus = true;
- this.enableHighlightingCheckbutton.Name = "enableHighlightingCheckbutton";
- this.enableHighlightingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Enable highlighting");
- this.enableHighlightingCheckbutton.DrawIndicator = true;
- this.enableHighlightingCheckbutton.UseUnderline = true;
- this.vbox6.Add (this.enableHighlightingCheckbutton);
- global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.enableHighlightingCheckbutton]));
- w2.Position = 0;
- w2.Expand = false;
- w2.Fill = false;
- // Container child vbox6.Gtk.Box+BoxChild
- this.enableSemanticHighlightingCheckbutton = new global::Gtk.CheckButton ();
- this.enableSemanticHighlightingCheckbutton.CanFocus = true;
- this.enableSemanticHighlightingCheckbutton.Name = "enableSemanticHighlightingCheckbutton";
- this.enableSemanticHighlightingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("E_nable semantic highlighting");
- this.enableSemanticHighlightingCheckbutton.DrawIndicator = true;
- this.enableSemanticHighlightingCheckbutton.UseUnderline = true;
- this.vbox6.Add (this.enableSemanticHighlightingCheckbutton);
- global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.enableSemanticHighlightingCheckbutton]));
- w3.Position = 1;
- w3.Expand = false;
- w3.Fill = false;
- this.GtkAlignment3.Add (this.vbox6);
- this.vbox4.Add (this.GtkAlignment3);
- global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkAlignment3]));
- w5.Position = 1;
- w5.Expand = false;
- w5.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.GtkLabel5 = new global::Gtk.Label ();
- this.GtkLabel5.Name = "GtkLabel5";
- this.GtkLabel5.Xalign = 0F;
- this.GtkLabel5.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Color scheme</b>");
- this.GtkLabel5.UseMarkup = true;
- this.vbox4.Add (this.GtkLabel5);
- global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkLabel5]));
- w6.Position = 2;
- w6.Expand = false;
- w6.Fill = false;
- // Container child vbox4.Gtk.Box+BoxChild
- this.GtkAlignment = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
- this.GtkAlignment.Name = "GtkAlignment";
- this.GtkAlignment.LeftPadding = ((uint)(12));
- // Container child GtkAlignment.Gtk.Container+ContainerChild
- this.vbox5 = new global::Gtk.VBox ();
- this.vbox5.Name = "vbox5";
- this.vbox5.Spacing = 6;
- // Container child vbox5.Gtk.Box+BoxChild
- this.hbox1 = new global::Gtk.HBox ();
- this.hbox1.Name = "hbox1";
- this.hbox1.Spacing = 6;
- // Container child hbox1.Gtk.Box+BoxChild
- this.scrolledwindow1 = new global::Gtk.ScrolledWindow ();
- this.scrolledwindow1.CanFocus = true;
- this.scrolledwindow1.Name = "scrolledwindow1";
- this.scrolledwindow1.ShadowType = ((global::Gtk.ShadowType)(1));
- // Container child scrolledwindow1.Gtk.Container+ContainerChild
- global::Gtk.Viewport w7 = new global::Gtk.Viewport ();
- w7.ShadowType = ((global::Gtk.ShadowType)(0));
- // Container child GtkViewport.Gtk.Container+ContainerChild
- this.styleTreeview = new global::Gtk.TreeView ();
- this.styleTreeview.CanFocus = true;
- this.styleTreeview.Name = "styleTreeview";
- this.styleTreeview.HeadersVisible = false;
- w7.Add (this.styleTreeview);
- this.scrolledwindow1.Add (w7);
- this.hbox1.Add (this.scrolledwindow1);
- global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.scrolledwindow1]));
- w10.Position = 0;
- // Container child hbox1.Gtk.Box+BoxChild
- this.vbox1 = new global::Gtk.VBox ();
- this.vbox1.Name = "vbox1";
- this.vbox1.Spacing = 6;
- // Container child vbox1.Gtk.Box+BoxChild
- this.buttonNew = new global::Gtk.Button ();
- this.buttonNew.CanFocus = true;
- this.buttonNew.Name = "buttonNew";
- this.buttonNew.UseStock = true;
- this.buttonNew.UseUnderline = true;
- this.buttonNew.Label = "gtk-new";
- this.vbox1.Add (this.buttonNew);
- global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.buttonNew]));
- w11.Position = 0;
- w11.Expand = false;
- w11.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.buttonEdit = new global::Gtk.Button ();
- this.buttonEdit.CanFocus = true;
- this.buttonEdit.Name = "buttonEdit";
- this.buttonEdit.UseUnderline = true;
- this.buttonEdit.Label = global::Mono.Unix.Catalog.GetString ("_Edit");
- this.vbox1.Add (this.buttonEdit);
- global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.buttonEdit]));
- w12.Position = 1;
- w12.Expand = false;
- w12.Fill = false;
- this.hbox1.Add (this.vbox1);
- global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.vbox1]));
- w13.Position = 1;
- w13.Expand = false;
- w13.Fill = false;
- this.vbox5.Add (this.hbox1);
- global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.hbox1]));
- w14.Position = 0;
- // Container child vbox5.Gtk.Box+BoxChild
- this.hbox2 = new global::Gtk.HBox ();
- this.hbox2.Name = "hbox2";
- this.hbox2.Spacing = 6;
- // Container child hbox2.Gtk.Box+BoxChild
- this.addButton = new global::Gtk.Button ();
- this.addButton.CanFocus = true;
- this.addButton.Name = "addButton";
- this.addButton.UseStock = true;
- this.addButton.UseUnderline = true;
- this.addButton.Label = "gtk-add";
- this.hbox2.Add (this.addButton);
- global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.addButton]));
- w15.PackType = ((global::Gtk.PackType)(1));
- w15.Position = 0;
- w15.Expand = false;
- w15.Fill = false;
- // Container child hbox2.Gtk.Box+BoxChild
- this.removeButton = new global::Gtk.Button ();
- this.removeButton.CanFocus = true;
- this.removeButton.Name = "removeButton";
- this.removeButton.UseStock = true;
- this.removeButton.UseUnderline = true;
- this.removeButton.Label = "gtk-remove";
- this.hbox2.Add (this.removeButton);
- global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.removeButton]));
- w16.PackType = ((global::Gtk.PackType)(1));
- w16.Position = 1;
- w16.Expand = false;
- w16.Fill = false;
- // Container child hbox2.Gtk.Box+BoxChild
- this.buttonExport = new global::Gtk.Button ();
- this.buttonExport.CanFocus = true;
- this.buttonExport.Name = "buttonExport";
- this.buttonExport.UseUnderline = true;
- this.buttonExport.Label = global::Mono.Unix.Catalog.GetString ("Export");
- this.hbox2.Add (this.buttonExport);
- global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.buttonExport]));
- w17.PackType = ((global::Gtk.PackType)(1));
- w17.Position = 2;
- w17.Expand = false;
- w17.Fill = false;
- this.vbox5.Add (this.hbox2);
- global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.hbox2]));
- w18.PackType = ((global::Gtk.PackType)(1));
- w18.Position = 1;
- w18.Expand = false;
- w18.Fill = false;
- this.GtkAlignment.Add (this.vbox5);
- this.vbox4.Add (this.GtkAlignment);
- global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkAlignment]));
- w20.Position = 3;
- this.Add (this.vbox4);
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor.OptionPanels
+{
+ public partial class HighlightingPanel
+ {
+ private global::Gtk.VBox vbox4;
+ private global::Gtk.Label GtkLabel4;
+ private global::Gtk.Alignment GtkAlignment3;
+ private global::Gtk.VBox vbox6;
+ private global::Gtk.CheckButton enableHighlightingCheckbutton;
+ private global::Gtk.CheckButton enableSemanticHighlightingCheckbutton;
+ private global::Gtk.Label GtkLabel5;
+ private global::Gtk.Alignment GtkAlignment;
+ private global::Gtk.VBox vbox5;
+ private global::Gtk.HBox hbox1;
+ private global::Gtk.ScrolledWindow scrolledwindow1;
+ private global::Gtk.TreeView styleTreeview;
+ private global::Gtk.VBox vbox1;
+ private global::Gtk.Button buttonNew;
+ private global::Gtk.Button buttonEdit;
+ private global::Gtk.HBox hbox2;
+ private global::Gtk.Button addButton;
+ private global::Gtk.Button removeButton;
+ private global::Gtk.Button buttonExport;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel
+ global::Stetic.BinContainer.Attach (this);
+ this.Name = "MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel";
+ // Container child MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel.Gtk.Container+ContainerChild
+ this.vbox4 = new global::Gtk.VBox ();
+ this.vbox4.Name = "vbox4";
+ this.vbox4.Spacing = 6;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.GtkLabel4 = new global::Gtk.Label ();
+ this.GtkLabel4.Name = "GtkLabel4";
+ this.GtkLabel4.Xalign = 0F;
+ this.GtkLabel4.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Syntax highlighting</b>");
+ this.GtkLabel4.UseMarkup = true;
+ this.vbox4.Add (this.GtkLabel4);
+ global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkLabel4]));
+ w1.Position = 0;
+ w1.Expand = false;
+ w1.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.GtkAlignment3 = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
+ this.GtkAlignment3.Name = "GtkAlignment3";
+ this.GtkAlignment3.LeftPadding = ((uint)(12));
+ // Container child GtkAlignment3.Gtk.Container+ContainerChild
+ this.vbox6 = new global::Gtk.VBox ();
+ this.vbox6.Name = "vbox6";
+ this.vbox6.Spacing = 6;
+ // Container child vbox6.Gtk.Box+BoxChild
+ this.enableHighlightingCheckbutton = new global::Gtk.CheckButton ();
+ this.enableHighlightingCheckbutton.CanFocus = true;
+ this.enableHighlightingCheckbutton.Name = "enableHighlightingCheckbutton";
+ this.enableHighlightingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Enable highlighting");
+ this.enableHighlightingCheckbutton.DrawIndicator = true;
+ this.enableHighlightingCheckbutton.UseUnderline = true;
+ this.vbox6.Add (this.enableHighlightingCheckbutton);
+ global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.enableHighlightingCheckbutton]));
+ w2.Position = 0;
+ w2.Expand = false;
+ w2.Fill = false;
+ // Container child vbox6.Gtk.Box+BoxChild
+ this.enableSemanticHighlightingCheckbutton = new global::Gtk.CheckButton ();
+ this.enableSemanticHighlightingCheckbutton.CanFocus = true;
+ this.enableSemanticHighlightingCheckbutton.Name = "enableSemanticHighlightingCheckbutton";
+ this.enableSemanticHighlightingCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("E_nable semantic highlighting");
+ this.enableSemanticHighlightingCheckbutton.DrawIndicator = true;
+ this.enableSemanticHighlightingCheckbutton.UseUnderline = true;
+ this.vbox6.Add (this.enableSemanticHighlightingCheckbutton);
+ global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.enableSemanticHighlightingCheckbutton]));
+ w3.Position = 1;
+ w3.Expand = false;
+ w3.Fill = false;
+ this.GtkAlignment3.Add (this.vbox6);
+ this.vbox4.Add (this.GtkAlignment3);
+ global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkAlignment3]));
+ w5.Position = 1;
+ w5.Expand = false;
+ w5.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.GtkLabel5 = new global::Gtk.Label ();
+ this.GtkLabel5.Name = "GtkLabel5";
+ this.GtkLabel5.Xalign = 0F;
+ this.GtkLabel5.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Color scheme</b>");
+ this.GtkLabel5.UseMarkup = true;
+ this.vbox4.Add (this.GtkLabel5);
+ global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkLabel5]));
+ w6.Position = 2;
+ w6.Expand = false;
+ w6.Fill = false;
+ // Container child vbox4.Gtk.Box+BoxChild
+ this.GtkAlignment = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
+ this.GtkAlignment.Name = "GtkAlignment";
+ this.GtkAlignment.LeftPadding = ((uint)(12));
+ // Container child GtkAlignment.Gtk.Container+ContainerChild
+ this.vbox5 = new global::Gtk.VBox ();
+ this.vbox5.Name = "vbox5";
+ this.vbox5.Spacing = 6;
+ // Container child vbox5.Gtk.Box+BoxChild
+ this.hbox1 = new global::Gtk.HBox ();
+ this.hbox1.Name = "hbox1";
+ this.hbox1.Spacing = 6;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.scrolledwindow1 = new global::Gtk.ScrolledWindow ();
+ this.scrolledwindow1.CanFocus = true;
+ this.scrolledwindow1.Name = "scrolledwindow1";
+ this.scrolledwindow1.ShadowType = ((global::Gtk.ShadowType)(1));
+ // Container child scrolledwindow1.Gtk.Container+ContainerChild
+ global::Gtk.Viewport w7 = new global::Gtk.Viewport ();
+ w7.ShadowType = ((global::Gtk.ShadowType)(0));
+ // Container child GtkViewport.Gtk.Container+ContainerChild
+ this.styleTreeview = new global::Gtk.TreeView ();
+ this.styleTreeview.CanFocus = true;
+ this.styleTreeview.Name = "styleTreeview";
+ this.styleTreeview.HeadersVisible = false;
+ w7.Add (this.styleTreeview);
+ this.scrolledwindow1.Add (w7);
+ this.hbox1.Add (this.scrolledwindow1);
+ global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.scrolledwindow1]));
+ w10.Position = 0;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.vbox1 = new global::Gtk.VBox ();
+ this.vbox1.Name = "vbox1";
+ this.vbox1.Spacing = 6;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.buttonNew = new global::Gtk.Button ();
+ this.buttonNew.CanFocus = true;
+ this.buttonNew.Name = "buttonNew";
+ this.buttonNew.UseStock = true;
+ this.buttonNew.UseUnderline = true;
+ this.buttonNew.Label = "gtk-new";
+ this.vbox1.Add (this.buttonNew);
+ global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.buttonNew]));
+ w11.Position = 0;
+ w11.Expand = false;
+ w11.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.buttonEdit = new global::Gtk.Button ();
+ this.buttonEdit.CanFocus = true;
+ this.buttonEdit.Name = "buttonEdit";
+ this.buttonEdit.UseUnderline = true;
+ this.buttonEdit.Label = global::Mono.Unix.Catalog.GetString ("_Edit");
+ this.vbox1.Add (this.buttonEdit);
+ global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.buttonEdit]));
+ w12.Position = 1;
+ w12.Expand = false;
+ w12.Fill = false;
+ this.hbox1.Add (this.vbox1);
+ global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.vbox1]));
+ w13.Position = 1;
+ w13.Expand = false;
+ w13.Fill = false;
+ this.vbox5.Add (this.hbox1);
+ global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.hbox1]));
+ w14.Position = 0;
+ // Container child vbox5.Gtk.Box+BoxChild
+ this.hbox2 = new global::Gtk.HBox ();
+ this.hbox2.Name = "hbox2";
+ this.hbox2.Spacing = 6;
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.addButton = new global::Gtk.Button ();
+ this.addButton.CanFocus = true;
+ this.addButton.Name = "addButton";
+ this.addButton.UseStock = true;
+ this.addButton.UseUnderline = true;
+ this.addButton.Label = "gtk-add";
+ this.hbox2.Add (this.addButton);
+ global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.addButton]));
+ w15.PackType = ((global::Gtk.PackType)(1));
+ w15.Position = 0;
+ w15.Expand = false;
+ w15.Fill = false;
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.removeButton = new global::Gtk.Button ();
+ this.removeButton.CanFocus = true;
+ this.removeButton.Name = "removeButton";
+ this.removeButton.UseStock = true;
+ this.removeButton.UseUnderline = true;
+ this.removeButton.Label = "gtk-remove";
+ this.hbox2.Add (this.removeButton);
+ global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.removeButton]));
+ w16.PackType = ((global::Gtk.PackType)(1));
+ w16.Position = 1;
+ w16.Expand = false;
+ w16.Fill = false;
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.buttonExport = new global::Gtk.Button ();
+ this.buttonExport.CanFocus = true;
+ this.buttonExport.Name = "buttonExport";
+ this.buttonExport.UseUnderline = true;
+ this.buttonExport.Label = global::Mono.Unix.Catalog.GetString ("Export");
+ this.hbox2.Add (this.buttonExport);
+ global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.buttonExport]));
+ w17.PackType = ((global::Gtk.PackType)(1));
+ w17.Position = 2;
+ w17.Expand = false;
+ w17.Fill = false;
+ this.vbox5.Add (this.hbox2);
+ global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.hbox2]));
+ w18.PackType = ((global::Gtk.PackType)(1));
+ w18.Position = 1;
+ w18.Expand = false;
+ w18.Fill = false;
+ this.GtkAlignment.Add (this.vbox5);
+ this.vbox4.Add (this.GtkAlignment);
+ global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.GtkAlignment]));
+ w20.Position = 3;
+ this.Add (this.vbox4);
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.MarkerPanel.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.MarkerPanel.cs
index 1569005d25..59ea5fdea3 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.MarkerPanel.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.MarkerPanel.cs
@@ -1,225 +1,225 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor.OptionPanels
-{
- public partial class MarkerPanel
- {
- private global::Gtk.VBox vbox1;
- private global::Gtk.Label GtkLabel9;
- private global::Gtk.Alignment alignment1;
- private global::Gtk.VBox vbox3;
- private global::Gtk.CheckButton showLineNumbersCheckbutton;
- private global::Gtk.CheckButton underlineErrorsCheckbutton;
- private global::Gtk.CheckButton highlightMatchingBracketCheckbutton;
- private global::Gtk.CheckButton highlightCurrentLineCheckbutton;
- private global::Gtk.CheckButton showRulerCheckbutton;
- private global::Gtk.CheckButton enableAnimationCheckbutton1;
- private global::Gtk.CheckButton enableHighlightUsagesCheckbutton;
- private global::Gtk.Label GtkLabel10;
- private global::Gtk.Alignment GtkAlignment;
- private global::Gtk.VBox vbox2;
- private global::Gtk.CheckButton showInvLinesCheckbutton;
- private global::Gtk.CheckButton showSpacesCheckbutton;
- private global::Gtk.CheckButton showTabsCheckbutton;
- private global::Gtk.CheckButton showEolCheckbutton;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.OptionPanels.MarkerPanel
- global::Stetic.BinContainer.Attach (this);
- this.Name = "MonoDevelop.SourceEditor.OptionPanels.MarkerPanel";
- // Container child MonoDevelop.SourceEditor.OptionPanels.MarkerPanel.Gtk.Container+ContainerChild
- this.vbox1 = new global::Gtk.VBox ();
- this.vbox1.Name = "vbox1";
- this.vbox1.Spacing = 6;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel9 = new global::Gtk.Label ();
- this.GtkLabel9.Name = "GtkLabel9";
- this.GtkLabel9.Xalign = 0F;
- this.GtkLabel9.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>General</b>");
- this.GtkLabel9.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel9);
- global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel9]));
- w1.Position = 0;
- w1.Expand = false;
- w1.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.alignment1 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
- this.alignment1.Name = "alignment1";
- this.alignment1.LeftPadding = ((uint)(12));
- // Container child alignment1.Gtk.Container+ContainerChild
- this.vbox3 = new global::Gtk.VBox ();
- this.vbox3.Name = "vbox3";
- this.vbox3.Spacing = 6;
- // Container child vbox3.Gtk.Box+BoxChild
- this.showLineNumbersCheckbutton = new global::Gtk.CheckButton ();
- this.showLineNumbersCheckbutton.CanFocus = true;
- this.showLineNumbersCheckbutton.Name = "showLineNumbersCheckbutton";
- this.showLineNumbersCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Show line numbers");
- this.showLineNumbersCheckbutton.DrawIndicator = true;
- this.showLineNumbersCheckbutton.UseUnderline = true;
- this.vbox3.Add (this.showLineNumbersCheckbutton);
- global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.showLineNumbersCheckbutton]));
- w2.Position = 0;
- w2.Expand = false;
- w2.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.underlineErrorsCheckbutton = new global::Gtk.CheckButton ();
- this.underlineErrorsCheckbutton.CanFocus = true;
- this.underlineErrorsCheckbutton.Name = "underlineErrorsCheckbutton";
- this.underlineErrorsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Underline errors");
- this.underlineErrorsCheckbutton.DrawIndicator = true;
- this.underlineErrorsCheckbutton.UseUnderline = true;
- this.vbox3.Add (this.underlineErrorsCheckbutton);
- global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.underlineErrorsCheckbutton]));
- w3.Position = 1;
- w3.Expand = false;
- w3.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.highlightMatchingBracketCheckbutton = new global::Gtk.CheckButton ();
- this.highlightMatchingBracketCheckbutton.CanFocus = true;
- this.highlightMatchingBracketCheckbutton.Name = "highlightMatchingBracketCheckbutton";
- this.highlightMatchingBracketCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Highlight matching bracket");
- this.highlightMatchingBracketCheckbutton.DrawIndicator = true;
- this.highlightMatchingBracketCheckbutton.UseUnderline = true;
- this.vbox3.Add (this.highlightMatchingBracketCheckbutton);
- global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.highlightMatchingBracketCheckbutton]));
- w4.Position = 2;
- w4.Expand = false;
- w4.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.highlightCurrentLineCheckbutton = new global::Gtk.CheckButton ();
- this.highlightCurrentLineCheckbutton.CanFocus = true;
- this.highlightCurrentLineCheckbutton.Name = "highlightCurrentLineCheckbutton";
- this.highlightCurrentLineCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Highlight _current line");
- this.highlightCurrentLineCheckbutton.DrawIndicator = true;
- this.highlightCurrentLineCheckbutton.UseUnderline = true;
- this.vbox3.Add (this.highlightCurrentLineCheckbutton);
- global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.highlightCurrentLineCheckbutton]));
- w5.Position = 3;
- w5.Expand = false;
- w5.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.showRulerCheckbutton = new global::Gtk.CheckButton ();
- this.showRulerCheckbutton.CanFocus = true;
- this.showRulerCheckbutton.Name = "showRulerCheckbutton";
- this.showRulerCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Show _column ruler");
- this.showRulerCheckbutton.DrawIndicator = true;
- this.showRulerCheckbutton.UseUnderline = true;
- this.vbox3.Add (this.showRulerCheckbutton);
- global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.showRulerCheckbutton]));
- w6.Position = 4;
- w6.Expand = false;
- w6.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.enableAnimationCheckbutton1 = new global::Gtk.CheckButton ();
- this.enableAnimationCheckbutton1.CanFocus = true;
- this.enableAnimationCheckbutton1.Name = "enableAnimationCheckbutton1";
- this.enableAnimationCheckbutton1.Label = global::Mono.Unix.Catalog.GetString ("_Animations enabled");
- this.enableAnimationCheckbutton1.DrawIndicator = true;
- this.enableAnimationCheckbutton1.UseUnderline = true;
- this.vbox3.Add (this.enableAnimationCheckbutton1);
- global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.enableAnimationCheckbutton1]));
- w7.Position = 5;
- w7.Expand = false;
- w7.Fill = false;
- // Container child vbox3.Gtk.Box+BoxChild
- this.enableHighlightUsagesCheckbutton = new global::Gtk.CheckButton ();
- this.enableHighlightUsagesCheckbutton.CanFocus = true;
- this.enableHighlightUsagesCheckbutton.Name = "enableHighlightUsagesCheckbutton";
- this.enableHighlightUsagesCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Enable highlighting of usages");
- this.enableHighlightUsagesCheckbutton.DrawIndicator = true;
- this.enableHighlightUsagesCheckbutton.UseUnderline = true;
- this.vbox3.Add (this.enableHighlightUsagesCheckbutton);
- global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.enableHighlightUsagesCheckbutton]));
- w8.Position = 6;
- w8.Expand = false;
- w8.Fill = false;
- this.alignment1.Add (this.vbox3);
- this.vbox1.Add (this.alignment1);
- global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment1]));
- w10.Position = 1;
- w10.Expand = false;
- w10.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkLabel10 = new global::Gtk.Label ();
- this.GtkLabel10.Name = "GtkLabel10";
- this.GtkLabel10.Xalign = 0F;
- this.GtkLabel10.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Whitespace Markers</b>");
- this.GtkLabel10.UseMarkup = true;
- this.vbox1.Add (this.GtkLabel10);
- global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel10]));
- w11.Position = 2;
- w11.Expand = false;
- w11.Fill = false;
- // Container child vbox1.Gtk.Box+BoxChild
- this.GtkAlignment = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
- this.GtkAlignment.Name = "GtkAlignment";
- this.GtkAlignment.LeftPadding = ((uint)(12));
- // Container child GtkAlignment.Gtk.Container+ContainerChild
- this.vbox2 = new global::Gtk.VBox ();
- this.vbox2.Name = "vbox2";
- this.vbox2.Spacing = 6;
- // Container child vbox2.Gtk.Box+BoxChild
- this.showInvLinesCheckbutton = new global::Gtk.CheckButton ();
- this.showInvLinesCheckbutton.CanFocus = true;
- this.showInvLinesCheckbutton.Name = "showInvLinesCheckbutton";
- this.showInvLinesCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Invalid lines");
- this.showInvLinesCheckbutton.DrawIndicator = true;
- this.showInvLinesCheckbutton.UseUnderline = true;
- this.vbox2.Add (this.showInvLinesCheckbutton);
- global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showInvLinesCheckbutton]));
- w12.Position = 0;
- w12.Expand = false;
- w12.Fill = false;
- // Container child vbox2.Gtk.Box+BoxChild
- this.showSpacesCheckbutton = new global::Gtk.CheckButton ();
- this.showSpacesCheckbutton.CanFocus = true;
- this.showSpacesCheckbutton.Name = "showSpacesCheckbutton";
- this.showSpacesCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("S_paces");
- this.showSpacesCheckbutton.DrawIndicator = true;
- this.showSpacesCheckbutton.UseUnderline = true;
- this.vbox2.Add (this.showSpacesCheckbutton);
- global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showSpacesCheckbutton]));
- w13.Position = 1;
- w13.Expand = false;
- w13.Fill = false;
- // Container child vbox2.Gtk.Box+BoxChild
- this.showTabsCheckbutton = new global::Gtk.CheckButton ();
- this.showTabsCheckbutton.CanFocus = true;
- this.showTabsCheckbutton.Name = "showTabsCheckbutton";
- this.showTabsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Tabs");
- this.showTabsCheckbutton.DrawIndicator = true;
- this.showTabsCheckbutton.UseUnderline = true;
- this.vbox2.Add (this.showTabsCheckbutton);
- global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showTabsCheckbutton]));
- w14.Position = 2;
- w14.Expand = false;
- w14.Fill = false;
- // Container child vbox2.Gtk.Box+BoxChild
- this.showEolCheckbutton = new global::Gtk.CheckButton ();
- this.showEolCheckbutton.CanFocus = true;
- this.showEolCheckbutton.Name = "showEolCheckbutton";
- this.showEolCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_End of line");
- this.showEolCheckbutton.DrawIndicator = true;
- this.showEolCheckbutton.UseUnderline = true;
- this.vbox2.Add (this.showEolCheckbutton);
- global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showEolCheckbutton]));
- w15.Position = 3;
- w15.Expand = false;
- w15.Fill = false;
- this.GtkAlignment.Add (this.vbox2);
- this.vbox1.Add (this.GtkAlignment);
- global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkAlignment]));
- w17.Position = 3;
- w17.Expand = false;
- w17.Fill = false;
- this.Add (this.vbox1);
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor.OptionPanels
+{
+ public partial class MarkerPanel
+ {
+ private global::Gtk.VBox vbox1;
+ private global::Gtk.Label GtkLabel9;
+ private global::Gtk.Alignment alignment1;
+ private global::Gtk.VBox vbox3;
+ private global::Gtk.CheckButton showLineNumbersCheckbutton;
+ private global::Gtk.CheckButton underlineErrorsCheckbutton;
+ private global::Gtk.CheckButton highlightMatchingBracketCheckbutton;
+ private global::Gtk.CheckButton highlightCurrentLineCheckbutton;
+ private global::Gtk.CheckButton showRulerCheckbutton;
+ private global::Gtk.CheckButton enableAnimationCheckbutton1;
+ private global::Gtk.CheckButton enableHighlightUsagesCheckbutton;
+ private global::Gtk.Label GtkLabel10;
+ private global::Gtk.Alignment GtkAlignment;
+ private global::Gtk.VBox vbox2;
+ private global::Gtk.CheckButton showInvLinesCheckbutton;
+ private global::Gtk.CheckButton showSpacesCheckbutton;
+ private global::Gtk.CheckButton showTabsCheckbutton;
+ private global::Gtk.CheckButton showEolCheckbutton;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.OptionPanels.MarkerPanel
+ global::Stetic.BinContainer.Attach (this);
+ this.Name = "MonoDevelop.SourceEditor.OptionPanels.MarkerPanel";
+ // Container child MonoDevelop.SourceEditor.OptionPanels.MarkerPanel.Gtk.Container+ContainerChild
+ this.vbox1 = new global::Gtk.VBox ();
+ this.vbox1.Name = "vbox1";
+ this.vbox1.Spacing = 6;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel9 = new global::Gtk.Label ();
+ this.GtkLabel9.Name = "GtkLabel9";
+ this.GtkLabel9.Xalign = 0F;
+ this.GtkLabel9.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>General</b>");
+ this.GtkLabel9.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel9);
+ global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel9]));
+ w1.Position = 0;
+ w1.Expand = false;
+ w1.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.alignment1 = new global::Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
+ this.alignment1.Name = "alignment1";
+ this.alignment1.LeftPadding = ((uint)(12));
+ // Container child alignment1.Gtk.Container+ContainerChild
+ this.vbox3 = new global::Gtk.VBox ();
+ this.vbox3.Name = "vbox3";
+ this.vbox3.Spacing = 6;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.showLineNumbersCheckbutton = new global::Gtk.CheckButton ();
+ this.showLineNumbersCheckbutton.CanFocus = true;
+ this.showLineNumbersCheckbutton.Name = "showLineNumbersCheckbutton";
+ this.showLineNumbersCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Show line numbers");
+ this.showLineNumbersCheckbutton.DrawIndicator = true;
+ this.showLineNumbersCheckbutton.UseUnderline = true;
+ this.vbox3.Add (this.showLineNumbersCheckbutton);
+ global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.showLineNumbersCheckbutton]));
+ w2.Position = 0;
+ w2.Expand = false;
+ w2.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.underlineErrorsCheckbutton = new global::Gtk.CheckButton ();
+ this.underlineErrorsCheckbutton.CanFocus = true;
+ this.underlineErrorsCheckbutton.Name = "underlineErrorsCheckbutton";
+ this.underlineErrorsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Underline errors");
+ this.underlineErrorsCheckbutton.DrawIndicator = true;
+ this.underlineErrorsCheckbutton.UseUnderline = true;
+ this.vbox3.Add (this.underlineErrorsCheckbutton);
+ global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.underlineErrorsCheckbutton]));
+ w3.Position = 1;
+ w3.Expand = false;
+ w3.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.highlightMatchingBracketCheckbutton = new global::Gtk.CheckButton ();
+ this.highlightMatchingBracketCheckbutton.CanFocus = true;
+ this.highlightMatchingBracketCheckbutton.Name = "highlightMatchingBracketCheckbutton";
+ this.highlightMatchingBracketCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Highlight matching bracket");
+ this.highlightMatchingBracketCheckbutton.DrawIndicator = true;
+ this.highlightMatchingBracketCheckbutton.UseUnderline = true;
+ this.vbox3.Add (this.highlightMatchingBracketCheckbutton);
+ global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.highlightMatchingBracketCheckbutton]));
+ w4.Position = 2;
+ w4.Expand = false;
+ w4.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.highlightCurrentLineCheckbutton = new global::Gtk.CheckButton ();
+ this.highlightCurrentLineCheckbutton.CanFocus = true;
+ this.highlightCurrentLineCheckbutton.Name = "highlightCurrentLineCheckbutton";
+ this.highlightCurrentLineCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Highlight _current line");
+ this.highlightCurrentLineCheckbutton.DrawIndicator = true;
+ this.highlightCurrentLineCheckbutton.UseUnderline = true;
+ this.vbox3.Add (this.highlightCurrentLineCheckbutton);
+ global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.highlightCurrentLineCheckbutton]));
+ w5.Position = 3;
+ w5.Expand = false;
+ w5.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.showRulerCheckbutton = new global::Gtk.CheckButton ();
+ this.showRulerCheckbutton.CanFocus = true;
+ this.showRulerCheckbutton.Name = "showRulerCheckbutton";
+ this.showRulerCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("Show _column ruler");
+ this.showRulerCheckbutton.DrawIndicator = true;
+ this.showRulerCheckbutton.UseUnderline = true;
+ this.vbox3.Add (this.showRulerCheckbutton);
+ global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.showRulerCheckbutton]));
+ w6.Position = 4;
+ w6.Expand = false;
+ w6.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.enableAnimationCheckbutton1 = new global::Gtk.CheckButton ();
+ this.enableAnimationCheckbutton1.CanFocus = true;
+ this.enableAnimationCheckbutton1.Name = "enableAnimationCheckbutton1";
+ this.enableAnimationCheckbutton1.Label = global::Mono.Unix.Catalog.GetString ("_Animations enabled");
+ this.enableAnimationCheckbutton1.DrawIndicator = true;
+ this.enableAnimationCheckbutton1.UseUnderline = true;
+ this.vbox3.Add (this.enableAnimationCheckbutton1);
+ global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.enableAnimationCheckbutton1]));
+ w7.Position = 5;
+ w7.Expand = false;
+ w7.Fill = false;
+ // Container child vbox3.Gtk.Box+BoxChild
+ this.enableHighlightUsagesCheckbutton = new global::Gtk.CheckButton ();
+ this.enableHighlightUsagesCheckbutton.CanFocus = true;
+ this.enableHighlightUsagesCheckbutton.Name = "enableHighlightUsagesCheckbutton";
+ this.enableHighlightUsagesCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Enable highlighting of usages");
+ this.enableHighlightUsagesCheckbutton.DrawIndicator = true;
+ this.enableHighlightUsagesCheckbutton.UseUnderline = true;
+ this.vbox3.Add (this.enableHighlightUsagesCheckbutton);
+ global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.enableHighlightUsagesCheckbutton]));
+ w8.Position = 6;
+ w8.Expand = false;
+ w8.Fill = false;
+ this.alignment1.Add (this.vbox3);
+ this.vbox1.Add (this.alignment1);
+ global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.alignment1]));
+ w10.Position = 1;
+ w10.Expand = false;
+ w10.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkLabel10 = new global::Gtk.Label ();
+ this.GtkLabel10.Name = "GtkLabel10";
+ this.GtkLabel10.Xalign = 0F;
+ this.GtkLabel10.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Whitespace Markers</b>");
+ this.GtkLabel10.UseMarkup = true;
+ this.vbox1.Add (this.GtkLabel10);
+ global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkLabel10]));
+ w11.Position = 2;
+ w11.Expand = false;
+ w11.Fill = false;
+ // Container child vbox1.Gtk.Box+BoxChild
+ this.GtkAlignment = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
+ this.GtkAlignment.Name = "GtkAlignment";
+ this.GtkAlignment.LeftPadding = ((uint)(12));
+ // Container child GtkAlignment.Gtk.Container+ContainerChild
+ this.vbox2 = new global::Gtk.VBox ();
+ this.vbox2.Name = "vbox2";
+ this.vbox2.Spacing = 6;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.showInvLinesCheckbutton = new global::Gtk.CheckButton ();
+ this.showInvLinesCheckbutton.CanFocus = true;
+ this.showInvLinesCheckbutton.Name = "showInvLinesCheckbutton";
+ this.showInvLinesCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Invalid lines");
+ this.showInvLinesCheckbutton.DrawIndicator = true;
+ this.showInvLinesCheckbutton.UseUnderline = true;
+ this.vbox2.Add (this.showInvLinesCheckbutton);
+ global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showInvLinesCheckbutton]));
+ w12.Position = 0;
+ w12.Expand = false;
+ w12.Fill = false;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.showSpacesCheckbutton = new global::Gtk.CheckButton ();
+ this.showSpacesCheckbutton.CanFocus = true;
+ this.showSpacesCheckbutton.Name = "showSpacesCheckbutton";
+ this.showSpacesCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("S_paces");
+ this.showSpacesCheckbutton.DrawIndicator = true;
+ this.showSpacesCheckbutton.UseUnderline = true;
+ this.vbox2.Add (this.showSpacesCheckbutton);
+ global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showSpacesCheckbutton]));
+ w13.Position = 1;
+ w13.Expand = false;
+ w13.Fill = false;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.showTabsCheckbutton = new global::Gtk.CheckButton ();
+ this.showTabsCheckbutton.CanFocus = true;
+ this.showTabsCheckbutton.Name = "showTabsCheckbutton";
+ this.showTabsCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_Tabs");
+ this.showTabsCheckbutton.DrawIndicator = true;
+ this.showTabsCheckbutton.UseUnderline = true;
+ this.vbox2.Add (this.showTabsCheckbutton);
+ global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showTabsCheckbutton]));
+ w14.Position = 2;
+ w14.Expand = false;
+ w14.Fill = false;
+ // Container child vbox2.Gtk.Box+BoxChild
+ this.showEolCheckbutton = new global::Gtk.CheckButton ();
+ this.showEolCheckbutton.CanFocus = true;
+ this.showEolCheckbutton.Name = "showEolCheckbutton";
+ this.showEolCheckbutton.Label = global::Mono.Unix.Catalog.GetString ("_End of line");
+ this.showEolCheckbutton.DrawIndicator = true;
+ this.showEolCheckbutton.UseUnderline = true;
+ this.vbox2.Add (this.showEolCheckbutton);
+ global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showEolCheckbutton]));
+ w15.Position = 3;
+ w15.Expand = false;
+ w15.Fill = false;
+ this.GtkAlignment.Add (this.vbox2);
+ this.vbox1.Add (this.GtkAlignment);
+ global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkAlignment]));
+ w17.Position = 3;
+ w17.Expand = false;
+ w17.Fill = false;
+ this.Add (this.vbox1);
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.cs
index 2bbee6e9d6..8d919b5500 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.cs
@@ -1,150 +1,150 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor.OptionPanels
-{
- public partial class NewColorShemeDialog
- {
- private global::Gtk.Table table1;
- private global::Gtk.ComboBox comboboxBaseStyle;
- private global::Gtk.Entry entryDescription;
- private global::Gtk.Entry entryName;
- private global::Gtk.Label label1;
- private global::Gtk.Label label2;
- private global::Gtk.Label label3;
- private global::Gtk.Button buttonCancel;
- private global::Gtk.Button buttonOk;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog
- this.Name = "MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog";
- this.Title = global::Mono.Unix.Catalog.GetString ("Create new color sheme");
- this.WindowPosition = ((global::Gtk.WindowPosition)(4));
- this.BorderWidth = ((uint)(6));
- // Internal child MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.VBox
- global::Gtk.VBox w1 = this.VBox;
- w1.Name = "dialog1_VBox";
- w1.BorderWidth = ((uint)(2));
- // Container child dialog1_VBox.Gtk.Box+BoxChild
- this.table1 = new global::Gtk.Table (((uint)(3)), ((uint)(2)), false);
- this.table1.Name = "table1";
- this.table1.RowSpacing = ((uint)(6));
- this.table1.ColumnSpacing = ((uint)(6));
- // Container child table1.Gtk.Table+TableChild
- this.comboboxBaseStyle = global::Gtk.ComboBox.NewText ();
- this.comboboxBaseStyle.Name = "comboboxBaseStyle";
- this.table1.Add (this.comboboxBaseStyle);
- global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table1 [this.comboboxBaseStyle]));
- w2.LeftAttach = ((uint)(1));
- w2.RightAttach = ((uint)(2));
- w2.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.entryDescription = new global::Gtk.Entry ();
- this.entryDescription.CanFocus = true;
- this.entryDescription.Name = "entryDescription";
- this.entryDescription.IsEditable = true;
- this.entryDescription.InvisibleChar = '●';
- this.table1.Add (this.entryDescription);
- global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table1 [this.entryDescription]));
- w3.TopAttach = ((uint)(2));
- w3.BottomAttach = ((uint)(3));
- w3.LeftAttach = ((uint)(1));
- w3.RightAttach = ((uint)(2));
- w3.XOptions = ((global::Gtk.AttachOptions)(4));
- w3.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.entryName = new global::Gtk.Entry ();
- this.entryName.CanFocus = true;
- this.entryName.Name = "entryName";
- this.entryName.IsEditable = true;
- this.entryName.InvisibleChar = '●';
- this.table1.Add (this.entryName);
- global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table1 [this.entryName]));
- w4.TopAttach = ((uint)(1));
- w4.BottomAttach = ((uint)(2));
- w4.LeftAttach = ((uint)(1));
- w4.RightAttach = ((uint)(2));
- w4.XOptions = ((global::Gtk.AttachOptions)(4));
- w4.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.label1 = new global::Gtk.Label ();
- this.label1.Name = "label1";
- this.label1.Xalign = 0F;
- this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Based on:");
- this.label1.UseMarkup = true;
- this.label1.UseUnderline = true;
- this.table1.Add (this.label1);
- global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table1 [this.label1]));
- w5.XOptions = ((global::Gtk.AttachOptions)(4));
- w5.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.label2 = new global::Gtk.Label ();
- this.label2.Name = "label2";
- this.label2.Xalign = 0F;
- this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("_Name:");
- this.label2.UseUnderline = true;
- this.table1.Add (this.label2);
- global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table1 [this.label2]));
- w6.TopAttach = ((uint)(1));
- w6.BottomAttach = ((uint)(2));
- w6.XOptions = ((global::Gtk.AttachOptions)(4));
- w6.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table1.Gtk.Table+TableChild
- this.label3 = new global::Gtk.Label ();
- this.label3.Name = "label3";
- this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("_Description:");
- this.label3.UseUnderline = true;
- this.table1.Add (this.label3);
- global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table1 [this.label3]));
- w7.TopAttach = ((uint)(2));
- w7.BottomAttach = ((uint)(3));
- w7.XOptions = ((global::Gtk.AttachOptions)(4));
- w7.YOptions = ((global::Gtk.AttachOptions)(4));
- w1.Add (this.table1);
- global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(w1 [this.table1]));
- w8.Position = 0;
- w8.Expand = false;
- w8.Fill = false;
- // Internal child MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.ActionArea
- global::Gtk.HButtonBox w9 = this.ActionArea;
- w9.Name = "dialog1_ActionArea";
- w9.Spacing = 10;
- w9.BorderWidth = ((uint)(5));
- w9.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
- // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
- this.buttonCancel = new global::Gtk.Button ();
- this.buttonCancel.CanDefault = true;
- this.buttonCancel.CanFocus = true;
- this.buttonCancel.Name = "buttonCancel";
- this.buttonCancel.UseStock = true;
- this.buttonCancel.UseUnderline = true;
- this.buttonCancel.Label = "gtk-cancel";
- this.AddActionWidget (this.buttonCancel, -6);
- global::Gtk.ButtonBox.ButtonBoxChild w10 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w9 [this.buttonCancel]));
- w10.Expand = false;
- w10.Fill = false;
- // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
- this.buttonOk = new global::Gtk.Button ();
- this.buttonOk.CanDefault = true;
- this.buttonOk.CanFocus = true;
- this.buttonOk.Name = "buttonOk";
- this.buttonOk.UseStock = true;
- this.buttonOk.UseUnderline = true;
- this.buttonOk.Label = "gtk-ok";
- this.AddActionWidget (this.buttonOk, -5);
- global::Gtk.ButtonBox.ButtonBoxChild w11 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w9 [this.buttonOk]));
- w11.Position = 1;
- w11.Expand = false;
- w11.Fill = false;
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.DefaultWidth = 393;
- this.DefaultHeight = 148;
- this.label2.MnemonicWidget = this.entryName;
- this.label3.MnemonicWidget = this.entryDescription;
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor.OptionPanels
+{
+ public partial class NewColorShemeDialog
+ {
+ private global::Gtk.Table table1;
+ private global::Gtk.ComboBox comboboxBaseStyle;
+ private global::Gtk.Entry entryDescription;
+ private global::Gtk.Entry entryName;
+ private global::Gtk.Label label1;
+ private global::Gtk.Label label2;
+ private global::Gtk.Label label3;
+ private global::Gtk.Button buttonCancel;
+ private global::Gtk.Button buttonOk;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog
+ this.Name = "MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog";
+ this.Title = global::Mono.Unix.Catalog.GetString ("Create new color sheme");
+ this.WindowPosition = ((global::Gtk.WindowPosition)(4));
+ this.BorderWidth = ((uint)(6));
+ // Internal child MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.VBox
+ global::Gtk.VBox w1 = this.VBox;
+ w1.Name = "dialog1_VBox";
+ w1.BorderWidth = ((uint)(2));
+ // Container child dialog1_VBox.Gtk.Box+BoxChild
+ this.table1 = new global::Gtk.Table (((uint)(3)), ((uint)(2)), false);
+ this.table1.Name = "table1";
+ this.table1.RowSpacing = ((uint)(6));
+ this.table1.ColumnSpacing = ((uint)(6));
+ // Container child table1.Gtk.Table+TableChild
+ this.comboboxBaseStyle = global::Gtk.ComboBox.NewText ();
+ this.comboboxBaseStyle.Name = "comboboxBaseStyle";
+ this.table1.Add (this.comboboxBaseStyle);
+ global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table1 [this.comboboxBaseStyle]));
+ w2.LeftAttach = ((uint)(1));
+ w2.RightAttach = ((uint)(2));
+ w2.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.entryDescription = new global::Gtk.Entry ();
+ this.entryDescription.CanFocus = true;
+ this.entryDescription.Name = "entryDescription";
+ this.entryDescription.IsEditable = true;
+ this.entryDescription.InvisibleChar = '●';
+ this.table1.Add (this.entryDescription);
+ global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table1 [this.entryDescription]));
+ w3.TopAttach = ((uint)(2));
+ w3.BottomAttach = ((uint)(3));
+ w3.LeftAttach = ((uint)(1));
+ w3.RightAttach = ((uint)(2));
+ w3.XOptions = ((global::Gtk.AttachOptions)(4));
+ w3.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.entryName = new global::Gtk.Entry ();
+ this.entryName.CanFocus = true;
+ this.entryName.Name = "entryName";
+ this.entryName.IsEditable = true;
+ this.entryName.InvisibleChar = '●';
+ this.table1.Add (this.entryName);
+ global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table1 [this.entryName]));
+ w4.TopAttach = ((uint)(1));
+ w4.BottomAttach = ((uint)(2));
+ w4.LeftAttach = ((uint)(1));
+ w4.RightAttach = ((uint)(2));
+ w4.XOptions = ((global::Gtk.AttachOptions)(4));
+ w4.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.label1 = new global::Gtk.Label ();
+ this.label1.Name = "label1";
+ this.label1.Xalign = 0F;
+ this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("_Based on:");
+ this.label1.UseMarkup = true;
+ this.label1.UseUnderline = true;
+ this.table1.Add (this.label1);
+ global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table1 [this.label1]));
+ w5.XOptions = ((global::Gtk.AttachOptions)(4));
+ w5.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.label2 = new global::Gtk.Label ();
+ this.label2.Name = "label2";
+ this.label2.Xalign = 0F;
+ this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("_Name:");
+ this.label2.UseUnderline = true;
+ this.table1.Add (this.label2);
+ global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table1 [this.label2]));
+ w6.TopAttach = ((uint)(1));
+ w6.BottomAttach = ((uint)(2));
+ w6.XOptions = ((global::Gtk.AttachOptions)(4));
+ w6.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table1.Gtk.Table+TableChild
+ this.label3 = new global::Gtk.Label ();
+ this.label3.Name = "label3";
+ this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("_Description:");
+ this.label3.UseUnderline = true;
+ this.table1.Add (this.label3);
+ global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table1 [this.label3]));
+ w7.TopAttach = ((uint)(2));
+ w7.BottomAttach = ((uint)(3));
+ w7.XOptions = ((global::Gtk.AttachOptions)(4));
+ w7.YOptions = ((global::Gtk.AttachOptions)(4));
+ w1.Add (this.table1);
+ global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(w1 [this.table1]));
+ w8.Position = 0;
+ w8.Expand = false;
+ w8.Fill = false;
+ // Internal child MonoDevelop.SourceEditor.OptionPanels.NewColorShemeDialog.ActionArea
+ global::Gtk.HButtonBox w9 = this.ActionArea;
+ w9.Name = "dialog1_ActionArea";
+ w9.Spacing = 10;
+ w9.BorderWidth = ((uint)(5));
+ w9.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
+ // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
+ this.buttonCancel = new global::Gtk.Button ();
+ this.buttonCancel.CanDefault = true;
+ this.buttonCancel.CanFocus = true;
+ this.buttonCancel.Name = "buttonCancel";
+ this.buttonCancel.UseStock = true;
+ this.buttonCancel.UseUnderline = true;
+ this.buttonCancel.Label = "gtk-cancel";
+ this.AddActionWidget (this.buttonCancel, -6);
+ global::Gtk.ButtonBox.ButtonBoxChild w10 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w9 [this.buttonCancel]));
+ w10.Expand = false;
+ w10.Fill = false;
+ // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
+ this.buttonOk = new global::Gtk.Button ();
+ this.buttonOk.CanDefault = true;
+ this.buttonOk.CanFocus = true;
+ this.buttonOk.Name = "buttonOk";
+ this.buttonOk.UseStock = true;
+ this.buttonOk.UseUnderline = true;
+ this.buttonOk.Label = "gtk-ok";
+ this.AddActionWidget (this.buttonOk, -5);
+ global::Gtk.ButtonBox.ButtonBoxChild w11 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w9 [this.buttonOk]));
+ w11.Position = 1;
+ w11.Expand = false;
+ w11.Fill = false;
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.DefaultWidth = 393;
+ this.DefaultHeight = 148;
+ this.label2.MnemonicWidget = this.entryName;
+ this.label3.MnemonicWidget = this.entryDescription;
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.PrintSettingsWidget.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.PrintSettingsWidget.cs
index 19b721d224..397cff6550 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.PrintSettingsWidget.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.PrintSettingsWidget.cs
@@ -1,19 +1,19 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor
-{
- internal partial class PrintSettingsWidget
- {
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.PrintSettingsWidget
- global::Stetic.BinContainer.Attach (this);
- this.Name = "MonoDevelop.SourceEditor.PrintSettingsWidget";
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.Hide ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor
+{
+ internal partial class PrintSettingsWidget
+ {
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.PrintSettingsWidget
+ global::Stetic.BinContainer.Attach (this);
+ this.Name = "MonoDevelop.SourceEditor.PrintSettingsWidget";
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.Hide ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.SearchAndReplaceWidget.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.SearchAndReplaceWidget.cs
index 73391b0e15..c2f54dbc59 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.SearchAndReplaceWidget.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/MonoDevelop.SourceEditor.SearchAndReplaceWidget.cs
@@ -1,228 +1,228 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace MonoDevelop.SourceEditor
-{
- internal partial class SearchAndReplaceWidget
- {
- private global::Gtk.Table table;
- private global::Gtk.Button buttonSearchMode;
- private global::Gtk.Arrow searchButtonModeArrow;
- private global::Gtk.HBox hbox1;
- private global::MonoDevelop.Components.SearchEntry searchEntry;
- private global::Gtk.Button buttonSearchBackward;
- private global::Gtk.EventBox eventbox2;
- private global::Gtk.Image image2;
- private global::Gtk.Button buttonSearchForward;
- private global::Gtk.EventBox eventbox3;
- private global::Gtk.Image image3;
- private global::Gtk.Button closeButton;
- private global::Gtk.EventBox eventbox4;
- private global::Gtk.Image image4;
- private global::Gtk.HBox hbox2;
- private global::Gtk.Entry entryReplace;
- private global::Gtk.Button buttonReplace;
- private global::Gtk.EventBox eventbox5;
- private global::Gtk.Image image5;
- private global::Gtk.Button buttonReplaceAll;
- private global::Gtk.HBox hbox3;
- private global::Gtk.EventBox eventbox6;
- private global::Gtk.Image image6;
- private global::Gtk.Label label1;
-
- protected virtual void Build ()
- {
- global::Stetic.Gui.Initialize (this);
- // Widget MonoDevelop.SourceEditor.SearchAndReplaceWidget
- global::Stetic.BinContainer.Attach (this);
- this.Name = "MonoDevelop.SourceEditor.SearchAndReplaceWidget";
- // Container child MonoDevelop.SourceEditor.SearchAndReplaceWidget.Gtk.Container+ContainerChild
- this.table = new global::Gtk.Table (((uint)(2)), ((uint)(2)), false);
- this.table.Name = "table";
- this.table.BorderWidth = ((uint)(4));
- // Container child table.Gtk.Table+TableChild
- this.buttonSearchMode = new global::Gtk.Button ();
- this.buttonSearchMode.CanFocus = true;
- this.buttonSearchMode.Name = "buttonSearchMode";
- // Container child buttonSearchMode.Gtk.Container+ContainerChild
- this.searchButtonModeArrow = new global::Gtk.Arrow (((global::Gtk.ArrowType)(0)), ((global::Gtk.ShadowType)(0)));
- this.searchButtonModeArrow.Name = "searchButtonModeArrow";
- this.buttonSearchMode.Add (this.searchButtonModeArrow);
- this.buttonSearchMode.Label = null;
- this.table.Add (this.buttonSearchMode);
- global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table [this.buttonSearchMode]));
- w2.XOptions = ((global::Gtk.AttachOptions)(4));
- w2.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table.Gtk.Table+TableChild
- this.hbox1 = new global::Gtk.HBox ();
- this.hbox1.Name = "hbox1";
- // Container child hbox1.Gtk.Box+BoxChild
- this.searchEntry = new global::MonoDevelop.Components.SearchEntry ();
- this.searchEntry.Name = "searchEntry";
- this.searchEntry.ForceFilterButtonVisible = false;
- this.searchEntry.IsCheckMenu = false;
- this.searchEntry.ActiveFilterID = 0;
- this.searchEntry.Ready = false;
- this.searchEntry.HasFocus = false;
- this.hbox1.Add (this.searchEntry);
- global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.searchEntry]));
- w3.Position = 0;
- // Container child hbox1.Gtk.Box+BoxChild
- this.buttonSearchBackward = new global::Gtk.Button ();
- this.buttonSearchBackward.CanFocus = true;
- this.buttonSearchBackward.Name = "buttonSearchBackward";
- this.buttonSearchBackward.Relief = ((global::Gtk.ReliefStyle)(2));
- // Container child buttonSearchBackward.Gtk.Container+ContainerChild
- this.eventbox2 = new global::Gtk.EventBox ();
- this.eventbox2.Name = "eventbox2";
- this.eventbox2.AboveChild = true;
- this.eventbox2.VisibleWindow = false;
- // Container child eventbox2.Gtk.Container+ContainerChild
- this.image2 = new global::Gtk.Image ();
- this.image2.Name = "image2";
- this.image2.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-go-up", global::Gtk.IconSize.Menu);
- this.eventbox2.Add (this.image2);
- this.buttonSearchBackward.Add (this.eventbox2);
- this.buttonSearchBackward.Label = null;
- this.hbox1.Add (this.buttonSearchBackward);
- global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonSearchBackward]));
- w6.Position = 1;
- w6.Expand = false;
- w6.Fill = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.buttonSearchForward = new global::Gtk.Button ();
- this.buttonSearchForward.CanFocus = true;
- this.buttonSearchForward.Name = "buttonSearchForward";
- this.buttonSearchForward.Relief = ((global::Gtk.ReliefStyle)(2));
- // Container child buttonSearchForward.Gtk.Container+ContainerChild
- this.eventbox3 = new global::Gtk.EventBox ();
- this.eventbox3.Name = "eventbox3";
- this.eventbox3.AboveChild = true;
- this.eventbox3.VisibleWindow = false;
- // Container child eventbox3.Gtk.Container+ContainerChild
- this.image3 = new global::Gtk.Image ();
- this.image3.Name = "image3";
- this.image3.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-go-down", global::Gtk.IconSize.Menu);
- this.eventbox3.Add (this.image3);
- this.buttonSearchForward.Add (this.eventbox3);
- this.buttonSearchForward.Label = null;
- this.hbox1.Add (this.buttonSearchForward);
- global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonSearchForward]));
- w9.Position = 2;
- w9.Expand = false;
- w9.Fill = false;
- // Container child hbox1.Gtk.Box+BoxChild
- this.closeButton = new global::Gtk.Button ();
- this.closeButton.CanFocus = true;
- this.closeButton.Name = "closeButton";
- this.closeButton.Relief = ((global::Gtk.ReliefStyle)(2));
- // Container child closeButton.Gtk.Container+ContainerChild
- this.eventbox4 = new global::Gtk.EventBox ();
- this.eventbox4.Name = "eventbox4";
- this.eventbox4.AboveChild = true;
- this.eventbox4.VisibleWindow = false;
- // Container child eventbox4.Gtk.Container+ContainerChild
- this.image4 = new global::Gtk.Image ();
- this.image4.Name = "image4";
- this.image4.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-close", global::Gtk.IconSize.Menu);
- this.eventbox4.Add (this.image4);
- this.closeButton.Add (this.eventbox4);
- this.closeButton.Label = null;
- this.hbox1.Add (this.closeButton);
- global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.closeButton]));
- w12.Position = 3;
- w12.Expand = false;
- w12.Fill = false;
- this.table.Add (this.hbox1);
- global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table [this.hbox1]));
- w13.LeftAttach = ((uint)(1));
- w13.RightAttach = ((uint)(2));
- w13.YOptions = ((global::Gtk.AttachOptions)(4));
- // Container child table.Gtk.Table+TableChild
- this.hbox2 = new global::Gtk.HBox ();
- this.hbox2.Name = "hbox2";
- // Container child hbox2.Gtk.Box+BoxChild
- this.entryReplace = new global::Gtk.Entry ();
- this.entryReplace.CanFocus = true;
- this.entryReplace.Name = "entryReplace";
- this.entryReplace.IsEditable = true;
- this.entryReplace.InvisibleChar = '●';
- this.hbox2.Add (this.entryReplace);
- global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.entryReplace]));
- w14.Position = 0;
- // Container child hbox2.Gtk.Box+BoxChild
- this.buttonReplace = new global::Gtk.Button ();
- this.buttonReplace.CanFocus = true;
- this.buttonReplace.Name = "buttonReplace";
- this.buttonReplace.Relief = ((global::Gtk.ReliefStyle)(2));
- // Container child buttonReplace.Gtk.Container+ContainerChild
- this.eventbox5 = new global::Gtk.EventBox ();
- this.eventbox5.Name = "eventbox5";
- this.eventbox5.AboveChild = true;
- this.eventbox5.VisibleWindow = false;
- // Container child eventbox5.Gtk.Container+ContainerChild
- this.image5 = new global::Gtk.Image ();
- this.image5.Name = "image5";
- this.image5.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-find-and-replace", global::Gtk.IconSize.Menu);
- this.eventbox5.Add (this.image5);
- this.buttonReplace.Add (this.eventbox5);
- this.buttonReplace.Label = null;
- this.hbox2.Add (this.buttonReplace);
- global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.buttonReplace]));
- w17.Position = 1;
- w17.Expand = false;
- w17.Fill = false;
- // Container child hbox2.Gtk.Box+BoxChild
- this.buttonReplaceAll = new global::Gtk.Button ();
- this.buttonReplaceAll.CanFocus = true;
- this.buttonReplaceAll.Name = "buttonReplaceAll";
- this.buttonReplaceAll.Relief = ((global::Gtk.ReliefStyle)(2));
- // Container child buttonReplaceAll.Gtk.Container+ContainerChild
- this.hbox3 = new global::Gtk.HBox ();
- this.hbox3.Name = "hbox3";
- this.hbox3.Spacing = 6;
- // Container child hbox3.Gtk.Box+BoxChild
- this.eventbox6 = new global::Gtk.EventBox ();
- this.eventbox6.Name = "eventbox6";
- this.eventbox6.AboveChild = true;
- this.eventbox6.VisibleWindow = false;
- // Container child eventbox6.Gtk.Container+ContainerChild
- this.image6 = new global::Gtk.Image ();
- this.image6.Name = "image6";
- this.image6.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-find-and-replace", global::Gtk.IconSize.Menu);
- this.eventbox6.Add (this.image6);
- this.hbox3.Add (this.eventbox6);
- global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.eventbox6]));
- w19.Position = 0;
- w19.Expand = false;
- w19.Fill = false;
- // Container child hbox3.Gtk.Box+BoxChild
- this.label1 = new global::Gtk.Label ();
- this.label1.Name = "label1";
- this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("All");
- this.hbox3.Add (this.label1);
- global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.label1]));
- w20.Position = 1;
- w20.Expand = false;
- w20.Fill = false;
- this.buttonReplaceAll.Add (this.hbox3);
- this.buttonReplaceAll.Label = null;
- this.hbox2.Add (this.buttonReplaceAll);
- global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.buttonReplaceAll]));
- w22.Position = 2;
- w22.Expand = false;
- w22.Fill = false;
- this.table.Add (this.hbox2);
- global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.table [this.hbox2]));
- w23.TopAttach = ((uint)(1));
- w23.BottomAttach = ((uint)(2));
- w23.LeftAttach = ((uint)(1));
- w23.RightAttach = ((uint)(2));
- w23.YOptions = ((global::Gtk.AttachOptions)(4));
- this.Add (this.table);
- if ((this.Child != null)) {
- this.Child.ShowAll ();
- }
- this.Show ();
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace MonoDevelop.SourceEditor
+{
+ internal partial class SearchAndReplaceWidget
+ {
+ private global::Gtk.Table table;
+ private global::Gtk.Button buttonSearchMode;
+ private global::Gtk.Arrow searchButtonModeArrow;
+ private global::Gtk.HBox hbox1;
+ private global::MonoDevelop.Components.SearchEntry searchEntry;
+ private global::Gtk.Button buttonSearchBackward;
+ private global::Gtk.EventBox eventbox2;
+ private global::Gtk.Image image2;
+ private global::Gtk.Button buttonSearchForward;
+ private global::Gtk.EventBox eventbox3;
+ private global::Gtk.Image image3;
+ private global::Gtk.Button closeButton;
+ private global::Gtk.EventBox eventbox4;
+ private global::Gtk.Image image4;
+ private global::Gtk.HBox hbox2;
+ private global::Gtk.Entry entryReplace;
+ private global::Gtk.Button buttonReplace;
+ private global::Gtk.EventBox eventbox5;
+ private global::Gtk.Image image5;
+ private global::Gtk.Button buttonReplaceAll;
+ private global::Gtk.HBox hbox3;
+ private global::Gtk.EventBox eventbox6;
+ private global::Gtk.Image image6;
+ private global::Gtk.Label label1;
+
+ protected virtual void Build ()
+ {
+ global::Stetic.Gui.Initialize (this);
+ // Widget MonoDevelop.SourceEditor.SearchAndReplaceWidget
+ global::Stetic.BinContainer.Attach (this);
+ this.Name = "MonoDevelop.SourceEditor.SearchAndReplaceWidget";
+ // Container child MonoDevelop.SourceEditor.SearchAndReplaceWidget.Gtk.Container+ContainerChild
+ this.table = new global::Gtk.Table (((uint)(2)), ((uint)(2)), false);
+ this.table.Name = "table";
+ this.table.BorderWidth = ((uint)(4));
+ // Container child table.Gtk.Table+TableChild
+ this.buttonSearchMode = new global::Gtk.Button ();
+ this.buttonSearchMode.CanFocus = true;
+ this.buttonSearchMode.Name = "buttonSearchMode";
+ // Container child buttonSearchMode.Gtk.Container+ContainerChild
+ this.searchButtonModeArrow = new global::Gtk.Arrow (((global::Gtk.ArrowType)(0)), ((global::Gtk.ShadowType)(0)));
+ this.searchButtonModeArrow.Name = "searchButtonModeArrow";
+ this.buttonSearchMode.Add (this.searchButtonModeArrow);
+ this.buttonSearchMode.Label = null;
+ this.table.Add (this.buttonSearchMode);
+ global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table [this.buttonSearchMode]));
+ w2.XOptions = ((global::Gtk.AttachOptions)(4));
+ w2.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table.Gtk.Table+TableChild
+ this.hbox1 = new global::Gtk.HBox ();
+ this.hbox1.Name = "hbox1";
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.searchEntry = new global::MonoDevelop.Components.SearchEntry ();
+ this.searchEntry.Name = "searchEntry";
+ this.searchEntry.ForceFilterButtonVisible = false;
+ this.searchEntry.IsCheckMenu = false;
+ this.searchEntry.ActiveFilterID = 0;
+ this.searchEntry.Ready = false;
+ this.searchEntry.HasFocus = false;
+ this.hbox1.Add (this.searchEntry);
+ global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.searchEntry]));
+ w3.Position = 0;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.buttonSearchBackward = new global::Gtk.Button ();
+ this.buttonSearchBackward.CanFocus = true;
+ this.buttonSearchBackward.Name = "buttonSearchBackward";
+ this.buttonSearchBackward.Relief = ((global::Gtk.ReliefStyle)(2));
+ // Container child buttonSearchBackward.Gtk.Container+ContainerChild
+ this.eventbox2 = new global::Gtk.EventBox ();
+ this.eventbox2.Name = "eventbox2";
+ this.eventbox2.AboveChild = true;
+ this.eventbox2.VisibleWindow = false;
+ // Container child eventbox2.Gtk.Container+ContainerChild
+ this.image2 = new global::Gtk.Image ();
+ this.image2.Name = "image2";
+ this.image2.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-go-up", global::Gtk.IconSize.Menu);
+ this.eventbox2.Add (this.image2);
+ this.buttonSearchBackward.Add (this.eventbox2);
+ this.buttonSearchBackward.Label = null;
+ this.hbox1.Add (this.buttonSearchBackward);
+ global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonSearchBackward]));
+ w6.Position = 1;
+ w6.Expand = false;
+ w6.Fill = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.buttonSearchForward = new global::Gtk.Button ();
+ this.buttonSearchForward.CanFocus = true;
+ this.buttonSearchForward.Name = "buttonSearchForward";
+ this.buttonSearchForward.Relief = ((global::Gtk.ReliefStyle)(2));
+ // Container child buttonSearchForward.Gtk.Container+ContainerChild
+ this.eventbox3 = new global::Gtk.EventBox ();
+ this.eventbox3.Name = "eventbox3";
+ this.eventbox3.AboveChild = true;
+ this.eventbox3.VisibleWindow = false;
+ // Container child eventbox3.Gtk.Container+ContainerChild
+ this.image3 = new global::Gtk.Image ();
+ this.image3.Name = "image3";
+ this.image3.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-go-down", global::Gtk.IconSize.Menu);
+ this.eventbox3.Add (this.image3);
+ this.buttonSearchForward.Add (this.eventbox3);
+ this.buttonSearchForward.Label = null;
+ this.hbox1.Add (this.buttonSearchForward);
+ global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonSearchForward]));
+ w9.Position = 2;
+ w9.Expand = false;
+ w9.Fill = false;
+ // Container child hbox1.Gtk.Box+BoxChild
+ this.closeButton = new global::Gtk.Button ();
+ this.closeButton.CanFocus = true;
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Relief = ((global::Gtk.ReliefStyle)(2));
+ // Container child closeButton.Gtk.Container+ContainerChild
+ this.eventbox4 = new global::Gtk.EventBox ();
+ this.eventbox4.Name = "eventbox4";
+ this.eventbox4.AboveChild = true;
+ this.eventbox4.VisibleWindow = false;
+ // Container child eventbox4.Gtk.Container+ContainerChild
+ this.image4 = new global::Gtk.Image ();
+ this.image4.Name = "image4";
+ this.image4.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-close", global::Gtk.IconSize.Menu);
+ this.eventbox4.Add (this.image4);
+ this.closeButton.Add (this.eventbox4);
+ this.closeButton.Label = null;
+ this.hbox1.Add (this.closeButton);
+ global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.closeButton]));
+ w12.Position = 3;
+ w12.Expand = false;
+ w12.Fill = false;
+ this.table.Add (this.hbox1);
+ global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table [this.hbox1]));
+ w13.LeftAttach = ((uint)(1));
+ w13.RightAttach = ((uint)(2));
+ w13.YOptions = ((global::Gtk.AttachOptions)(4));
+ // Container child table.Gtk.Table+TableChild
+ this.hbox2 = new global::Gtk.HBox ();
+ this.hbox2.Name = "hbox2";
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.entryReplace = new global::Gtk.Entry ();
+ this.entryReplace.CanFocus = true;
+ this.entryReplace.Name = "entryReplace";
+ this.entryReplace.IsEditable = true;
+ this.entryReplace.InvisibleChar = '●';
+ this.hbox2.Add (this.entryReplace);
+ global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.entryReplace]));
+ w14.Position = 0;
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.buttonReplace = new global::Gtk.Button ();
+ this.buttonReplace.CanFocus = true;
+ this.buttonReplace.Name = "buttonReplace";
+ this.buttonReplace.Relief = ((global::Gtk.ReliefStyle)(2));
+ // Container child buttonReplace.Gtk.Container+ContainerChild
+ this.eventbox5 = new global::Gtk.EventBox ();
+ this.eventbox5.Name = "eventbox5";
+ this.eventbox5.AboveChild = true;
+ this.eventbox5.VisibleWindow = false;
+ // Container child eventbox5.Gtk.Container+ContainerChild
+ this.image5 = new global::Gtk.Image ();
+ this.image5.Name = "image5";
+ this.image5.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-find-and-replace", global::Gtk.IconSize.Menu);
+ this.eventbox5.Add (this.image5);
+ this.buttonReplace.Add (this.eventbox5);
+ this.buttonReplace.Label = null;
+ this.hbox2.Add (this.buttonReplace);
+ global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.buttonReplace]));
+ w17.Position = 1;
+ w17.Expand = false;
+ w17.Fill = false;
+ // Container child hbox2.Gtk.Box+BoxChild
+ this.buttonReplaceAll = new global::Gtk.Button ();
+ this.buttonReplaceAll.CanFocus = true;
+ this.buttonReplaceAll.Name = "buttonReplaceAll";
+ this.buttonReplaceAll.Relief = ((global::Gtk.ReliefStyle)(2));
+ // Container child buttonReplaceAll.Gtk.Container+ContainerChild
+ this.hbox3 = new global::Gtk.HBox ();
+ this.hbox3.Name = "hbox3";
+ this.hbox3.Spacing = 6;
+ // Container child hbox3.Gtk.Box+BoxChild
+ this.eventbox6 = new global::Gtk.EventBox ();
+ this.eventbox6.Name = "eventbox6";
+ this.eventbox6.AboveChild = true;
+ this.eventbox6.VisibleWindow = false;
+ // Container child eventbox6.Gtk.Container+ContainerChild
+ this.image6 = new global::Gtk.Image ();
+ this.image6.Name = "image6";
+ this.image6.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-find-and-replace", global::Gtk.IconSize.Menu);
+ this.eventbox6.Add (this.image6);
+ this.hbox3.Add (this.eventbox6);
+ global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.eventbox6]));
+ w19.Position = 0;
+ w19.Expand = false;
+ w19.Fill = false;
+ // Container child hbox3.Gtk.Box+BoxChild
+ this.label1 = new global::Gtk.Label ();
+ this.label1.Name = "label1";
+ this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("All");
+ this.hbox3.Add (this.label1);
+ global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.label1]));
+ w20.Position = 1;
+ w20.Expand = false;
+ w20.Fill = false;
+ this.buttonReplaceAll.Add (this.hbox3);
+ this.buttonReplaceAll.Label = null;
+ this.hbox2.Add (this.buttonReplaceAll);
+ global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.buttonReplaceAll]));
+ w22.Position = 2;
+ w22.Expand = false;
+ w22.Fill = false;
+ this.table.Add (this.hbox2);
+ global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.table [this.hbox2]));
+ w23.TopAttach = ((uint)(1));
+ w23.BottomAttach = ((uint)(2));
+ w23.LeftAttach = ((uint)(1));
+ w23.RightAttach = ((uint)(2));
+ w23.YOptions = ((global::Gtk.AttachOptions)(4));
+ this.Add (this.table);
+ if ((this.Child != null)) {
+ this.Child.ShowAll ();
+ }
+ this.Show ();
+ }
+ }
+}
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/generated.cs b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/generated.cs
index b965530299..d23ef38e01 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/generated.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/gtk-gui/generated.cs
@@ -1,120 +1,115 @@
-
-// This file has been generated by the GUI designer. Do not modify.
-namespace Stetic
-{
- internal class Gui
- {
- private static bool initialized;
-
- internal static void Initialize (Gtk.Widget iconRenderer)
- {
- if ((Stetic.Gui.initialized == false)) {
- Stetic.Gui.initialized = true;
- }
- }
- }
-
- internal class BinContainer
- {
- private Gtk.Widget child;
- private Gtk.UIManager uimanager;
-
- public static BinContainer Attach (Gtk.Bin bin)
- {
- BinContainer bc = new BinContainer ();
- bin.SizeRequested += new Gtk.SizeRequestedHandler (bc.OnSizeRequested);
- bin.SizeAllocated += new Gtk.SizeAllocatedHandler (bc.OnSizeAllocated);
- bin.Added += new Gtk.AddedHandler (bc.OnAdded);
- return bc;
- }
-
- private void OnSizeRequested (object sender, Gtk.SizeRequestedArgs args)
- {
- if ((this.child != null)) {
- args.Requisition = this.child.SizeRequest ();
- }
- }
-
- private void OnSizeAllocated (object sender, Gtk.SizeAllocatedArgs args)
- {
- if ((this.child != null)) {
- this.child.Allocation = args.Allocation;
- }
- }
-
- private void OnAdded (object sender, Gtk.AddedArgs args)
- {
- this.child = args.Widget;
- }
-
- public void SetUiManager (Gtk.UIManager uim)
- {
- this.uimanager = uim;
- this.child.Realized += new System.EventHandler (this.OnRealized);
- }
-
- private void OnRealized (object sender, System.EventArgs args)
- {
- if ((this.uimanager != null)) {
- Gtk.Widget w;
- w = this.child.Toplevel;
- if (((w != null)
- && typeof(Gtk.Window).IsInstanceOfType (w))) {
- ((Gtk.Window)(w)).AddAccelGroup (this.uimanager.AccelGroup);
- this.uimanager = null;
- }
- }
- }
- }
-
- internal class IconLoader
- {
- public static Gdk.Pixbuf LoadIcon (Gtk.Widget widget, string name, Gtk.IconSize size)
- {
- Gdk.Pixbuf res = widget.RenderIcon (name, size, null);
- if ((res != null)) {
- return res;
- } else {
- int sz;
- int sy;
- global::Gtk.Icon.SizeLookup (size, out sz, out sy);
- try {
- return Gtk.IconTheme.Default.LoadIcon (name, sz, 0);
- } catch (System.Exception) {
- if ((name != "gtk-missing-image")) {
- return Stetic.IconLoader.LoadIcon (widget, "gtk-missing-image", size);
- } else {
- Gdk.Pixmap pmap = new Gdk.Pixmap (Gdk.Screen.Default.RootWindow, sz, sz);
- Gdk.GC gc = new Gdk.GC (pmap);
- gc.RgbFgColor = new Gdk.Color (255, 255, 255);
- pmap.DrawRectangle (gc, true, 0, 0, sz, sz);
- gc.RgbFgColor = new Gdk.Color (0, 0, 0);
- pmap.DrawRectangle (gc, false, 0, 0, (sz - 1), (sz - 1));
- gc.SetLineAttributes (3, Gdk.LineStyle.Solid, Gdk.CapStyle.Round, Gdk.JoinStyle.Round);
- gc.RgbFgColor = new Gdk.Color (255, 0, 0);
- pmap.DrawLine (gc, (sz / 4), (sz / 4), ((sz - 1)
- - (sz / 4)), ((sz - 1)
- - (sz / 4)));
- pmap.DrawLine (gc, ((sz - 1)
- - (sz / 4)), (sz / 4), (sz / 4), ((sz - 1)
- - (sz / 4)));
- return Gdk.Pixbuf.FromDrawable (pmap, pmap.Colormap, 0, 0, 0, 0, sz, sz);
- }
- }
- }
- }
- }
-
- internal class ActionGroups
- {
- public static Gtk.ActionGroup GetActionGroup (System.Type type)
- {
- return Stetic.ActionGroups.GetActionGroup (type.FullName);
- }
-
- public static Gtk.ActionGroup GetActionGroup (string name)
- {
- return null;
- }
- }
-}
+
+// This file has been generated by the GUI designer. Do not modify.
+namespace Stetic
+{
+ internal class Gui
+ {
+ private static bool initialized;
+
+ internal static void Initialize (Gtk.Widget iconRenderer)
+ {
+ if ((Stetic.Gui.initialized == false)) {
+ Stetic.Gui.initialized = true;
+ }
+ }
+ }
+
+ internal class BinContainer
+ {
+ private Gtk.Widget child;
+ private Gtk.UIManager uimanager;
+
+ public static BinContainer Attach (Gtk.Bin bin)
+ {
+ BinContainer bc = new BinContainer ();
+ bin.SizeRequested += new Gtk.SizeRequestedHandler (bc.OnSizeRequested);
+ bin.SizeAllocated += new Gtk.SizeAllocatedHandler (bc.OnSizeAllocated);
+ bin.Added += new Gtk.AddedHandler (bc.OnAdded);
+ return bc;
+ }
+
+ private void OnSizeRequested (object sender, Gtk.SizeRequestedArgs args)
+ {
+ if ((this.child != null)) {
+ args.Requisition = this.child.SizeRequest ();
+ }
+ }
+
+ private void OnSizeAllocated (object sender, Gtk.SizeAllocatedArgs args)
+ {
+ if ((this.child != null)) {
+ this.child.Allocation = args.Allocation;
+ }
+ }
+
+ private void OnAdded (object sender, Gtk.AddedArgs args)
+ {
+ this.child = args.Widget;
+ }
+
+ public void SetUiManager (Gtk.UIManager uim)
+ {
+ this.uimanager = uim;
+ this.child.Realized += new System.EventHandler (this.OnRealized);
+ }
+
+ private void OnRealized (object sender, System.EventArgs args)
+ {
+ if ((this.uimanager != null)) {
+ Gtk.Widget w;
+ w = this.child.Toplevel;
+ if (((w != null) && typeof(Gtk.Window).IsInstanceOfType (w))) {
+ ((Gtk.Window)(w)).AddAccelGroup (this.uimanager.AccelGroup);
+ this.uimanager = null;
+ }
+ }
+ }
+ }
+
+ internal class IconLoader
+ {
+ public static Gdk.Pixbuf LoadIcon (Gtk.Widget widget, string name, Gtk.IconSize size)
+ {
+ Gdk.Pixbuf res = widget.RenderIcon (name, size, null);
+ if ((res != null)) {
+ return res;
+ } else {
+ int sz;
+ int sy;
+ global::Gtk.Icon.SizeLookup (size, out sz, out sy);
+ try {
+ return Gtk.IconTheme.Default.LoadIcon (name, sz, 0);
+ } catch (System.Exception) {
+ if ((name != "gtk-missing-image")) {
+ return Stetic.IconLoader.LoadIcon (widget, "gtk-missing-image", size);
+ } else {
+ Gdk.Pixmap pmap = new Gdk.Pixmap (Gdk.Screen.Default.RootWindow, sz, sz);
+ Gdk.GC gc = new Gdk.GC (pmap);
+ gc.RgbFgColor = new Gdk.Color (255, 255, 255);
+ pmap.DrawRectangle (gc, true, 0, 0, sz, sz);
+ gc.RgbFgColor = new Gdk.Color (0, 0, 0);
+ pmap.DrawRectangle (gc, false, 0, 0, (sz - 1), (sz - 1));
+ gc.SetLineAttributes (3, Gdk.LineStyle.Solid, Gdk.CapStyle.Round, Gdk.JoinStyle.Round);
+ gc.RgbFgColor = new Gdk.Color (255, 0, 0);
+ pmap.DrawLine (gc, (sz / 4), (sz / 4), ((sz - 1) - (sz / 4)), ((sz - 1) - (sz / 4)));
+ pmap.DrawLine (gc, ((sz - 1) - (sz / 4)), (sz / 4), (sz / 4), ((sz - 1) - (sz / 4)));
+ return Gdk.Pixbuf.FromDrawable (pmap, pmap.Colormap, 0, 0, 0, 0, sz, sz);
+ }
+ }
+ }
+ }
+ }
+
+ internal class ActionGroups
+ {
+ public static Gtk.ActionGroup GetActionGroup (System.Type type)
+ {
+ return Stetic.ActionGroups.GetActionGroup (type.FullName);
+ }
+
+ public static Gtk.ActionGroup GetActionGroup (string name)
+ {
+ return null;
+ }
+ }
+}
diff --git a/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/RepositoryStatus.cs b/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/RepositoryStatus.cs
index 4aada9f2a3..b7aa17835d 100644
--- a/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/RepositoryStatus.cs
+++ b/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/RepositoryStatus.cs
@@ -184,28 +184,39 @@ namespace MonoDevelop.VersionControl.Git
void UpdateSingleFiles (List<string> singleFiles)
{
+ // NGIT HACK: We verify that all the files listed in the result of
+ // the GitStatus call are actually in the list of files we're interested
+ // in. This is because NGit cannot properly filter the git tree and
+ // incorrectly includes extra directories. See bug #
var status = new SpecificStatus (Repository, singleFiles).Call ();
-
+
foreach (var v in status.GetAdded ())
- Added.Add (v);
-
+ if (singleFiles.Contains (v))
+ Added.Add (v);
+
foreach (var v in status.GetChanged ())
- Modified.Add (v);
-
+ if (singleFiles.Contains (v))
+ Modified.Add (v);
+
foreach (var v in status.GetConflicting ())
- MergeConflict.Add (v);
-
+ if (singleFiles.Contains (v))
+ MergeConflict.Add (v);
+
foreach (var v in status.GetMissing ())
- Missing.Add (v);
-
+ if (singleFiles.Contains (v))
+ Missing.Add (v);
+
foreach (var v in status.GetModified ())
- Modified.Add (v);
-
+ if (singleFiles.Contains (v))
+ Modified.Add (v);
+
foreach (var v in status.GetRemoved ())
- Removed.Add (v);
+ if (singleFiles.Contains (v))
+ Removed.Add (v);
foreach (var v in status.GetUntracked ())
- Untracked.Add (v);
+ if (singleFiles.Contains (v))
+ Untracked.Add (v);
}
/// <summary>
diff --git a/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ObjectValueAdaptor.cs b/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ObjectValueAdaptor.cs
index 9cc2229385..40acd46436 100644
--- a/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ObjectValueAdaptor.cs
+++ b/main/src/core/Mono.Debugging/Mono.Debugging.Evaluation/ObjectValueAdaptor.cs
@@ -80,84 +80,111 @@ namespace Mono.Debugging.Evaluation
return GetDisplayTypeName (GetTypeName (ctx, type));
}
- string GetDisplayTypeName (string typeName, int idx, int end)
+ string GetDisplayTypeName (string typeName, int startIndex, int endIndex)
{
- int i = typeName.IndexOf ('[', idx, end - idx); // Bracket may be an array start or a generic arg definition start
- int ci = typeName.IndexOf (',', idx, end - idx); // Text after comma is the assembly name
-
+ // Note: '[' denotes the start of an array
+ // '`' denotes a generic type
+ // ',' denotes the start of the assembly name
+ int tokenIndex = typeName.IndexOfAny (new char [] { '[', '`', ',' }, startIndex, endIndex - startIndex);
List<string> genericArgs = null;
string array = string.Empty;
- int te = end;
- if (i != -1) te = i;
- if (ci != -1 && ci < te) te = ci;
+ int genericEndIndex = -1;
+ int typeEndIndex;
+
+ if (tokenIndex == -1) // Simple type
+ return GetShortTypeName (typeName.Substring (startIndex, endIndex - startIndex));
+
+ if (typeName[tokenIndex] == ',') // Simple type with an assembly name
+ return GetShortTypeName (typeName.Substring (startIndex, tokenIndex - startIndex));
+
+ // save the index of the end of the type name
+ typeEndIndex = tokenIndex;
- if (i != -1 && typeName.IndexOf ('`', idx, te - idx) != -1) {
- // Is generic
- genericArgs = GetGenericArguments (typeName, ref i);
- if (i >= end || typeName [i] != '[')
- i = -1;
+ // decode generic args first, if this is a generic type
+ if (typeName[tokenIndex] == '`') {
+ genericEndIndex = tokenIndex = typeName.IndexOf ('[', tokenIndex, endIndex - tokenIndex);
+ genericArgs = GetGenericArguments (typeName, ref tokenIndex, endIndex);
}
- if (i != -1) {
- // Is array
- while (i < end && typeName [i] == '[') {
- int ea = typeName.IndexOf (']', i);
- array += typeName.Substring (i, ea - i + 1);
- i = ea + 1;
- }
+
+ // decode array rank info
+ while (tokenIndex < endIndex && typeName[tokenIndex] == '[') {
+ int arrayEndIndex = typeName.IndexOf (']', tokenIndex, endIndex - tokenIndex);
+ if (arrayEndIndex == -1)
+ break;
+ arrayEndIndex++;
+ array += typeName.Substring (tokenIndex, arrayEndIndex - tokenIndex);
+ tokenIndex = arrayEndIndex;
}
+ string name = typeName.Substring (startIndex, typeEndIndex - startIndex);
+
if (genericArgs == null)
- return GetShortTypeName (typeName.Substring (idx, te - idx)) + array;
-
+ return GetShortTypeName (name) + array;
+
+ // Use the prettier name for nullable types
+ if (name == "System.Nullable" && genericArgs.Count == 1)
+ return genericArgs[0] + "?";
+
// Insert the generic arguments next to each type.
// for example: Foo`1+Bar`1[System.Int32,System.String]
// is converted to: Foo<int>.Bar<string>
- StringBuilder sb = new StringBuilder ();
- int gi = 0;
- int j = typeName.IndexOf ('`', idx, te - idx);
- while (j != -1) {
- sb.Append (typeName.Substring (idx, j - idx)).Append ('<');
- int ej = ++j;
- while (ej < typeName.Length && char.IsDigit (typeName [ej]))
- ej++;
- int n;
- if (int.TryParse (typeName.Substring (j, ej - j), out n)) {
- while (n > 0 && gi < genericArgs.Count) {
- sb.Append (genericArgs [gi++]);
- if (--n > 0)
- sb.Append (',');
- }
+ StringBuilder sb = new StringBuilder (name);
+ int i = typeEndIndex + 1;
+ int genericIndex = 0;
+ int argCount, next;
+
+ while (i < genericEndIndex) {
+ // decode the argument count
+ argCount = 0;
+ while (i < genericEndIndex && char.IsDigit (typeName[i])) {
+ argCount = (argCount * 10) + (typeName[i] - '0');
+ i++;
+ }
+
+ // insert the argument types
+ sb.Append ('<');
+ while (argCount > 0 && genericIndex < genericArgs.Count) {
+ sb.Append (genericArgs[genericIndex++]);
+ if (--argCount > 0)
+ sb.Append (',');
}
sb.Append ('>');
- idx = ej;
- j = typeName.IndexOf ('`', idx, te - idx);
+
+ // Find the end of the next generic type component
+ if ((next = typeName.IndexOf ('`', i, genericEndIndex - i)) == -1)
+ next = genericEndIndex;
+
+ // Append the next generic type component
+ sb.Append (typeName.Substring (i, next - i));
+
+ i = next;
}
- sb.Append (typeName.Substring (idx, te - idx)).Append (array);
+
return sb.ToString ();
}
- List<string> GetGenericArguments (string typeName, ref int i)
+ List<string> GetGenericArguments (string typeName, ref int i, int endIndex)
{
// Get a list of the generic arguments.
// When returning, i points to the next char after the closing ']'
List<string> genericArgs = new List<string> ();
i++;
- while (i < typeName.Length && typeName [i] != ']') {
- int pend = FindTypeEnd (typeName, i);
+ while (i < endIndex && typeName [i] != ']') {
+ int pend = FindTypeEnd (typeName, i, endIndex);
bool escaped = typeName [i] == '[';
genericArgs.Add (GetDisplayTypeName (typeName, escaped ? i + 1 : i, escaped ? pend - 1 : pend));
i = pend;
- if (i < typeName.Length && typeName[i] == ',')
+ if (i < endIndex && typeName[i] == ',')
i++;
}
i++;
return genericArgs;
}
- int FindTypeEnd (string s, int i)
+ int FindTypeEnd (string s, int i, int endIndex)
{
int bc = 0;
- while (i < s.Length) {
+ while (i < endIndex) {
char c = s[i];
if (c == '[')
bc++;
@@ -804,13 +831,23 @@ namespace Mono.Debugging.Evaluation
TypeDisplayData tdata = GetTypeDisplayData (ctx, GetValueType (ctx, obj));
if (!string.IsNullOrEmpty (tdata.ValueDisplayString) && ctx.Options.AllowDisplayStringEvaluation)
return new EvaluationResult (EvaluateDisplayString (ctx, obj, tdata.ValueDisplayString));
+
// Return the type name
- if (ctx.Options.AllowToStringCalls)
- return new EvaluationResult ("{" + CallToString (ctx, obj) + "}");
+ if (ctx.Options.AllowToStringCalls) {
+ string res = CallToString (ctx, obj);
+
+ if (string.IsNullOrEmpty (res))
+ return new EvaluationResult ("null");
+
+ return new EvaluationResult ("{" + res + "}");
+ }
+
if (!string.IsNullOrEmpty (tdata.TypeDisplayString) && ctx.Options.AllowDisplayStringEvaluation)
return new EvaluationResult ("{" + EvaluateDisplayString (ctx, obj, tdata.TypeDisplayString) + "}");
+
return new EvaluationResult ("{" + GetDisplayTypeName (GetValueTypeName (ctx, obj)) + "}");
}
+
return new EvaluationResult ("{" + CallToString (ctx, obj) + "}");
}
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Text/TextFile.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Text/TextFile.cs
index 41dca321ca..5b500295ae 100644
--- a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Text/TextFile.cs
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Text/TextFile.cs
@@ -347,7 +347,7 @@ namespace MonoDevelop.Projects.Text
if (onlyIfChanged) {
FileInfo finfo = new FileInfo (fileName);
- if (finfo.Length == contentLength) {
+ if (finfo.Exists && finfo.Length == contentLength) {
bool changed = false;
// Open the file on disk and compare them byte by byte...