DefaultDesktopManager
public interface DesktopManager
getDesktopPane().getDesktopManager().iconifyFrame(frame);This delegation allows each L&F to provide custom behaviors for desktop-specific actions. (For example, how and where the internal frame's icon would appear.)
This class provides a policy for the various JInternalFrame methods, it is not meant to be called directly rather the various JInternalFrame methods will call into the DesktopManager.
Modifier and Type | Method | Description |
---|---|---|
void |
activateFrame |
Generally, indicate that this frame has focus. |
void |
beginDraggingFrame |
This method is normally called when the user has indicated that they will begin dragging a component around. |
void |
beginResizingFrame |
This method is normally called when the user has indicated that they will begin resizing the frame. |
void |
closeFrame |
Generally, this call should remove the frame from its parent. |
void |
deactivateFrame |
Generally, indicate that this frame has lost focus. |
void |
deiconifyFrame |
Generally, remove any iconic representation that is present and restore the frame to it's original size and location. |
void |
dragFrame |
The user has moved the frame. |
void |
endDraggingFrame |
This method signals the end of the dragging session. |
void |
endResizingFrame |
This method signals the end of the resize session. |
void |
iconifyFrame |
Generally, remove this frame from its parent and add an iconic representation. |
void |
maximizeFrame |
Generally, the frame should be resized to match its parents bounds. |
void |
minimizeFrame |
Generally, this indicates that the frame should be restored to its size and position prior to a maximizeFrame() call. |
void |
openFrame |
If possible, display this frame in an appropriate location. |
void |
resizeFrame |
The user has resized the component. |
void |
setBoundsForFrame |
This is a primitive reshape method. |
void openFrame(JInternalFrame f)
f
- the JInternalFrame
to be displayedvoid closeFrame(JInternalFrame f)
f
- the JInternalFrame
to be removedvoid maximizeFrame(JInternalFrame f)
f
- the JInternalFrame
to be resizedvoid minimizeFrame(JInternalFrame f)
f
- the JInternalFrame
to be restoredvoid iconifyFrame(JInternalFrame f)
f
- the JInternalFrame
to be iconifiedvoid deiconifyFrame(JInternalFrame f)
f
- the JInternalFrame
to be de-iconifiedvoid activateFrame(JInternalFrame f)
f
- the JInternalFrame
to be activatedvoid deactivateFrame(JInternalFrame f)
f
- the JInternalFrame
to be deactivatedvoid beginDraggingFrame(JComponent f)
f
- the JComponent
being draggedvoid dragFrame(JComponent f, int newX, int newY)
f
- the JComponent
being draggednewX
- the new x-coordinatenewY
- the new y-coordinatevoid endDraggingFrame(JComponent f)
f
- the JComponent
being draggedvoid beginResizingFrame(JComponent f, int direction)
f
- the JComponent
being resizeddirection
- the directionvoid resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)
f
- the JComponent
being resizednewX
- the new x-coordinatenewY
- the new y-coordinatenewWidth
- the new widthnewHeight
- the new heightvoid endResizingFrame(JComponent f)
f
- the JComponent
being resizedvoid setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)
f
- the JComponent
being moved or resizednewX
- the new x-coordinatenewY
- the new y-coordinatenewWidth
- the new widthnewHeight
- the new height
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/DesktopManager.html