Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/IMouseEventListener.cs @ 1249

Last change on this file since 1249 was 1249, checked in by bspisic, 15 years ago

reimplemented panning and zooming (#424)

File size: 384 bytes
Line 
1using System.Drawing;
2using System.Windows.Forms;
3
4namespace 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.