/core/src/main/java/com/metsci/glimpse/plot/timeline/event/listener/DragListener.java

http://github.com/metsci/glimpse · Java · 180 lines · 124 code · 22 blank · 34 comment · 29 complexity · 88c5c97ea713752492392bb1145396db MD5 · raw file

  1. /*
  2. * Copyright (c) 2019, Metron, Inc.
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of Metron, Inc. nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. package com.metsci.glimpse.plot.timeline.event.listener;
  28. import static com.metsci.glimpse.plot.timeline.data.EventSelection.Location.Center;
  29. import static com.metsci.glimpse.plot.timeline.data.EventSelection.Location.End;
  30. import static com.metsci.glimpse.plot.timeline.data.EventSelection.Location.Start;
  31. import java.util.Set;
  32. import com.metsci.glimpse.event.mouse.GlimpseMouseAllListener;
  33. import com.metsci.glimpse.event.mouse.GlimpseMouseEvent;
  34. import com.metsci.glimpse.event.mouse.MouseButton;
  35. import com.metsci.glimpse.plot.timeline.data.EventSelection;
  36. import com.metsci.glimpse.plot.timeline.data.EventSelection.Location;
  37. import com.metsci.glimpse.plot.timeline.event.Event;
  38. import com.metsci.glimpse.plot.timeline.event.EventPlotInfo;
  39. import com.metsci.glimpse.util.units.time.TimeStamp;
  40. /**
  41. * Helper class which supports user dragging of Events to adjust their start/end times.
  42. * @author ulman
  43. */
  44. public class DragListener implements EventPlotListener, GlimpseMouseAllListener
  45. {
  46. protected Location dragType = null;
  47. protected TimeStamp anchorTime = null;
  48. protected TimeStamp eventStart = null;
  49. protected TimeStamp eventEnd = null;
  50. protected Event dragEvent = null;
  51. protected boolean enabled = true;
  52. protected EventPlotInfo info;
  53. public DragListener( EventPlotInfo info )
  54. {
  55. this.info = info;
  56. }
  57. public boolean isEnabled( )
  58. {
  59. return this.enabled;
  60. }
  61. public void setEnabled( boolean enabled )
  62. {
  63. this.enabled = enabled;
  64. this.reset( );
  65. }
  66. public void reset( )
  67. {
  68. this.dragType = null;
  69. this.anchorTime = null;
  70. this.eventStart = null;
  71. this.eventEnd = null;
  72. this.dragEvent = null;
  73. }
  74. @Override
  75. public void eventsClicked( GlimpseMouseEvent ev, Set<EventSelection> events, TimeStamp time )
  76. {
  77. if ( !this.enabled ) return;
  78. if ( this.dragEvent == null && ev.isButtonDown( MouseButton.Button1 ) )
  79. {
  80. for ( EventSelection selection : events )
  81. {
  82. if ( selection.isLocation( Center, Start, End ) && selection.getEvent( ).isEditable( ) )
  83. {
  84. this.dragEvent = selection.getEvent( );
  85. this.eventStart = dragEvent.getStartTime( );
  86. this.eventEnd = dragEvent.getEndTime( );
  87. this.anchorTime = time;
  88. ev.setHandled( true );
  89. if ( selection.isCenterSelection( ) )
  90. {
  91. this.dragType = Center;
  92. }
  93. else if ( selection.isStartTimeSelection( ) )
  94. {
  95. this.dragType = Start;
  96. }
  97. else if ( selection.isEndTimeSelection( ) )
  98. {
  99. this.dragType = End;
  100. }
  101. return;
  102. }
  103. }
  104. }
  105. }
  106. @Override
  107. public void mouseMoved( GlimpseMouseEvent ev )
  108. {
  109. if ( !this.enabled ) return;
  110. if ( this.dragEvent != null )
  111. {
  112. this.doDrag( ev );
  113. ev.setHandled( true );
  114. }
  115. }
  116. @Override
  117. public void mouseReleased( GlimpseMouseEvent ev )
  118. {
  119. if ( !enabled ) return;
  120. if ( this.dragEvent != null && ev.isButtonDown( MouseButton.Button1 ) )
  121. {
  122. // TODO: Find a less kludgy way to distinguish mouse-release from mouse-drag
  123. // If the mouse is outside the canvas when released, the incoming clickCount is zero; subtract 1 so that releaseClickCount is always negative
  124. int releaseClickCount = ( -1 * ev.getClickCount( ) ) - 1;
  125. GlimpseMouseEvent releaseEv = new GlimpseMouseEvent( ev.getTargetStack( ), ev.getModifiers( ), ev.getButtons( ), ev.getAllX( ), ev.getAllY( ), ev.getWheelIncrement( ), releaseClickCount, false );
  126. this.doDrag( releaseEv );
  127. this.reset( );
  128. ev.setHandled( true );
  129. }
  130. }
  131. protected void doDrag( GlimpseMouseEvent ev )
  132. {
  133. TimeStamp time = this.info.getTime( ev );
  134. if ( this.dragType == Center )
  135. {
  136. double diff = time.durationAfter( this.anchorTime );
  137. this.dragEvent.setTimes( ev, this.eventStart.add( diff ), this.eventEnd.add( diff ), false );
  138. }
  139. else if ( this.dragType == End && this.eventStart.isBefore( time ) )
  140. {
  141. this.dragEvent.setTimes( ev, this.eventStart, time, false );
  142. }
  143. else if ( this.dragType == Start && this.eventEnd.isAfter( time ) )
  144. {
  145. this.dragEvent.setTimes( ev, time, this.eventEnd, false );
  146. }
  147. }
  148. //@formatter:off
  149. @Override public void eventsHovered( GlimpseMouseEvent ev, Set<EventSelection> events, TimeStamp time ) { }
  150. @Override public void eventsExited( GlimpseMouseEvent ev, Set<EventSelection> events, TimeStamp time ) { }
  151. @Override public void eventsEntered( GlimpseMouseEvent ev, Set<EventSelection> events, TimeStamp time ) { }
  152. @Override public void eventUpdated( GlimpseMouseEvent ev, Event event ) { }
  153. @Override public void mouseEntered( GlimpseMouseEvent ev ) { }
  154. @Override public void mouseExited( GlimpseMouseEvent ev ) { }
  155. @Override public void mousePressed( GlimpseMouseEvent ev ) { }
  156. @Override public void mouseWheelMoved( GlimpseMouseEvent ev ) { }
  157. //@formatter:on
  158. }