Searched refs:layered (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaRootPaneUI.java87 // Listen for layered pane/JMenuBar updates if the screen menu bar is active.
109 * If the screen menu bar is active we need to listen to the layered pane of the root pane
110 * because it holds the JMenuBar. So, if a new layered pane was added, listen to it.
117 final JLayeredPane layered = root.getLayeredPane();
118 layered.addContainerListener(this);
138 * Likewise, when the layered pane is removed from the root pane, stop listening to it.
145 final JLayeredPane layered = root.getLayeredPane();
146 layered.removeContainerListener(this);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJRootPane.java307 /** The layered pane that manages the menu bar and content pane. */
562 * Adds or changes the menu bar used in the layered pane.
591 * Returns the menu bar from the layered pane.
638 * Sets the layered pane for the root pane. The layered pane
641 * @param layered the <code>JLayeredPane</code> to use
643 * exception) if the layered pane parameter is <code>null</code>
645 public void setLayeredPane(JLayeredPane layered) { argument
646 if(layered == null)
650 layeredPane = layered;
[all...]
H A DJInternalFrame.java640 * Returns the layered pane for this internal frame.
654 * @param layered the <code>JLayeredPane</code> for this internal frame
657 * exception) if the layered pane parameter is <code>null</code>
664 public void setLayeredPane(JLayeredPane layered) { argument
666 getRootPane().setLayeredPane(layered);
667 firePropertyChange(LAYERED_PANE_PROPERTY, oldValue, layered);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.h340 static void SetLayered(HWND window, bool layered);
H A Dawt_Window.cpp808 void AwtWindow::SetLayered(HWND window, bool layered) argument
811 ::SetWindowLong(window, GWL_EXSTYLE, layered ?
849 // Pre-hiding means fading-out. We have to make the window layered.
850 // Note: Some VNC clients do not support layered windows, hence
3589 * the layered window WindowPeer's C++ level object.

Completed in 52 milliseconds