/ILSpy/TreeNodes/FieldTreeNode.cs
http://github.com/icsharpcode/ILSpy · C# · 96 lines · 61 code · 15 blank · 20 comment · 14 complexity · c6b323854c6b898108e2cb56ce1108d0 MD5 · raw file
- // 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.Windows.Media;
- using ICSharpCode.Decompiler;
- using ICSharpCode.Decompiler.TypeSystem;
- namespace ICSharpCode.ILSpy.TreeNodes
- {
- /// <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(FieldDefinition, Language) + FieldDefinition.MetadataToken.ToSuffixString();
- public static object GetText(IField field, Language language)
- {
- return language.FieldToString(field, includeDeclaringTypeName: false, includeNamespace: false, includeNamespaceOfDeclaringTypeName: false);
- }
- public override object Icon => GetIcon(FieldDefinition);
- 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 (FieldDefinition.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;
- }
- }
- }