On this page
Interface DesktopManager
- All Known Implementing Classes:
-
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.
- Since:
- 1.2
- See Also:
Method Summary
| 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.
|
Method Details
openFrame
void openFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be displayed
closeFrame
void closeFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be removed
maximizeFrame
void maximizeFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be resized
minimizeFrame
void minimizeFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be restored
iconifyFrame
void iconifyFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be iconified
deiconifyFrame
void deiconifyFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be de-iconified
activateFrame
void activateFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be activated
deactivateFrame
void deactivateFrame(JInternalFrame f)
- Parameters:
f- theJInternalFrameto be deactivated
beginDraggingFrame
void beginDraggingFrame(JComponent f)
- Parameters:
f- theJComponentbeing dragged
dragFrame
void dragFrame(JComponent f, int newX, int newY)
- Parameters:
f- theJComponentbeing draggednewX- the new x-coordinatenewY- the new y-coordinate
endDraggingFrame
void endDraggingFrame(JComponent f)
- Parameters:
f- theJComponentbeing dragged
beginResizingFrame
void beginResizingFrame(JComponent f, int direction)
- Parameters:
f- theJComponentbeing resizeddirection- the direction
resizeFrame
void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)
- Parameters:
f- theJComponentbeing resizednewX- the new x-coordinatenewY- the new y-coordinatenewWidth- the new widthnewHeight- the new height
endResizingFrame
void endResizingFrame(JComponent f)
- Parameters:
f- theJComponentbeing resized
setBoundsForFrame
void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)
- Parameters:
f- theJComponentbeing 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