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.
208 lines
6.8 KiB
208 lines
6.8 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;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Windows;
|
|
using System.Xml.Linq;
|
|
|
|
using ICSharpCode.ILSpy.Docking;
|
|
using ICSharpCode.ILSpy.Themes;
|
|
|
|
namespace ICSharpCode.ILSpy
|
|
{
|
|
/// <summary>
|
|
/// Per-session setting:
|
|
/// Loaded at startup; saved at exit.
|
|
/// </summary>
|
|
public sealed class SessionSettings : INotifyPropertyChanged
|
|
{
|
|
public SessionSettings(ILSpySettings spySettings)
|
|
{
|
|
XElement doc = spySettings["SessionSettings"];
|
|
|
|
XElement filterSettings = doc.Element("FilterSettings");
|
|
if (filterSettings == null)
|
|
filterSettings = new XElement("FilterSettings");
|
|
|
|
this.FilterSettings = new FilterSettings(filterSettings);
|
|
|
|
this.ActiveAssemblyList = (string)doc.Element("ActiveAssemblyList");
|
|
|
|
XElement activeTreeViewPath = doc.Element("ActiveTreeViewPath");
|
|
if (activeTreeViewPath != null)
|
|
{
|
|
this.ActiveTreeViewPath = activeTreeViewPath.Elements().Select(e => Unescape((string)e)).ToArray();
|
|
}
|
|
this.ActiveAutoLoadedAssembly = (string)doc.Element("ActiveAutoLoadedAssembly");
|
|
|
|
this.WindowState = FromString((string)doc.Element("WindowState"), WindowState.Normal);
|
|
this.WindowBounds = FromString((string)doc.Element("WindowBounds"), DefaultWindowBounds);
|
|
this.SplitterPosition = FromString((string)doc.Element("SplitterPosition"), 0.4);
|
|
this.TopPaneSplitterPosition = FromString((string)doc.Element("TopPaneSplitterPosition"), 0.3);
|
|
this.BottomPaneSplitterPosition = FromString((string)doc.Element("BottomPaneSplitterPosition"), 0.3);
|
|
this.SelectedSearchMode = FromString((string)doc.Element("SelectedSearchMode"), SearchMode.TypeAndMember);
|
|
this.IsDarkMode = FromString((string)doc.Element(nameof(IsDarkMode)), false);
|
|
string currentCulture = (string)doc.Element(nameof(CurrentCulture));
|
|
this.CurrentCulture = string.IsNullOrEmpty(currentCulture) ? null : currentCulture;
|
|
|
|
this.DockLayout = new DockLayoutSettings(doc.Element("DockLayout"));
|
|
}
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
|
|
public FilterSettings FilterSettings { get; private set; }
|
|
public SearchMode SelectedSearchMode { get; set; }
|
|
|
|
public bool IsDarkMode {
|
|
get => ThemeManager.Current.IsDarkMode;
|
|
set {
|
|
ThemeManager.Current.IsDarkMode = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
public string[] ActiveTreeViewPath;
|
|
public string ActiveAutoLoadedAssembly;
|
|
|
|
string currentCulture;
|
|
|
|
public string CurrentCulture {
|
|
get { return currentCulture; }
|
|
set {
|
|
if (currentCulture != value)
|
|
{
|
|
currentCulture = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public string ActiveAssemblyList {
|
|
get => activeAssemblyList;
|
|
set {
|
|
if (value != null && value != activeAssemblyList)
|
|
{
|
|
activeAssemblyList = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
public WindowState WindowState = WindowState.Normal;
|
|
public Rect WindowBounds;
|
|
internal static Rect DefaultWindowBounds = new Rect(10, 10, 750, 550);
|
|
/// <summary>
|
|
/// position of the left/right splitter
|
|
/// </summary>
|
|
public double SplitterPosition;
|
|
public double TopPaneSplitterPosition, BottomPaneSplitterPosition;
|
|
|
|
public DockLayoutSettings DockLayout { get; private set; }
|
|
|
|
public void Save()
|
|
{
|
|
XElement doc = new XElement("SessionSettings");
|
|
doc.Add(this.FilterSettings.SaveAsXml());
|
|
if (this.ActiveAssemblyList != null)
|
|
{
|
|
doc.Add(new XElement("ActiveAssemblyList", this.ActiveAssemblyList));
|
|
}
|
|
if (this.ActiveTreeViewPath != null)
|
|
{
|
|
doc.Add(new XElement("ActiveTreeViewPath", ActiveTreeViewPath.Select(p => new XElement("Node", Escape(p)))));
|
|
}
|
|
if (this.ActiveAutoLoadedAssembly != null)
|
|
{
|
|
doc.Add(new XElement("ActiveAutoLoadedAssembly", this.ActiveAutoLoadedAssembly));
|
|
}
|
|
doc.Add(new XElement("WindowState", ToString(this.WindowState)));
|
|
doc.Add(new XElement("WindowBounds", ToString(this.WindowBounds)));
|
|
doc.Add(new XElement("SplitterPosition", ToString(this.SplitterPosition)));
|
|
doc.Add(new XElement("TopPaneSplitterPosition", ToString(this.TopPaneSplitterPosition)));
|
|
doc.Add(new XElement("BottomPaneSplitterPosition", ToString(this.BottomPaneSplitterPosition)));
|
|
doc.Add(new XElement("SelectedSearchMode", ToString(this.SelectedSearchMode)));
|
|
doc.Add(new XElement(nameof(IsDarkMode), ToString(this.IsDarkMode)));
|
|
if (this.CurrentCulture != null)
|
|
{
|
|
doc.Add(new XElement(nameof(CurrentCulture), this.CurrentCulture));
|
|
}
|
|
|
|
var dockLayoutElement = new XElement("DockLayout");
|
|
if (DockLayout.Valid)
|
|
{
|
|
dockLayoutElement.Add(DockLayout.SaveAsXml());
|
|
}
|
|
doc.Add(dockLayoutElement);
|
|
|
|
ILSpySettings.SaveSettings(doc);
|
|
}
|
|
|
|
static Regex regex = new Regex("\\\\x(?<num>[0-9A-f]{4})");
|
|
private string activeAssemblyList;
|
|
|
|
static string Escape(string p)
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
foreach (char ch in p)
|
|
{
|
|
if (char.IsLetterOrDigit(ch))
|
|
sb.Append(ch);
|
|
else
|
|
sb.AppendFormat("\\x{0:X4}", (int)ch);
|
|
}
|
|
return sb.ToString();
|
|
}
|
|
|
|
static string Unescape(string p)
|
|
{
|
|
return regex.Replace(p, m => ((char)int.Parse(m.Groups["num"].Value, NumberStyles.HexNumber)).ToString());
|
|
}
|
|
|
|
static T FromString<T>(string s, T defaultValue)
|
|
{
|
|
if (s == null)
|
|
return defaultValue;
|
|
try
|
|
{
|
|
TypeConverter c = TypeDescriptor.GetConverter(typeof(T));
|
|
return (T)c.ConvertFromInvariantString(s);
|
|
}
|
|
catch (FormatException)
|
|
{
|
|
return defaultValue;
|
|
}
|
|
}
|
|
|
|
static string ToString<T>(T obj)
|
|
{
|
|
TypeConverter c = TypeDescriptor.GetConverter(typeof(T));
|
|
return c.ConvertToInvariantString(obj);
|
|
}
|
|
}
|
|
}
|