PowerToys/Wox/ResultPanel.xaml.cs

183 lines
5.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;
2014-01-29 18:33:24 +08:00
using Wox.Plugin;
using UserControl = System.Windows.Controls.UserControl;
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
{
public event Action<Result> OnMouseClickItem;
protected virtual void OnOnMouseClickItem(Result result)
{
Action<Result> handler = OnMouseClickItem;
if (handler != null) handler(result);
}
2014-01-03 23:52:36 +08:00
public bool Dirty { get; set; }
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
{
int 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();
}
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;
}
2014-02-28 23:21:01 +08:00
private FrameworkElement FindByName(string name, FrameworkElement root)
{
Stack<FrameworkElement> tree = new Stack<FrameworkElement>();
tree.Push(root);
while (tree.Count > 0)
{
FrameworkElement current = tree.Pop();
if (current.Name == name)
return current;
int count = VisualTreeHelper.GetChildrenCount(current);
for (int i = 0; i < count; ++i)
{
DependencyObject child = VisualTreeHelper.GetChild(current, i);
if (child is FrameworkElement)
tree.Push((FrameworkElement)child);
}
}
return null;
}
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
}
2014-01-07 23:27:05 +08:00
public Result AcceptSelect()
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]);
}
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;
if (item != null)
{
OnOnMouseClickItem(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);
}
2013-12-22 19:35:21 +08:00
}
2013-12-23 23:53:38 +08:00
}