mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-11 12:14:53 +08:00

* dotnet sc * MD preview - C# app - working self-contained * Gcode preview - C# app * DevFiles preview - C# app * Fix passing path with spaces as cmd arg and monacocpp proj file * Pdf preview - C# app * Svg preview - C# app * Fix comment * Gcode thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Pdf thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Pdf thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Fix GcodeThumbnailProviderCpp.vcxproj * Svg thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Fix Svg tests * Thumbnail providers - installer * Self-contained Hosts and FileLocksmith * Fix hardcoded <RuntimeIdentifier> * Remove unneeded files * Try to fix Nuget in PR CI * Prefix new dlls with PowerToys. Sign new dlls and exes * Add new .exe files to ProcessList * ci: debug by listing all env vars * ci: try setting variable in the right ci file * Bring back hardcoded RuntimeIdentifier * ci: Add comment and remove debug action * Remove unneeded lib * [WIP] Platform conditional dotnet files & hardlinks * Cleanup * Update expect.txt * Test fix - ARM installer * Fix uninstall bug * Update docs * Fix failing test * Add dll details * Minor cleanup * Improve resizing * Add some logs * Test fix - release build * Remove InvokeOnControlThread * Test fix: logger initialization * Fix arm64 installer Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> Co-authored-by: Dustin L. Howett <dustin@howett.net>
69 lines
1.8 KiB
C++
69 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include "pch.h"
|
|
|
|
#include <filesystem>
|
|
#include <ShlObj.h>
|
|
#include <string>
|
|
|
|
class MarkdownPreviewHandler :
|
|
public IInitializeWithFile,
|
|
public IPreviewHandler,
|
|
public IPreviewHandlerVisuals,
|
|
public IOleWindow,
|
|
public IObjectWithSite
|
|
{
|
|
public:
|
|
// IUnknown
|
|
IFACEMETHODIMP QueryInterface(REFIID riid, void** ppv);
|
|
IFACEMETHODIMP_(ULONG) AddRef();
|
|
IFACEMETHODIMP_(ULONG) Release();
|
|
|
|
// IInitializeWithFile
|
|
IFACEMETHODIMP Initialize(LPCWSTR pszFilePath, DWORD grfMode);
|
|
|
|
// IPreviewHandler
|
|
IFACEMETHODIMP SetWindow(HWND hwnd, const RECT* prc);
|
|
IFACEMETHODIMP SetFocus();
|
|
IFACEMETHODIMP QueryFocus(HWND* phwnd);
|
|
IFACEMETHODIMP TranslateAccelerator(MSG* pmsg);
|
|
IFACEMETHODIMP SetRect(const RECT* prc);
|
|
IFACEMETHODIMP DoPreview();
|
|
IFACEMETHODIMP Unload();
|
|
|
|
// IPreviewHandlerVisuals
|
|
IFACEMETHODIMP SetBackgroundColor(COLORREF color);
|
|
IFACEMETHODIMP SetFont(const LOGFONTW* plf);
|
|
IFACEMETHODIMP SetTextColor(COLORREF color);
|
|
|
|
// IOleWindow
|
|
IFACEMETHODIMP GetWindow(HWND* phwnd);
|
|
IFACEMETHODIMP ContextSensitiveHelp(BOOL fEnterMode);
|
|
|
|
// IObjectWithSite
|
|
IFACEMETHODIMP SetSite(IUnknown* punkSite);
|
|
IFACEMETHODIMP GetSite(REFIID riid, void** ppv);
|
|
|
|
MarkdownPreviewHandler();
|
|
protected:
|
|
~MarkdownPreviewHandler();
|
|
|
|
private:
|
|
// Reference count of component.
|
|
long m_cRef;
|
|
|
|
// Provided during initialization.
|
|
std::wstring m_filePath;
|
|
|
|
// Parent window that hosts the previewer window.
|
|
// Note: do NOT DestroyWindow this.
|
|
HWND m_hwndParent;
|
|
// Bounding rect of the parent window.
|
|
RECT m_rcParent;
|
|
|
|
// Site pointer from host, used to get IPreviewHandlerFrame.
|
|
IUnknown* m_punkSite;
|
|
|
|
HANDLE m_process;
|
|
HANDLE m_resizeEvent;
|
|
}; |