using System.Windows;
using System.Windows.Input;
namespace Flow.Launcher.Plugin
{
public delegate void Flow.LauncherKeyDownEventHandler(Flow.LauncherKeyDownEventArgs e);
public delegate void AfterFlow.LauncherQueryEventHandler(Flow.LauncherQueryEventArgs e);
public delegate void ResultItemDropEventHandler(Result result, IDataObject dropObject, DragEventArgs e);
///
/// Global keyboard events
///
/// WM_KEYDOWN = 256,WM_KEYUP = 257,WM_SYSKEYUP = 261,WM_SYSKEYDOWN = 260
///
///
/// return true to continue handling, return false to intercept system handling
public delegate bool Flow.LauncherGlobalKeyboardEventHandler(int keyevent, int vkcode, SpecialKeyState state);
public class Flow.LauncherKeyDownEventArgs
{
public string Query { get; set; }
public KeyEventArgs keyEventArgs { get; set; }
}
public class Flow.LauncherQueryEventArgs
{
public Query Query { get; set; }
}
}