151 lines
5.1 KiB
C#
151 lines
5.1 KiB
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Input;
|
|
|
|
namespace mpvnet
|
|
{
|
|
public partial class CommandPaletteControl : UserControl
|
|
{
|
|
public ICollectionView CollectionView { get; set; }
|
|
public ICommand EscapeCommand { get; }
|
|
public ICommand ExecuteCommand { get; }
|
|
public CollectionViewSource CollectionViewSource { get; }
|
|
public ObservableCollection<CommandPaletteItem> Items { get; } = new ObservableCollection<CommandPaletteItem>();
|
|
|
|
public CommandPaletteControl()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = this;
|
|
CollectionViewSource = new CollectionViewSource() { Source = Items };
|
|
CollectionView = CollectionViewSource.View;
|
|
CollectionView.Filter = new Predicate<object>(item => Filter((CommandPaletteItem)item));
|
|
MainListView.ItemsSource = CollectionView;
|
|
|
|
EscapeCommand = new RelayCommand(OnEscapeCommand);
|
|
ExecuteCommand = new RelayCommand(OnExecuteCommand);
|
|
|
|
SearchControl.SearchTextBox.PreviewKeyDown += SearchTextBox_PreviewKeyDown;
|
|
SearchControl.SearchTextBox.TextChanged += SearchTextBox_TextChanged;
|
|
SearchControl.HideClearButton = true;
|
|
|
|
if (Environment.OSVersion.Version < new Version(10, 0))
|
|
MainBorder.CornerRadius = new CornerRadius(0);
|
|
}
|
|
|
|
void SearchTextBox_TextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
CollectionView.Refresh();
|
|
SelectFirst();
|
|
}
|
|
|
|
void SearchTextBox_PreviewKeyDown(object sender, KeyEventArgs e)
|
|
{
|
|
switch (e.Key)
|
|
{
|
|
case Key.Up:
|
|
{
|
|
int index = MainListView.SelectedIndex;
|
|
index -= 1;
|
|
|
|
if (index < 0)
|
|
index = 0;
|
|
|
|
MainListView.SelectedIndex = index;
|
|
MainListView.ScrollIntoView(MainListView.SelectedItem);
|
|
}
|
|
break;
|
|
case Key.Down:
|
|
{
|
|
int index = MainListView.SelectedIndex;
|
|
|
|
if (++index > MainListView.Items.Count - 1)
|
|
index = MainListView.Items.Count - 1;
|
|
|
|
MainListView.SelectedIndex = index;
|
|
MainListView.ScrollIntoView(MainListView.SelectedItem);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
void MainListView_SizeChanged(object sender, SizeChangedEventArgs e) => AdjustHeight();
|
|
|
|
void MainListView_MouseUp(object sender, MouseButtonEventArgs e) => Execute();
|
|
|
|
void OnEscapeCommand(object param) => MainForm.Instance.HideCommandPalette();
|
|
|
|
void OnExecuteCommand(object param) => Execute();
|
|
|
|
void OnLoaded(object sender, RoutedEventArgs e) => Keyboard.Focus(SearchControl.SearchTextBox);
|
|
|
|
public Theme Theme => Theme.Current;
|
|
|
|
bool Filter(CommandPaletteItem item)
|
|
{
|
|
string filter = SearchControl.SearchTextBox.Text.ToLower();
|
|
|
|
if (item.CommandItem != null)
|
|
{
|
|
if (item.CommandItem.Alias.ContainsEx(filter))
|
|
return true;
|
|
|
|
if (filter.Length == 1)
|
|
return item.CommandItem.Input.ToLower().Replace("ctrl+", "")
|
|
.Replace("shift+", "")
|
|
.Replace("alt+", "") == filter.ToLower();
|
|
|
|
if (item.CommandItem.Command.ToLower().Contains(filter))
|
|
return true;
|
|
}
|
|
|
|
if (filter == "" || item.Text.ToLower().Contains(filter) ||
|
|
item.SecondaryText.ToLower().Contains(filter))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
public void SelectFirst()
|
|
{
|
|
if (MainListView.Items.Count > 0)
|
|
{
|
|
MainListView.SelectedIndex = 0;
|
|
MainListView.ScrollIntoView(MainListView.SelectedItem);
|
|
}
|
|
}
|
|
|
|
void Execute()
|
|
{
|
|
if (MainListView.SelectedItem != null)
|
|
{
|
|
CommandPaletteItem item = MainListView.SelectedItem as CommandPaletteItem;
|
|
MainForm.Instance.HideCommandPalette();
|
|
item.Action.Invoke();
|
|
MainForm.Instance.Voodoo();
|
|
}
|
|
}
|
|
|
|
public void SetItems(IEnumerable<CommandPaletteItem> items)
|
|
{
|
|
Items.Clear();
|
|
|
|
foreach (var i in items)
|
|
Items.Add(i);
|
|
}
|
|
|
|
public void AdjustHeight()
|
|
{
|
|
double actualHeight = SearchControl.ActualHeight + MainListView.ActualHeight + 5 + 16;
|
|
int dpi = Native.GetDPI(MainForm.Instance.Handle);
|
|
MainForm.Instance.CommandPaletteHost.Height = (int)(actualHeight / 96.0 * dpi);
|
|
}
|
|
}
|
|
}
|