2020-07-23 11:01:49 -07:00
|
|
|
// Copyright (c) Microsoft Corporation
|
2020-04-08 00:19:00 -07:00
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
using System.Text.Json.Serialization;
|
2020-10-24 00:05:07 +02:00
|
|
|
using ManagedCommon;
|
2020-07-23 11:01:49 -07:00
|
|
|
|
2020-10-22 09:45:48 -07:00
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
2020-04-08 00:19:00 -07:00
|
|
|
{
|
|
|
|
|
public class PowerLauncherProperties
|
|
|
|
|
{
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("search_result_preference")]
|
|
|
|
|
public string SearchResultPreference { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("search_type_preference")]
|
|
|
|
|
public string SearchTypePreference { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("maximum_number_of_results")]
|
|
|
|
|
public int MaximumNumberOfResults { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("open_powerlauncher")]
|
|
|
|
|
public HotkeySettings OpenPowerLauncher { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("open_file_location")]
|
|
|
|
|
public HotkeySettings OpenFileLocation { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("copy_path_location")]
|
|
|
|
|
public HotkeySettings CopyPathLocation { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("open_console")]
|
|
|
|
|
public HotkeySettings OpenConsole { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("override_win_r_key")]
|
|
|
|
|
public bool OverrideWinkeyR { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("override_win_s_key")]
|
|
|
|
|
public bool OverrideWinkeyS { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("ignore_hotkeys_in_fullscreen")]
|
|
|
|
|
public bool IgnoreHotkeysInFullscreen { get; set; }
|
2020-04-08 00:19:00 -07:00
|
|
|
|
2020-07-23 11:01:49 -07:00
|
|
|
[JsonPropertyName("clear_input_on_launch")]
|
|
|
|
|
public bool ClearInputOnLaunch { get; set; }
|
2020-07-15 02:54:21 +02:00
|
|
|
|
2023-01-10 19:34:50 +05:30
|
|
|
[JsonPropertyName("tab_selects_context_buttons")]
|
|
|
|
|
public bool TabSelectsContextButtons { get; set; }
|
|
|
|
|
|
2020-10-24 00:05:07 +02:00
|
|
|
[JsonPropertyName("theme")]
|
|
|
|
|
public Theme Theme { get; set; }
|
|
|
|
|
|
2021-03-09 17:20:49 +00:00
|
|
|
[JsonPropertyName("startupPosition")]
|
|
|
|
|
public StartupPosition Position { get; set; }
|
|
|
|
|
|
2021-10-01 14:59:52 +01:00
|
|
|
[JsonPropertyName("use_centralized_keyboard_hook")]
|
|
|
|
|
public bool UseCentralizedKeyboardHook { get; set; }
|
|
|
|
|
|
2022-06-12 14:12:10 +01:00
|
|
|
[JsonPropertyName("search_query_results_with_delay")]
|
|
|
|
|
public bool SearchQueryResultsWithDelay { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("search_input_delay")]
|
|
|
|
|
public int SearchInputDelay { get; set; }
|
|
|
|
|
|
2022-08-10 06:07:53 -04:00
|
|
|
[JsonPropertyName("search_input_delay_fast")]
|
|
|
|
|
public int SearchInputDelayFast { get; set; }
|
|
|
|
|
|
2022-07-04 10:12:56 -04:00
|
|
|
[JsonPropertyName("search_clicked_item_weight")]
|
|
|
|
|
public int SearchClickedItemWeight { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("search_query_tuning_enabled")]
|
|
|
|
|
public bool SearchQueryTuningEnabled { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("search_wait_for_slow_results")]
|
|
|
|
|
public bool SearchWaitForSlowResults { get; set; }
|
|
|
|
|
|
2023-03-06 22:57:52 +00:00
|
|
|
[JsonPropertyName("generate_thumbnails_from_files")]
|
|
|
|
|
public bool GenerateThumbnailsFromFiles { get; set; }
|
|
|
|
|
|
2023-06-20 15:42:04 +02:00
|
|
|
public HotkeySettings DefaultOpenPowerLauncher => new HotkeySettings(false, false, true, false, 32);
|
|
|
|
|
|
|
|
|
|
public HotkeySettings DefaultOpenFileLocation => new HotkeySettings();
|
|
|
|
|
|
|
|
|
|
public HotkeySettings DefaultCopyPathLocation => new HotkeySettings();
|
|
|
|
|
|
2020-04-08 00:19:00 -07:00
|
|
|
public PowerLauncherProperties()
|
|
|
|
|
{
|
2023-06-20 15:42:04 +02:00
|
|
|
OpenPowerLauncher = DefaultOpenPowerLauncher;
|
|
|
|
|
OpenFileLocation = DefaultOpenFileLocation;
|
|
|
|
|
CopyPathLocation = DefaultCopyPathLocation;
|
2020-07-23 11:01:49 -07:00
|
|
|
OpenConsole = new HotkeySettings();
|
|
|
|
|
SearchResultPreference = "most_recently_used";
|
|
|
|
|
SearchTypePreference = "application_name";
|
|
|
|
|
IgnoreHotkeysInFullscreen = false;
|
|
|
|
|
ClearInputOnLaunch = false;
|
2023-01-10 19:34:50 +05:30
|
|
|
TabSelectsContextButtons = true;
|
2020-07-25 08:50:29 +02:00
|
|
|
MaximumNumberOfResults = 4;
|
2020-10-24 00:05:07 +02:00
|
|
|
Theme = Theme.System;
|
2021-03-09 17:20:49 +00:00
|
|
|
Position = StartupPosition.Cursor;
|
2021-10-01 14:59:52 +01:00
|
|
|
UseCentralizedKeyboardHook = false;
|
2022-06-12 14:12:10 +01:00
|
|
|
SearchQueryResultsWithDelay = true;
|
2023-07-11 15:15:06 +01:00
|
|
|
SearchInputDelayFast = 50;
|
2022-06-12 14:12:10 +01:00
|
|
|
SearchInputDelay = 150;
|
2022-07-04 10:12:56 -04:00
|
|
|
SearchClickedItemWeight = 5;
|
|
|
|
|
SearchQueryTuningEnabled = false;
|
|
|
|
|
SearchWaitForSlowResults = false;
|
2023-03-06 22:57:52 +00:00
|
|
|
GenerateThumbnailsFromFiles = true;
|
2020-04-08 00:19:00 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|