mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public delegate void WoxKeyDownEventHandler(WoxKeyDownEventArgs e);
|
|
public delegate void AfterWoxQueryEventHandler(WoxQueryEventArgs e);
|
|
|
|
public delegate void ResultItemDropEventHandler(Result result, IDataObject dropObject, DragEventArgs e);
|
|
|
|
/// <summary>
|
|
/// Global keyboard events
|
|
/// </summary>
|
|
/// <param name="keyevent">WM_KEYDOWN = 256,WM_KEYUP = 257,WM_SYSKEYUP = 261,WM_SYSKEYDOWN = 260</param>
|
|
/// <param name="vkcode"></param>
|
|
/// <param name="state"></param>
|
|
/// <returns>return true to continue handling, return false to intercept system handling</returns>
|
|
public delegate bool WoxGlobalKeyboardEventHandler(int keyevent, int vkcode, SpecialKeyState state);
|
|
|
|
public class WoxKeyDownEventArgs
|
|
{
|
|
public string Query { get; set; }
|
|
public KeyEventArgs keyEventArgs { get; set; }
|
|
}
|
|
|
|
public class WoxQueryEventArgs
|
|
{
|
|
public Query Query { get; set; }
|
|
}
|
|
}
|