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:
authornosami <jasonimison@gmail.com>2017-07-19 00:15:17 +0300
committerMarius Ungureanu <teromario@yahoo.com>2017-07-19 00:27:00 +0300
commit556743a897873650ff2286b6373dc2b72b87cc52 (patch)
tree4617ed02e0cea713e1210331c533b53b8a5f584f /main/src/core/MonoDevelop.Ide
parentaf75e9e2c0b62b5f2f142f57407eee2a535e4419 (diff)
Make the target selector a shared component + add accessibility
Diffstat (limited to 'main/src/core/MonoDevelop.Ide')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/DotNetCompileTargetSelector.cs53
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj1
2 files changed, 54 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/DotNetCompileTargetSelector.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/DotNetCompileTargetSelector.cs
new file mode 100644
index 0000000000..2d4c1ed5f8
--- /dev/null
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/DotNetCompileTargetSelector.cs
@@ -0,0 +1,53 @@
+//
+// DotNetCompileTargetSelector.cs
+//
+// Author:
+// Jason Imison <jaimison@microsoft.com>
+//
+// Copyright (c) 2017 Microsoft Corporation
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+using System;
+using Gtk;
+using MonoDevelop.Core;
+using MonoDevelop.Projects;
+
+namespace MonoDevelop.Ide.Gui.OptionPanels
+{
+ public class DotNetCompileTargetSelector : ComboBox
+ {
+ public DotNetCompileTargetSelector ()
+ {
+ var store = new ListStore (typeof (string));
+ store.AppendValues (GettextCatalog.GetString ("Executable"));
+ store.AppendValues (GettextCatalog.GetString ("Library"));
+ store.AppendValues (GettextCatalog.GetString ("Executable with GUI"));
+ store.AppendValues (GettextCatalog.GetString ("Module"));
+ this.Model = store;
+ var cr = new CellRendererText ();
+ this.PackStart (cr, true);
+ this.AddAttribute (cr, "text", 0);
+ }
+
+ public CompileTarget CompileTarget {
+ get { return (CompileTarget)this.Active; }
+ set { this.Active = (int)value; }
+ }
+ }
+}
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
index a20132179f..9a8a810544 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
@@ -9459,6 +9459,7 @@
<Compile Include="MonoDevelop.Ide.Editor.Highlighting\RoslynClassificationHighlighting.cs" />
<Compile Include="MonoDevelop.Ide.Projects\LanguageCellRenderer.cs" />
<Compile Include="MonoDevelop.Components\RestartPanel.cs" />
+ <Compile Include="MonoDevelop.Ide.Gui.OptionPanels\DotNetCompileTargetSelector.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Makefile.am" />