PowerToys/Wox/ResultPanel.xaml.cs

284 lines
9.2 KiB
C#
Raw Normal View History

2014-02-21 18:59:47 +08:00
using System;
using System.Collections.Generic;
2013-12-27 00:39:07 +08:00
using System.Windows;
2013-12-22 19:35:21 +08:00
using System.Windows.Controls;
using System.Windows.Input;
2014-02-28 23:21:01 +08:00
using System.Windows.Media;
2015-07-17 15:08:39 +08:00
using Wox.Core.UserSettings;
2014-01-29 18:33:24 +08:00
using Wox.Plugin;
2015-02-05 23:29:41 +08:00
using Wox.Storage;
2013-12-22 19:35:21 +08:00
2014-01-29 18:33:24 +08:00
namespace Wox
2013-12-22 19:35:21 +08:00
{
public partial class ResultPanel : UserControl
{
2014-10-23 18:39:11 +08:00
public event Action<Result> LeftMouseClickEvent;
public event Action<Result> RightMouseClickEvent;
2015-02-03 18:32:16 +08:00
public event Action<Result, IDataObject, DragEventArgs> ItemDropEvent;
2014-10-23 18:39:11 +08:00
protected virtual void OnRightMouseClick(Result result)
{
2014-10-23 18:39:11 +08:00
Action<Result> handler = RightMouseClickEvent;
if (handler != null) handler(result);
}
protected virtual void OnLeftMouseClick(Result result)
{
Action<Result> handler = LeftMouseClickEvent;
if (handler != null) handler(result);
}
2014-01-03 23:52:36 +08:00
public bool Dirty { get; set; }
public int MaxResultsToShow { get { return UserSettingStorage.Instance.MaxResultsToShow * 50; } }
2013-12-22 19:35:21 +08:00
public void AddResults(List<Result> results)
{
2014-01-03 23:52:36 +08:00
if (Dirty)
{
Dirty = false;
lbResults.Items.Clear();
2014-01-03 23:52:36 +08:00
}
foreach (var result in results)
2013-12-22 19:35:21 +08:00
{
2015-02-05 23:29:41 +08:00
int position = 0;
if (IsTopMostResult(result))
{
result.Score = int.MaxValue;
}
else
{
if (result.Score >= int.MaxValue)
{
result.Score = int.MaxValue - 1;
}
position = GetInsertLocation(result.Score);
}
lbResults.Items.Insert(position, result);
2013-12-22 19:35:21 +08:00
}
2014-03-20 21:41:30 +08:00
lbResults.Margin = lbResults.Items.Count > 0 ? new Thickness { Top = 8 } : new Thickness { Top = 0 };
2014-01-04 20:26:13 +08:00
SelectFirst();
}
2015-02-05 23:29:41 +08:00
private bool IsTopMostResult(Result result)
{
return TopMostRecordStorage.Instance.IsTopMost(result);
}
2014-01-04 20:26:13 +08:00
private int GetInsertLocation(int currentScore)
{
int location = lbResults.Items.Count;
if (lbResults.Items.Count == 0) return 0;
if (currentScore > ((Result)lbResults.Items[0]).Score) return 0;
2014-01-04 20:26:13 +08:00
for (int index = 1; index < lbResults.Items.Count; index++)
2014-01-04 20:26:13 +08:00
{
Result next = lbResults.Items[index] as Result;
Result prev = lbResults.Items[index - 1] as Result;
2014-01-04 20:26:13 +08:00
if (next != null && prev != null)
{
if ((currentScore >= next.Score && currentScore <= prev.Score))
2014-01-04 20:26:13 +08:00
{
if (currentScore == next.Score)
2014-01-14 23:31:24 +08:00
{
location = index + 1;
}
else
{
location = index;
}
2014-01-04 20:26:13 +08:00
}
}
}
return location;
}
2013-12-22 19:35:21 +08:00
public void SelectNext()
{
int index = lbResults.SelectedIndex;
if (index == lbResults.Items.Count - 1)
2013-12-22 19:35:21 +08:00
{
index = -1;
}
Select(index + 1);
}
public void SelectPrev()
{
int index = lbResults.SelectedIndex;
2013-12-22 19:35:21 +08:00
if (index == 0)
{
index = lbResults.Items.Count;
2013-12-22 19:35:21 +08:00
}
Select(index - 1);
}
private void SelectFirst()
2013-12-22 19:35:21 +08:00
{
Select(0);
2013-12-22 19:35:21 +08:00
}
private void Select(int index)
2013-12-22 19:35:21 +08:00
{
if (index >= 0 && index < lbResults.Items.Count)
{
lbResults.SelectedItem = lbResults.Items.GetItemAt(index);
}
2013-12-22 19:35:21 +08:00
}
2015-01-23 18:28:14 +08:00
public List<Result> GetVisibleResults()
{
List<Result> visibleElements = new List<Result>();
2015-02-09 00:13:08 +08:00
VirtualizingStackPanel virtualizingStackPanel = GetInnerStackPanel(lbResults);
for (int i = (int)virtualizingStackPanel.VerticalOffset; i <= virtualizingStackPanel.VerticalOffset + virtualizingStackPanel.ViewportHeight; i++)
{
ListBoxItem item = lbResults.ItemContainerGenerator.ContainerFromIndex(i) as ListBoxItem;
if (item != null)
{
visibleElements.Add(item.DataContext as Result);
}
}
return visibleElements;
}
2015-01-23 18:28:14 +08:00
2015-02-09 00:13:08 +08:00
private void UpdateItemNumber()
{
//VirtualizingStackPanel virtualizingStackPanel = GetInnerStackPanel(lbResults);
//int index = 0;
//for (int i = (int)virtualizingStackPanel.VerticalOffset; i <= virtualizingStackPanel.VerticalOffset + virtualizingStackPanel.ViewportHeight; i++)
//{
// index++;
// ListBoxItem item = lbResults.ItemContainerGenerator.ContainerFromIndex(i) as ListBoxItem;
// if (item != null)
// {
// ContentPresenter myContentPresenter = FindVisualChild<ContentPresenter>(item);
// if (myContentPresenter != null)
// {
// DataTemplate dataTemplate = myContentPresenter.ContentTemplate;
// TextBlock tbItemNumber = (TextBlock)dataTemplate.FindName("tbItemNumber", myContentPresenter);
// tbItemNumber.Text = index.ToString();
// }
// }
//}
2015-02-09 00:13:08 +08:00
}
2015-01-23 18:28:14 +08:00
2015-02-09 00:13:08 +08:00
private childItem FindVisualChild<childItem>(DependencyObject obj) where childItem : DependencyObject
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(obj, i);
if (child != null && child is childItem)
return (childItem)child;
else
2015-01-23 18:28:14 +08:00
{
2015-02-09 00:13:08 +08:00
childItem childOfChild = FindVisualChild<childItem>(child);
if (childOfChild != null)
return childOfChild;
2015-01-23 18:28:14 +08:00
}
}
2015-02-09 00:13:08 +08:00
return null;
2015-01-23 18:28:14 +08:00
}
private VirtualizingStackPanel GetInnerStackPanel(FrameworkElement element)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(element); i++)
{
var child = VisualTreeHelper.GetChild(element, i) as FrameworkElement;
if (child == null) continue;
if (child is VirtualizingStackPanel) return child as VirtualizingStackPanel;
var panel = GetInnerStackPanel(child);
if (panel != null)
return panel;
}
return null;
}
public Result GetActiveResult()
2013-12-22 19:35:21 +08:00
{
int index = lbResults.SelectedIndex;
2014-01-07 23:27:05 +08:00
if (index < 0) return null;
2014-02-22 16:55:15 +08:00
return lbResults.Items[index] as Result;
2013-12-22 19:35:21 +08:00
}
public ResultPanel()
{
InitializeComponent();
}
2014-01-03 23:52:36 +08:00
public void Clear()
{
lbResults.Items.Clear();
2014-03-20 21:41:30 +08:00
lbResults.Margin = new Thickness { Top = 0 };
}
private void lbResults_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (e.AddedItems.Count > 0 && e.AddedItems[0] != null)
{
lbResults.ScrollIntoView(e.AddedItems[0]);
Dispatcher.DelayInvoke("UpdateItemNumber", () =>
2015-02-09 00:13:08 +08:00
{
UpdateItemNumber();
}, TimeSpan.FromMilliseconds(3));
}
2014-01-03 23:52:36 +08:00
}
private void LbResults_OnPreviewMouseDown(object sender, MouseButtonEventArgs e)
{
var item = ItemsControl.ContainerFromElement(lbResults, e.OriginalSource as DependencyObject) as ListBoxItem;
2014-10-23 18:39:11 +08:00
if (item != null && e.ChangedButton == MouseButton.Left)
{
OnLeftMouseClick(item.DataContext as Result);
}
if (item != null && e.ChangedButton == MouseButton.Right)
{
2014-10-23 18:39:11 +08:00
OnRightMouseClick(item.DataContext as Result);
}
}
2014-03-17 03:52:52 +08:00
public void SelectNextPage()
{
int index = lbResults.SelectedIndex;
index += 5;
if (index >= lbResults.Items.Count)
{
index = lbResults.Items.Count - 1;
}
Select(index);
}
public void SelectPrevPage()
{
int index = lbResults.SelectedIndex;
index -= 5;
if (index < 0)
{
index = 0;
}
Select(index);
}
2015-02-02 23:28:40 +08:00
private void ListBoxItem_OnDrop(object sender, DragEventArgs e)
{
var item = ItemsControl.ContainerFromElement(lbResults, e.OriginalSource as DependencyObject) as ListBoxItem;
if (item != null)
{
2015-02-03 18:32:16 +08:00
OnItemDropEvent(item.DataContext as Result, e.Data, e);
2015-02-02 23:28:40 +08:00
}
}
2015-02-03 18:32:16 +08:00
protected virtual void OnItemDropEvent(Result obj, IDataObject data, DragEventArgs e)
2015-02-02 23:28:40 +08:00
{
var handler = ItemDropEvent;
2015-02-03 18:32:16 +08:00
if (handler != null) handler(obj, data, e);
2015-02-02 23:28:40 +08:00
}
2013-12-22 19:35:21 +08:00
}
2013-12-23 23:53:38 +08:00
}