Methods Summary |
---|
public void | activateFrame(javax.swing.JInternalFrame f)Generally, indicate that this frame has focus. This is usually called after
the JInternalFrame's IS_SELECTED_PROPERTY has been set to true.
|
public void | beginDraggingFrame(javax.swing.JComponent f)This method is normally called when the user has indicated that
they will begin dragging a component around. This method should be called
prior to any dragFrame() calls to allow the DesktopManager to prepare any
necessary state. Normally f will be a JInternalFrame.
|
public void | beginResizingFrame(javax.swing.JComponent f, int direction)This methods is normally called when the user has indicated that
they will begin resizing the frame. This method should be called
prior to any resizeFrame() calls to allow the DesktopManager to prepare any
necessary state. Normally f will be a JInternalFrame.
|
public void | closeFrame(javax.swing.JInternalFrame f)Generally, this call should remove the frame from it's parent.
|
public void | deactivateFrame(javax.swing.JInternalFrame f)Generally, indicate that this frame has lost focus. This is usually called
after the JInternalFrame's IS_SELECTED_PROPERTY has been set to false.
|
public void | deiconifyFrame(javax.swing.JInternalFrame f)Generally, remove any iconic representation that is present and restore the
frame to it's original size and location.
|
public void | dragFrame(javax.swing.JComponent f, int newX, int newY)The user has moved the frame. Calls to this method will be preceded by calls
to beginDraggingFrame().
Normally f will be a JInternalFrame.
|
public void | endDraggingFrame(javax.swing.JComponent f)This method signals the end of the dragging session. Any state maintained by
the DesktopManager can be removed here. Normally f will be a JInternalFrame.
|
public void | endResizingFrame(javax.swing.JComponent f)This method signals the end of the resize session. Any state maintained by
the DesktopManager can be removed here. Normally f will be a JInternalFrame.
|
public void | iconifyFrame(javax.swing.JInternalFrame f)Generally, remove this frame from it's parent and add an iconic representation.
|
public void | maximizeFrame(javax.swing.JInternalFrame f)Generally, the frame should be resized to match it's parents bounds.
|
public void | minimizeFrame(javax.swing.JInternalFrame f)Generally, this indicates that the frame should be restored to it's
size and position prior to a maximizeFrame() call.
|
public void | openFrame(javax.swing.JInternalFrame f)If possible, display this frame in an appropriate location.
Normally, this is not called, as the creator of the JInternalFrame
will add the frame to the appropriate parent.
|
public void | resizeFrame(javax.swing.JComponent f, int newX, int newY, int newWidth, int newHeight)The user has resized the component. Calls to this method will be preceded by calls
to beginResizingFrame().
Normally f will be a JInternalFrame.
|
public void | setBoundsForFrame(javax.swing.JComponent f, int newX, int newY, int newWidth, int newHeight)This is a primitive reshape method.
|