source:
trunk/sources/HeuristicLab.Visualization/MouseEventSelectListener.cs
@
715
Last change on this file since 715 was 711, checked in by bspisic, 16 years ago | |
---|---|
File size: 446 bytes |
Line | |
---|---|
1 | using System.Windows.Forms; |
2 | |
3 | namespace HeuristicLab.Visualization { |
4 | internal class MouseEventSelectListener : IMouseEventListener { |
5 | #region Interface members |
6 | |
7 | public event MouseEventHandler OnMouseDown; |
8 | public event MouseEventHandler OnMouseUp; |
9 | public event MouseEventHandler OnMouseMove; |
10 | |
11 | #endregion |
12 | |
13 | public MouseEventHandler OnSelectionChanged; |
14 | public MouseEventHandler OnSelectionFinished; |
15 | } |
16 | } |
Note: See TracBrowser
for help on using the repository browser.