diff --git a/ApkPreviewHandler/ApkPreviewHandler.cs b/ApkPreviewHandler/ApkPreviewHandler.cs new file mode 100644 index 0000000..90816a9 --- /dev/null +++ b/ApkPreviewHandler/ApkPreviewHandler.cs @@ -0,0 +1,57 @@ +using ShellExtensions; +using ShellExtensions.PreviewHandlers; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading.Tasks; + +namespace ApkPreviewHandler +{ + [ComVisible(true)] + [ClassInterface(ClassInterfaceType.None)] + [ProgId("Tsanie.ApkPreviewHandler")] + [Guid("2b09062a-b853-4e5c-b349-b1f3aa8e063b")] + [PreviewHandler("ApkPreviewHandler", ".xapk", "{74428040-0d3b-4789-a70f-91582d9a643e}")] + public class ApkPreviewHandler : WpfPreviewHandler, IPreviewFromFile, IPreviewFromStream + { + public ApkPreviewHandler() + { + Control = new ApkPreviewPanel(); + } + + private void Populate(Stream stream) + { + if (Control is ApkPreviewPanel panel) + { + panel.SetLabel($"length: {stream.Length}"); + } + } + + #region IPreviewFromFile Members + + public void Load(FileInfo info) + { + using (var stream = File.OpenRead(info.FullName)) + { + Populate(stream); + } + } + + #endregion + + #region IPreviewFromStream Members + + public void Load(Stream stream) + { + using (stream) + { + Populate(stream); + } + } + + #endregion + } +} diff --git a/ApkPreviewHandler/ApkPreviewHandler.csproj b/ApkPreviewHandler/ApkPreviewHandler.csproj new file mode 100644 index 0000000..dda8dc9 --- /dev/null +++ b/ApkPreviewHandler/ApkPreviewHandler.csproj @@ -0,0 +1,93 @@ + + + + + Debug + AnyCPU + {455B8120-73EB-4E60-8386-39A1BFE74F95} + library + ApkPreviewHandler + ApkPreviewHandler + v4.7.2 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + + + true + full + false + bin\Debug\ + TRACE;DEBUG;PREVIEW_HANDLER + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE;PREVIEW_HANDLER + prompt + 4 + + + true + + + ApkPreviewHandler.pfx + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + + ApkPreviewPanel.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + \ No newline at end of file diff --git a/ApkPreviewHandler/ApkPreviewPanel.xaml b/ApkPreviewHandler/ApkPreviewPanel.xaml new file mode 100644 index 0000000..778c922 --- /dev/null +++ b/ApkPreviewHandler/ApkPreviewPanel.xaml @@ -0,0 +1,14 @@ + + + + diff --git a/ApkPreviewHandler/ApkPreviewPanel.xaml.cs b/ApkPreviewHandler/ApkPreviewPanel.xaml.cs new file mode 100644 index 0000000..0b77336 --- /dev/null +++ b/ApkPreviewHandler/ApkPreviewPanel.xaml.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace ApkPreviewHandler +{ + /// + /// Interaction logic for UserControl1.xaml + /// + public partial class ApkPreviewPanel : UserControl + { + public ApkPreviewPanel() + { + InitializeComponent(); + } + + public void SetLabel(string text) + { + labelCount.Content = text; + } + } +} diff --git a/ApkPreviewHandler/Properties/AssemblyInfo.cs b/ApkPreviewHandler/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c56c8cc --- /dev/null +++ b/ApkPreviewHandler/Properties/AssemblyInfo.cs @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ApkPreviewHandler")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ApkPreviewHandler")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +//In order to begin building localizable applications, set +//CultureYouAreCodingWith in your .csproj file +//inside a . For example, if you are using US english +//in your source files, set the to en-US. Then uncomment +//the NeutralResourceLanguage attribute below. Update the "en-US" in +//the line below to match the UICulture setting in the project file. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly:ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] + + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ApkPreviewHandler/Properties/Resources.Designer.cs b/ApkPreviewHandler/Properties/Resources.Designer.cs new file mode 100644 index 0000000..cebe6b5 --- /dev/null +++ b/ApkPreviewHandler/Properties/Resources.Designer.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ApkPreviewHandler.Properties { + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if ((resourceMan == null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ApkPreviewHandler.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/ApkPreviewHandler/Properties/Resources.resx b/ApkPreviewHandler/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/ApkPreviewHandler/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ApkPreviewHandler/Properties/Settings.Designer.cs b/ApkPreviewHandler/Properties/Settings.Designer.cs new file mode 100644 index 0000000..4ae6fd5 --- /dev/null +++ b/ApkPreviewHandler/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ApkPreviewHandler.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/ApkPreviewHandler/Properties/Settings.settings b/ApkPreviewHandler/Properties/Settings.settings new file mode 100644 index 0000000..033d7a5 --- /dev/null +++ b/ApkPreviewHandler/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/PhotoThumbnail.sln b/PhotoThumbnail.sln index bbe12de..0f6ef6e 100644 --- a/PhotoThumbnail.sln +++ b/PhotoThumbnail.sln @@ -9,9 +9,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestConsoleApp", "TestConso EndProject Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ShellExtensions", "ShellExtensions\ShellExtensions.shproj", "{50974517-2D52-4470-9F60-E37B30D1491E}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ApkPreviewHandler", "ApkPreviewHandler\ApkPreviewHandler.csproj", "{455B8120-73EB-4E60-8386-39A1BFE74F95}" +EndProject Global GlobalSection(SharedMSBuildProjectFiles) = preSolution ShellExtensions\ShellExtensions.projitems*{08c34c77-b778-46aa-a48b-bea6b9fe07fe}*SharedItemsImports = 4 + ShellExtensions\ShellExtensions.projitems*{455b8120-73eb-4e60-8386-39a1bfe74f95}*SharedItemsImports = 4 ShellExtensions\ShellExtensions.projitems*{50974517-2d52-4470-9f60-e37b30d1491e}*SharedItemsImports = 13 EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -27,6 +30,10 @@ Global {C2573376-C9CF-41DE-B9A6-22790C048062}.Debug|Any CPU.Build.0 = Debug|Any CPU {C2573376-C9CF-41DE-B9A6-22790C048062}.Release|Any CPU.ActiveCfg = Debug|Any CPU {C2573376-C9CF-41DE-B9A6-22790C048062}.Release|Any CPU.Build.0 = Debug|Any CPU + {455B8120-73EB-4E60-8386-39A1BFE74F95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {455B8120-73EB-4E60-8386-39A1BFE74F95}.Debug|Any CPU.Build.0 = Debug|Any CPU + {455B8120-73EB-4E60-8386-39A1BFE74F95}.Release|Any CPU.ActiveCfg = Release|Any CPU + {455B8120-73EB-4E60-8386-39A1BFE74F95}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE