[Monodevelop-patches-list] r779 - in trunk/MonoDevelop: build/AddIns src/AddIns/DisplayBindings/EditorBindings src/AddIns/DisplayBindings/EditorBindings/Gui src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels src/AddIns/DisplayBindings/TextEditor src/AddIns/DisplayBindings/TextEditor/Gui src/AddIns/DisplayBindings/TextEditor/Gui/Dialogs
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Wed Feb 4 01:12:52 EST 2004
Author: tberman
Date: 2004-02-04 01:12:52 -0500 (Wed, 04 Feb 2004)
New Revision: 779
Added:
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/EditTemplateGroupDialog.cs
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/
Removed:
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/Dialogs
trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/Dialogs/EditTemplateGroupDialog.cs
trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/OptionPanels/
Modified:
trunk/MonoDevelop/build/AddIns/MonoDevelopEditorBindings.addin
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/BehaviorTextEditorPanel.cs
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/CodeTemplatePanel.cs
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/GeneralTextEditorPanel.cs
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/MarkersTextEditorPanel.cs
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Makefile
trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Makefile
Log:
This commit might break shit, prolly not though. fingers crossed
Modified: trunk/MonoDevelop/build/AddIns/MonoDevelopEditorBindings.addin
===================================================================
--- trunk/MonoDevelop/build/AddIns/MonoDevelopEditorBindings.addin 2004-02-04 06:02:44 UTC (rev 778)
+++ trunk/MonoDevelop/build/AddIns/MonoDevelopEditorBindings.addin 2004-02-04 06:12:52 UTC (rev 779)
@@ -18,7 +18,7 @@
<Extension path = "/SharpDevelop/Dialogs/OptionsDialog/CodingOptions">
<DialogPanel id = "CodeTemplates"
label = "${res:Dialog.Options.CodeTemplatesText}"
- class = "ICSharpCode.SharpDevelop.Gui.Dialogs.OptionPanels.CodeTemplatePane"/>
+ class = "MonoDevelop.EditorBindings.Gui.OptionPanels.CodeTemplatePane"/>
</Extension>
<Extension path = "/SharpDevelop/Views/ProjectBrowser/ContextMenu">
@@ -343,13 +343,13 @@
<Extension path = "/SharpDevelop/ViewContent/DefaultTextEditor/OptionsDialog">
<DialogPanel id = "General"
label = "${res:Dialog.Options.IDEOptions.TextEditor.General.PanelName}"
- class = "ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels.GeneralTextEditorPanel"/>
+ class = "MonoDevelop.EditorBindings.Gui.OptionPanels.GeneralTextEditorPanel"/>
<DialogPanel id = "Markers"
label = "${res:Dialog.Options.IDEOptions.TextEditor.Markers.PanelName}"
- class = "ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels.MarkersTextEditorPanel"/>
+ class = "MonoDevelop.EditorBindings.Gui.OptionPanels.MarkersTextEditorPanel"/>
<DialogPanel id = "Behavior"
label = "${res:Dialog.Options.IDEOptions.TextEditor.Behaviour.PanelName}"
- class = "ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels.BehaviorTextEditorPanel"/>
+ class = "MonoDevelop.EditorBindings.Gui.OptionPanels.BehaviorTextEditorPanel"/>
</Extension>
<Extension path = "/SharpDevelop/Dialogs/OptionsDialog">
@@ -359,13 +359,13 @@
label = "${res:Dialog.Options.IDEOptions.TextEditorOptionsText}">
<DialogPanel id = "General"
label = "${res:Dialog.Options.IDEOptions.TextEditor.General.PanelName}"
- class = "ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels.GeneralTextEditorPanel"/>
+ class = "MonoDevelop.EditorBindings.Gui.OptionPanels.GeneralTextEditorPanel"/>
<DialogPanel id = "Markers"
label = "${res:Dialog.Options.IDEOptions.TextEditor.Markers.PanelName}"
- class = "ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels.MarkersTextEditorPanel"/>
+ class = "MonoDevelop.EditorBindings.Gui.OptionPanels.MarkersTextEditorPanel"/>
<DialogPanel id = "Behavior"
label = "${res:Dialog.Options.IDEOptions.TextEditor.Behaviour.PanelName}"
- class = "ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels.BehaviorTextEditorPanel"/>
+ class = "MonoDevelop.EditorBindings.Gui.OptionPanels.BehaviorTextEditorPanel"/>
</DialogPanel>
</Extension>
Deleted: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/Dialogs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/Dialogs 2004-02-04 06:02:44 UTC (rev 778)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/Dialogs 2004-02-04 06:12:52 UTC (rev 779)
@@ -1,87 +0,0 @@
-// <file>
-// <copyright see="prj:///doc/copyright.txt"/>
-// <license see="prj:///doc/license.txt"/>
-// <owner name="Mike Krüger" email="mike at icsharpcode.net"/>
-// <version value="$version"/>
-// </file>
-
-using System;
-using System.IO;
-
-using ICSharpCode.SharpDevelop.Internal.Templates;
-using ICSharpCode.Core.Services;
-
-namespace ICSharpCode.SharpDevelop.Gui.Dialogs
-{
- public class EditTemplateGroupDialog : Gtk.Dialog
- {
- CodeTemplateGroup codeTemplateGroup;
- string titlePrefix = string.Empty;
-
- // Gtk members
- Gtk.Entry templateExtensionsTextBox;
-
- // Services
- StringParserService StringParserService = (StringParserService)ServiceManager.Services.GetService (typeof (StringParserService));
-
- public CodeTemplateGroup CodeTemplateGroup {
- get {
- return codeTemplateGroup;
- }
- }
-
- public EditTemplateGroupDialog(CodeTemplateGroup codeTemplateGroup, string titlePrefix)
- {
- this.codeTemplateGroup = codeTemplateGroup;
- this.titlePrefix = titlePrefix;
- InitializeComponents();
- this.ShowAll();
- }
-
- void AcceptEvent(object sender, EventArgs e)
- {
- codeTemplateGroup.ExtensionStrings = templateExtensionsTextBox.Text.Split(';');
-
- // close the window
- CancelEvent(sender, EventArgs.Empty);
- }
-
- void CancelEvent(object sender, EventArgs e)
- {
- this.Destroy();
- }
-
- void InitializeComponents()
- {
- // set up this actual dialog
- this.Modal = true;
- // FIXME: make this a resource in the resource file
- this.Title = titlePrefix + "Code Group";
-
- // set up the dialog fields and add them
- templateExtensionsTextBox = new Gtk.Entry();
- templateExtensionsTextBox.ActivatesDefault = true;
- // FIXME: make this a resource in the resource file
- Gtk.Label label1 = new Gtk.Label("Extensions (; seperated)");
-
- label1.Xalign = 0;
- templateExtensionsTextBox.Text = string.Join(";", codeTemplateGroup.ExtensionStrings);
-
- // FIXME: make the labels both part of the same sizing group so they have the same left and right rows.
- Gtk.HBox hBox1 = new Gtk.HBox(false, 6);
- hBox1.PackStart(label1, false, false, 6);
- hBox1.PackStart(templateExtensionsTextBox, false, false, 6);
-
- this.VBox.PackStart(hBox1, false, false, 6);
-
- // set up the buttons and add them
- this.DefaultResponse = (int) Gtk.ResponseType.Ok;
- Gtk.Button cancelButton = new Gtk.Button(Gtk.Stock.Cancel);
- Gtk.Button okButton = new Gtk.Button(Gtk.Stock.Ok);
- okButton.Clicked += new EventHandler(AcceptEvent);
- cancelButton.Clicked += new EventHandler(CancelEvent);
- this.AddActionWidget (cancelButton, Gtk.ResponseType.Cancel);
- this.AddActionWidget (okButton, (int) Gtk.ResponseType.Ok);
- }
- }
-}
Copied: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/EditTemplateGroupDialog.cs (from rev 778, trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/Dialogs)
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/Dialogs 2004-02-04 06:02:44 UTC (rev 778)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/EditTemplateGroupDialog.cs 2004-02-04 06:12:52 UTC (rev 779)
@@ -0,0 +1,87 @@
+// <file>
+// <copyright see="prj:///doc/copyright.txt"/>
+// <license see="prj:///doc/license.txt"/>
+// <owner name="Mike Krüger" email="mike at icsharpcode.net"/>
+// <version value="$version"/>
+// </file>
+
+using System;
+using System.IO;
+
+using ICSharpCode.SharpDevelop.Internal.Templates;
+using ICSharpCode.Core.Services;
+
+namespace MonoDevelop.EditorBindings.Gui.Dialogs
+{
+ public class EditTemplateGroupDialog : Gtk.Dialog
+ {
+ CodeTemplateGroup codeTemplateGroup;
+ string titlePrefix = string.Empty;
+
+ // Gtk members
+ Gtk.Entry templateExtensionsTextBox;
+
+ // Services
+ StringParserService StringParserService = (StringParserService)ServiceManager.Services.GetService (typeof (StringParserService));
+
+ public CodeTemplateGroup CodeTemplateGroup {
+ get {
+ return codeTemplateGroup;
+ }
+ }
+
+ public EditTemplateGroupDialog(CodeTemplateGroup codeTemplateGroup, string titlePrefix)
+ {
+ this.codeTemplateGroup = codeTemplateGroup;
+ this.titlePrefix = titlePrefix;
+ InitializeComponents();
+ this.ShowAll();
+ }
+
+ void AcceptEvent(object sender, EventArgs e)
+ {
+ codeTemplateGroup.ExtensionStrings = templateExtensionsTextBox.Text.Split(';');
+
+ // close the window
+ CancelEvent(sender, EventArgs.Empty);
+ }
+
+ void CancelEvent(object sender, EventArgs e)
+ {
+ this.Destroy();
+ }
+
+ void InitializeComponents()
+ {
+ // set up this actual dialog
+ this.Modal = true;
+ // FIXME: make this a resource in the resource file
+ this.Title = titlePrefix + "Code Group";
+
+ // set up the dialog fields and add them
+ templateExtensionsTextBox = new Gtk.Entry();
+ templateExtensionsTextBox.ActivatesDefault = true;
+ // FIXME: make this a resource in the resource file
+ Gtk.Label label1 = new Gtk.Label("Extensions (; seperated)");
+
+ label1.Xalign = 0;
+ templateExtensionsTextBox.Text = string.Join(";", codeTemplateGroup.ExtensionStrings);
+
+ // FIXME: make the labels both part of the same sizing group so they have the same left and right rows.
+ Gtk.HBox hBox1 = new Gtk.HBox(false, 6);
+ hBox1.PackStart(label1, false, false, 6);
+ hBox1.PackStart(templateExtensionsTextBox, false, false, 6);
+
+ this.VBox.PackStart(hBox1, false, false, 6);
+
+ // set up the buttons and add them
+ this.DefaultResponse = (int) Gtk.ResponseType.Ok;
+ Gtk.Button cancelButton = new Gtk.Button(Gtk.Stock.Cancel);
+ Gtk.Button okButton = new Gtk.Button(Gtk.Stock.Ok);
+ okButton.Clicked += new EventHandler(AcceptEvent);
+ cancelButton.Clicked += new EventHandler(CancelEvent);
+ this.AddActionWidget (cancelButton, Gtk.ResponseType.Cancel);
+ this.AddActionWidget (okButton, (int) Gtk.ResponseType.Ok);
+ }
+ }
+}
Copied: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels (from rev 776, trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/OptionPanels)
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/BehaviorTextEditorPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs 2004-02-04 02:10:55 UTC (rev 776)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/BehaviorTextEditorPanel.cs 2004-02-04 06:12:52 UTC (rev 779)
@@ -23,7 +23,7 @@
using Gtk;
using MonoDevelop.EditorBindings.FormattingStrategy;
-namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels
+namespace MonoDevelop.EditorBindings.Gui.OptionPanels
{
/// <summary>
/// Summary description for Form8.
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/CodeTemplatePanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/OptionPanels/CodeTemplatePanel.cs 2004-02-04 02:10:55 UTC (rev 776)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/CodeTemplatePanel.cs 2004-02-04 06:12:52 UTC (rev 779)
@@ -15,15 +15,13 @@
using ICSharpCode.Core.AddIns.Codons;
using ICSharpCode.Core.Services;
-
-using ICSharpCode.TextEditor;
-using ICSharpCode.TextEditor.Document;
using ICSharpCode.SharpDevelop.Gui.Dialogs;
using Gtk;
using MonoDevelop.Gui.Widgets;
+using MonoDevelop.EditorBindings.Gui.Dialogs;
-namespace ICSharpCode.SharpDevelop.Gui.Dialogs.OptionPanels
+namespace MonoDevelop.EditorBindings.Gui.OptionPanels
{
public class CodeTemplatePane : AbstractOptionPanel
{
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/GeneralTextEditorPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/OptionPanels/GeneralTextEditorPanel.cs 2004-02-04 02:10:55 UTC (rev 776)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/GeneralTextEditorPanel.cs 2004-02-04 06:12:52 UTC (rev 779)
@@ -21,7 +21,7 @@
using ICSharpCode.Core.AddIns.Codons;
using ICSharpCode.SharpDevelop.Gui.Dialogs;
-namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels
+namespace MonoDevelop.EditorBindings.Gui.OptionPanels
{
/// <summary>
/// General texteditor options panelS.
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/MarkersTextEditorPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs 2004-02-04 02:10:55 UTC (rev 776)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/MarkersTextEditorPanel.cs 2004-02-04 06:12:52 UTC (rev 779)
@@ -7,7 +7,6 @@
using System;
using System.IO;
-using System.Drawing;
using ICSharpCode.TextEditor.Document;
using ICSharpCode.SharpDevelop.Internal.ExternalTool;
@@ -19,7 +18,7 @@
using Gtk;
-namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels
+namespace MonoDevelop.EditorBindings.Gui.OptionPanels
{
/// <summary>
/// Summary description for Form9.
@@ -64,7 +63,7 @@
lineMarkerStyleComboBoxMenu.Append(MenuItem.NewWithLabel(ResourceService.GetString("Dialog.Options.IDEOptions.TextEditor.Markers.LineViewerStyle.None")));
lineMarkerStyleComboBoxMenu.Append(MenuItem.NewWithLabel(ResourceService.GetString("Dialog.Options.IDEOptions.TextEditor.Markers.LineViewerStyle.FullRow")));
- lineMarkerStyleComboBox.SetHistory((uint)(LineViewerStyle)((IProperties)CustomizationObject).GetProperty("LineViewerStyle", LineViewerStyle.None));
+ //lineMarkerStyleComboBox.SetHistory((uint)(LineViewerStyle)((IProperties)CustomizationObject).GetProperty("LineViewerStyle", LineViewerStyle.None));
}
public override bool StorePanelContents()
@@ -84,7 +83,8 @@
} catch (Exception) {
}
- ((IProperties)CustomizationObject).SetProperty("LineViewerStyle", (LineViewerStyle)lineMarkerStyleComboBox.History);
+ //FIXME: This is commented out for right now
+ //((IProperties)CustomizationObject).SetProperty("LineViewerStyle", (LineViewerStyle)lineMarkerStyleComboBox.History);
return true;
}
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Makefile
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Makefile 2004-02-04 06:02:44 UTC (rev 778)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Makefile 2004-02-04 06:12:52 UTC (rev 779)
@@ -3,7 +3,9 @@
all : $(DLL)
$(DLL) : $(shell find . -name \*.cs)
- mcs $(shell find . -name \*.cs) /out:$@ /t:library /r:gtk-sharp /r:gdk-sharp \
+ mcs $(shell find . -name \*.cs) /out:$@ /t:library /r:gtk-sharp /r:gdk-sharp /r:glib-sharp.dll \
/r:../../../../build/bin/MonoDevelop.Core.dll \
/r:../../../../build/bin/MonoDevelop.Base.dll \
- /r:../../../../build/bin/MonoDevelop.Gui.Utils.dll
+ /r:../../../../build/bin/MonoDevelop.Gui.Utils.dll \
+ /r:../../../../build/bin/MonoDevelop.Gui.Widgets.dll \
+ /r:gnome-sharp.dll /r:pango-sharp.dll /r:glade-sharp.dll
Deleted: trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/Dialogs/EditTemplateGroupDialog.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/Dialogs/EditTemplateGroupDialog.cs 2004-02-04 06:02:44 UTC (rev 778)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Gui/Dialogs/EditTemplateGroupDialog.cs 2004-02-04 06:12:52 UTC (rev 779)
@@ -1,87 +0,0 @@
-// <file>
-// <copyright see="prj:///doc/copyright.txt"/>
-// <license see="prj:///doc/license.txt"/>
-// <owner name="Mike Krüger" email="mike at icsharpcode.net"/>
-// <version value="$version"/>
-// </file>
-
-using System;
-using System.IO;
-
-using ICSharpCode.SharpDevelop.Internal.Templates;
-using ICSharpCode.Core.Services;
-
-namespace ICSharpCode.SharpDevelop.Gui.Dialogs
-{
- public class EditTemplateGroupDialog : Gtk.Dialog
- {
- CodeTemplateGroup codeTemplateGroup;
- string titlePrefix = string.Empty;
-
- // Gtk members
- Gtk.Entry templateExtensionsTextBox;
-
- // Services
- StringParserService StringParserService = (StringParserService)ServiceManager.Services.GetService (typeof (StringParserService));
-
- public CodeTemplateGroup CodeTemplateGroup {
- get {
- return codeTemplateGroup;
- }
- }
-
- public EditTemplateGroupDialog(CodeTemplateGroup codeTemplateGroup, string titlePrefix)
- {
- this.codeTemplateGroup = codeTemplateGroup;
- this.titlePrefix = titlePrefix;
- InitializeComponents();
- this.ShowAll();
- }
-
- void AcceptEvent(object sender, EventArgs e)
- {
- codeTemplateGroup.ExtensionStrings = templateExtensionsTextBox.Text.Split(';');
-
- // close the window
- CancelEvent(sender, EventArgs.Empty);
- }
-
- void CancelEvent(object sender, EventArgs e)
- {
- this.Destroy();
- }
-
- void InitializeComponents()
- {
- // set up this actual dialog
- this.Modal = true;
- // FIXME: make this a resource in the resource file
- this.Title = titlePrefix + "Code Group";
-
- // set up the dialog fields and add them
- templateExtensionsTextBox = new Gtk.Entry();
- templateExtensionsTextBox.ActivatesDefault = true;
- // FIXME: make this a resource in the resource file
- Gtk.Label label1 = new Gtk.Label("Extensions (; seperated)");
-
- label1.Xalign = 0;
- templateExtensionsTextBox.Text = string.Join(";", codeTemplateGroup.ExtensionStrings);
-
- // FIXME: make the labels both part of the same sizing group so they have the same left and right rows.
- Gtk.HBox hBox1 = new Gtk.HBox(false, 6);
- hBox1.PackStart(label1, false, false, 6);
- hBox1.PackStart(templateExtensionsTextBox, false, false, 6);
-
- this.VBox.PackStart(hBox1, false, false, 6);
-
- // set up the buttons and add them
- this.DefaultResponse = (int) Gtk.ResponseType.Ok;
- Gtk.Button cancelButton = new Gtk.Button(Gtk.Stock.Cancel);
- Gtk.Button okButton = new Gtk.Button(Gtk.Stock.Ok);
- okButton.Clicked += new EventHandler(AcceptEvent);
- cancelButton.Clicked += new EventHandler(CancelEvent);
- this.AddActionWidget (cancelButton, Gtk.ResponseType.Cancel);
- this.AddActionWidget (okButton, (int) Gtk.ResponseType.Ok);
- }
- }
-}
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Makefile
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Makefile 2004-02-04 06:02:44 UTC (rev 778)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/TextEditor/Makefile 2004-02-04 06:12:52 UTC (rev 779)
@@ -12,11 +12,6 @@
./Gui/Editor/ErrorDrawer.cs \
./Gui/Editor/ITextAreaControlProvider.cs \
./Gui/Editor/TextEditorDisplayBinding.cs \
-./Gui/OptionPanels/GeneralTextEditorPanel.cs \
-./Gui/OptionPanels/CodeTemplatePanel.cs \
-./Gui/OptionPanels/BehaviorTextEditorPanel.cs \
-./Gui/OptionPanels/MarkersTextEditorPanel.cs \
-./Gui/Dialogs/EditTemplateGroupDialog.cs \
./Gui/Dialogs/ExportProjectToHtmlDialog.cs \
./Gui/Dialogs/SortOptionsDialog.cs \
./Gui/Dialogs/ReplaceInFilesDialog.cs \
More information about the Monodevelop-patches-list
mailing list