mirror of https://github.com/quasar/Quasar.git
28 lines
567 B
C#
28 lines
567 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace xServer.Controls.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);
|
|
}
|
|
}
|