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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DRootPaneContainer.java87 * children: the glassPane and the layeredPane.
126 * The layeredPane can be used by descendants that want to add a child
130 * The layeredPane may not be null.
133 * getRootPane().setLayeredPane(layeredPane);</pre>
140 void setLayeredPane(JLayeredPane layeredPane); argument
144 * Returns the layeredPane.
146 * @return the value of the layeredPane property.
H A DJRootPane.java94 * the <code>layeredPane</code>, <code>contentPane</code>,
121 * <code>layeredPane</code> component at the
124 * The <code>layeredPane</code> is the parent of all children in the
147 * <LI>The <code>layeredPane</code> fills the entire viewable area of the
150 * <code>layeredPane</code>.
308 protected JLayeredPane layeredPane; field in class:JRootPane
361 * <code>glassPane</code>, <code>layeredPane</code>,
502 * <code>layeredPane</code>.
504 * @return the default <code>layeredPane</code>
508 p.setName(this.getName()+".layeredPane");
[all...]
H A DJApplet.java68 * and <code>layeredPane</code> properties.
431 * Returns the layeredPane object for this applet.
443 * Sets the layeredPane property. This method is called by the constructor.
444 * @param layeredPane the layeredPane object for this applet
453 public void setLayeredPane(JLayeredPane layeredPane) { argument
454 getRootPane().setLayeredPane(layeredPane);
H A DJWindow.java63 * <code>layeredPane</code> components.
528 * Returns the <code>layeredPane</code> object for this window.
530 * @return the <code>layeredPane</code> property
539 * Sets the <code>layeredPane</code> property.
542 * @param layeredPane the new <code>layeredPane</code> object
553 public void setLayeredPane(JLayeredPane layeredPane) { argument
554 getRootPane().setLayeredPane(layeredPane);
H A DJDialog.java64 * and {@code layeredPane} components.
1049 * Returns the {@code layeredPane} object for this dialog.
1051 * @return the {@code layeredPane} property
1061 * Sets the {@code layeredPane} property.
1064 * @param layeredPane the new {@code layeredPane} property
1075 public void setLayeredPane(JLayeredPane layeredPane) { argument
1076 getRootPane().setLayeredPane(layeredPane);
H A DJFrame.java697 * Returns the <code>layeredPane</code> object for this frame.
698 * @return the <code>layeredPane</code> property
708 * Sets the <code>layeredPane</code> property.
710 * @param layeredPane the <code>layeredPane</code> object for this frame
721 public void setLayeredPane(JLayeredPane layeredPane) { argument
722 getRootPane().setLayeredPane(layeredPane);
/openjdk7/jdk/test/javax/swing/JToolTip/4846413/
H A Dbug4846413.java126 JLayeredPane layeredPane = (JLayeredPane) Util.findSubComponent(
128 layeredPane.addContainerListener(new ContainerAdapter() {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameUI.java201 final JLayeredPane layeredPane = frame.getLayeredPane();
204 layeredPane.removeComponentListener(resizeBox);
205 layeredPane.remove(resizeBox);
209 resizeBox = new ResizeBox(layeredPane);
212 layeredPane.add(resizeBox);
213 layeredPane.setLayer(resizeBox, JLayeredPane.DRAG_LAYER);
214 layeredPane.addComponentListener(resizeBox);
800 final JLayeredPane layeredPane; field in class:AquaInternalFrameUI.ResizeBox
804 public ResizeBox(final JLayeredPane layeredPane) { argument
807 this.layeredPane
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalRootPaneUI.java347 JLayeredPane layeredPane = root.getLayeredPane();
352 layeredPane.remove(oldTitlePane);
355 layeredPane.add(titlePane, JLayeredPane.FRAME_CONTENT_LAYER);
431 * layeredPane, glassPane, menuBar and titlePane, if one has been
623 // Note: This is laying out the children in the layeredPane,

Completed in 38 milliseconds