mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
66 lines
2 KiB
C#
66 lines
2 KiB
C#
using Gma.System.MouseKeyHook;
|
|
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace MSFSPopoutPanelManager.Provider
|
|
{
|
|
public class InputHookManager
|
|
{
|
|
private const string CTRL_KEY = "Control";
|
|
private const string SHIFT_KEY = "Shift";
|
|
|
|
private static IKeyboardMouseEvents _mouseHook;
|
|
|
|
public static bool SubscribeToPanelSelectionEvent { get; set; }
|
|
public static bool SubscribeToStartPopOutEvent { get; set; }
|
|
|
|
public static event EventHandler OnPanelSelectionCompleted;
|
|
public static event EventHandler<Point> OnPanelSelectionAdded;
|
|
public static event EventHandler OnPanelSelectionRemoved;
|
|
|
|
public static void StartHook()
|
|
{
|
|
if (_mouseHook == null)
|
|
{
|
|
_mouseHook = Hook.GlobalEvents();
|
|
_mouseHook.MouseDownExt += HandleMouseHookMouseDownExt;
|
|
}
|
|
}
|
|
|
|
public static void EndHook()
|
|
{
|
|
if (_mouseHook != null)
|
|
{
|
|
_mouseHook.MouseDownExt -= HandleMouseHookMouseDownExt;
|
|
_mouseHook.Dispose();
|
|
_mouseHook = null;
|
|
}
|
|
}
|
|
|
|
private static void HandleMouseHookMouseDownExt(object sender, MouseEventExtArgs e)
|
|
{
|
|
if (_mouseHook == null || !SubscribeToPanelSelectionEvent)
|
|
return;
|
|
|
|
if (e.Button == MouseButtons.Left)
|
|
{
|
|
var ctrlPressed = Control.ModifierKeys.ToString() == CTRL_KEY;
|
|
var shiftPressed = Control.ModifierKeys.ToString() == SHIFT_KEY;
|
|
|
|
if (ctrlPressed)
|
|
{
|
|
OnPanelSelectionCompleted?.Invoke(null, null);
|
|
}
|
|
else if (shiftPressed)
|
|
{
|
|
OnPanelSelectionRemoved?.Invoke(null, null);
|
|
}
|
|
else if (!shiftPressed)
|
|
{
|
|
OnPanelSelectionAdded?.Invoke(null, new Point(e.X, e.Y));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|