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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPopupMenu.java327 Point popupLocation = new Point(xPosition, yPosition);
330 return popupLocation;
335 GraphicsConfiguration gc = getCurrentGraphicsConfiguration(popupLocation);
347 long popupRightX = (long)popupLocation.x + (long)popupSize.width;
348 long popupBottomY = (long)popupLocation.y + (long)popupSize.height;
365 popupLocation.x = scrRightX - popupSize.width;
369 popupLocation.y = scrBottomY - popupSize.height;
372 if (popupLocation.x < scrBounds.x) {
373 popupLocation.x = scrBounds.x;
376 if (popupLocation
388 getCurrentGraphicsConfiguration( Point popupLocation) argument
[all...]

Completed in 32 milliseconds