PowerToys/src
Andrey Nekrasov 212ea2de30
common: refactor common library pt2 (#8588)
- remove common lib
- split settings, remove common-md
- move ipc interop/kb_layout to interop
- rename core -> settings, settings -> old_settings
- os-detect header-only; interop -> PowerToysInterop
- split notifications, move single-use headers where they're used
- winstore lib
- rename com utils
- rename Updating and Telemetry projects
- rename core -> settings-ui and remove examples folder
- rename settings-ui folder + consisent common/version include
2020-12-15 15:16:09 +03:00
..
action_runner common: refactor common library pt2 (#8588) 2020-12-15 15:16:09 +03:00
codeAnalysis spelling: suppressions 2020-10-30 14:42:28 -04:00
common common: refactor common library pt2 (#8588) 2020-12-15 15:16:09 +03:00
logging common: refactor common library pt2 (#8588) 2020-12-15 15:16:09 +03:00
modules common: refactor common library pt2 (#8588) 2020-12-15 15:16:09 +03:00
runner common: refactor common library pt2 (#8588) 2020-12-15 15:16:09 +03:00
settings common: refactor common library pt2 (#8588) 2020-12-15 15:16:09 +03:00
settings-ui common: refactor common library pt2 (#8588) 2020-12-15 15:16:09 +03:00
settings-web [settings-web] Update packages (#7849) 2020-11-05 08:53:27 +01:00
tests/win-app-driver Migrate winappdriver test project to .NET Core (#8412) 2020-12-10 06:53:07 -08:00
.clang-format
.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
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.