Files
PowerToys/WinAlfred/MainWindow.xaml.cs

226 lines
7.2 KiB
C#
Raw Normal View History

2013-12-22 19:35:21 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
2013-12-25 00:21:54 +08:00
using System.Threading;
2013-12-22 19:35:21 +08:00
using System.Windows;
using System.Windows.Controls;
using System.Windows.Forms;
using System.Windows.Input;
2014-01-07 19:27:51 +08:00
using System.Windows.Media.Animation;
using System.Windows.Shapes;
2014-01-06 22:21:08 +08:00
using IWshRuntimeLibrary;
using Microsoft.Win32;
2014-01-03 18:16:05 +08:00
using WinAlfred.Commands;
2013-12-22 19:35:21 +08:00
using WinAlfred.Helper;
using WinAlfred.Plugin;
using WinAlfred.PluginLoader;
using KeyEventArgs = System.Windows.Input.KeyEventArgs;
2014-01-04 20:26:13 +08:00
using MessageBox = System.Windows.MessageBox;
2014-01-03 23:52:36 +08:00
using Timer = System.Threading.Timer;
2013-12-22 19:35:21 +08:00
namespace WinAlfred
{
2014-01-04 20:26:13 +08:00
public partial class MainWindow
2013-12-22 19:35:21 +08:00
{
private KeyboardHook hook = new KeyboardHook();
2014-01-04 20:26:13 +08:00
private NotifyIcon notifyIcon;
2014-01-03 23:52:36 +08:00
private Command cmdDispatcher;
2014-01-07 19:27:51 +08:00
Storyboard progressBarStoryboard = new Storyboard();
2013-12-22 19:35:21 +08:00
public MainWindow()
{
InitializeComponent();
2014-01-03 23:52:36 +08:00
2013-12-22 19:35:21 +08:00
hook.KeyPressed += OnHotKey;
hook.RegisterHotKey(XModifierKeys.Alt, Keys.Space);
resultCtrl.resultItemChangedEvent += resultCtrl_resultItemChangedEvent;
2014-01-04 20:26:13 +08:00
ThreadPool.SetMaxThreads(30, 10);
2014-01-07 19:27:51 +08:00
InitProgressbarAnimation();
}
private void InitProgressbarAnimation()
{
DoubleAnimation da = new DoubleAnimation(progressBar.X2, Width + 100, new Duration(new TimeSpan(0, 0, 0,0,1600)));
DoubleAnimation da1 = new DoubleAnimation(progressBar.X1, Width, new Duration(new TimeSpan(0, 0, 0, 0,1600)));
Storyboard.SetTargetProperty(da, new PropertyPath("(Line.X1)"));
Storyboard.SetTargetProperty(da1, new PropertyPath("(Line.X2)"));
progressBarStoryboard.Children.Add(da);
progressBarStoryboard.Children.Add(da1);
progressBarStoryboard.RepeatBehavior = RepeatBehavior.Forever;
progressBar.Visibility = Visibility.Hidden;
progressBar.BeginStoryboard(progressBarStoryboard);
2013-12-22 19:35:21 +08:00
}
2013-12-23 00:10:46 +08:00
private void InitialTray()
{
2013-12-25 00:21:54 +08:00
notifyIcon = new NotifyIcon { Text = "WinAlfred", Icon = Properties.Resources.app, Visible = true };
2013-12-23 00:10:46 +08:00
notifyIcon.Click += (o, e) => ShowWinAlfred();
System.Windows.Forms.MenuItem open = new System.Windows.Forms.MenuItem("Open");
open.Click += (o, e) => ShowWinAlfred();
System.Windows.Forms.MenuItem exit = new System.Windows.Forms.MenuItem("Exit");
2014-01-05 17:56:02 +08:00
exit.Click += (o, e) => CloseApp();
2013-12-23 00:10:46 +08:00
System.Windows.Forms.MenuItem[] childen = { open, exit };
notifyIcon.ContextMenu = new System.Windows.Forms.ContextMenu(childen);
}
2013-12-22 19:35:21 +08:00
private void resultCtrl_resultItemChangedEvent()
{
Height = resultCtrl.pnlContainer.ActualHeight + tbQuery.Height + tbQuery.Margin.Top + tbQuery.Margin.Bottom;
2014-01-03 23:52:36 +08:00
resultCtrl.Margin = resultCtrl.GetCurrentResultCount() > 0 ? new Thickness { Bottom = 10, Left = 10, Right = 10 } : new Thickness { Bottom = 0, Left = 10, Right = 10 };
2013-12-22 19:35:21 +08:00
}
private void OnHotKey(object sender, KeyPressedEventArgs e)
{
if (!IsVisible)
{
ShowWinAlfred();
}
else
{
HideWinAlfred();
}
}
private void TextBoxBase_OnTextChanged(object sender, TextChangedEventArgs e)
{
2014-01-03 23:52:36 +08:00
resultCtrl.Dirty = true;
2014-01-07 19:27:51 +08:00
Dispatcher.DelayInvoke("UpdateSearch",
() =>
{
resultCtrl.Clear();
var q = new Query(tbQuery.Text);
cmdDispatcher.DispatchCommand(q);
}, TimeSpan.FromMilliseconds(300));
}
private void StartProgress()
{
progressBar.Visibility = Visibility.Visible;
}
private void StopProgress()
{
progressBar.Visibility = Visibility.Hidden;
2013-12-22 19:35:21 +08:00
}
2013-12-23 23:53:38 +08:00
private void HideWinAlfred()
2013-12-22 19:35:21 +08:00
{
Hide();
}
2014-01-05 17:56:02 +08:00
private void ShowWinAlfred()
2013-12-22 19:35:21 +08:00
{
Show();
2014-01-04 20:26:13 +08:00
//FocusManager.SetFocusedElement(this, tbQuery);
tbQuery.Focusable = true;
2014-01-04 20:26:13 +08:00
Keyboard.Focus(tbQuery);
tbQuery.SelectAll();
if (!tbQuery.IsKeyboardFocused)
{
MessageBox.Show("didnt focus");
}
2013-12-22 19:35:21 +08:00
}
2014-01-06 22:21:08 +08:00
public void SetAutoStart(bool IsAtuoRun)
{
string LnkPath = Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "//WinAlfred.lnk";
if (IsAtuoRun)
{
WshShell shell = new WshShell();
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(LnkPath);
shortcut.TargetPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
shortcut.WorkingDirectory = Environment.CurrentDirectory;
shortcut.WindowStyle = 1; //normal window
shortcut.Description = "WinAlfred";
shortcut.Save();
}
else
{
System.IO.File.Delete(LnkPath);
}
}
2013-12-22 19:35:21 +08:00
private void MainWindow_OnLoaded(object sender, RoutedEventArgs e)
{
2014-01-03 23:52:36 +08:00
Plugins.Init(this);
cmdDispatcher = new Command(this);
2013-12-23 00:10:46 +08:00
InitialTray();
2014-01-06 22:21:08 +08:00
SetAutoStart(true);
2014-01-06 19:03:20 +08:00
//var engine = new Jurassic.ScriptEngine();
//MessageBox.Show(engine.Evaluate("5 * 10 + 2").ToString());
2014-01-07 19:27:51 +08:00
StartProgress();
2013-12-22 19:35:21 +08:00
}
private void TbQuery_OnPreviewKeyDown(object sender, KeyEventArgs e)
{
switch (e.Key)
{
case Key.Escape:
HideWinAlfred();
e.Handled = true;
break;
case Key.Down:
resultCtrl.SelectNext();
e.Handled = true;
break;
case Key.Up:
resultCtrl.SelectPrev();
e.Handled = true;
break;
case Key.Enter:
2014-01-05 17:56:02 +08:00
if (resultCtrl.AcceptSelect()) HideWinAlfred();
2013-12-22 19:35:21 +08:00
e.Handled = true;
break;
}
}
2014-01-03 23:52:36 +08:00
public void OnUpdateResultView(List<Result> list)
{
resultCtrl.Dispatcher.Invoke(new Action(() =>
{
List<Result> l = list.Where(o => o.OriginQuery != null && o.OriginQuery.RawQuery == tbQuery.Text).OrderByDescending(o => o.Score).ToList();
2014-01-04 20:26:13 +08:00
resultCtrl.AddResults(l);
2014-01-03 23:52:36 +08:00
}));
}
2014-01-05 17:56:02 +08:00
#region Public API
//Those method can be invoked by plugins
public void ChangeQuery(string query)
{
tbQuery.Text = query;
tbQuery.CaretIndex = tbQuery.Text.Length;
}
public void CloseApp()
{
notifyIcon.Visible = false;
Close();
}
public void HideApp()
{
HideWinAlfred();
}
public void ShowApp()
{
ShowWinAlfred();
}
public void ShowMsg(string title, string subTitle, string iconPath)
{
Msg m = new Msg { Owner = GetWindow(this) };
m.Show(title, subTitle, iconPath);
}
#endregion
2013-12-22 19:35:21 +08:00
}
}