Searched defs:xAbs (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DMenuDragMouseEvent.java56 * <p>Absolute coordinates xAbs and yAbs are set to source's location on screen plus
57 * relative coordinates x and y. xAbs and yAbs are set to zero if the source is not showing.
103 * @param xAbs an int specifying the horizontal absolute position at which
117 int modifiers, int x, int y, int xAbs,
121 super(source, id, when, modifiers, x, y, xAbs, yAbs, clickCount,
116 MenuDragMouseEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, MenuElement p[], MenuSelectionManager m) argument
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DMouseWheelEvent.java164 * <p>Absolute coordinates xAbs and yAbs are set to source's location on screen plus
165 * relative coordinates x and y. xAbs and yAbs are set to zero if the source is not showing.
223 * @param xAbs the absolute horizontal x coordinate for the mouse location
243 int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger,
246 this(source, id, when, modifiers, x, y, xAbs, yAbs, clickCount, popupTrigger,
273 * @param xAbs the absolute horizontal <code>x</code> coordinate for
297 int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger,
300 super(source, id, when, modifiers, x, y, xAbs, yAbs, clickCount,
242 MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation) argument
296 MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation, double preciseWheelRotation) argument
H A DMouseEvent.java305 private int xAbs; field in class:MouseEvent
425 return new Point(xAbs, yAbs);
442 return xAbs;
476 * x, y, xAbs, yAbs, clickCount, popupTrigger, button)</tt>
477 * where xAbs and yAbs defines as source's location on screen plus
479 * xAbs and yAbs are set to zero if the source is not showing.
558 this.xAbs = eventLocationOnScreen.x + x;
561 this.xAbs = 0;
575 * x, y, xAbs, yAbs, clickCount, popupTrigger, MouseEvent.NOBUTTON)</tt>
576 * where xAbs an
729 MouseEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int button) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWWindowPeer.java919 Point loc, int xAbs, int yAbs,
925 xAbs, yAbs, clickCount, popupTrigger, button));
917 postMouseEnteredExitedEvent( Component target, int id, long when, int modifiers, Point loc, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int button) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp4887 int xAbs = GET_X_LPARAM(curMousePos); local
4893 xAbs, yAbs,

Completed in 45 milliseconds