(svn r19886) -Add [FS#3705]: Perform window callback during mouse dragging for the purpose of highlighting the destination (sbr).

This commit is contained in:
alberth
2010-05-23 14:53:39 +00:00
parent 0ccd755de6
commit 740185febd
2 changed files with 26 additions and 0 deletions

View File

@@ -656,6 +656,13 @@ public:
*/
virtual void OnRightClick(Point pt, int widget) {}
/**
* An 'object' is being dragged at the provided position, highlight the target if possible.
* @param pt The point inside the window that the mouse hovers over.
* @param widget The widget the mouse hovers over.
*/
virtual void OnMouseDrag(Point pt, int widget) {}
/**
* A dragged 'object' has been released.
* @param pt the point inside the window where the release took place.