Searched refs:layeredPane (Results 1 - 11 of 11) sorted by relevance

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DRootPaneContainer.java88 * children: the glassPane and the layeredPane.
127 * The layeredPane can be used by descendants that want to add a child
131 * The layeredPane may not be null.
134 * getRootPane().setLayeredPane(layeredPane);</pre>
136 * @param layeredPane the layered pane
142 void setLayeredPane(JLayeredPane layeredPane); argument
146 * Returns the layeredPane.
148 * @return the value of the layeredPane property.
H A DJRootPane.java97 * the <code>layeredPane</code>, <code>contentPane</code>,
124 * <code>layeredPane</code> component at the
127 * The <code>layeredPane</code> is the parent of all children in the
150 * <LI>The <code>layeredPane</code> fills the entire viewable area of the
153 * <code>layeredPane</code>.
313 protected JLayeredPane layeredPane; field in class:JRootPane
344 * <code>glassPane</code>, <code>layeredPane</code>,
478 * <code>layeredPane</code>.
480 * @return the default <code>layeredPane</code>
484 p.setName(this.getName()+".layeredPane");
[all...]
H A DJApplet.java75 * and <code>layeredPane</code> properties.
437 * Returns the layeredPane object for this applet.
449 * Sets the layeredPane property. This method is called by the constructor.
450 * @param layeredPane the layeredPane object for this applet
457 public void setLayeredPane(JLayeredPane layeredPane) { argument
458 getRootPane().setLayeredPane(layeredPane);
H A DJWindow.java62 * <code>layeredPane</code> components.
519 * Returns the <code>layeredPane</code> object for this window.
521 * @return the <code>layeredPane</code> property
530 * Sets the <code>layeredPane</code> property.
533 * @param layeredPane the new <code>layeredPane</code> object
542 public void setLayeredPane(JLayeredPane layeredPane) { argument
543 getRootPane().setLayeredPane(layeredPane);
H A DJFrame.java683 * Returns the <code>layeredPane</code> object for this frame.
684 * @return the <code>layeredPane</code> property
694 * Sets the <code>layeredPane</code> property.
696 * @param layeredPane the <code>layeredPane</code> object for this frame
705 public void setLayeredPane(JLayeredPane layeredPane) { argument
706 getRootPane().setLayeredPane(layeredPane);
H A DJDialog.java67 * and {@code layeredPane} components.
1040 * Returns the {@code layeredPane} object for this dialog.
1042 * @return the {@code layeredPane} property
1052 * Sets the {@code layeredPane} property.
1055 * @param layeredPane the new {@code layeredPane} property
1064 public void setLayeredPane(JLayeredPane layeredPane) { argument
1065 getRootPane().setLayeredPane(layeredPane);
/openjdk10/jdk/test/java/awt/Cursor/CursorOverlappedPanelsTest/
H A DCursorOverlappedPanelsTest.java97 JLayeredPane layeredPane = new JLayeredPane();
98 layeredPane.setPreferredSize(new Dimension(400, 400));
101 layeredPane.add(disabledPanel, JLayeredPane.PALETTE_LAYER);
102 layeredPane.add(enabledPanel, JLayeredPane.DEFAULT_LAYER);
104 frame.getContentPane().add(layeredPane);
/openjdk10/jdk/test/javax/swing/JToolTip/4846413/
H A Dbug4846413.java125 JLayeredPane layeredPane = (JLayeredPane) Util.findSubComponent(
127 layeredPane.addContainerListener(new ContainerAdapter() {
/openjdk10/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaInternalFrameUI.java212 final JLayeredPane layeredPane = frame.getLayeredPane();
213 resizeBox = new ResizeBox(layeredPane);
216 layeredPane.add(resizeBox);
217 layeredPane.setLayer(resizeBox, JLayeredPane.DRAG_LAYER);
218 layeredPane.addComponentListener(resizeBox);
237 final JLayeredPane layeredPane = frame.getLayeredPane();
239 layeredPane.removeComponentListener(resizeBox);
240 layeredPane.remove(resizeBox);
855 private final JLayeredPane layeredPane; field in class:AquaInternalFrameUI.ResizeBox
859 ResizeBox(final JLayeredPane layeredPane) { argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/swing/
H A DJLightweightFrame.java484 public void setLayeredPane(JLayeredPane layeredPane) { argument
485 getRootPane().setLayeredPane(layeredPane);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalRootPaneUI.java344 JLayeredPane layeredPane = root.getLayeredPane();
349 layeredPane.remove(oldTitlePane);
352 layeredPane.add(titlePane, JLayeredPane.FRAME_CONTENT_LAYER);
428 * layeredPane, glassPane, menuBar and titlePane, if one has been
620 // Note: This is laying out the children in the layeredPane,

Completed in 536 milliseconds