| java.lang.Object javax.swing.DefaultDesktopManager org.glasser.swing.ScrollingDesktopManager
Method Summary | |
public void | beginDraggingFrame(JComponent f) This method is normally called when the user has indicated that
they will begin dragging a component around. | public void | beginResizingFrame(JComponent f, int direction) This methods is normally called when the user has indicated that
they will begin resizing the frame. | public void | closeFrame(JInternalFrame f) Generally, this call should remove the frame from it's parent. | public void | deiconifyFrame(JInternalFrame f) Generally, remove any iconic representation that is present and restore the
frame to it's original size and location. | public void | endDraggingFrame(JComponent f) This method signals the end of the dragging session. | public void | endResizingFrame(JComponent f) This method signals the end of the resize session. | public void | iconifyFrame(JInternalFrame f) Generally, remove this frame from it's parent and add an iconic representation. | public void | maximizeFrame(JInternalFrame f) Resizes the frame to fill its parents bounds. | public void | minimizeFrame(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(JInternalFrame f) If possible, display this frame in an appropriate location. | public void | resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) The user has resized the component. | public void | setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) This is a primitive reshape method. |
beginDraggingFrame | public void beginDraggingFrame(JComponent f)(Code) | | 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.
|
beginResizingFrame | public void beginResizingFrame(JComponent f, int direction)(Code) | | 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.
|
closeFrame | public void closeFrame(JInternalFrame f)(Code) | | Generally, this call should remove the frame from it's parent.
|
deiconifyFrame | public void deiconifyFrame(JInternalFrame f)(Code) | | Generally, remove any iconic representation that is present and restore the
frame to it's original size and location.
|
endDraggingFrame | public void endDraggingFrame(JComponent f)(Code) | | 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.
|
endResizingFrame | public void endResizingFrame(JComponent f)(Code) | | 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.
|
iconifyFrame | public void iconifyFrame(JInternalFrame f)(Code) | | Generally, remove this frame from it's parent and add an iconic representation.
|
maximizeFrame | public void maximizeFrame(JInternalFrame f)(Code) | | Resizes the frame to fill its parents bounds.
Parameters: the - frame to be resized |
minimizeFrame | public void minimizeFrame(JInternalFrame f)(Code) | | Generally, this indicates that the frame should be restored to it's
size and position prior to a maximizeFrame() call.
|
openFrame | public void openFrame(JInternalFrame f)(Code) | | 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.
|
resizeFrame | public void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)(Code) | | The user has resized the component. Calls to this method will be preceded by calls
to beginResizingFrame().
Normally f will be a JInternalFrame.
|
setBoundsForFrame | public void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)(Code) | | This is a primitive reshape method.
|
Methods inherited from javax.swing.DefaultDesktopManager | public void activateFrame(JInternalFrame f)(Code)(Java Doc) public void beginDraggingFrame(JComponent f)(Code)(Java Doc) public void beginResizingFrame(JComponent f, int direction)(Code)(Java Doc) public void closeFrame(JInternalFrame f)(Code)(Java Doc) public void deactivateFrame(JInternalFrame f)(Code)(Java Doc) public void deiconifyFrame(JInternalFrame f)(Code)(Java Doc) public void dragFrame(JComponent f, int newX, int newY)(Code)(Java Doc) public void endDraggingFrame(JComponent f)(Code)(Java Doc) public void endResizingFrame(JComponent f)(Code)(Java Doc) protected Rectangle getBoundsForIconOf(JInternalFrame f)(Code)(Java Doc) protected Rectangle getPreviousBounds(JInternalFrame f)(Code)(Java Doc) public void iconifyFrame(JInternalFrame f)(Code)(Java Doc) public void maximizeFrame(JInternalFrame f)(Code)(Java Doc) public void minimizeFrame(JInternalFrame f)(Code)(Java Doc) public void openFrame(JInternalFrame f)(Code)(Java Doc) protected void removeIconFor(JInternalFrame f)(Code)(Java Doc) public void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)(Code)(Java Doc) public void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight)(Code)(Java Doc) protected void setPreviousBounds(JInternalFrame f, Rectangle r)(Code)(Java Doc) protected void setWasIcon(JInternalFrame f, Boolean value)(Code)(Java Doc) protected boolean wasIcon(JInternalFrame f)(Code)(Java Doc)
|
|
|