You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
4.2 KiB
137 lines
4.2 KiB
// 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.Windows.Documents;
|
|
using System.Windows.Media;
|
|
using System.Xml.Linq;
|
|
|
|
using ICSharpCode.ILSpy.Properties;
|
|
|
|
namespace ICSharpCode.ILSpy.Options
|
|
{
|
|
public class TabItemViewModel
|
|
{
|
|
public TabItemViewModel(string header, UIElement content)
|
|
{
|
|
Header = header;
|
|
Content = content;
|
|
}
|
|
|
|
public string Header { get; }
|
|
public UIElement Content { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Interaction logic for OptionsDialog.xaml
|
|
/// </summary>
|
|
public partial class OptionsDialog : Window
|
|
{
|
|
|
|
readonly Lazy<UIElement, IOptionsMetadata>[] 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<UIElement, IOptionsMetadata>("OptionPages").ToArray();
|
|
ILSpySettings settings = ILSpySettings.Load();
|
|
foreach (var optionPage in optionPages.OrderBy(p => p.Metadata.Order))
|
|
{
|
|
var tabItem = new TabItemViewModel(MainWindow.GetResourceString(optionPage.Metadata.Title), 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();
|
|
}
|
|
|
|
private void DefaultsButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if (MessageBox.Show(Properties.Resources.ResetToDefaultsConfirmationMessage, "ILSpy", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
|
|
{
|
|
var page = tabControl.SelectedValue as IOptionPage;
|
|
if (page != null)
|
|
page.LoadDefaults();
|
|
}
|
|
}
|
|
}
|
|
|
|
public interface IOptionsMetadata
|
|
{
|
|
string Title { get; }
|
|
int Order { get; }
|
|
}
|
|
|
|
public interface IOptionPage
|
|
{
|
|
void Load(ILSpySettings settings);
|
|
void Save(XElement root);
|
|
void LoadDefaults();
|
|
}
|
|
|
|
[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(ParentMenuID = nameof(Resources._View), Header = nameof(Resources._Options), MenuCategory = nameof(Resources.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);
|
|
}
|
|
}
|
|
}
|
|
}
|