Searched refs:motionThreshold (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWMouseDragGestureRecognizer.java66 protected static int motionThreshold; field in class:WMouseDragGestureRecognizer
156 motionThreshold = DragSource.getDragThreshold();
158 motionThreshold = 5;
216 if (dx > motionThreshold || dy > motionThreshold) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMouseDragGestureRecognizer.java68 protected static int motionThreshold; field in class:XMouseDragGestureRecognizer
159 motionThreshold = DragSource.getDragThreshold();
161 motionThreshold = 5;
218 if (dx > motionThreshold || dy > motionThreshold) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DDragRecognitionSupport.java44 private int motionThreshold; field in class:DragRecognitionSupport
120 motionThreshold = DragSource.getDragThreshold();
166 if ((dx > motionThreshold) || (dy > motionThreshold)) {

Completed in 888 milliseconds