// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team // // 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 System.ComponentModel.Composition; using System.Linq; using System.Windows; using System.Windows.Controls; using System.Xml.Linq; namespace ICSharpCode.ILSpy.Options { /// /// Interaction logic for OptionsDialog.xaml /// public partial class OptionsDialog : Window { readonly Lazy[] optionPages; public OptionsDialog() { InitializeComponent(); // These used to have [ImportMany(..., RequiredCreationPolicy = CreationPolicy.NonShared)], so they use their own // ExportProvider instance. // FIXME: Ideally, the export provider should be disposed when it's no longer needed. var ep = App.ExportProviderFactory.CreateExportProvider(); this.optionPages = ep.GetExports("OptionPages").ToArray(); ILSpySettings settings = ILSpySettings.Load(); foreach (var optionPage in optionPages.OrderBy(p => p.Metadata.Order)) { TabItem tabItem = new TabItem(); tabItem.Header = optionPage.Metadata.Title; tabItem.Content = optionPage.Value; tabControl.Items.Add(tabItem); IOptionPage page = optionPage.Value as IOptionPage; if (page != null) page.Load(settings); } } void OKButton_Click(object sender, RoutedEventArgs e) { ILSpySettings.Update( delegate (XElement root) { foreach (var optionPage in optionPages) { IOptionPage page = optionPage.Value as IOptionPage; if (page != null) page.Save(root); } }); this.DialogResult = true; Close(); } } public interface IOptionsMetadata { string Title { get; } int Order { get; } } public interface IOptionPage { void Load(ILSpySettings settings); void Save(XElement root); } [MetadataAttribute] [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)] public class ExportOptionPageAttribute : ExportAttribute { public ExportOptionPageAttribute() : base("OptionPages", typeof(UIElement)) { } public string Title { get; set; } public int Order { get; set; } } [ExportMainMenuCommand(Menu = "_View", Header = "_Options...", MenuCategory = "Options", MenuOrder = 999)] sealed class ShowOptionsCommand : SimpleCommand { public override void Execute(object parameter) { OptionsDialog dlg = new OptionsDialog(); dlg.Owner = MainWindow.Instance; if (dlg.ShowDialog() == true) { new RefreshCommand().Execute(parameter); } } } }