PowerToys/src/modules/previewpane
2023-01-09 11:08:15 +00:00
..
common Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
GcodePreviewHandler [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
GcodePreviewHandlerCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
GcodeThumbnailProvider [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
GcodeThumbnailProviderCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
MarkdownPreviewHandler [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
MarkdownPreviewHandlerCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
MonacoPreviewHandler [DevFilePreview]JSON: Don't escape HTML-sensitive characters (#23054) 2023-01-09 11:08:15 +00:00
MonacoPreviewHandlerCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
PdfPreviewHandler [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
PdfPreviewHandlerCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
PdfThumbnailProvider [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
PdfThumbnailProviderCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
powerpreview [Analyzers][CPP] turn on Warning 4100 (#21449) 2022-11-09 14:41:14 +00:00
StlThumbnailProvider [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
StlThumbnailProviderCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
SvgPreviewHandler [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
SvgPreviewHandlerCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
SvgThumbnailProvider [Analyzers] Update StyleCop and enable SA1200 (#22707) 2022-12-18 13:27:14 +00:00
SvgThumbnailProviderCpp Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
UnitTests-GcodePreviewHandler unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-GcodeThumbnailProvider unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-MarkdownPreviewHandler unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-PdfPreviewHandler unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-PdfThumbnailProvider unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-PreviewHandlerCommon unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-StlThumbnailProvider unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-SvgPreviewHandler unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
UnitTests-SvgThumbnailProvider unit tests nugets updated (#22952) 2022-12-28 10:43:31 -08:00
README.md Self-contained .NET (#22217) 2022-12-14 13:37:23 +01:00
STATestClassAttribute.cs [PreviewPane] Porting .NET Core 3.1 (#8432) 2020-12-11 09:59:42 +01:00
STATestMethodAttribute.cs [PreviewPane] Porting .NET Core 3.1 (#8432) 2020-12-11 09:59:42 +01:00

File Explorer

End user facing:

Please visit our overview

Developing

  • Add new C++ DLL project in the preview pane folder. This DLL is actual preview handler, i.e. implements IPreviewHandler/IThumbnailProvider interface.
  • Add new .NET EXE project in the preview pane folder. This EXE is being spawned by C++ DLL to generate preview/thumbnail.

Installation

To add a new Previewer update the Product.wxs file in PowerToysSetup similar to existing Previewer to register the Preview Handler. More details about registration of Preview Handlers can be found here. - implemented in modulesRegistry.h.

Directly registering/unregistering DLL's

[Important] This method of registering Preview Handler DLL's is not recommended. It could lead to registry corruption.

Registering Preview Handler

  1. Restart Visual studio as administrator.
  2. Sign XYZPreviewHandler and it's dependencies. To sign an assembly in VS, follow steps given here.
  3. Build XYZPreviewHandler project.
  4. Open developer command prompt from Tools > Command Line > Developer Command Prompt.
  5. Run following command for each nuget and project dependency to add them to Global Assembly Cache(GAC).
gacutil -i <path to dependency>
  1. Run following commands to register preview handler.
cd C:\Windows\Microsoft.NET\Framework64\4.0.x.x
gacutil -i <path to XYZPreviewHandler.dll>
RegAsm.exe /codebase <path to XYZPreviewHandler.dll>
  1. Restart Windows Explorer process.

Unregistering Preview Handler

  1. Run following commands in elevated developer command prompt to unregister preview handler.
cd C:\Windows\Microsoft.NET\Framework64\4.0.x.x
RegAsm.exe /unregister <path to XYZPreviewHandler.dll>
gacutil -u XYZPreviewHandler

Debugging

Since in-process preview handlers run under a surrogate hosting process (prevhost.exe by default), to debug a preview handler, you need to attach the debugger to the host process.

  1. Click on a file with registered extension to start host process.
  2. Attach debugger in Visual studio from Debug->Attach to Process and select prevhost.exe with type Managed(version), x64.

Managing Preview Handlers

After successful integration, your preview handler should appear in the PowerToys settings UI under the File Explorer Preview Tab. In here you should be able to enable and disable all the preview handles.

Settings UI - File Explorer Preview Tab