mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02: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>
64 lines
2.3 KiB
C#
64 lines
2.3 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
namespace Microsoft.PowerToys.PreviewHandler.Gcode
|
|
{
|
|
using System.Globalization;
|
|
using System.Windows.Threading;
|
|
using Common.UI;
|
|
using interop;
|
|
|
|
internal static class Program
|
|
{
|
|
private static CancellationTokenSource _tokenSource = new CancellationTokenSource();
|
|
|
|
private static GcodePreviewHandlerControl _previewHandlerControl;
|
|
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
ApplicationConfiguration.Initialize();
|
|
if (args != null)
|
|
{
|
|
if (args.Length == 6)
|
|
{
|
|
string filePath = args[0];
|
|
int hwnd = Convert.ToInt32(args[1], 16);
|
|
|
|
Rectangle s = default(Rectangle);
|
|
int left = Convert.ToInt32(args[2], 10);
|
|
int right = Convert.ToInt32(args[3], 10);
|
|
int top = Convert.ToInt32(args[4], 10);
|
|
int bottom = Convert.ToInt32(args[5], 10);
|
|
|
|
_previewHandlerControl = new GcodePreviewHandlerControl();
|
|
_previewHandlerControl.SetWindow((IntPtr)hwnd, s);
|
|
_previewHandlerControl.DoPreview(filePath);
|
|
|
|
NativeEventWaiter.WaitForEventLoop(
|
|
Constants.GcodePreviewResizeEvent(),
|
|
() =>
|
|
{
|
|
Rectangle s = default(Rectangle);
|
|
_previewHandlerControl.SetRect(s);
|
|
},
|
|
Dispatcher.CurrentDispatcher,
|
|
_tokenSource.Token);
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show("Wrong number of args: " + args.Length.ToString(CultureInfo.InvariantCulture));
|
|
}
|
|
}
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
// see https://aka.ms/applicationconfiguration.
|
|
Application.Run();
|
|
}
|
|
}
|
|
}
|