Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
javax.swing.DefaultDesktopManager
Constructor Summary | |
|
Method Summary | |
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
protected Rectangle |
|
protected Rectangle |
|
void |
|
void |
|
void |
|
void |
|
protected void |
|
void |
|
void |
|
protected void |
|
protected void |
|
protected boolean |
|
Methods inherited from class java.lang.Object | |
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
public DefaultDesktopManager()
This creates a new DefaultDesktopManager object.
public void activateFrame(JInternalFrame frame)
This method activates the JInternalFrame by moving it to the front and selecting it.
- Specified by:
- activateFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFrame to activate.
public void beginDraggingFrame(JComponent component)
This method is called to indicate that the DesktopManager should prepare to drag the JInternalFrame. Any state information needed to drag the frame will be prepared now.
- Specified by:
- beginDraggingFrame in interface DesktopManager
- Parameters:
component
- The JComponent to drag, usually a JInternalFrame.
public void beginResizingFrame(JComponent component, int direction)
This method is called to indicate that the given JComponent will be resized. Any state information necessary to resize the JComponent will be prepared now.
- Specified by:
- beginResizingFrame in interface DesktopManager
- Parameters:
component
- The JComponent to resize, usually a JInternalFrame.direction
- The direction to drag in (a SwingConstant).
public void closeFrame(JInternalFrame frame)
This method removes the JInternalFrame and JDesktopIcon (if one is present) from their parents.
- Specified by:
- closeFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFrame to close.
public void deactivateFrame(JInternalFrame frame)
This method is called when the JInternalFrame loses focus.
- Specified by:
- deactivateFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFram to deactivate.
public void deiconifyFrame(JInternalFrame frame)
This method removes the JInternalFrame's JDesktopIcon representation and adds the JInternalFrame back to its parent.
- Specified by:
- deiconifyFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFrame to deiconify.
public void dragFrame(JComponent component, int newX, int newY)
This method is called to drag the JInternalFrame to a new location.
- Specified by:
- dragFrame in interface DesktopManager
- Parameters:
component
- The JComponent to drag, usually a JInternalFrame.newX
- The new x coordinate.newY
- The new y coordinate.
public void endDraggingFrame(JComponent component)
This method indicates that the dragging is done. Any state information stored by the DesktopManager can be cleared.
- Specified by:
- endDraggingFrame in interface DesktopManager
- Parameters:
component
- The JComponent that has finished dragging.
public void endResizingFrame(JComponent component)
This method is called to indicate that the given JComponent has finished dragging. Any state information stored by the DesktopManager can be cleared.
- Specified by:
- endResizingFrame in interface DesktopManager
- Parameters:
component
- The JComponent that finished resizing.
protected Rectangle getBoundsForIconOf(JInternalFrame frame)
This method is called by iconifyFrame to determine the bounds of the JDesktopIcon for the given JInternalFrame.
- Parameters:
frame
- The JInternalFrame to find the bounds of its JDesktopIcon for.
- Returns:
- The bounds of the JDesktopIcon.
protected Rectangle getPreviousBounds(JInternalFrame frame)
This method returns the normal bounds of the JInternalFrame from before the maximize call.
- Parameters:
frame
- The JInternalFrame that is being restored.
- Returns:
- The previous bounds of the JInternalFrame.
public void iconifyFrame(JInternalFrame frame)
This method removes the JInternalFrame from its parent and adds its JDesktopIcon representation.
- Specified by:
- iconifyFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFrame to iconify.
public void maximizeFrame(JInternalFrame frame)
This method resizes the JInternalFrame to match its parent's bounds.
- Specified by:
- maximizeFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFrame to maximize.
public void minimizeFrame(JInternalFrame frame)
This method restores the JInternalFrame's bounds to what they were previous to the setMaximize call.
- Specified by:
- minimizeFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFrame to minimize.
public void openFrame(JInternalFrame frame)
This method is not normally called since the user will typically add the JInternalFrame to a Container. If this is called, it will try to determine the parent of the JInternalFrame and remove any icon that represents this JInternalFrame and add this JInternalFrame.
- Specified by:
- openFrame in interface DesktopManager
- Parameters:
frame
- The JInternalFrame to open.
protected void removeIconFor(JInternalFrame frame)
This is a helper method that removes the JDesktopIcon of the given JInternalFrame from the parent.
- Parameters:
frame
- The JInternalFrame to remove an icon for.
public void resizeFrame(JComponent component, int newX, int newY, int newWidth, int newHeight)
This method resizes the give JComponent.
- Specified by:
- resizeFrame in interface DesktopManager
- Parameters:
component
- The JComponent to resize.newX
- The new x coordinate.newY
- The new y coordinate.newWidth
- The new width.newHeight
- The new height.
public void setBoundsForFrame(JComponent component, int newX, int newY, int newWidth, int newHeight)
This method calls setBounds with the given parameters and repaints the JComponent.
- Specified by:
- setBoundsForFrame in interface DesktopManager
- Parameters:
component
- The JComponent to set bounds for.newX
- The new x coordinate.newY
- The new y coordinate.newWidth
- The new width.newHeight
- The new height.
protected void setPreviousBounds(JInternalFrame frame, Rectangle rect)
This method sets the bounds of the JInternalFrame right before the maximizeFrame call.
- Parameters:
frame
- The JInternalFrame being maximized.rect
- The normal bounds.
protected void setWasIcon(JInternalFrame frame, Boolean value)
This method sets the value to true if the given JInternalFrame has been iconized and the bounds of its DesktopIcon are valid.
- Parameters:
frame
- The JInternalFrame for the JDesktopIcon.value
- True if the JInternalFrame has been iconized and the bounds of the JDesktopIcon are valid.
protected boolean wasIcon(JInternalFrame frame)
This method returns true if the given JInternalFrame has been iconized and the bounds of its DesktopIcon are valid.
- Parameters:
frame
- The JInternalFrame for the JDesktopIcon.
- Returns:
- True if the given JInternalFrame has been iconized and the bounds of its DesktopIcon are valid.