PowerToys/src
DoctorNefario 9461909321
[ColorPicker] Change zoom animation behavior (#11057)
* [ColorPicker] Change zoom animation behavior
Makes the main window large enough to accommodate all zoom levels.

* [ColorPicker] Change zoom window position logic
Use PointFromScreen to calculate mouse position relative to window
This requires a "visible" window, so use opacity to fake-hide window
Window is still fully hidden when color picker closes

* [ColorPicker] Extract and modify resize behavior
Allows easier editing of animation easing/duration

* Update expect.txt

IAnimatable
IEasing

Co-authored-by: Clint Rutkas <clint@rutkas.com>
2021-05-07 09:28:20 +02:00
..
action_runner LEGO: check in for master to temporary branch. (#9116) 2021-01-15 15:29:23 +01:00
codeAnalysis spelling: suppressions 2020-10-30 14:42:28 -04:00
common [Setup] Update .net core to 3.1.14 2021-05-06 15:46:42 +03:00
logging build: Treat warnings as errors in the remaining projects (#8689) 2020-12-21 18:51:48 +03:00
modules [ColorPicker] Change zoom animation behavior (#11057) 2021-05-07 09:28:20 +02:00
runner Use local mutexes (#10651) 2021-04-08 19:42:46 +02:00
settings-ui LEGO: check in for master to temporary branch. (#11081) 2021-05-03 15:15:08 +02:00
tests/win-app-driver Migrate winappdriver test project to .NET Core (#8412) 2020-12-10 06:53:07 -08:00
.clang-format Formatting chores (#1441) 2020-03-05 13:07:06 +03:00
.editorconfig Removing warnings relative to passing in unlocalized string literals. Most of these pertain to debug messages and aren't user facing. We may want to revisit localizing these later. 2020-06-23 17:51:17 -07:00
README.md Spelling: ... (#3398) 2020-05-26 17:02:36 +02:00
Version.props Update Version.props 2020-10-20 15:58:26 -07: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 library with helper functions, used by both the runner and the PowerToys modules.