PowerToys/Wox/ResultPanel.xaml.cs

133 lines
3.6 KiB
C#
Raw Normal View History

2013-12-22 19:35:21 +08:00
using System.Collections.Generic;
2014-02-20 21:46:23 +08:00
using System.Windows;
2013-12-22 19:35:21 +08:00
using System.Windows.Controls;
using Wox.Helper;
2014-01-29 18:33:24 +08:00
using Wox.Plugin;
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-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-02-20 21:46:23 +08:00
gridContainer.Margin = lbResults.Items.Count > 0 ? new Thickness { Top = 8 } : new Thickness { Top = 0 };
lbResults.UpdateLayout();
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;
}
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;
var result = lbResults.Items[index] as Result;
if (result != null)
2013-12-22 19:35:21 +08:00
{
if (result.Action != null)
2014-01-05 17:56:02 +08:00
{
result.Action(new ActionContext()
{
SpecialKeyState = new KeyboardListener().CheckModifiers()
});
2014-01-05 17:56:02 +08:00
}
return result;
2013-12-22 19:35:21 +08:00
}
2014-01-05 17:56:02 +08:00
2014-01-07 23:27:05 +08:00
return null;
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-02-20 21:46:23 +08:00
gridContainer.Margin = new Thickness { Top = 0 };
}
private void lbResults_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (e.AddedItems.Count > 0)
{
lbResults.ScrollIntoView(e.AddedItems[0]);
}
2014-01-03 23:52:36 +08:00
}
2013-12-22 19:35:21 +08:00
}
2013-12-23 23:53:38 +08:00
}