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.
107 lines
3.9 KiB
107 lines
3.9 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.Reflection.Metadata;
|
|
using System.Windows.Media;
|
|
|
|
using ICSharpCode.Decompiler;
|
|
|
|
namespace ICSharpCode.ILSpy.TreeNodes
|
|
{
|
|
using ICSharpCode.Decompiler.TypeSystem;
|
|
|
|
/// <summary>
|
|
/// Represents a field in the TreeView.
|
|
/// </summary>
|
|
public sealed class FieldTreeNode : ILSpyTreeNode, IMemberTreeNode
|
|
{
|
|
public IField FieldDefinition { get; }
|
|
|
|
public FieldTreeNode(IField field)
|
|
{
|
|
this.FieldDefinition = field ?? throw new ArgumentNullException(nameof(field));
|
|
}
|
|
|
|
public override object Text => GetText(GetFieldDefinition(), Language) + FieldDefinition.MetadataToken.ToSuffixString();
|
|
|
|
private IField GetFieldDefinition()
|
|
{
|
|
return ((MetadataModule)FieldDefinition.ParentModule.PEFile
|
|
?.GetTypeSystemWithCurrentOptionsOrNull()
|
|
?.MainModule)?.GetDefinition((FieldDefinitionHandle)FieldDefinition.MetadataToken) ?? FieldDefinition;
|
|
}
|
|
|
|
public static object GetText(IField field, Language language)
|
|
{
|
|
return language.FieldToString(field, includeDeclaringTypeName: false, includeNamespace: false, includeNamespaceOfDeclaringTypeName: false);
|
|
}
|
|
|
|
public override object Icon => GetIcon(GetFieldDefinition());
|
|
|
|
public static ImageSource GetIcon(IField field)
|
|
{
|
|
if (field.DeclaringType.Kind == TypeKind.Enum && field.ReturnType.Kind == TypeKind.Enum)
|
|
return Images.GetIcon(MemberIcon.EnumValue, MethodTreeNode.GetOverlayIcon(field.Accessibility), false);
|
|
|
|
if (field.IsConst)
|
|
return Images.GetIcon(MemberIcon.Literal, MethodTreeNode.GetOverlayIcon(field.Accessibility), false);
|
|
|
|
if (field.IsReadOnly)
|
|
return Images.GetIcon(MemberIcon.FieldReadOnly, MethodTreeNode.GetOverlayIcon(field.Accessibility), field.IsStatic);
|
|
|
|
return Images.GetIcon(MemberIcon.Field, MethodTreeNode.GetOverlayIcon(field.Accessibility), field.IsStatic);
|
|
}
|
|
|
|
public override FilterResult Filter(FilterSettings settings)
|
|
{
|
|
if (settings.ShowApiLevel == ApiVisibility.PublicOnly && !IsPublicAPI)
|
|
return FilterResult.Hidden;
|
|
if (settings.SearchTermMatches(FieldDefinition.Name) && (settings.ShowApiLevel == ApiVisibility.All || settings.Language.ShowMember(FieldDefinition)))
|
|
return FilterResult.Match;
|
|
else
|
|
return FilterResult.Hidden;
|
|
}
|
|
|
|
public override void Decompile(Language language, ITextOutput output, DecompilationOptions options)
|
|
{
|
|
language.DecompileField(FieldDefinition, output, options);
|
|
}
|
|
|
|
public override bool IsPublicAPI {
|
|
get {
|
|
switch (GetFieldDefinition().Accessibility)
|
|
{
|
|
case Accessibility.Public:
|
|
case Accessibility.Protected:
|
|
case Accessibility.ProtectedOrInternal:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
IEntity IMemberTreeNode.Member => FieldDefinition;
|
|
|
|
public override string ToString()
|
|
{
|
|
return FieldDefinition.Name;
|
|
}
|
|
}
|
|
}
|