Searched refs:Popup (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DPopupMenuUI.java29 import javax.swing.Popup;
49 * Returns the <code>Popup</code> that will be responsible for
52 * @param popup JPopupMenu requesting Popup
53 * @param x Screen x location Popup is to be shown at
54 * @param y Screen y location Popup is to be shown at.
55 * @return Popup that will show the JPopupMenu
58 public Popup getPopup(JPopupMenu popup, int x, int y) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenPopupFactory.java63 native Popup _getHeavyWeightPopup(Component comp, Component invoker, int x, int y);
65 public Popup getPopup(final Component comp, final Component invoker, final int x, final int y) {
66 if (invoker == null) throw new IllegalArgumentException("Popup.getPopup must be passed non-null contents");
68 final Popup popup;
/openjdk7/jdk/test/javax/swing/JLabel/7004134/
H A Dbug7004134.java137 Popup value = (Popup) tipWindowField.get(ToolTipManager.sharedInstance());
139 Field componentField = Popup.class.getDeclaredField("component");
/openjdk7/jdk/src/share/classes/javax/swing/
H A DPopup.java36 * hierarchy. <code>Popup</code>s have a very small life cycle. Once you
37 * have obtained a <code>Popup</code>, and hidden it (invoked the
40 * <code>Popup</code>s for later use.
43 * <code>Component</code>, or location of the <code>Popup</code>, you should
44 * obtain a new <code>Popup</code>.
46 * <code>Popup</code> does not descend from <code>Component</code>, rather
47 * implementations of <code>Popup</code> are responsible for creating
51 * You typically do not explicitly create an instance of <code>Popup</code>,
58 public class Popup { class
60 * The Component representing the Popup
83 protected Popup(Component owner, Component contents, int x, int y) { method in class:Popup
94 protected Popup() { method in class:Popup
[all...]
H A DPopupFactory.java40 * instances of <code>Popup</code>s. <code>Popup</code>s are used to
43 * once you have obtained a <code>Popup</code> from a
45 * <code>Popup</code>. The typical usage is:
48 * Popup popup = factory.getPopup(owner, contents, x, y);
54 * @see Popup
78 * Key used to indicate a medium weight Popup should be used.
83 * Key used to indicate a heavy weight Popup should be used.
88 * Default type of Popup to create.
95 * <code>Popup</cod
[all...]
H A DJPopupMenu.java111 transient Popup popup;
807 * Returns a <code>Popup</code> instance from the
816 private Popup getPopup() {
817 Popup oldPopup = popup;
836 Popup newPopup = getUI().getPopup(this, desiredLocationX,
1011 * Sets the size of the Popup window using a <code>Dimension</code> object.
1033 * Sets the size of the Popup window to the specified width and
1037 * @param width the new width of the Popup in pixels
1038 * @param height the new height of the Popup in pixels
1349 popup = (Popup)value
[all...]
H A DToolTipManager.java61 transient Popup tipWindow;
H A DJComponent.java525 * description: Popup to show
2974 if (container instanceof Popup.HeavyWeightWindow) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiPopupMenuUI.java30 import javax.swing.Popup;
95 public Popup getPopup(JPopupMenu a, int b, int c) {
96 Popup returnValue =
/openjdk7/jdk/test/javax/swing/JPopupMenu/6800513/
H A Dbug6800513.java70 Popup popup = (Popup) getPopup.get(popupMenu);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsPopupMenuUI.java81 * Returns the <code>Popup</code> that will be responsible for
84 * @param popupMenu JPopupMenu requesting Popup
85 * @param x Screen x location Popup is to be shown at
86 * @param y Screen y location Popup is to be shown at.
87 * @return Popup that will show the JPopupMenu
90 public Popup getPopup(JPopupMenu popupMenu, int x, int y) {
/openjdk7/jdk/test/javax/swing/ToolTipManager/7123767/
H A Dbug7123767.java64 public Popup getPopup(Component owner, Component contents, int x, int y) {

Completed in 338 milliseconds