mirror of https://github.com/icsharpcode/ILSpy.git
9 changed files with 405 additions and 19 deletions
@ -0,0 +1,58 @@
@@ -0,0 +1,58 @@
|
||||
<UserControl x:Class="ICSharpCode.ILSpy.Options.CSharpDecompilerSettingsPanel" |
||||
x:ClassModifier="internal" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:options="clr-namespace:ICSharpCode.ILSpy.Options" |
||||
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls"> |
||||
<UserControl.Resources> |
||||
<controls:BoolToVisibilityConverter x:Key="boolConv" /> |
||||
<CollectionViewSource x:Key="SettingsCollection" Source="{Binding Settings}"> |
||||
<CollectionViewSource.GroupDescriptions> |
||||
<PropertyGroupDescription PropertyName="Category" /> |
||||
</CollectionViewSource.GroupDescriptions> |
||||
</CollectionViewSource> |
||||
</UserControl.Resources> |
||||
<Grid> |
||||
<Grid.RowDefinitions> |
||||
<RowDefinition Height="Auto" /> |
||||
<RowDefinition Height="*" /> |
||||
</Grid.RowDefinitions> |
||||
<Grid.ColumnDefinitions> |
||||
<ColumnDefinition Width="*" /> |
||||
</Grid.ColumnDefinitions> |
||||
<TextBlock Margin="3" Grid.ColumnSpan="3" TextWrapping="Wrap" Text="The settings selected below are applied to the 'Custom' setting in the language drop-down. Note that some settings implicitly depend on each other, e.g.: LINQ expressions cannot be introduced without first transforming static calls to extension method calls." /> |
||||
<ListBox Grid.Row="1" ItemsSource="{Binding Source={StaticResource SettingsCollection}}"> |
||||
<ListBox.GroupStyle> |
||||
<GroupStyle> |
||||
<GroupStyle.Panel> |
||||
<ItemsPanelTemplate> |
||||
<VirtualizingStackPanel Orientation="Vertical" /> |
||||
</ItemsPanelTemplate> |
||||
</GroupStyle.Panel> |
||||
<GroupStyle.ContainerStyle> |
||||
<Style TargetType="{x:Type GroupItem}"> |
||||
<Setter Property="Template"> |
||||
<Setter.Value> |
||||
<ControlTemplate> |
||||
<Expander Padding="0" BorderThickness="0" IsExpanded="True"> |
||||
<Expander.Header> |
||||
<CheckBox Checked="OnGroupChecked" Unchecked="OnGroupUnchecked" Loaded="OnGroupLoaded" VerticalContentAlignment="Center" |
||||
FontSize="16" FontWeight="Bold" Content="{Binding Name}" /> |
||||
</Expander.Header> |
||||
<ItemsPresenter/> |
||||
</Expander> |
||||
</ControlTemplate> |
||||
</Setter.Value> |
||||
</Setter> |
||||
</Style> |
||||
</GroupStyle.ContainerStyle> |
||||
</GroupStyle> |
||||
</ListBox.GroupStyle> |
||||
<ListBox.ItemTemplate> |
||||
<DataTemplate> |
||||
<CheckBox IsChecked="{Binding IsEnabled}" Content="{Binding Description}" /> |
||||
</DataTemplate> |
||||
</ListBox.ItemTemplate> |
||||
</ListBox> |
||||
</Grid> |
||||
</UserControl> |
@ -0,0 +1,195 @@
@@ -0,0 +1,195 @@
|
||||
// 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.ComponentModel; |
||||
using System.Linq; |
||||
using System.Reflection; |
||||
using System.Runtime.CompilerServices; |
||||
using System.Windows; |
||||
using System.Windows.Controls; |
||||
using System.Windows.Data; |
||||
using System.Xml.Linq; |
||||
|
||||
namespace ICSharpCode.ILSpy.Options |
||||
{ |
||||
/// <summary>
|
||||
/// Interaction logic for CSharpDecompilerSettingsPanel.xaml
|
||||
/// </summary>
|
||||
[ExportOptionPage(Title = "C# Decompiler", Order = 10)] |
||||
internal partial class CSharpDecompilerSettingsPanel : UserControl, IOptionPage |
||||
{ |
||||
public CSharpDecompilerSettingsPanel() |
||||
{ |
||||
InitializeComponent(); |
||||
} |
||||
|
||||
static Decompiler.DecompilerSettings currentCSharpSettings; |
||||
|
||||
public static Decompiler.DecompilerSettings CurrentCSharpSettings { |
||||
get { |
||||
return currentCSharpSettings ?? (currentCSharpSettings = LoadDecompilerSettings(ILSpySettings.Load())); |
||||
} |
||||
} |
||||
|
||||
public static Decompiler.DecompilerSettings LoadDecompilerSettings(ILSpySettings settings) |
||||
{ |
||||
XElement e = settings["CustomCSharpDecompilerSettings"]; |
||||
var newSettings = new Decompiler.DecompilerSettings(); |
||||
var properties = typeof(Decompiler.DecompilerSettings).GetProperties() |
||||
.Where(p => p.GetCustomAttribute<BrowsableAttribute>()?.Browsable != false); |
||||
foreach (var p in properties) { |
||||
p.SetValue(newSettings, (bool?)e.Attribute(p.Name) ?? true); |
||||
} |
||||
return newSettings; |
||||
} |
||||
|
||||
public void Load(ILSpySettings settings) |
||||
{ |
||||
this.DataContext = new CSharpDecompilerSettings(LoadDecompilerSettings(settings)); |
||||
} |
||||
|
||||
public void Save(XElement root) |
||||
{ |
||||
XElement section = new XElement("CustomCSharpDecompilerSettings"); |
||||
var newSettings = ((CSharpDecompilerSettings)this.DataContext).ToDecompilerSettings(); |
||||
var properties = typeof(Decompiler.DecompilerSettings).GetProperties() |
||||
.Where(p => p.GetCustomAttribute<BrowsableAttribute>()?.Browsable != false); |
||||
foreach (var p in properties) { |
||||
section.SetAttributeValue(p.Name, p.GetValue(newSettings)); |
||||
} |
||||
XElement existingElement = root.Element("CustomCSharpDecompilerSettings"); |
||||
if (existingElement != null) |
||||
existingElement.ReplaceWith(section); |
||||
else |
||||
root.Add(section); |
||||
|
||||
currentCSharpSettings = newSettings; |
||||
} |
||||
|
||||
private void OnGroupChecked(object sender, RoutedEventArgs e) |
||||
{ |
||||
CheckGroup((CollectionViewGroup)((CheckBox)sender).DataContext, true); |
||||
} |
||||
private void OnGroupUnchecked(object sender, RoutedEventArgs e) |
||||
{ |
||||
CheckGroup((CollectionViewGroup)((CheckBox)sender).DataContext, false); |
||||
} |
||||
|
||||
void CheckGroup(CollectionViewGroup group, bool value) |
||||
{ |
||||
foreach (var item in group.Items) { |
||||
switch (item) { |
||||
case CollectionViewGroup subGroup: |
||||
CheckGroup(subGroup, value); |
||||
break; |
||||
case CSharpDecompilerSetting setting: |
||||
setting.IsEnabled = value; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
|
||||
bool IsGroupChecked(CollectionViewGroup group) |
||||
{ |
||||
bool value = true; |
||||
foreach (var item in group.Items) { |
||||
switch (item) { |
||||
case CollectionViewGroup subGroup: |
||||
value = value && IsGroupChecked(subGroup); |
||||
break; |
||||
case CSharpDecompilerSetting setting: |
||||
value = value && setting.IsEnabled; |
||||
break; |
||||
} |
||||
} |
||||
return value; |
||||
} |
||||
|
||||
private void OnGroupLoaded(object sender, RoutedEventArgs e) |
||||
{ |
||||
CheckBox checkBox = (CheckBox)sender; |
||||
checkBox.IsChecked = IsGroupChecked((CollectionViewGroup)checkBox.DataContext); |
||||
} |
||||
} |
||||
|
||||
public class CSharpDecompilerSettings : INotifyPropertyChanged |
||||
{ |
||||
public CSharpDecompilerSetting[] Settings { get; set; } |
||||
|
||||
public CSharpDecompilerSettings(Decompiler.DecompilerSettings settings) |
||||
{ |
||||
Settings = typeof(Decompiler.DecompilerSettings).GetProperties() |
||||
.Where(p => p.GetCustomAttribute<BrowsableAttribute>()?.Browsable != false) |
||||
.Select(p => new CSharpDecompilerSetting(p) { IsEnabled = (bool)p.GetValue(settings) }) |
||||
.OrderBy(item => item.Category) |
||||
.ThenBy(item => item.Description) |
||||
.ToArray(); |
||||
} |
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged; |
||||
|
||||
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null) |
||||
{ |
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); |
||||
} |
||||
|
||||
public Decompiler.DecompilerSettings ToDecompilerSettings() |
||||
{ |
||||
var settings = new Decompiler.DecompilerSettings(); |
||||
foreach (var item in Settings) { |
||||
item.Property.SetValue(settings, item.IsEnabled); |
||||
} |
||||
return settings; |
||||
} |
||||
} |
||||
|
||||
public class CSharpDecompilerSetting : INotifyPropertyChanged |
||||
{ |
||||
bool isEnabled; |
||||
|
||||
public CSharpDecompilerSetting(PropertyInfo p) |
||||
{ |
||||
this.Property = p; |
||||
this.Category = p.GetCustomAttribute<CategoryAttribute>()?.Category ?? "Other"; |
||||
this.Description = p.GetCustomAttribute<DescriptionAttribute>()?.Description ?? p.Name; |
||||
} |
||||
|
||||
public PropertyInfo Property { get; } |
||||
|
||||
public bool IsEnabled { |
||||
get => isEnabled; |
||||
set { |
||||
if (value != isEnabled) { |
||||
isEnabled = value; |
||||
OnPropertyChanged(); |
||||
} |
||||
} |
||||
} |
||||
|
||||
public string Description { get; set; } |
||||
|
||||
public string Category { get; set; } |
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged; |
||||
|
||||
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null) |
||||
{ |
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue