javax.swing
Interface DesktopManager

All Known Implementing Classes:
DefaultDesktopManager

public interface DesktopManager

Unsafe:


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

Method Detail

openFrame

public void openFrame(JInternalFrame f)
Suppressed: 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.


closeFrame

public void closeFrame(JInternalFrame f)
Suppressed: Generally, this call should remove the frame from it's parent.


maximizeFrame

public void maximizeFrame(JInternalFrame f)
Suppressed: Generally, the frame should be resized to match it's parents bounds.


minimizeFrame

public void minimizeFrame(JInternalFrame f)
Suppressed: Generally, this indicates that the frame should be restored to it's size and position prior to a maximizeFrame() call.


iconifyFrame

public void iconifyFrame(JInternalFrame f)
Suppressed: Generally, remove this frame from it's parent and add an iconic representation.


deiconifyFrame

public void deiconifyFrame(JInternalFrame f)
Suppressed: Generally, remove any iconic representation that is present and restore the frame to it's original size and location.


activateFrame

public void activateFrame(JInternalFrame f)
Suppressed: Generally, indicate that this frame has focus. This is usually called after the JInternalFrame's IS_SELECTED_PROPERTY has been set to true.


deactivateFrame

public void deactivateFrame(JInternalFrame f)
Suppressed: Generally, indicate that this frame has lost focus. This is usually called after the JInternalFrame's IS_SELECTED_PROPERTY has been set to false.


beginDraggingFrame

public void beginDraggingFrame(JComponent f)
Suppressed: 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.


dragFrame

public void dragFrame(JComponent f,
                      int newX,
                      int newY)
Suppressed: The user has moved the frame. Calls to this method will be preceded by calls to beginDraggingFrame(). Normally f will be a JInternalFrame.


endDraggingFrame

public void endDraggingFrame(JComponent f)
Suppressed: 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.


beginResizingFrame

public void beginResizingFrame(JComponent f,
                               int direction)
Suppressed: 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.


resizeFrame

public void resizeFrame(JComponent f,
                        int newX,
                        int newY,
                        int newWidth,
                        int newHeight)
Suppressed: The user has resized the component. Calls to this method will be preceded by calls to beginResizingFrame(). Normally f will be a JInternalFrame.


endResizingFrame

public void endResizingFrame(JComponent f)
Suppressed: 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.


setBoundsForFrame

public void setBoundsForFrame(JComponent f,
                              int newX,
                              int newY,
                              int newWidth,
                              int newHeight)
Suppressed: This is a primitive reshape method.



comments?