PowerToys/src
yuyoyuppe f3e25ae3e6
Fix for different per-monitor scaling (#657)
* Use DPIAware::DEFAULT_DPI

* Make runner DPI-unaware, since it doesn't need to use a Per Monitor V2 DPI.

* Programmatically enable "Per Monitor V2 DPI" for the runner proccess and use a separate DPI-unaware thread for the corresponding API calls

* Increase PCH memory limit for settings project

* Address review issues

* Draw zoneWindows properly scaled
2019-11-07 21:56:32 +03:00
..
common Fix for different per-monitor scaling (#657) 2019-11-07 21:56:32 +03:00
modules Fix for different per-monitor scaling (#657) 2019-11-07 21:56:32 +03:00
runner Fix for different per-monitor scaling (#657) 2019-11-07 21:56:32 +03:00
settings Fix for different per-monitor scaling (#657) 2019-11-07 21:56:32 +03:00
settings-web Now working on 0.13.0 (#617) 2019-10-31 17:51:20 +01:00
README.md Update README.md 2019-10-25 15:21:16 +02:00

PowerToys Source Code

Code organization

The PowerToys are split into DLLs for each PowerToy module (modules folder), and an executable (runner folder) that loads and manages those DLLs.

The settings window is a separate executable, contained in settings folder. It utilizes a WebView to display an HTML-based settings window (contained in settings-web folder).

The common contains code for a static libary with helper functions, used by both the runner and the PowerToys modules.