24 lines
442 B
C#
24 lines
442 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Server.Helper.HexEditor;
|
|
|
|
public interface IKeyMouseEventHandler
|
|
{
|
|
void OnKeyPress(KeyPressEventArgs e);
|
|
|
|
void OnKeyDown(KeyEventArgs e);
|
|
|
|
void OnKeyUp(KeyEventArgs e);
|
|
|
|
void OnMouseDown(MouseEventArgs e);
|
|
|
|
void OnMouseDragged(MouseEventArgs e);
|
|
|
|
void OnMouseUp(MouseEventArgs e);
|
|
|
|
void OnMouseDoubleClick(MouseEventArgs e);
|
|
|
|
void OnGotFocus(EventArgs e);
|
|
}
|