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
- theJInternalFrame
to be displayed
closeFrame
void closeFrame(JInternalFrame f)
- Parameters:
f
- theJInternalFrame
to be removed
maximizeFrame
void maximizeFrame(JInternalFrame f)
- Parameters:
f
- theJInternalFrame
to be resized
minimizeFrame
void minimizeFrame(JInternalFrame f)
- Parameters:
f
- theJInternalFrame
to be restored
iconifyFrame
void iconifyFrame(JInternalFrame f)
- Parameters:
f
- theJInternalFrame
to be iconified
deiconifyFrame
void deiconifyFrame(JInternalFrame f)
- Parameters:
f
- theJInternalFrame
to be de-iconified
activateFrame
void activateFrame(JInternalFrame f)
- Parameters:
f
- theJInternalFrame
to be activated
deactivateFrame
void deactivateFrame(JInternalFrame f)
- Parameters:
f
- theJInternalFrame
to be deactivated
beginDraggingFrame
void beginDraggingFrame(JComponent f)
- Parameters:
f
- theJComponent
being dragged
dragFrame
void dragFrame(JComponent f, int newX, int newY)
- Parameters:
f
- theJComponent
being draggednewX
- the new x-coordinatenewY
- the new y-coordinate
endDraggingFrame
void endDraggingFrame(JComponent f)
- Parameters:
f
- theJComponent
being dragged
beginResizingFrame
void beginResizingFrame(JComponent f, int direction)
- Parameters:
f
- theJComponent
being resizeddirection
- the direction
resizeFrame
void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)
- Parameters:
f
- theJComponent
being resizednewX
- the new x-coordinatenewY
- the new y-coordinatenewWidth
- the new widthnewHeight
- the new height
endResizingFrame
void endResizingFrame(JComponent f)
- Parameters:
f
- theJComponent
being resized
setBoundsForFrame
void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)
- Parameters:
f
- theJComponent
being moved or resizednewX
- the new x-coordinatenewY
- the new y-coordinatenewWidth
- the new widthnewHeight
- the new height
© 1993, 2021, 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/17/docs/api/java.desktop/javax/swing/DesktopManager.html