[PT Run] VirtualDesktopHelper & WindowWalker improvements (#16325)

* Import vdh from poc

* last changes

* push changes

* small change

* add error handling to vdh

* last changes

* make spellchecker happy

* last changes

* last changes

* spell check

* fix settings defaults

* Improve WindowWalkerSettings class

* add comment

* New settings and improvements

* new features

* subtitle and tool tip

* spell fixes

* small fixes

* fixes

* Explorer info

* spell fixes

* fixes and CloseWindow feature

* last changes

* first part of implementing KillProcess

* killProcess Part 2 & Fixes

* text fix and installer

* update access modifiers

* some fixes

* update dev docs

* fix dev docs

* dev doc change

* dev docs: add missed infos

* dev docs: add link

* Update src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs

* fix build

* resolve feedback

* fix settings

* add tests
This commit is contained in:
Heiko
2022-03-07 12:45:29 +01:00
committed by GitHub
parent 27611593bd
commit e8363a3be1
33 changed files with 1764 additions and 103 deletions

View File

@@ -19,7 +19,7 @@ namespace Wox.Plugin.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
@@ -77,5 +77,23 @@ namespace Wox.Plugin.Properties {
return ResourceManager.GetString("FailedToLoadPluginTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to On all Desktops.
/// </summary>
public static string VirtualDesktopHelper_AllDesktops {
get {
return ResourceManager.GetString("VirtualDesktopHelper_AllDesktops", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Desktop {0}.
/// </summary>
public static string VirtualDesktopHelper_Desktop {
get {
return ResourceManager.GetString("VirtualDesktopHelper_Desktop", resourceCulture);
}
}
}
}

View File

@@ -122,5 +122,14 @@
</data>
<data name="FailedToLoadPluginTitle" xml:space="preserve">
<value>Fail to Load {0} Plugin</value>
<comment>Do not translate '{0}' as this is a place holder and will be converted in code.</comment>
</data>
<data name="VirtualDesktopHelper_AllDesktops" xml:space="preserve">
<value>On all Desktops</value>
<comment>The window is shown on all desktops.</comment>
</data>
<data name="VirtualDesktopHelper_Desktop" xml:space="preserve">
<value>Desktop {0}</value>
<comment>Default name for virtual desktops. Do not translate '{0}' as this is a place holder and will be converted in code.</comment>
</data>
</root>