Example usage for Java javax.swing DesktopManager fields, constructors, methods, implement or subclass
The text is from its open source code.
void | activateFrame(JInternalFrame f) Generally, indicate that this frame has focus. |
void | closeFrame(JInternalFrame f) Generally, this call should remove the frame from its parent. |
void | deactivateFrame(JInternalFrame f) Generally, indicate that this frame has lost focus. |
void | deiconifyFrame(JInternalFrame f) Generally, remove any iconic representation that is present and restore the frame to it's original size and location. |
void | iconifyFrame(JInternalFrame f) Generally, remove this frame from its parent and add an iconic representation. |
void | maximizeFrame(JInternalFrame f) Generally, the frame should be resized to match its parents bounds. |
void | minimizeFrame(JInternalFrame f) Generally, this indicates that the frame should be restored to its size and position prior to a maximizeFrame() call. |
void | openFrame(JInternalFrame f) If possible, display this frame in an appropriate location. |
void | resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) The user has resized the component. |
void | setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) This is a primitive reshape method. |