PowerToys/Plugins/Wox.Plugin.Program/Views/ProgramSetting.xaml.cs

267 lines
9.0 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2019-09-07 13:58:13 +08:00
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
2014-03-29 14:42:43 +08:00
using System.Windows.Controls;
2019-09-07 13:58:13 +08:00
using System.Windows.Input;
2019-09-08 20:16:47 +08:00
using Wox.Plugin.Program.Views.Models;
using Wox.Plugin.Program.Views.Commands;
2016-08-20 08:17:28 +08:00
using Wox.Plugin.Program.Programs;
2019-09-12 05:42:42 +08:00
using System.ComponentModel;
using System.Windows.Data;
2014-03-29 14:42:43 +08:00
2019-09-08 20:16:47 +08:00
namespace Wox.Plugin.Program.Views
2014-03-29 14:42:43 +08:00
{
/// <summary>
/// Interaction logic for ProgramSetting.xaml
/// </summary>
public partial class ProgramSetting : UserControl
{
2015-01-06 23:24:11 +08:00
private PluginInitContext context;
private Settings _settings;
2019-09-12 05:42:42 +08:00
private GridViewColumnHeader _lastHeaderClicked;
private ListSortDirection _lastDirection;
2019-09-08 20:16:47 +08:00
internal static List<ProgramSource> ProgramSettingDisplayList { get; set; }
2015-01-06 23:24:11 +08:00
2019-09-08 20:16:47 +08:00
public ProgramSetting(PluginInitContext context, Settings settings, Win32[] win32s, UWP.Application[] uwps)
2014-03-29 14:42:43 +08:00
{
2015-01-06 23:24:11 +08:00
this.context = context;
2014-03-29 14:42:43 +08:00
InitializeComponent();
Loaded += Setting_Loaded;
_settings = settings;
2014-03-29 14:42:43 +08:00
}
private void Setting_Loaded(object sender, RoutedEventArgs e)
{
2019-09-08 20:16:47 +08:00
ProgramSettingDisplayList = _settings.ProgramSources.LoadProgramSources();
programSourceView.ItemsSource = ProgramSettingDisplayList;
StartMenuEnabled.IsChecked = _settings.EnableStartMenuSource;
RegistryEnabled.IsChecked = _settings.EnableRegistrySource;
2014-03-29 14:42:43 +08:00
}
private void ReIndexing()
2014-03-29 14:42:43 +08:00
{
programSourceView.Items.Refresh();
Task.Run(() =>
{
2016-01-07 05:34:42 +08:00
Dispatcher.Invoke(() => { indexingPanel.Visibility = Visibility.Visible; });
2016-05-07 10:55:09 +08:00
Main.IndexPrograms();
2016-01-07 05:34:42 +08:00
Dispatcher.Invoke(() => { indexingPanel.Visibility = Visibility.Hidden; });
});
2014-03-29 14:42:43 +08:00
}
private void btnAddProgramSource_OnClick(object sender, RoutedEventArgs e)
{
2018-12-22 14:07:42 +08:00
var add = new AddProgramSource(context, _settings);
2015-05-02 22:17:42 +08:00
if(add.ShowDialog() ?? false)
{
2016-01-07 05:34:42 +08:00
ReIndexing();
2015-05-02 22:17:42 +08:00
}
2019-09-06 06:06:51 +08:00
programSourceView.Items.Refresh();
2014-03-29 14:42:43 +08:00
}
private void btnDeleteProgramSource_OnClick(object sender, RoutedEventArgs e)
{
2016-08-20 08:17:28 +08:00
var selectedProgramSource = programSourceView.SelectedItem as Settings.ProgramSource;
if (selectedProgramSource != null)
2014-03-29 14:42:43 +08:00
{
2015-01-06 23:24:11 +08:00
string msg = string.Format(context.API.GetTranslation("wox_plugin_program_delete_program_source"), selectedProgramSource.Location);
if (MessageBox.Show(msg, string.Empty, MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
_settings.ProgramSources.Remove(selectedProgramSource);
ReIndexing();
}
2014-03-29 14:42:43 +08:00
}
else
{
2015-01-06 23:24:11 +08:00
string msg = context.API.GetTranslation("wox_plugin_program_pls_select_program_source");
MessageBox.Show(msg);
2014-03-29 14:42:43 +08:00
}
}
private void btnEditProgramSource_OnClick(object sender, RoutedEventArgs e)
{
2016-08-20 08:17:28 +08:00
var selectedProgramSource = programSourceView.SelectedItem as Settings.ProgramSource;
if (selectedProgramSource != null)
2014-03-29 14:42:43 +08:00
{
var add = new AddProgramSource(selectedProgramSource, _settings);
2015-05-02 22:17:42 +08:00
if (add.ShowDialog() ?? false)
{
2016-01-07 05:34:42 +08:00
ReIndexing();
}
2014-03-29 14:42:43 +08:00
}
else
{
2015-01-06 23:24:11 +08:00
string msg = context.API.GetTranslation("wox_plugin_program_pls_select_program_source");
MessageBox.Show(msg);
2014-03-29 14:42:43 +08:00
}
}
private void btnReindex_Click(object sender, RoutedEventArgs e)
{
ReIndexing();
}
private void BtnProgramSuffixes_OnClick(object sender, RoutedEventArgs e)
{
ProgramSuffixes p = new ProgramSuffixes(context, _settings);
p.ShowDialog();
}
private void programSourceView_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
e.Effects = DragDropEffects.Link;
}
else
{
e.Effects = DragDropEffects.None;
}
}
private void programSourceView_Drop(object sender, DragEventArgs e)
{
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
if (files != null && files.Length > 0)
{
foreach (string s in files)
{
2016-01-07 05:34:42 +08:00
if (Directory.Exists(s))
{
2016-08-20 08:17:28 +08:00
_settings.ProgramSources.Add(new Settings.ProgramSource
{
2016-08-20 06:24:21 +08:00
Location = s
});
ReIndexing();
}
}
}
}
private void StartMenuEnabled_Click(object sender, RoutedEventArgs e)
{
_settings.EnableStartMenuSource = StartMenuEnabled.IsChecked ?? false;
ReIndexing();
}
private void RegistryEnabled_Click(object sender, RoutedEventArgs e)
{
_settings.EnableRegistrySource = RegistryEnabled.IsChecked ?? false;
ReIndexing();
}
2019-09-06 06:06:51 +08:00
private void btnLoadAllProgramSource_OnClick(object sender, RoutedEventArgs e)
{
2019-09-08 20:16:47 +08:00
ProgramSettingDisplayList.LoadAllApplications();
2019-09-06 06:06:51 +08:00
programSourceView.Items.Refresh();
}
2019-09-07 13:58:13 +08:00
private void btnProgramSourceStatus_OnClick(object sender, RoutedEventArgs e)
{
var selectedItems = programSourceView
.SelectedItems.Cast<ProgramSource>()
.ToList();
if (IsSelectedRowStatusEnabledMoreOrEqualThanDisabled())
{
ProgramSettingDisplayList.SetProgramSourcesStatus(selectedItems, false);
ProgramSettingDisplayList.StoreDisabledInSettings();
}
else
{
ProgramSettingDisplayList.SetProgramSourcesStatus(selectedItems, true);
ProgramSettingDisplayList.RemoveDisabledFromSettings();
}
if (selectedItems.IsReindexRequired())
ReIndexing();
programSourceView.SelectedItems.Clear();
programSourceView.Items.Refresh();
}
2019-09-07 13:58:13 +08:00
private void ProgramSourceView_PreviewMouseRightButtonUp(object sender, MouseButtonEventArgs e)
{
programSourceView.SelectedItems.Clear();
}
2019-09-12 05:42:42 +08:00
private void GridViewColumnHeaderClickedHandler(object sender, RoutedEventArgs e)
{
var headerClicked = e.OriginalSource as GridViewColumnHeader;
ListSortDirection direction;
if (headerClicked != null)
{
if (headerClicked.Role != GridViewColumnHeaderRole.Padding)
{
if (headerClicked != _lastHeaderClicked)
{
direction = ListSortDirection.Ascending;
}
else
{
if (_lastDirection == ListSortDirection.Ascending)
{
direction = ListSortDirection.Descending;
}
else
{
direction = ListSortDirection.Ascending;
}
}
var columnBinding = headerClicked.Column.DisplayMemberBinding as Binding;
var sortBy = columnBinding?.Path.Path ?? headerClicked.Column.Header as string;
Sort(sortBy, direction);
_lastHeaderClicked = headerClicked;
_lastDirection = direction;
}
}
}
private void Sort(string sortBy, ListSortDirection direction)
{
var dataView = CollectionViewSource.GetDefaultView(programSourceView.ItemsSource);
2019-09-12 05:42:42 +08:00
dataView.SortDescriptions.Clear();
SortDescription sd = new SortDescription(sortBy, direction);
dataView.SortDescriptions.Add(sd);
dataView.Refresh();
}
private bool IsSelectedRowStatusEnabledMoreOrEqualThanDisabled()
{
var selectedItems = programSourceView
.SelectedItems.Cast<ProgramSource>()
.ToList();
return selectedItems.Where(x => x.Enabled).Count() >= selectedItems.Where(x => !x.Enabled).Count();
}
private void Row_Click(object sender, RoutedEventArgs e)
{
if (IsSelectedRowStatusEnabledMoreOrEqualThanDisabled())
{
btnProgramSourceStatus.Content = "Disable";
}
else
{
btnProgramSourceStatus.Content = "Enable";
}
}
2014-03-29 14:42:43 +08:00
}
}