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.
JDesktopPane,
JInternalFrame,
JInternalFrame.JDesktopIcon
| Modifier and Type | Method and Description |
|---|---|
void |
activateFrame(JInternalFrame
Generally, indicate that this frame has focus.
|
void |
beginDraggingFrame(JComponent
This method is normally called when the user has indicated that they will begin dragging a component around.
|
void |
beginResizingFrame(JComponent
This methods is normally called when the user has indicated that they will begin resizing the frame.
|
void |
closeFrame(JInternalFrame
Generally, this call should remove the frame from it's parent.
|
void |
deactivateFrame(JInternalFrame
Generally, indicate that this frame has lost focus.
|
void |
deiconifyFrame(JInternalFrame
Generally, remove any iconic representation that is present and restore the frame to it's original size and location.
|
void |
dragFrame(JComponent
The user has moved the frame.
|
void |
endDraggingFrame(JComponent
This method signals the end of the dragging session.
|
void |
endResizingFrame(JComponent
This method signals the end of the resize session.
|
void |
iconifyFrame(JInternalFrame
Generally, remove this frame from it's parent and add an iconic representation.
|
void |
maximizeFrame(JInternalFrame
Generally, the frame should be resized to match it's parents bounds.
|
void |
minimizeFrame(JInternalFrame
Generally, this indicates that the frame should be restored to it's size and position prior to a maximizeFrame() call.
|
void |
openFrame(JInternalFrame
If possible, display this frame in an appropriate location.
|
void |
resizeFrame(JComponent
The user has resized the component.
|
void |
setBoundsForFrame(JComponent
This is a primitive reshape method.
|
void openFrame(JInternalFramef)
void closeFrame(JInternalFramef)
void maximizeFrame(JInternalFramef)
void minimizeFrame(JInternalFramef)
void iconifyFrame(JInternalFramef)
void deiconifyFrame(JInternalFramef)
void activateFrame(JInternalFramef)
void deactivateFrame(JInternalFramef)
void beginDraggingFrame(JComponentf)
void dragFrame(JComponentf, int newX, int newY)
void endDraggingFrame(JComponentf)
void beginResizingFrame(JComponentf, int direction)
void resizeFrame(JComponentf, int newX, int newY, int newWidth, int newHeight)
void endResizingFrame(JComponentf)
void setBoundsForFrame(JComponentf, int newX, int newY, int newWidth, int newHeight)