|
|
|
@ -26,74 +26,67 @@ using Mono.Cecil;
@@ -26,74 +26,67 @@ using Mono.Cecil;
|
|
|
|
|
|
|
|
|
|
namespace ICSharpCode.ILSpy.TreeNodes |
|
|
|
|
{ |
|
|
|
|
[Export(typeof(IResourceNodeFactory))] |
|
|
|
|
sealed class IconResourceNodeFactory : IResourceNodeFactory |
|
|
|
|
{ |
|
|
|
|
public ILSpyTreeNode CreateNode(Resource resource) |
|
|
|
|
{ |
|
|
|
|
EmbeddedResource er = resource as EmbeddedResource; |
|
|
|
|
if (er != null) |
|
|
|
|
{ |
|
|
|
|
return CreateNode(er.Name, er.GetResourceStream()); |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
[Export(typeof(IResourceNodeFactory))] |
|
|
|
|
sealed class IconResourceNodeFactory : IResourceNodeFactory |
|
|
|
|
{ |
|
|
|
|
public ILSpyTreeNode CreateNode(Resource resource) |
|
|
|
|
{ |
|
|
|
|
EmbeddedResource er = resource as EmbeddedResource; |
|
|
|
|
if (er != null) { |
|
|
|
|
return CreateNode(er.Name, er.GetResourceStream()); |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public ILSpyTreeNode CreateNode(string key, object data) |
|
|
|
|
{ |
|
|
|
|
if (data is System.Drawing.Icon) |
|
|
|
|
{ |
|
|
|
|
MemoryStream s = new MemoryStream(); |
|
|
|
|
((System.Drawing.Icon)data).Save(s); |
|
|
|
|
return new IconResourceEntryNode(key, s); |
|
|
|
|
} |
|
|
|
|
if (data is Stream && key.EndsWith(".ico", StringComparison.OrdinalIgnoreCase)) |
|
|
|
|
return new IconResourceEntryNode(key, (Stream)data); |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
public ILSpyTreeNode CreateNode(string key, object data) |
|
|
|
|
{ |
|
|
|
|
if (data is System.Drawing.Icon) { |
|
|
|
|
MemoryStream s = new MemoryStream(); |
|
|
|
|
((System.Drawing.Icon)data).Save(s); |
|
|
|
|
return new IconResourceEntryNode(key, s); |
|
|
|
|
} |
|
|
|
|
if (data is Stream && key.EndsWith(".ico", StringComparison.OrdinalIgnoreCase)) |
|
|
|
|
return new IconResourceEntryNode(key, (Stream)data); |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
sealed class IconResourceEntryNode : ResourceEntryNode |
|
|
|
|
{ |
|
|
|
|
public IconResourceEntryNode(string key, Stream data) |
|
|
|
|
: base(key, data) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
sealed class IconResourceEntryNode : ResourceEntryNode |
|
|
|
|
{ |
|
|
|
|
public IconResourceEntryNode(string key, Stream data) |
|
|
|
|
: base(key, data) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public override object Icon |
|
|
|
|
{ |
|
|
|
|
get { return Images.ResourceImage; } |
|
|
|
|
} |
|
|
|
|
public override object Icon |
|
|
|
|
{ |
|
|
|
|
get { return Images.ResourceImage; } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public override bool View(DecompilerTextView textView) |
|
|
|
|
{ |
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
AvalonEditTextOutput output = new AvalonEditTextOutput(); |
|
|
|
|
Data.Position = 0; |
|
|
|
|
IconBitmapDecoder decoder = new IconBitmapDecoder(Data, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.None); |
|
|
|
|
foreach (var frame in decoder.Frames) |
|
|
|
|
{ |
|
|
|
|
output.Write(String.Format("{0}x{1}, {2} bit: ", frame.PixelHeight, frame.PixelWidth, frame.Thumbnail.Format.BitsPerPixel)); |
|
|
|
|
AddIcon(output, frame); |
|
|
|
|
output.WriteLine(); |
|
|
|
|
} |
|
|
|
|
output.AddButton(Images.Save, "Save", delegate |
|
|
|
|
{ |
|
|
|
|
Save(null); |
|
|
|
|
}); |
|
|
|
|
textView.ShowNode(output, this); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
catch (Exception) |
|
|
|
|
{ |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
public override bool View(DecompilerTextView textView) |
|
|
|
|
{ |
|
|
|
|
try { |
|
|
|
|
AvalonEditTextOutput output = new AvalonEditTextOutput(); |
|
|
|
|
Data.Position = 0; |
|
|
|
|
IconBitmapDecoder decoder = new IconBitmapDecoder(Data, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.None); |
|
|
|
|
foreach (var frame in decoder.Frames) { |
|
|
|
|
output.Write(String.Format("{0}x{1}, {2} bit: ", frame.PixelHeight, frame.PixelWidth, frame.Thumbnail.Format.BitsPerPixel)); |
|
|
|
|
AddIcon(output, frame); |
|
|
|
|
output.WriteLine(); |
|
|
|
|
} |
|
|
|
|
output.AddButton(Images.Save, "Save", delegate { |
|
|
|
|
Save(null); |
|
|
|
|
}); |
|
|
|
|
textView.ShowNode(output, this); |
|
|
|
|
return true; |
|
|
|
|
} catch (Exception) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private static void AddIcon(AvalonEditTextOutput output, BitmapFrame frame) |
|
|
|
|
{ |
|
|
|
|
output.AddUIElement(() => new Image { Source = frame }); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
private static void AddIcon(AvalonEditTextOutput output, BitmapFrame frame) |
|
|
|
|
{ |
|
|
|
|
output.AddUIElement(() => new Image { Source = frame }); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |