diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-04-10 18:42:36 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-04-10 18:42:36 -0700 |
commit | 1f09812ad23208016f0046ef2d1187f15958a822 (patch) | |
tree | 2aa7098588e4bd6d570c3ea8db5e98b0a3729195 /indra/newview/llpathfindingpathtool.h | |
parent | ba0e3c3c6485fefbe273b6fa8f9121850166b2cc (diff) |
Modifying the behavior so that the user is able to drag the start/end points, but holding ctrl/shift while hovering will still not be destructive to the old values.
Diffstat (limited to 'indra/newview/llpathfindingpathtool.h')
-rw-r--r-- | indra/newview/llpathfindingpathtool.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llpathfindingpathtool.h b/indra/newview/llpathfindingpathtool.h index 0ec22d959c..be2b90ee1a 100644 --- a/indra/newview/llpathfindingpathtool.h +++ b/indra/newview/llpathfindingpathtool.h @@ -68,6 +68,13 @@ public: typedef boost::signals2::connection path_event_slot_t;
virtual BOOL handleMouseDown(S32 pX, S32 pY, MASK pMask);
+ virtual BOOL handleMouseUp(S32 pX, S32 pY, MASK pMask); + virtual BOOL handleMiddleMouseDown(S32 pX, S32 pY, MASK pMask); + virtual BOOL handleMiddleMouseUp(S32 pX, S32 pY, MASK pMask); + virtual BOOL handleRightMouseDown(S32 pX, S32 pY, MASK pMask); + virtual BOOL handleRightMouseUp(S32 pX, S32 pY, MASK pMask); + virtual BOOL handleDoubleClick(S32 x, S32 y, MASK mask); +
virtual BOOL handleHover(S32 pX, S32 pY, MASK pMask);
EPathStatus getPathStatus() const;
|