source:
trunk/sources/HeuristicLab.Visualization/IMouseEventListener.cs
@
1342
Last change on this file since 1342 was 1249, checked in by bspisic, 16 years ago | |
---|---|
File size: 384 bytes |
Line | |
---|---|
1 | using System.Drawing; |
2 | using System.Windows.Forms; |
3 | |
4 | namespace HeuristicLab.Visualization { |
5 | public interface IMouseEventListener { |
6 | void MouseMove(object sender, MouseEventArgs e); |
7 | void MouseUp(object sender, MouseEventArgs e); |
8 | } |
9 | |
10 | public delegate void MoveHandler(Point startPoint, Point endPoint); |
11 | public delegate void RectangleHandler(Rectangle rectangle); |
12 | } |
Note: See TracBrowser
for help on using the repository browser.