Searched refs:findComponentAt (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWGlobalCursorManager.java51 protected native Component findComponentAt(Container con, int x, int y); method in class:WGlobalCursorManager
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Component.h50 jmethodID findComponentAt; member in struct:ContainerIDs
/openjdk7/jdk/src/share/classes/sun/awt/
H A DGlobalCursorManager.java137 protected abstract Component findComponentAt(Container con, int x, int y); method in class:GlobalCursorManager
166 * heavyweight, we use findComponentAt to find the most specific, visible,
193 Component c = findComponentAt((Container)comp,
196 // If findComponentAt returns null, then something bad has
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWCursorManager.java52 * calls to user code (e.g. Container.findComponentAt).
108 c = ((Container) c).findComponentAt(cursorPos.x - p.x,
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXGlobalCursorManager.java151 protected Component findComponentAt(Container con, int x, int y) { method in class:XGlobalCursorManager
152 return con.findComponentAt(x,y);
/openjdk7/jdk/src/share/classes/java/awt/
H A DContainer.java2630 * The findComponentAt method is different from getComponentAt in
2633 * findComponentAt will search that child to find a nested component.
2645 public Component findComponentAt(int x, int y) { method in class:Container
2646 return findComponentAt(x, y, true);
2650 * Private version of findComponentAt which has a controllable
2659 final Component findComponentAt(int x, int y, boolean ignoreEnabled) { method in class:Container
2724 * The findComponentAt method is different from getComponentAt in
2727 * findComponentAt will search that child to find a nested component.
2739 public Component findComponentAt(Point p) { method in class:Container
2740 return findComponentAt(
[all...]
H A DComponent.java1330 Component inTheSameWindow = win.findComponentAt(relativeToWindow.x,
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessibility.java395 final Component component = parent.findComponentAt(localPoint);

Completed in 87 milliseconds