From 556743a897873650ff2286b6373dc2b72b87cc52 Mon Sep 17 00:00:00 2001 From: nosami Date: Tue, 18 Jul 2017 22:15:17 +0100 Subject: Make the target selector a shared component + add accessibility --- .../DotNetCompileTargetSelector.cs | 53 ++++++++++++++++++++++ .../core/MonoDevelop.Ide/MonoDevelop.Ide.csproj | 1 + 2 files changed, 54 insertions(+) create mode 100644 main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/DotNetCompileTargetSelector.cs (limited to 'main/src/core/MonoDevelop.Ide') 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 +// +// 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 @@ + -- cgit v1.2.3