PowerToys/Wox/MainWindow.xaml.cs

739 lines
24 KiB
C#
Raw Normal View History

2014-01-29 18:33:24 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
2014-01-29 18:33:24 +08:00
using System.Linq;
using System.Net;
2014-01-29 18:33:24 +08:00
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Forms;
using System.Windows.Input;
2014-03-26 19:26:10 +08:00
using System.Windows.Interop;
2014-01-29 18:33:24 +08:00
using System.Windows.Media.Animation;
2014-02-20 23:15:03 +08:00
using NHotkey;
using NHotkey.Wpf;
2015-01-02 23:07:49 +08:00
using Wox.Core.i18n;
2014-12-26 19:36:43 +08:00
using Wox.Core.Plugin;
2015-01-02 23:07:49 +08:00
using Wox.Core.Theme;
using Wox.Core.UserSettings;
2014-03-02 11:04:30 +08:00
using Wox.Helper;
using Wox.Infrastructure;
2014-12-21 22:03:03 +08:00
using Wox.Infrastructure.Hotkey;
2014-01-29 18:33:24 +08:00
using Wox.Plugin;
2014-12-26 22:51:04 +08:00
using Wox.Storage;
2014-12-14 23:16:29 +08:00
using Wox.Update;
2014-03-30 00:53:46 +08:00
using Brushes = System.Windows.Media.Brushes;
using Color = System.Windows.Media.Color;
2014-02-22 11:55:48 +08:00
using ContextMenu = System.Windows.Forms.ContextMenu;
using DataFormats = System.Windows.DataFormats;
2014-06-30 22:50:54 +08:00
using DragEventArgs = System.Windows.DragEventArgs;
2014-01-29 18:33:24 +08:00
using KeyEventArgs = System.Windows.Input.KeyEventArgs;
2014-02-22 11:55:48 +08:00
using MenuItem = System.Windows.Forms.MenuItem;
using MessageBox = System.Windows.MessageBox;
2014-02-28 23:21:01 +08:00
using ToolTip = System.Windows.Controls.ToolTip;
2014-01-29 18:33:24 +08:00
2014-07-24 04:46:19 +08:00
namespace Wox
{
public partial class MainWindow : IPublicAPI
{
#region Properties
private readonly Storyboard progressBarStoryboard = new Storyboard();
private NotifyIcon notifyIcon;
private bool queryHasReturn;
private string lastQuery;
private ToolTip toolTip = new ToolTip();
private bool ignoreTextChange = false;
2014-07-24 04:46:19 +08:00
#endregion
#region Public API
public void ChangeQuery(string query, bool requery = false)
{
Dispatcher.Invoke(new Action(() =>
{
tbQuery.Text = query;
tbQuery.CaretIndex = tbQuery.Text.Length;
if (requery)
{
TextBoxBase_OnTextChanged(null, null);
}
}));
}
public void CloseApp()
{
Dispatcher.Invoke(new Action(() =>
{
notifyIcon.Visible = false;
Close();
Environment.Exit(0);
}));
}
public void HideApp()
{
Dispatcher.Invoke(new Action(HideWox));
}
public void ShowApp()
{
Dispatcher.Invoke(new Action(() => ShowWox()));
}
public void ShowMsg(string title, string subTitle, string iconPath)
{
Dispatcher.Invoke(new Action(() =>
{
var m = new Msg { Owner = GetWindow(this) };
m.Show(title, subTitle, iconPath);
}));
}
public void OpenSettingDialog()
{
Dispatcher.Invoke(new Action(() => WindowOpener.Open<SettingWindow>(this)));
}
public void StartLoadingBar()
{
Dispatcher.Invoke(new Action(StartProgress));
}
public void StopLoadingBar()
{
Dispatcher.Invoke(new Action(StopProgress));
}
public void InstallPlugin(string path)
{
2014-12-27 12:34:51 +08:00
Dispatcher.Invoke(new Action(() => PluginManager.InstallPlugin(path)));
2014-07-24 04:46:19 +08:00
}
public void ReloadPlugins()
{
2015-01-02 23:07:49 +08:00
Dispatcher.Invoke(new Action(() => PluginManager.Init(this)));
2014-07-24 04:46:19 +08:00
}
2015-01-06 23:24:11 +08:00
public string GetTranslation(string key)
{
return InternationalizationManager.Internationalization.GetTranslation(key);
}
2014-07-24 04:46:19 +08:00
public List<PluginPair> GetAllPlugins()
{
2014-12-26 19:36:43 +08:00
return PluginManager.AllPlugins;
2014-07-24 04:46:19 +08:00
}
public event WoxKeyDownEventHandler BackKeyDownEvent;
public event WoxGlobalKeyboardEventHandler GlobalKeyboardEvent;
public event AfterWoxQueryEventHandler AfterWoxQueryEvent;
public event AfterWoxQueryEventHandler BeforeWoxQueryEvent;
2014-07-24 04:46:19 +08:00
public void PushResults(Query query, PluginMetadata plugin, List<Result> results, bool clearBeforeInsert = false)
2014-07-24 04:46:19 +08:00
{
results.ForEach(o =>
{
o.PluginDirectory = plugin.PluginDirectory;
2014-10-23 18:39:11 +08:00
if (o.ContextMenu != null)
{
o.ContextMenu.ForEach(t =>
{
t.PluginDirectory = plugin.PluginDirectory;
});
}
2014-07-24 04:46:19 +08:00
o.OriginQuery = query;
});
OnUpdateResultView(results, clearBeforeInsert);
2014-07-24 04:46:19 +08:00
}
#endregion
public MainWindow()
{
InitializeComponent();
ThreadPool.SetMaxThreads(30, 10);
ThreadPool.SetMinThreads(10, 5);
2014-07-24 04:46:19 +08:00
if (UserSettingStorage.Instance.OpacityMode == OpacityMode.LayeredWindow)
{
2014-07-24 04:46:19 +08:00
this.AllowsTransparency = true;
}
2014-07-24 04:46:19 +08:00
WebRequest.RegisterPrefix("data", new DataWebRequestFactory());
GlobalHotkey.Instance.hookedKeyboardCallback += KListener_hookedKeyboardCallback;
2014-07-24 04:46:19 +08:00
progressBar.ToolTip = toolTip;
InitialTray();
2014-10-23 18:39:11 +08:00
pnlResult.LeftMouseClickEvent += SelectResult;
pnlContextMenu.LeftMouseClickEvent += SelectResult;
pnlResult.RightMouseClickEvent += pnlResult_RightMouseClickEvent;
2014-07-24 04:46:19 +08:00
ThemeManager.Theme.ChangeTheme(UserSettingStorage.Instance.Theme);
InternationalizationManager.Internationalization.ChangeLanguage(UserSettingStorage.Instance.Language);
2014-07-24 04:46:19 +08:00
SetHotkey(UserSettingStorage.Instance.Hotkey, OnHotkey);
SetCustomPluginHotkey();
2014-11-03 18:49:18 +08:00
Closing += MainWindow_Closing;
//since MainWIndow implement IPublicAPI, so we need to finish ctor MainWindow object before
//PublicAPI invoke in plugin init methods. E.g FolderPlugin
2014-12-18 19:22:47 +08:00
ThreadPool.QueueUserWorkItem(o =>
{
Thread.Sleep(50);
2014-12-26 22:51:04 +08:00
PluginManager.Init(this);
2014-12-18 19:22:47 +08:00
});
ThreadPool.QueueUserWorkItem(o =>
{
Thread.Sleep(50);
PreLoadImages();
});
CheckUpdate();
}
private bool KListener_hookedKeyboardCallback(KeyEvent keyevent, int vkcode, SpecialKeyState state)
{
if (GlobalKeyboardEvent != null)
{
return GlobalKeyboardEvent((int)keyevent, vkcode, state);
}
return true;
2014-12-18 19:22:47 +08:00
}
2014-12-14 23:16:29 +08:00
2014-12-18 19:22:47 +08:00
private void PreLoadImages()
{
ImageLoader.ImageLoader.PreloadImages();
2014-07-24 04:46:19 +08:00
}
2014-10-23 18:39:11 +08:00
void pnlResult_RightMouseClickEvent(Result result)
{
ShowContextMenu(result);
}
2014-12-18 19:22:47 +08:00
void CheckUpdate()
2014-12-14 23:16:29 +08:00
{
ThreadPool.QueueUserWorkItem(o =>
2014-12-14 23:16:29 +08:00
{
Release release = new UpdateChecker().CheckUpgrade();
if (release != null && !UserSettingStorage.Instance.DontPromptUpdateMsg)
2014-12-16 23:29:25 +08:00
{
Dispatcher.Invoke(new Action(() =>
{
NewVersionWindow newVersinoWindow = new NewVersionWindow();
newVersinoWindow.Show();
}));
}
});
2014-12-14 23:16:29 +08:00
}
void MainWindow_Closing(object sender, CancelEventArgs e)
2014-07-24 04:46:19 +08:00
{
UserSettingStorage.Instance.WindowLeft = Left;
UserSettingStorage.Instance.WindowTop = Top;
UserSettingStorage.Instance.Save();
this.HideWox();
e.Cancel = true;
}
private void MainWindow_OnLoaded(object sender, RoutedEventArgs e)
{
if (UserSettingStorage.Instance.WindowLeft == 0
&& UserSettingStorage.Instance.WindowTop == 0)
2014-07-24 04:46:19 +08:00
{
Left = UserSettingStorage.Instance.WindowLeft
= (SystemParameters.PrimaryScreenWidth - ActualWidth) / 2;
Top = UserSettingStorage.Instance.WindowTop
= (SystemParameters.PrimaryScreenHeight - ActualHeight) / 5;
2014-07-24 04:46:19 +08:00
}
else
{
Left = UserSettingStorage.Instance.WindowLeft;
Top = UserSettingStorage.Instance.WindowTop;
}
InitProgressbarAnimation();
//only works for win7+
if (UserSettingStorage.Instance.OpacityMode == OpacityMode.DWM)
DwmDropShadow.DropShadowToWindow(this);
this.Background = Brushes.Transparent;
HwndSource.FromHwnd(new WindowInteropHelper(this).Handle).CompositionTarget.BackgroundColor = Color.FromArgb(0, 0, 0, 0);
WindowIntelopHelper.DisableControlBox(this);
}
public void SetHotkey(string hotkeyStr, EventHandler<HotkeyEventArgs> action)
{
var hotkey = new HotkeyModel(hotkeyStr);
try
{
HotkeyManager.Current.AddOrReplace(hotkeyStr, hotkey.CharKey, hotkey.ModifierKeys, action);
}
catch (Exception)
{
string errorMsg = string.Format(InternationalizationManager.Internationalization.GetTranslation("registerHotkeyFailed"), hotkeyStr);
2015-01-02 23:07:49 +08:00
MessageBox.Show(errorMsg);
2014-07-24 04:46:19 +08:00
}
}
public void RemoveHotkey(string hotkeyStr)
{
if (!string.IsNullOrEmpty(hotkeyStr))
{
HotkeyManager.Current.Remove(hotkeyStr);
}
}
private void SetCustomPluginHotkey()
{
if (UserSettingStorage.Instance.CustomPluginHotkeys == null) return;
foreach (CustomPluginHotkey hotkey in UserSettingStorage.Instance.CustomPluginHotkeys)
{
CustomPluginHotkey hotkey1 = hotkey;
SetHotkey(hotkey.Hotkey, delegate
{
ShowApp();
ChangeQuery(hotkey1.ActionKeyword, true);
});
}
}
private void OnHotkey(object sender, HotkeyEventArgs e)
{
if (!IsVisible)
{
ShowWox();
}
else
{
HideWox();
}
e.Handled = true;
}
private void InitProgressbarAnimation()
{
var da = new DoubleAnimation(progressBar.X2, ActualWidth + 100, new Duration(new TimeSpan(0, 0, 0, 0, 1600)));
var da1 = new DoubleAnimation(progressBar.X1, ActualWidth, new Duration(new TimeSpan(0, 0, 0, 0, 1600)));
Storyboard.SetTargetProperty(da, new PropertyPath("(Line.X2)"));
Storyboard.SetTargetProperty(da1, new PropertyPath("(Line.X1)"));
progressBarStoryboard.Children.Add(da);
progressBarStoryboard.Children.Add(da1);
progressBarStoryboard.RepeatBehavior = RepeatBehavior.Forever;
progressBar.Visibility = Visibility.Hidden;
progressBar.BeginStoryboard(progressBarStoryboard);
}
private void InitialTray()
{
notifyIcon = new NotifyIcon { Text = "Wox", Icon = Properties.Resources.app, Visible = true };
notifyIcon.Click += (o, e) => ShowWox();
var open = new MenuItem("Open");
open.Click += (o, e) => ShowWox();
var setting = new MenuItem("Settings");
setting.Click += (o, e) => OpenSettingDialog();
var exit = new MenuItem("Exit");
exit.Click += (o, e) => CloseApp();
MenuItem[] childen = { open, setting, exit };
notifyIcon.ContextMenu = new ContextMenu(childen);
}
private void TextBoxBase_OnTextChanged(object sender, TextChangedEventArgs e)
{
if (ignoreTextChange) { ignoreTextChange = false; return; }
lastQuery = tbQuery.Text;
toolTip.IsOpen = false;
2014-10-23 18:39:11 +08:00
pnlResult.Dirty = true;
2014-07-24 04:46:19 +08:00
Dispatcher.DelayInvoke("UpdateSearch",
o =>
{
Dispatcher.DelayInvoke("ClearResults", i =>
{
2014-10-23 18:39:11 +08:00
// first try to use clear method inside pnlResult, which is more closer to the add new results
2015-01-16 23:42:12 +08:00
// and this will not bring splash issues.After waiting 100ms, if there still no results added, we
2014-07-24 04:46:19 +08:00
// must clear the result. otherwise, it will be confused why the query changed, but the results
// didn't.
2014-10-23 18:39:11 +08:00
if (pnlResult.Dirty) pnlResult.Clear();
2014-07-24 04:46:19 +08:00
}, TimeSpan.FromMilliseconds(100), null);
queryHasReturn = false;
var q = new Query(lastQuery);
FireBeforeWoxQueryEvent(q);
2015-01-16 23:42:12 +08:00
Query(q);
2014-10-23 18:39:11 +08:00
BackToResultMode();
2015-01-16 23:42:12 +08:00
Dispatcher.DelayInvoke("ShowProgressbar", originQuery =>
2014-07-24 04:46:19 +08:00
{
2015-01-16 23:42:12 +08:00
if (!queryHasReturn && originQuery == lastQuery)
2014-07-24 04:46:19 +08:00
{
2015-01-16 23:42:12 +08:00
StartProgress();
}
}, TimeSpan.FromMilliseconds(150), lastQuery);
FireAfterWoxQueryEvent(q);
}, TimeSpan.FromMilliseconds(ShouldNotDelayQuery ? 0 : 200));
2014-07-24 04:46:19 +08:00
}
2014-07-27 17:15:12 +08:00
private void FireAfterWoxQueryEvent(Query q)
{
if (AfterWoxQueryEvent != null)
{
//We shouldn't let those events slow down real query
//so I put it in the new thread
ThreadPool.QueueUserWorkItem(o =>
{
AfterWoxQueryEvent(new WoxQueryEventArgs()
{
Query = q
});
});
}
}
private void FireBeforeWoxQueryEvent(Query q)
{
if (BeforeWoxQueryEvent != null)
{
//We shouldn't let those events slow down real query
//so I put it in the new thread
ThreadPool.QueueUserWorkItem(o =>
{
BeforeWoxQueryEvent(new WoxQueryEventArgs()
{
Query = q
});
});
}
}
2015-01-16 23:42:12 +08:00
private void Query(Query q)
{
try
{
PluginManager.Query(q);
}
catch (Exception e)
{
StopProgress();
ErrorReporting.Report(e);
}
}
2014-10-23 18:39:11 +08:00
private void BackToResultMode()
{
pnlResult.Visibility = Visibility.Visible;
pnlContextMenu.Visibility = Visibility.Collapsed;
}
2014-07-24 04:46:19 +08:00
private bool ShouldNotDelayQuery
{
get
{
2014-07-27 17:15:12 +08:00
return IsCMDMode || IsWebSearchMode;
2014-07-24 04:46:19 +08:00
}
}
private bool IsCMDMode
{
get
{
return tbQuery.Text.StartsWith(">");
}
}
private bool IsWebSearchMode
{
get
{
Query q = new Query(tbQuery.Text);
return !UserSettingStorage.Instance.EnableWebSearchSuggestion &&
2014-07-27 17:15:12 +08:00
UserSettingStorage.Instance.WebSearches.Exists(o => o.ActionWord == q.ActionName && o.Enabled);
2014-07-24 04:46:19 +08:00
}
}
private void Border_OnMouseDown(object sender, MouseButtonEventArgs e)
{
if (e.ChangedButton == MouseButton.Left) DragMove();
}
private void StartProgress()
{
progressBar.Visibility = Visibility.Visible;
}
private void StopProgress()
{
progressBar.Visibility = Visibility.Hidden;
}
private void HideWox()
{
Hide();
}
private void ShowWox(bool selectAll = true)
{
if (!double.IsNaN(Left) && !double.IsNaN(Top))
{
var origScreen = Screen.FromRectangle(new Rectangle((int)Left, (int)Top, (int)ActualWidth, (int)ActualHeight));
var screen = Screen.FromPoint(System.Windows.Forms.Cursor.Position);
var coordX = (Left - origScreen.WorkingArea.Left) / (origScreen.WorkingArea.Width - ActualWidth);
var coordY = (Top - origScreen.WorkingArea.Top) / (origScreen.WorkingArea.Height - ActualHeight);
Left = (screen.WorkingArea.Width - ActualWidth) * coordX + screen.WorkingArea.Left;
Top = (screen.WorkingArea.Height - ActualHeight) * coordY + screen.WorkingArea.Top;
}
Show();
Activate();
Focus();
tbQuery.Focus();
if (selectAll) tbQuery.SelectAll();
}
private void MainWindow_OnDeactivated(object sender, EventArgs e)
{
if (UserSettingStorage.Instance.HideWhenDeactive)
{
HideWox();
}
}
private void updateCmdMode()
{
2014-10-23 18:39:11 +08:00
var currentSelectedItem = pnlResult.GetActiveResult();
2014-07-24 04:46:19 +08:00
if (currentSelectedItem != null)
{
ignoreTextChange = true;
tbQuery.Text = ">" + currentSelectedItem.Title;
tbQuery.CaretIndex = tbQuery.Text.Length;
}
}
private void TbQuery_OnPreviewKeyDown(object sender, KeyEventArgs e)
{
//when alt is pressed, the real key should be e.SystemKey
Key key = (e.Key == Key.System ? e.SystemKey : e.Key);
switch (key)
{
case Key.Escape:
2014-10-23 18:39:11 +08:00
if (IsInContextMenuMode)
{
BackToResultMode();
}
else
{
HideWox();
}
2014-07-24 04:46:19 +08:00
e.Handled = true;
break;
case Key.Tab:
if (GlobalHotkey.Instance.CheckModifiers().ShiftPressed)
{
SelectPrevItem();
}
else
{
SelectNextItem();
}
e.Handled = true;
break;
2014-07-24 04:46:19 +08:00
case Key.Down:
SelectNextItem();
2014-07-24 04:46:19 +08:00
e.Handled = true;
break;
case Key.Up:
SelectPrevItem();
2014-07-24 04:46:19 +08:00
e.Handled = true;
break;
case Key.PageDown:
2014-10-23 18:39:11 +08:00
pnlResult.SelectNextPage();
2014-07-24 04:46:19 +08:00
if (IsCMDMode) updateCmdMode();
toolTip.IsOpen = false;
e.Handled = true;
break;
case Key.PageUp:
2014-10-23 18:39:11 +08:00
pnlResult.SelectPrevPage();
2014-07-24 04:46:19 +08:00
if (IsCMDMode) updateCmdMode();
toolTip.IsOpen = false;
e.Handled = true;
break;
2014-07-27 17:15:12 +08:00
2014-07-24 04:46:19 +08:00
case Key.Back:
if (BackKeyDownEvent != null)
{
BackKeyDownEvent(new WoxKeyDownEventArgs()
2014-07-24 04:46:19 +08:00
{
Query = tbQuery.Text,
keyEventArgs = e
});
}
break;
case Key.F1:
2015-01-02 23:07:49 +08:00
Process.Start("http://doc.getwox.com");
break;
2014-07-27 17:15:12 +08:00
case Key.Enter:
2014-10-23 18:39:11 +08:00
Result activeResult = GetActiveResult();
if (GlobalHotkey.Instance.CheckModifiers().ShiftPressed)
2014-10-23 18:39:11 +08:00
{
ShowContextMenu(activeResult);
}
else
{
2015-01-02 23:07:49 +08:00
SelectResult(activeResult);
2014-10-23 18:39:11 +08:00
}
2014-07-24 04:46:19 +08:00
e.Handled = true;
break;
}
}
2014-10-23 18:39:11 +08:00
private bool IsInContextMenuMode
{
get { return pnlContextMenu.Visibility == Visibility.Visible; }
}
private Result GetActiveResult()
{
if (IsInContextMenuMode)
{
return pnlContextMenu.GetActiveResult();
}
else
{
return pnlResult.GetActiveResult();
}
2015-01-02 23:07:49 +08:00
}
2014-10-23 18:39:11 +08:00
private void SelectPrevItem()
{
2014-10-23 18:39:11 +08:00
if (IsInContextMenuMode)
{
pnlContextMenu.SelectPrev();
}
else
{
pnlResult.SelectPrev();
if (IsCMDMode) updateCmdMode();
}
toolTip.IsOpen = false;
}
private void SelectNextItem()
{
2014-10-23 18:39:11 +08:00
if (IsInContextMenuMode)
{
pnlContextMenu.SelectNext();
}
else
{
pnlResult.SelectNext();
if (IsCMDMode) updateCmdMode();
}
toolTip.IsOpen = false;
}
2014-10-23 18:39:11 +08:00
private void SelectResult(Result result)
2014-07-24 04:46:19 +08:00
{
2014-10-23 18:39:11 +08:00
if (result != null)
2014-07-24 04:46:19 +08:00
{
if (result.Action != null)
{
bool hideWindow = result.Action(new ActionContext()
{
SpecialKeyState = GlobalHotkey.Instance.CheckModifiers()
2014-07-24 04:46:19 +08:00
});
if (hideWindow)
{
HideWox();
}
UserSelectedRecordStorage.Instance.Add(result);
}
}
}
private void OnUpdateResultView(List<Result> list, bool clearBeforeInsert = false)
2014-07-24 04:46:19 +08:00
{
queryHasReturn = true;
progressBar.Dispatcher.Invoke(new Action(StopProgress));
if (list == null || list.Count == 0) return;
if (list.Count > 0)
{
//todo:this should be opened to users, it's their choice to use it or not in their workflows
list.ForEach(
o =>
{
if (o.AutoAjustScore) o.Score += UserSelectedRecordStorage.Instance.GetSelectedCount(o) * 5;
2014-07-24 04:46:19 +08:00
});
List<Result> l = list.Where(o => o.OriginQuery != null && o.OriginQuery.RawQuery == lastQuery).ToList();
2014-10-23 18:39:11 +08:00
Dispatcher.Invoke(new Action(() =>
{
if (clearBeforeInsert)
{
pnlResult.Clear();
}
pnlResult.AddResults(l);
}));
2014-10-23 18:39:11 +08:00
}
}
private void ShowContextMenu(Result result)
{
if (result.ContextMenu != null && result.ContextMenu.Count > 0)
{
pnlContextMenu.Clear();
pnlContextMenu.AddResults(result.ContextMenu);
pnlContextMenu.Visibility = Visibility.Visible;
pnlResult.Visibility = Visibility.Collapsed;
2014-07-24 04:46:19 +08:00
}
}
2014-10-24 13:09:51 +08:00
public bool ShellRun(string cmd, bool runAsAdministrator = false)
2014-07-24 04:46:19 +08:00
{
try
{
if (string.IsNullOrEmpty(cmd))
throw new ArgumentNullException();
2014-10-24 13:09:51 +08:00
WindowsShellRun.Start(cmd, runAsAdministrator);
2014-07-24 04:46:19 +08:00
return true;
}
catch (Exception ex)
{
string errorMsg = string.Format(InternationalizationManager.Internationalization.GetTranslation("couldnotStartCmd"), cmd);
2015-01-02 23:07:49 +08:00
ShowMsg(errorMsg, ex.Message, null);
2014-07-24 04:46:19 +08:00
}
return false;
}
private void MainWindow_OnDrop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
2014-07-24 04:46:19 +08:00
{
// Note that you can have more than one file.
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
2014-07-24 04:46:19 +08:00
if (files[0].ToLower().EndsWith(".wox"))
{
2014-12-27 12:34:51 +08:00
PluginManager.InstallPlugin(files[0]);
2014-07-24 04:46:19 +08:00
}
else
{
MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("invalidWoxPluginFileFormat"));
2014-07-24 04:46:19 +08:00
}
}
}
private void TbQuery_OnPreviewDragOver(object sender, DragEventArgs e)
{
e.Handled = true;
}
}
2013-12-22 19:35:21 +08:00
}